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

52505 行
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.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,
  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. "avian"
  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. "avian"
  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: ["avian"]
  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: ["monster-hunter"]
  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: ["avian"]
  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. }
  2007. //species
  2008. function getSpeciesInfo(speciesList) {
  2009. let result = new Set();
  2010. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2011. result.add(entry)
  2012. });
  2013. return Array.from(result);
  2014. };
  2015. function getSpeciesInfoHelper(species) {
  2016. if (!speciesData[species]) {
  2017. console.warn(species + " doesn't exist");
  2018. return [];
  2019. }
  2020. if (speciesData[species].parents) {
  2021. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2022. } else {
  2023. return [species];
  2024. }
  2025. }
  2026. characterMakers.push(() => makeCharacter(
  2027. {
  2028. name: "Fen",
  2029. species: ["crux"],
  2030. description: {
  2031. title: "Bio",
  2032. text: "Very furry. Sheds on everything."
  2033. },
  2034. tags: [
  2035. "anthro",
  2036. "goo"
  2037. ]
  2038. },
  2039. {
  2040. front: {
  2041. height: math.unit(12, "feet"),
  2042. weight: math.unit(2400, "lb"),
  2043. name: "Front",
  2044. image: {
  2045. source: "./media/characters/fen/front.svg",
  2046. extra: 1804/1562,
  2047. bottom: 205/2009
  2048. },
  2049. extraAttributes: {
  2050. pawSize: {
  2051. name: "Paw Size",
  2052. power: 2,
  2053. type: "area",
  2054. base: math.unit(0.35, "m^2")
  2055. }
  2056. }
  2057. },
  2058. diving: {
  2059. height: math.unit(4.9, "meters"),
  2060. weight: math.unit(2400, "lb"),
  2061. name: "Diving",
  2062. image: {
  2063. source: "./media/characters/fen/diving.svg"
  2064. }
  2065. },
  2066. goo: {
  2067. height: math.unit(12, "feet"),
  2068. weight: math.unit(3600, "lb"),
  2069. volume: math.unit(1000, "liters"),
  2070. preyCapacity: math.unit(6, "people"),
  2071. name: "Goo",
  2072. image: {
  2073. source: "./media/characters/fen/goo.svg",
  2074. extra: 1307/1071,
  2075. bottom: 134/1441
  2076. }
  2077. },
  2078. maw: {
  2079. height: math.unit(5.03, "feet"),
  2080. name: "Maw",
  2081. image: {
  2082. source: "./media/characters/fen/maw.svg"
  2083. }
  2084. },
  2085. gooCeiling: {
  2086. height: math.unit(6.6, "feet"),
  2087. weight: math.unit(3000, "lb"),
  2088. volume: math.unit(1000, "liters"),
  2089. preyCapacity: math.unit(6, "people"),
  2090. name: "Goo (Ceiling)",
  2091. image: {
  2092. source: "./media/characters/fen/goo-ceiling.svg"
  2093. }
  2094. },
  2095. tail: {
  2096. height: math.unit(12.1, "feet"),
  2097. name: "Tail",
  2098. image: {
  2099. source: "./media/characters/fen/tail.svg"
  2100. }
  2101. },
  2102. tailFull: {
  2103. height: math.unit(12.1, "feet"),
  2104. name: "Full Tail",
  2105. image: {
  2106. source: "./media/characters/fen/tail-full.svg"
  2107. }
  2108. },
  2109. back: {
  2110. height: math.unit(12, "feet"),
  2111. weight: math.unit(2400, "lb"),
  2112. name: "Back",
  2113. image: {
  2114. source: "./media/characters/fen/back.svg",
  2115. },
  2116. info: {
  2117. description: {
  2118. mode: "append",
  2119. text: "\n\nHe is not currently looking at you."
  2120. }
  2121. }
  2122. },
  2123. full: {
  2124. height: math.unit(1.85, "meter"),
  2125. weight: math.unit(3200, "lb"),
  2126. name: "Full",
  2127. image: {
  2128. source: "./media/characters/fen/full.svg",
  2129. extra: 1133/859,
  2130. bottom: 145/1278
  2131. },
  2132. info: {
  2133. description: {
  2134. mode: "append",
  2135. text: "\n\nMunch."
  2136. }
  2137. }
  2138. },
  2139. gooLounging: {
  2140. height: math.unit(4.53, "feet"),
  2141. weight: math.unit(3000, "lb"),
  2142. preyCapacity: math.unit(6, "people"),
  2143. name: "Goo (Lounging)",
  2144. image: {
  2145. source: "./media/characters/fen/goo-lounging.svg",
  2146. bottom: 116 / 613
  2147. }
  2148. },
  2149. lounging: {
  2150. height: math.unit(10.52, "feet"),
  2151. weight: math.unit(2400, "lb"),
  2152. name: "Lounging",
  2153. image: {
  2154. source: "./media/characters/fen/lounging.svg"
  2155. }
  2156. },
  2157. },
  2158. [
  2159. {
  2160. name: "Small",
  2161. height: math.unit(2.2428, "meter")
  2162. },
  2163. {
  2164. name: "Normal",
  2165. height: math.unit(12, "feet"),
  2166. default: true,
  2167. },
  2168. {
  2169. name: "Big",
  2170. height: math.unit(20, "feet")
  2171. },
  2172. {
  2173. name: "Minimacro",
  2174. height: math.unit(40, "feet"),
  2175. info: {
  2176. description: {
  2177. mode: "append",
  2178. text: "\n\nTOO DAMN BIG"
  2179. }
  2180. }
  2181. },
  2182. {
  2183. name: "Macro",
  2184. height: math.unit(100, "feet"),
  2185. info: {
  2186. description: {
  2187. mode: "append",
  2188. text: "\n\nTOO DAMN BIG"
  2189. }
  2190. }
  2191. },
  2192. {
  2193. name: "Megamacro",
  2194. height: math.unit(2, "miles")
  2195. },
  2196. {
  2197. name: "Gigamacro",
  2198. height: math.unit(10, "earths")
  2199. },
  2200. ]
  2201. ))
  2202. characterMakers.push(() => makeCharacter(
  2203. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2204. {
  2205. front: {
  2206. height: math.unit(183, "cm"),
  2207. weight: math.unit(80, "kg"),
  2208. name: "Front",
  2209. image: {
  2210. source: "./media/characters/sofia-fluttertail/front.svg",
  2211. bottom: 0.01,
  2212. extra: 2154 / 2081
  2213. }
  2214. },
  2215. frontAlt: {
  2216. height: math.unit(183, "cm"),
  2217. weight: math.unit(80, "kg"),
  2218. name: "Front (alt)",
  2219. image: {
  2220. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2221. }
  2222. },
  2223. back: {
  2224. height: math.unit(183, "cm"),
  2225. weight: math.unit(80, "kg"),
  2226. name: "Back",
  2227. image: {
  2228. source: "./media/characters/sofia-fluttertail/back.svg"
  2229. }
  2230. },
  2231. kneeling: {
  2232. height: math.unit(125, "cm"),
  2233. weight: math.unit(80, "kg"),
  2234. name: "Kneeling",
  2235. image: {
  2236. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2237. extra: 1033 / 977,
  2238. bottom: 23.7 / 1057
  2239. }
  2240. },
  2241. maw: {
  2242. height: math.unit(183 / 5, "cm"),
  2243. name: "Maw",
  2244. image: {
  2245. source: "./media/characters/sofia-fluttertail/maw.svg"
  2246. }
  2247. },
  2248. mawcloseup: {
  2249. height: math.unit(183 / 5 * 0.41, "cm"),
  2250. name: "Maw (Closeup)",
  2251. image: {
  2252. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2253. }
  2254. },
  2255. paws: {
  2256. height: math.unit(1.17, "feet"),
  2257. name: "Paws",
  2258. image: {
  2259. source: "./media/characters/sofia-fluttertail/paws.svg",
  2260. extra: 851 / 851,
  2261. bottom: 17 / 868
  2262. }
  2263. },
  2264. },
  2265. [
  2266. {
  2267. name: "Normal",
  2268. height: math.unit(1.83, "meter")
  2269. },
  2270. {
  2271. name: "Size Thief",
  2272. height: math.unit(18, "feet")
  2273. },
  2274. {
  2275. name: "50 Foot Collie",
  2276. height: math.unit(50, "feet")
  2277. },
  2278. {
  2279. name: "Macro",
  2280. height: math.unit(96, "feet"),
  2281. default: true
  2282. },
  2283. {
  2284. name: "Megamerger",
  2285. height: math.unit(650, "feet")
  2286. },
  2287. ]
  2288. ))
  2289. characterMakers.push(() => makeCharacter(
  2290. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2291. {
  2292. front: {
  2293. height: math.unit(7, "feet"),
  2294. weight: math.unit(100, "kg"),
  2295. name: "Front",
  2296. image: {
  2297. source: "./media/characters/march/front.svg",
  2298. extra: 1992/1851,
  2299. bottom: 39/2031
  2300. }
  2301. },
  2302. foot: {
  2303. height: math.unit(0.9, "feet"),
  2304. name: "Foot",
  2305. image: {
  2306. source: "./media/characters/march/foot.svg"
  2307. }
  2308. },
  2309. },
  2310. [
  2311. {
  2312. name: "Normal",
  2313. height: math.unit(7.9, "feet")
  2314. },
  2315. {
  2316. name: "Macro",
  2317. height: math.unit(220, "meters")
  2318. },
  2319. {
  2320. name: "Megamacro",
  2321. height: math.unit(2.98, "km"),
  2322. default: true
  2323. },
  2324. {
  2325. name: "Gigamacro",
  2326. height: math.unit(15963, "km")
  2327. },
  2328. {
  2329. name: "Teramacro",
  2330. height: math.unit(2980000000, "km")
  2331. },
  2332. {
  2333. name: "Examacro",
  2334. height: math.unit(250, "parsecs")
  2335. },
  2336. ]
  2337. ))
  2338. characterMakers.push(() => makeCharacter(
  2339. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2340. {
  2341. front: {
  2342. height: math.unit(6, "feet"),
  2343. weight: math.unit(60, "kg"),
  2344. name: "Front",
  2345. image: {
  2346. source: "./media/characters/noir/front.svg",
  2347. extra: 1,
  2348. bottom: 0.032
  2349. }
  2350. },
  2351. },
  2352. [
  2353. {
  2354. name: "Normal",
  2355. height: math.unit(6.6, "feet")
  2356. },
  2357. {
  2358. name: "Macro",
  2359. height: math.unit(500, "feet")
  2360. },
  2361. {
  2362. name: "Megamacro",
  2363. height: math.unit(2.5, "km"),
  2364. default: true
  2365. },
  2366. {
  2367. name: "Gigamacro",
  2368. height: math.unit(22500, "km")
  2369. },
  2370. {
  2371. name: "Teramacro",
  2372. height: math.unit(2500000000, "km")
  2373. },
  2374. {
  2375. name: "Examacro",
  2376. height: math.unit(200, "parsecs")
  2377. },
  2378. ]
  2379. ))
  2380. characterMakers.push(() => makeCharacter(
  2381. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2382. {
  2383. front: {
  2384. height: math.unit(7, "feet"),
  2385. weight: math.unit(100, "kg"),
  2386. name: "Front",
  2387. image: {
  2388. source: "./media/characters/okuri/front.svg",
  2389. extra: 739/665,
  2390. bottom: 39/778
  2391. }
  2392. },
  2393. back: {
  2394. height: math.unit(7, "feet"),
  2395. weight: math.unit(100, "kg"),
  2396. name: "Back",
  2397. image: {
  2398. source: "./media/characters/okuri/back.svg",
  2399. extra: 734/653,
  2400. bottom: 13/747
  2401. }
  2402. },
  2403. sitting: {
  2404. height: math.unit(2.95, "feet"),
  2405. weight: math.unit(100, "kg"),
  2406. name: "Sitting",
  2407. image: {
  2408. source: "./media/characters/okuri/sitting.svg",
  2409. extra: 370/318,
  2410. bottom: 99/469
  2411. }
  2412. },
  2413. },
  2414. [
  2415. {
  2416. name: "Smallest",
  2417. height: math.unit(5 + 2/12, "feet")
  2418. },
  2419. {
  2420. name: "Smaller",
  2421. height: math.unit(300, "feet")
  2422. },
  2423. {
  2424. name: "Small",
  2425. height: math.unit(1000, "feet")
  2426. },
  2427. {
  2428. name: "Macro",
  2429. height: math.unit(1, "mile")
  2430. },
  2431. {
  2432. name: "Mega Macro (Small)",
  2433. height: math.unit(20, "km")
  2434. },
  2435. {
  2436. name: "Mega Macro (Large)",
  2437. height: math.unit(600, "km")
  2438. },
  2439. {
  2440. name: "Giga Macro",
  2441. height: math.unit(10000, "km")
  2442. },
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(577560, "km"),
  2446. default: true
  2447. },
  2448. {
  2449. name: "Large",
  2450. height: math.unit(4, "galaxies")
  2451. },
  2452. {
  2453. name: "Largest",
  2454. height: math.unit(15, "multiverses")
  2455. },
  2456. ]
  2457. ))
  2458. characterMakers.push(() => makeCharacter(
  2459. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2460. {
  2461. front: {
  2462. height: math.unit(7, "feet"),
  2463. weight: math.unit(100, "kg"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/manny/front.svg",
  2467. extra: 1,
  2468. bottom: 0.06
  2469. }
  2470. },
  2471. back: {
  2472. height: math.unit(7, "feet"),
  2473. weight: math.unit(100, "kg"),
  2474. name: "Back",
  2475. image: {
  2476. source: "./media/characters/manny/back.svg",
  2477. extra: 1,
  2478. bottom: 0.014
  2479. }
  2480. },
  2481. },
  2482. [
  2483. {
  2484. name: "Normal",
  2485. height: math.unit(7, "feet"),
  2486. },
  2487. {
  2488. name: "Macro",
  2489. height: math.unit(78, "feet"),
  2490. default: true
  2491. },
  2492. {
  2493. name: "Macro+",
  2494. height: math.unit(300, "meters")
  2495. },
  2496. {
  2497. name: "Macro++",
  2498. height: math.unit(2400, "meters")
  2499. },
  2500. {
  2501. name: "Megamacro",
  2502. height: math.unit(5167, "meters")
  2503. },
  2504. {
  2505. name: "Gigamacro",
  2506. height: math.unit(41769, "miles")
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(7, "feet"),
  2515. weight: math.unit(100, "kg"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/adake/front-1.svg"
  2519. }
  2520. },
  2521. frontAlt: {
  2522. height: math.unit(7, "feet"),
  2523. weight: math.unit(100, "kg"),
  2524. name: "Front (Alt)",
  2525. image: {
  2526. source: "./media/characters/adake/front-2.svg",
  2527. extra: 1,
  2528. bottom: 0.01
  2529. }
  2530. },
  2531. back: {
  2532. height: math.unit(7, "feet"),
  2533. weight: math.unit(100, "kg"),
  2534. name: "Back",
  2535. image: {
  2536. source: "./media/characters/adake/back.svg",
  2537. }
  2538. },
  2539. kneel: {
  2540. height: math.unit(5.385, "feet"),
  2541. weight: math.unit(100, "kg"),
  2542. name: "Kneeling",
  2543. image: {
  2544. source: "./media/characters/adake/kneel.svg",
  2545. bottom: 0.052
  2546. }
  2547. },
  2548. },
  2549. [
  2550. {
  2551. name: "Normal",
  2552. height: math.unit(7, "feet"),
  2553. },
  2554. {
  2555. name: "Macro",
  2556. height: math.unit(78, "feet"),
  2557. default: true
  2558. },
  2559. {
  2560. name: "Macro+",
  2561. height: math.unit(300, "meters")
  2562. },
  2563. {
  2564. name: "Macro++",
  2565. height: math.unit(2400, "meters")
  2566. },
  2567. {
  2568. name: "Megamacro",
  2569. height: math.unit(5167, "meters")
  2570. },
  2571. {
  2572. name: "Gigamacro",
  2573. height: math.unit(41769, "miles")
  2574. },
  2575. ]
  2576. ))
  2577. characterMakers.push(() => makeCharacter(
  2578. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2579. {
  2580. front: {
  2581. height: math.unit(1.65, "meters"),
  2582. weight: math.unit(50, "kg"),
  2583. name: "Front",
  2584. image: {
  2585. source: "./media/characters/elijah/front.svg",
  2586. extra: 858 / 830,
  2587. bottom: 95.5 / 953.8559
  2588. }
  2589. },
  2590. back: {
  2591. height: math.unit(1.65, "meters"),
  2592. weight: math.unit(50, "kg"),
  2593. name: "Back",
  2594. image: {
  2595. source: "./media/characters/elijah/back.svg",
  2596. extra: 895 / 850,
  2597. bottom: 5.3 / 897.956
  2598. }
  2599. },
  2600. frontNsfw: {
  2601. height: math.unit(1.65, "meters"),
  2602. weight: math.unit(50, "kg"),
  2603. name: "Front (NSFW)",
  2604. image: {
  2605. source: "./media/characters/elijah/front-nsfw.svg",
  2606. extra: 858 / 830,
  2607. bottom: 95.5 / 953.8559
  2608. }
  2609. },
  2610. backNsfw: {
  2611. height: math.unit(1.65, "meters"),
  2612. weight: math.unit(50, "kg"),
  2613. name: "Back (NSFW)",
  2614. image: {
  2615. source: "./media/characters/elijah/back-nsfw.svg",
  2616. extra: 895 / 850,
  2617. bottom: 5.3 / 897.956
  2618. }
  2619. },
  2620. dick: {
  2621. height: math.unit(1, "feet"),
  2622. name: "Dick",
  2623. image: {
  2624. source: "./media/characters/elijah/dick.svg"
  2625. }
  2626. },
  2627. beakOpen: {
  2628. height: math.unit(1.25, "feet"),
  2629. name: "Beak (Open)",
  2630. image: {
  2631. source: "./media/characters/elijah/beak-open.svg"
  2632. }
  2633. },
  2634. beakShut: {
  2635. height: math.unit(1.25, "feet"),
  2636. name: "Beak (Shut)",
  2637. image: {
  2638. source: "./media/characters/elijah/beak-shut.svg"
  2639. }
  2640. },
  2641. footFlexing: {
  2642. height: math.unit(1.61, "feet"),
  2643. name: "Foot (Flexing)",
  2644. image: {
  2645. source: "./media/characters/elijah/foot-flexing.svg"
  2646. }
  2647. },
  2648. footStepping: {
  2649. height: math.unit(1.44, "feet"),
  2650. name: "Foot (Stepping)",
  2651. image: {
  2652. source: "./media/characters/elijah/foot-stepping.svg"
  2653. }
  2654. },
  2655. plantigradeLeg: {
  2656. height: math.unit(2.34, "feet"),
  2657. name: "Plantigrade Leg",
  2658. image: {
  2659. source: "./media/characters/elijah/plantigrade-leg.svg"
  2660. }
  2661. },
  2662. plantigradeFootLeft: {
  2663. height: math.unit(0.9, "feet"),
  2664. name: "Plantigrade Foot (Left)",
  2665. image: {
  2666. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2667. }
  2668. },
  2669. plantigradeFootRight: {
  2670. height: math.unit(0.9, "feet"),
  2671. name: "Plantigrade Foot (Right)",
  2672. image: {
  2673. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2674. }
  2675. },
  2676. },
  2677. [
  2678. {
  2679. name: "Normal",
  2680. height: math.unit(1.65, "meters")
  2681. },
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(55, "meters"),
  2685. default: true
  2686. },
  2687. {
  2688. name: "Macro+",
  2689. height: math.unit(105, "meters")
  2690. },
  2691. ]
  2692. ))
  2693. characterMakers.push(() => makeCharacter(
  2694. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2695. {
  2696. front: {
  2697. height: math.unit(7 + 2/12, "feet"),
  2698. weight: math.unit(320, "kg"),
  2699. name: "Front",
  2700. image: {
  2701. source: "./media/characters/rai/front.svg",
  2702. extra: 1802/1696,
  2703. bottom: 68/1870
  2704. }
  2705. },
  2706. frontDressed: {
  2707. height: math.unit(7 + 2/12, "feet"),
  2708. weight: math.unit(320, "kg"),
  2709. name: "Front (Dressed)",
  2710. image: {
  2711. source: "./media/characters/rai/front-dressed.svg",
  2712. extra: 1802/1696,
  2713. bottom: 68/1870
  2714. }
  2715. },
  2716. side: {
  2717. height: math.unit(7 + 2/12, "feet"),
  2718. weight: math.unit(320, "kg"),
  2719. name: "Side",
  2720. image: {
  2721. source: "./media/characters/rai/side.svg",
  2722. extra: 1789/1710,
  2723. bottom: 115/1904
  2724. }
  2725. },
  2726. back: {
  2727. height: math.unit(7 + 2/12, "feet"),
  2728. weight: math.unit(320, "kg"),
  2729. name: "Back",
  2730. image: {
  2731. source: "./media/characters/rai/back.svg",
  2732. extra: 1770/1707,
  2733. bottom: 28/1798
  2734. }
  2735. },
  2736. feral: {
  2737. height: math.unit(9.5, "feet"),
  2738. weight: math.unit(640, "kg"),
  2739. name: "Feral",
  2740. image: {
  2741. source: "./media/characters/rai/feral.svg",
  2742. extra: 945/553,
  2743. bottom: 176/1121
  2744. }
  2745. },
  2746. dragon: {
  2747. height: math.unit(23, "feet"),
  2748. weight: math.unit(50000, "lb"),
  2749. name: "Dragon",
  2750. image: {
  2751. source: "./media/characters/rai/dragon.svg",
  2752. extra: 2498 / 2030,
  2753. bottom: 85.2 / 2584
  2754. }
  2755. },
  2756. maw: {
  2757. height: math.unit(1.69, "feet"),
  2758. name: "Maw",
  2759. image: {
  2760. source: "./media/characters/rai/maw.svg"
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Normal",
  2767. height: math.unit(7 + 2/12, "feet")
  2768. },
  2769. {
  2770. name: "Big",
  2771. height: math.unit(11, "feet")
  2772. },
  2773. {
  2774. name: "Macro",
  2775. height: math.unit(302, "feet"),
  2776. default: true
  2777. },
  2778. ]
  2779. ))
  2780. characterMakers.push(() => makeCharacter(
  2781. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2782. {
  2783. frontDressed: {
  2784. height: math.unit(216, "feet"),
  2785. weight: math.unit(7000000, "lb"),
  2786. name: "Front (Dressed)",
  2787. image: {
  2788. source: "./media/characters/jazzy/front-dressed.svg",
  2789. extra: 2738 / 2651,
  2790. bottom: 41.8 / 2786
  2791. }
  2792. },
  2793. backDressed: {
  2794. height: math.unit(216, "feet"),
  2795. weight: math.unit(7000000, "lb"),
  2796. name: "Back (Dressed)",
  2797. image: {
  2798. source: "./media/characters/jazzy/back-dressed.svg",
  2799. extra: 2775 / 2673,
  2800. bottom: 36.8 / 2817
  2801. }
  2802. },
  2803. front: {
  2804. height: math.unit(216, "feet"),
  2805. weight: math.unit(7000000, "lb"),
  2806. name: "Front",
  2807. image: {
  2808. source: "./media/characters/jazzy/front.svg",
  2809. extra: 2738 / 2651,
  2810. bottom: 41.8 / 2786
  2811. }
  2812. },
  2813. back: {
  2814. height: math.unit(216, "feet"),
  2815. weight: math.unit(7000000, "lb"),
  2816. name: "Back",
  2817. image: {
  2818. source: "./media/characters/jazzy/back.svg",
  2819. extra: 2775 / 2673,
  2820. bottom: 36.8 / 2817
  2821. }
  2822. },
  2823. maw: {
  2824. height: math.unit(20, "feet"),
  2825. name: "Maw",
  2826. image: {
  2827. source: "./media/characters/jazzy/maw.svg"
  2828. }
  2829. },
  2830. paws: {
  2831. height: math.unit(27.5, "feet"),
  2832. name: "Paws",
  2833. image: {
  2834. source: "./media/characters/jazzy/paws.svg"
  2835. }
  2836. },
  2837. eye: {
  2838. height: math.unit(4.4, "feet"),
  2839. name: "Eye",
  2840. image: {
  2841. source: "./media/characters/jazzy/eye.svg"
  2842. }
  2843. },
  2844. droneOffense: {
  2845. height: math.unit(9.5, "inches"),
  2846. name: "Drone (Offense)",
  2847. image: {
  2848. source: "./media/characters/jazzy/drone-offense.svg"
  2849. }
  2850. },
  2851. droneRecon: {
  2852. height: math.unit(9.5, "inches"),
  2853. name: "Drone (Recon)",
  2854. image: {
  2855. source: "./media/characters/jazzy/drone-recon.svg"
  2856. }
  2857. },
  2858. droneDefense: {
  2859. height: math.unit(9.5, "inches"),
  2860. name: "Drone (Defense)",
  2861. image: {
  2862. source: "./media/characters/jazzy/drone-defense.svg"
  2863. }
  2864. },
  2865. },
  2866. [
  2867. {
  2868. name: "Macro",
  2869. height: math.unit(216, "feet"),
  2870. default: true
  2871. },
  2872. ]
  2873. ))
  2874. characterMakers.push(() => makeCharacter(
  2875. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2876. {
  2877. front: {
  2878. height: math.unit(9 + 6/12, "feet"),
  2879. weight: math.unit(700, "lb"),
  2880. name: "Front",
  2881. image: {
  2882. source: "./media/characters/flamm/front.svg",
  2883. extra: 1751/1632,
  2884. bottom: 46/1797
  2885. }
  2886. },
  2887. buff: {
  2888. height: math.unit(9 + 6/12, "feet"),
  2889. weight: math.unit(950, "lb"),
  2890. name: "Buff",
  2891. image: {
  2892. source: "./media/characters/flamm/buff.svg",
  2893. extra: 3018/2874,
  2894. bottom: 221/3239
  2895. }
  2896. },
  2897. },
  2898. [
  2899. {
  2900. name: "Normal",
  2901. height: math.unit(9.5, "feet")
  2902. },
  2903. {
  2904. name: "Macro",
  2905. height: math.unit(200, "feet"),
  2906. default: true
  2907. },
  2908. ]
  2909. ))
  2910. characterMakers.push(() => makeCharacter(
  2911. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2912. {
  2913. front: {
  2914. height: math.unit(5 + 3/12, "feet"),
  2915. weight: math.unit(60, "kg"),
  2916. name: "Front",
  2917. image: {
  2918. source: "./media/characters/zephiro/front.svg",
  2919. extra: 2309 / 2162,
  2920. bottom: 0.069
  2921. }
  2922. },
  2923. side: {
  2924. height: math.unit(5 + 3/12, "feet"),
  2925. weight: math.unit(60, "kg"),
  2926. name: "Side",
  2927. image: {
  2928. source: "./media/characters/zephiro/side.svg",
  2929. extra: 2403 / 2279,
  2930. bottom: 0.015
  2931. }
  2932. },
  2933. back: {
  2934. height: math.unit(5 + 3/12, "feet"),
  2935. weight: math.unit(60, "kg"),
  2936. name: "Back",
  2937. image: {
  2938. source: "./media/characters/zephiro/back.svg",
  2939. extra: 2373 / 2244,
  2940. bottom: 0.013
  2941. }
  2942. },
  2943. hand: {
  2944. height: math.unit(0.68, "feet"),
  2945. name: "Hand",
  2946. image: {
  2947. source: "./media/characters/zephiro/hand.svg"
  2948. }
  2949. },
  2950. paw: {
  2951. height: math.unit(1, "feet"),
  2952. name: "Paw",
  2953. image: {
  2954. source: "./media/characters/zephiro/paw.svg"
  2955. }
  2956. },
  2957. beans: {
  2958. height: math.unit(0.93, "feet"),
  2959. name: "Beans",
  2960. image: {
  2961. source: "./media/characters/zephiro/beans.svg"
  2962. }
  2963. },
  2964. },
  2965. [
  2966. {
  2967. name: "Micro",
  2968. height: math.unit(3, "inches")
  2969. },
  2970. {
  2971. name: "Normal",
  2972. height: math.unit(5 + 3 / 12, "feet"),
  2973. default: true
  2974. },
  2975. {
  2976. name: "Macro",
  2977. height: math.unit(118, "feet")
  2978. },
  2979. ]
  2980. ))
  2981. characterMakers.push(() => makeCharacter(
  2982. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2983. {
  2984. front: {
  2985. height: math.unit(5, "feet"),
  2986. weight: math.unit(90, "kg"),
  2987. name: "Front",
  2988. image: {
  2989. source: "./media/characters/fory/front.svg",
  2990. extra: 2862 / 2674,
  2991. bottom: 180 / 3043.8
  2992. }
  2993. },
  2994. back: {
  2995. height: math.unit(5, "feet"),
  2996. weight: math.unit(90, "kg"),
  2997. name: "Back",
  2998. image: {
  2999. source: "./media/characters/fory/back.svg",
  3000. extra: 2962 / 2791,
  3001. bottom: 106 / 3071.8
  3002. }
  3003. },
  3004. foot: {
  3005. height: math.unit(2.14, "feet"),
  3006. name: "Foot",
  3007. image: {
  3008. source: "./media/characters/fory/foot.svg"
  3009. }
  3010. },
  3011. },
  3012. [
  3013. {
  3014. name: "Normal",
  3015. height: math.unit(5, "feet")
  3016. },
  3017. {
  3018. name: "Macro",
  3019. height: math.unit(50, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Megamacro",
  3024. height: math.unit(10, "miles")
  3025. },
  3026. {
  3027. name: "Gigamacro",
  3028. height: math.unit(5, "earths")
  3029. },
  3030. ]
  3031. ))
  3032. characterMakers.push(() => makeCharacter(
  3033. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3034. {
  3035. front: {
  3036. height: math.unit(7, "feet"),
  3037. weight: math.unit(90, "kg"),
  3038. name: "Front",
  3039. image: {
  3040. source: "./media/characters/kurrikage/front.svg",
  3041. extra: 1845/1733,
  3042. bottom: 119/1964
  3043. }
  3044. },
  3045. back: {
  3046. height: math.unit(7, "feet"),
  3047. weight: math.unit(90, "kg"),
  3048. name: "Back",
  3049. image: {
  3050. source: "./media/characters/kurrikage/back.svg",
  3051. extra: 1790/1677,
  3052. bottom: 61/1851
  3053. }
  3054. },
  3055. dressed: {
  3056. height: math.unit(7, "feet"),
  3057. weight: math.unit(90, "kg"),
  3058. name: "Dressed",
  3059. image: {
  3060. source: "./media/characters/kurrikage/dressed.svg",
  3061. extra: 1845/1733,
  3062. bottom: 119/1964
  3063. }
  3064. },
  3065. foot: {
  3066. height: math.unit(1.5, "feet"),
  3067. name: "Foot",
  3068. image: {
  3069. source: "./media/characters/kurrikage/foot.svg"
  3070. }
  3071. },
  3072. staff: {
  3073. height: math.unit(6.7, "feet"),
  3074. name: "Staff",
  3075. image: {
  3076. source: "./media/characters/kurrikage/staff.svg"
  3077. }
  3078. },
  3079. peek: {
  3080. height: math.unit(1.05, "feet"),
  3081. name: "Peeking",
  3082. image: {
  3083. source: "./media/characters/kurrikage/peek.svg",
  3084. bottom: 0.08
  3085. }
  3086. },
  3087. },
  3088. [
  3089. {
  3090. name: "Normal",
  3091. height: math.unit(12, "feet"),
  3092. default: true
  3093. },
  3094. {
  3095. name: "Big",
  3096. height: math.unit(20, "feet")
  3097. },
  3098. {
  3099. name: "Macro",
  3100. height: math.unit(500, "feet")
  3101. },
  3102. {
  3103. name: "Megamacro",
  3104. height: math.unit(20, "miles")
  3105. },
  3106. ]
  3107. ))
  3108. characterMakers.push(() => makeCharacter(
  3109. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3110. {
  3111. front: {
  3112. height: math.unit(6, "feet"),
  3113. weight: math.unit(75, "kg"),
  3114. name: "Front",
  3115. image: {
  3116. source: "./media/characters/shingo/front.svg",
  3117. extra: 1900/1825,
  3118. bottom: 82/1982
  3119. }
  3120. },
  3121. side: {
  3122. height: math.unit(6, "feet"),
  3123. weight: math.unit(75, "kg"),
  3124. name: "Side",
  3125. image: {
  3126. source: "./media/characters/shingo/side.svg",
  3127. extra: 1930/1865,
  3128. bottom: 16/1946
  3129. }
  3130. },
  3131. back: {
  3132. height: math.unit(6, "feet"),
  3133. weight: math.unit(75, "kg"),
  3134. name: "Back",
  3135. image: {
  3136. source: "./media/characters/shingo/back.svg",
  3137. extra: 1922/1852,
  3138. bottom: 16/1938
  3139. }
  3140. },
  3141. frontDressed: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(150, "lb"),
  3144. name: "Front-dressed",
  3145. image: {
  3146. source: "./media/characters/shingo/front-dressed.svg",
  3147. extra: 1900/1825,
  3148. bottom: 82/1982
  3149. }
  3150. },
  3151. paw: {
  3152. height: math.unit(1.29, "feet"),
  3153. name: "Paw",
  3154. image: {
  3155. source: "./media/characters/shingo/paw.svg"
  3156. }
  3157. },
  3158. hand: {
  3159. height: math.unit(1.07, "feet"),
  3160. name: "Hand",
  3161. image: {
  3162. source: "./media/characters/shingo/hand.svg"
  3163. }
  3164. },
  3165. frontAlt: {
  3166. height: math.unit(6, "feet"),
  3167. weight: math.unit(75, "kg"),
  3168. name: "Front (Alt)",
  3169. image: {
  3170. source: "./media/characters/shingo/front-alt.svg",
  3171. extra: 3511 / 3338,
  3172. bottom: 0.005
  3173. }
  3174. },
  3175. frontAlt2: {
  3176. height: math.unit(6, "feet"),
  3177. weight: math.unit(75, "kg"),
  3178. name: "Front (Alt 2)",
  3179. image: {
  3180. source: "./media/characters/shingo/front-alt-2.svg",
  3181. extra: 706/681,
  3182. bottom: 11/717
  3183. }
  3184. },
  3185. pawAlt: {
  3186. height: math.unit(1, "feet"),
  3187. name: "Paw (Alt)",
  3188. image: {
  3189. source: "./media/characters/shingo/paw-alt.svg"
  3190. }
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Micro",
  3196. height: math.unit(4, "inches")
  3197. },
  3198. {
  3199. name: "Normal",
  3200. height: math.unit(6, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Macro",
  3205. height: math.unit(108, "feet")
  3206. },
  3207. {
  3208. name: "Macro+",
  3209. height: math.unit(1500, "feet")
  3210. },
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3215. {
  3216. side: {
  3217. height: math.unit(6, "feet"),
  3218. weight: math.unit(75, "kg"),
  3219. name: "Side",
  3220. image: {
  3221. source: "./media/characters/aigey/side.svg"
  3222. }
  3223. },
  3224. },
  3225. [
  3226. {
  3227. name: "Macro",
  3228. height: math.unit(200, "feet"),
  3229. default: true
  3230. },
  3231. {
  3232. name: "Megamacro",
  3233. height: math.unit(100, "miles")
  3234. },
  3235. ]
  3236. )
  3237. )
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3240. {
  3241. front: {
  3242. height: math.unit(5 + 5 / 12, "feet"),
  3243. weight: math.unit(75, "kg"),
  3244. name: "Front",
  3245. image: {
  3246. source: "./media/characters/natasha/front.svg",
  3247. extra: 859 / 824,
  3248. bottom: 23 / 879.6
  3249. }
  3250. },
  3251. frontNsfw: {
  3252. height: math.unit(5 + 5 / 12, "feet"),
  3253. weight: math.unit(75, "kg"),
  3254. name: "Front (NSFW)",
  3255. image: {
  3256. source: "./media/characters/natasha/front-nsfw.svg",
  3257. extra: 859 / 824,
  3258. bottom: 23 / 879.6
  3259. }
  3260. },
  3261. frontErect: {
  3262. height: math.unit(5 + 5 / 12, "feet"),
  3263. weight: math.unit(75, "kg"),
  3264. name: "Front (Erect)",
  3265. image: {
  3266. source: "./media/characters/natasha/front-erect.svg",
  3267. extra: 859 / 824,
  3268. bottom: 23 / 879.6
  3269. }
  3270. },
  3271. back: {
  3272. height: math.unit(5 + 5 / 12, "feet"),
  3273. weight: math.unit(75, "kg"),
  3274. name: "Back",
  3275. image: {
  3276. source: "./media/characters/natasha/back.svg",
  3277. extra: 887.9 / 852.6,
  3278. bottom: 9.7 / 896.4
  3279. }
  3280. },
  3281. backAlt: {
  3282. height: math.unit(5 + 5 / 12, "feet"),
  3283. weight: math.unit(75, "kg"),
  3284. name: "Back (Alt)",
  3285. image: {
  3286. source: "./media/characters/natasha/back-alt.svg",
  3287. extra: 1236.7 / 1192,
  3288. bottom: 22.3 / 1258.2
  3289. }
  3290. },
  3291. dick: {
  3292. height: math.unit(1.772, "feet"),
  3293. name: "Dick",
  3294. image: {
  3295. source: "./media/characters/natasha/dick.svg"
  3296. }
  3297. },
  3298. paw: {
  3299. height: math.unit(0.250, "meters"),
  3300. name: "Paw",
  3301. image: {
  3302. source: "./media/characters/natasha/paw.svg"
  3303. },
  3304. extraAttributes: {
  3305. "toeSize": {
  3306. name: "Toe Size",
  3307. power: 2,
  3308. type: "area",
  3309. base: math.unit(0.0024, "m^2")
  3310. },
  3311. "padSize": {
  3312. name: "Pad Size",
  3313. power: 2,
  3314. type: "area",
  3315. base: math.unit(0.00889, "m^2")
  3316. },
  3317. "pawSize": {
  3318. name: "Paw Size",
  3319. power: 2,
  3320. type: "area",
  3321. base: math.unit(0.023667, "m^2")
  3322. },
  3323. }
  3324. },
  3325. },
  3326. [
  3327. {
  3328. name: "Normal",
  3329. height: math.unit(5 + 5 / 12, "feet")
  3330. },
  3331. {
  3332. name: "Large",
  3333. height: math.unit(12, "feet")
  3334. },
  3335. {
  3336. name: "Macro",
  3337. height: math.unit(100, "feet"),
  3338. default: true
  3339. },
  3340. {
  3341. name: "Macro+",
  3342. height: math.unit(260, "feet")
  3343. },
  3344. {
  3345. name: "Macro++",
  3346. height: math.unit(1, "mile")
  3347. },
  3348. ]
  3349. ))
  3350. characterMakers.push(() => makeCharacter(
  3351. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3352. {
  3353. front: {
  3354. height: math.unit(6, "feet"),
  3355. weight: math.unit(75, "kg"),
  3356. name: "Front",
  3357. image: {
  3358. source: "./media/characters/malik/front.svg",
  3359. extra: 1750/1561,
  3360. bottom: 80/1830
  3361. }
  3362. },
  3363. side: {
  3364. height: math.unit(6, "feet"),
  3365. weight: math.unit(75, "kg"),
  3366. name: "Side",
  3367. image: {
  3368. source: "./media/characters/malik/side.svg",
  3369. extra: 1802/1685,
  3370. bottom: 42/1844
  3371. }
  3372. },
  3373. back: {
  3374. height: math.unit(6, "feet"),
  3375. weight: math.unit(75, "kg"),
  3376. name: "Back",
  3377. image: {
  3378. source: "./media/characters/malik/back.svg",
  3379. extra: 1803/1607,
  3380. bottom: 33/1836
  3381. }
  3382. },
  3383. },
  3384. [
  3385. {
  3386. name: "Macro",
  3387. height: math.unit(156, "feet"),
  3388. default: true
  3389. },
  3390. {
  3391. name: "Macro+",
  3392. height: math.unit(1188, "feet")
  3393. },
  3394. ]
  3395. ))
  3396. characterMakers.push(() => makeCharacter(
  3397. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3398. {
  3399. front: {
  3400. height: math.unit(6, "feet"),
  3401. weight: math.unit(75, "kg"),
  3402. name: "Front",
  3403. image: {
  3404. source: "./media/characters/sefer/front.svg",
  3405. extra: 848 / 659,
  3406. bottom: 28.3 / 876.442
  3407. }
  3408. },
  3409. back: {
  3410. height: math.unit(6, "feet"),
  3411. weight: math.unit(75, "kg"),
  3412. name: "Back",
  3413. image: {
  3414. source: "./media/characters/sefer/back.svg",
  3415. extra: 864 / 695,
  3416. bottom: 10 / 871
  3417. }
  3418. },
  3419. frontDressed: {
  3420. height: math.unit(6, "feet"),
  3421. weight: math.unit(75, "kg"),
  3422. name: "Front (Dressed)",
  3423. image: {
  3424. source: "./media/characters/sefer/front-dressed.svg",
  3425. extra: 839 / 653,
  3426. bottom: 37.6 / 878
  3427. }
  3428. },
  3429. },
  3430. [
  3431. {
  3432. name: "Normal",
  3433. height: math.unit(6, "feet"),
  3434. default: true
  3435. },
  3436. ]
  3437. ))
  3438. characterMakers.push(() => makeCharacter(
  3439. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3440. {
  3441. body: {
  3442. height: math.unit(2.2428, "meter"),
  3443. weight: math.unit(124.738, "kg"),
  3444. name: "Body",
  3445. image: {
  3446. extra: 1225 / 1050,
  3447. source: "./media/characters/north/front.svg"
  3448. }
  3449. }
  3450. },
  3451. [
  3452. {
  3453. name: "Micro",
  3454. height: math.unit(4, "inches")
  3455. },
  3456. {
  3457. name: "Macro",
  3458. height: math.unit(63, "meters")
  3459. },
  3460. {
  3461. name: "Megamacro",
  3462. height: math.unit(101, "miles"),
  3463. default: true
  3464. }
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3469. {
  3470. angled: {
  3471. height: math.unit(4, "meter"),
  3472. weight: math.unit(150, "kg"),
  3473. name: "Angled",
  3474. image: {
  3475. source: "./media/characters/talan/angled-sfw.svg",
  3476. bottom: 29 / 3734
  3477. }
  3478. },
  3479. angledNsfw: {
  3480. height: math.unit(4, "meter"),
  3481. weight: math.unit(150, "kg"),
  3482. name: "Angled (NSFW)",
  3483. image: {
  3484. source: "./media/characters/talan/angled-nsfw.svg",
  3485. bottom: 29 / 3734
  3486. }
  3487. },
  3488. frontNsfw: {
  3489. height: math.unit(4, "meter"),
  3490. weight: math.unit(150, "kg"),
  3491. name: "Front (NSFW)",
  3492. image: {
  3493. source: "./media/characters/talan/front-nsfw.svg",
  3494. bottom: 29 / 3734
  3495. }
  3496. },
  3497. sideNsfw: {
  3498. height: math.unit(4, "meter"),
  3499. weight: math.unit(150, "kg"),
  3500. name: "Side (NSFW)",
  3501. image: {
  3502. source: "./media/characters/talan/side-nsfw.svg",
  3503. bottom: 29 / 3734
  3504. }
  3505. },
  3506. back: {
  3507. height: math.unit(4, "meter"),
  3508. weight: math.unit(150, "kg"),
  3509. name: "Back",
  3510. image: {
  3511. source: "./media/characters/talan/back.svg"
  3512. }
  3513. },
  3514. dickBottom: {
  3515. height: math.unit(0.621, "meter"),
  3516. name: "Dick (Bottom)",
  3517. image: {
  3518. source: "./media/characters/talan/dick-bottom.svg"
  3519. }
  3520. },
  3521. dickTop: {
  3522. height: math.unit(0.621, "meter"),
  3523. name: "Dick (Top)",
  3524. image: {
  3525. source: "./media/characters/talan/dick-top.svg"
  3526. }
  3527. },
  3528. dickSide: {
  3529. height: math.unit(0.305, "meter"),
  3530. name: "Dick (Side)",
  3531. image: {
  3532. source: "./media/characters/talan/dick-side.svg"
  3533. }
  3534. },
  3535. dickFront: {
  3536. height: math.unit(0.305, "meter"),
  3537. name: "Dick (Front)",
  3538. image: {
  3539. source: "./media/characters/talan/dick-front.svg"
  3540. }
  3541. },
  3542. },
  3543. [
  3544. {
  3545. name: "Normal",
  3546. height: math.unit(4, "meters")
  3547. },
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(100, "meters")
  3551. },
  3552. {
  3553. name: "Megamacro",
  3554. height: math.unit(2, "miles"),
  3555. default: true
  3556. },
  3557. {
  3558. name: "Gigamacro",
  3559. height: math.unit(5000, "miles")
  3560. },
  3561. {
  3562. name: "Teramacro",
  3563. height: math.unit(100, "parsecs")
  3564. }
  3565. ]
  3566. ))
  3567. characterMakers.push(() => makeCharacter(
  3568. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3569. {
  3570. front: {
  3571. height: math.unit(2, "meter"),
  3572. weight: math.unit(90, "kg"),
  3573. name: "Front",
  3574. image: {
  3575. source: "./media/characters/gael'rathus/front.svg"
  3576. }
  3577. },
  3578. frontAlt: {
  3579. height: math.unit(2, "meter"),
  3580. weight: math.unit(90, "kg"),
  3581. name: "Front (alt)",
  3582. image: {
  3583. source: "./media/characters/gael'rathus/front-alt.svg"
  3584. }
  3585. },
  3586. frontAlt2: {
  3587. height: math.unit(2, "meter"),
  3588. weight: math.unit(90, "kg"),
  3589. name: "Front (alt 2)",
  3590. image: {
  3591. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3592. }
  3593. }
  3594. },
  3595. [
  3596. {
  3597. name: "Normal",
  3598. height: math.unit(9, "feet"),
  3599. default: true
  3600. },
  3601. {
  3602. name: "Large",
  3603. height: math.unit(25, "feet")
  3604. },
  3605. {
  3606. name: "Macro",
  3607. height: math.unit(0.25, "miles")
  3608. },
  3609. {
  3610. name: "Megamacro",
  3611. height: math.unit(10, "miles")
  3612. }
  3613. ]
  3614. ))
  3615. characterMakers.push(() => makeCharacter(
  3616. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3617. {
  3618. side: {
  3619. height: math.unit(2, "meter"),
  3620. weight: math.unit(140, "kg"),
  3621. name: "Side",
  3622. image: {
  3623. source: "./media/characters/sosha/side.svg",
  3624. extra: 1170/1006,
  3625. bottom: 94/1264
  3626. }
  3627. },
  3628. maw: {
  3629. height: math.unit(2.87, "feet"),
  3630. name: "Maw",
  3631. image: {
  3632. source: "./media/characters/sosha/maw.svg",
  3633. extra: 966/865,
  3634. bottom: 0/966
  3635. }
  3636. },
  3637. cooch: {
  3638. height: math.unit(5.6, "feet"),
  3639. name: "Cooch",
  3640. image: {
  3641. source: "./media/characters/sosha/cooch.svg"
  3642. }
  3643. },
  3644. },
  3645. [
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(12, "feet"),
  3649. default: true
  3650. }
  3651. ]
  3652. ))
  3653. characterMakers.push(() => makeCharacter(
  3654. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3655. {
  3656. side: {
  3657. height: math.unit(5 + 5 / 12, "feet"),
  3658. weight: math.unit(170, "kg"),
  3659. name: "Side",
  3660. image: {
  3661. source: "./media/characters/runnola/side.svg",
  3662. extra: 741 / 448,
  3663. bottom: 0.05
  3664. }
  3665. },
  3666. },
  3667. [
  3668. {
  3669. name: "Small",
  3670. height: math.unit(3, "feet")
  3671. },
  3672. {
  3673. name: "Normal",
  3674. height: math.unit(5 + 5 / 12, "feet"),
  3675. default: true
  3676. },
  3677. {
  3678. name: "Big",
  3679. height: math.unit(10, "feet")
  3680. },
  3681. ]
  3682. ))
  3683. characterMakers.push(() => makeCharacter(
  3684. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3685. {
  3686. front: {
  3687. height: math.unit(2, "meter"),
  3688. weight: math.unit(50, "kg"),
  3689. name: "Front",
  3690. image: {
  3691. source: "./media/characters/kurribird/front.svg",
  3692. bottom: 0.015
  3693. }
  3694. },
  3695. frontAlt: {
  3696. height: math.unit(1.5, "meter"),
  3697. weight: math.unit(50, "kg"),
  3698. name: "Front (Alt)",
  3699. image: {
  3700. source: "./media/characters/kurribird/front-alt.svg",
  3701. extra: 1.45
  3702. }
  3703. },
  3704. },
  3705. [
  3706. {
  3707. name: "Normal",
  3708. height: math.unit(7, "feet")
  3709. },
  3710. {
  3711. name: "Big",
  3712. height: math.unit(12, "feet"),
  3713. default: true
  3714. },
  3715. {
  3716. name: "Macro",
  3717. height: math.unit(1500, "feet")
  3718. },
  3719. {
  3720. name: "Megamacro",
  3721. height: math.unit(2, "miles")
  3722. }
  3723. ]
  3724. ))
  3725. characterMakers.push(() => makeCharacter(
  3726. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3727. {
  3728. front: {
  3729. height: math.unit(2, "meter"),
  3730. weight: math.unit(80, "kg"),
  3731. name: "Front",
  3732. image: {
  3733. source: "./media/characters/elbial/front.svg",
  3734. extra: 1643 / 1556,
  3735. bottom: 60.2 / 1696
  3736. }
  3737. },
  3738. side: {
  3739. height: math.unit(2, "meter"),
  3740. weight: math.unit(80, "kg"),
  3741. name: "Side",
  3742. image: {
  3743. source: "./media/characters/elbial/side.svg",
  3744. extra: 1601/1528,
  3745. bottom: 97/1698
  3746. }
  3747. },
  3748. back: {
  3749. height: math.unit(2, "meter"),
  3750. weight: math.unit(80, "kg"),
  3751. name: "Back",
  3752. image: {
  3753. source: "./media/characters/elbial/back.svg",
  3754. extra: 1653/1569,
  3755. bottom: 20/1673
  3756. }
  3757. },
  3758. frontDressed: {
  3759. height: math.unit(2, "meter"),
  3760. weight: math.unit(80, "kg"),
  3761. name: "Front (Dressed)",
  3762. image: {
  3763. source: "./media/characters/elbial/front-dressed.svg",
  3764. extra: 1638/1569,
  3765. bottom: 70/1708
  3766. }
  3767. },
  3768. genitals: {
  3769. height: math.unit(2 / 3.367, "meter"),
  3770. name: "Genitals",
  3771. image: {
  3772. source: "./media/characters/elbial/genitals.svg"
  3773. }
  3774. },
  3775. },
  3776. [
  3777. {
  3778. name: "Large",
  3779. height: math.unit(100, "feet")
  3780. },
  3781. {
  3782. name: "Macro",
  3783. height: math.unit(500, "feet"),
  3784. default: true
  3785. },
  3786. {
  3787. name: "Megamacro",
  3788. height: math.unit(10, "miles")
  3789. },
  3790. {
  3791. name: "Gigamacro",
  3792. height: math.unit(25000, "miles")
  3793. },
  3794. {
  3795. name: "Full-Size",
  3796. height: math.unit(8000000, "gigaparsecs")
  3797. }
  3798. ]
  3799. ))
  3800. characterMakers.push(() => makeCharacter(
  3801. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3802. {
  3803. front: {
  3804. height: math.unit(2, "meter"),
  3805. weight: math.unit(60, "kg"),
  3806. name: "Front",
  3807. image: {
  3808. source: "./media/characters/noah/front.svg"
  3809. }
  3810. },
  3811. talons: {
  3812. height: math.unit(0.315, "meter"),
  3813. name: "Talons",
  3814. image: {
  3815. source: "./media/characters/noah/talons.svg"
  3816. }
  3817. }
  3818. },
  3819. [
  3820. {
  3821. name: "Large",
  3822. height: math.unit(50, "feet")
  3823. },
  3824. {
  3825. name: "Macro",
  3826. height: math.unit(750, "feet"),
  3827. default: true
  3828. },
  3829. {
  3830. name: "Megamacro",
  3831. height: math.unit(50, "miles")
  3832. },
  3833. {
  3834. name: "Gigamacro",
  3835. height: math.unit(100000, "miles")
  3836. },
  3837. {
  3838. name: "Full-Size",
  3839. height: math.unit(3000000000, "miles")
  3840. }
  3841. ]
  3842. ))
  3843. characterMakers.push(() => makeCharacter(
  3844. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3845. {
  3846. front: {
  3847. height: math.unit(2, "meter"),
  3848. weight: math.unit(80, "kg"),
  3849. name: "Front",
  3850. image: {
  3851. source: "./media/characters/natalya/front.svg"
  3852. }
  3853. },
  3854. back: {
  3855. height: math.unit(2, "meter"),
  3856. weight: math.unit(80, "kg"),
  3857. name: "Back",
  3858. image: {
  3859. source: "./media/characters/natalya/back.svg"
  3860. }
  3861. }
  3862. },
  3863. [
  3864. {
  3865. name: "Normal",
  3866. height: math.unit(150, "feet"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Megamacro",
  3871. height: math.unit(5, "miles")
  3872. },
  3873. {
  3874. name: "Full-Size",
  3875. height: math.unit(600, "kiloparsecs")
  3876. }
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(2, "meter"),
  3884. weight: math.unit(50, "kg"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/erestrebah/front.svg",
  3888. extra: 1262/1162,
  3889. bottom: 96/1358
  3890. }
  3891. },
  3892. back: {
  3893. height: math.unit(2, "meter"),
  3894. weight: math.unit(50, "kg"),
  3895. name: "Back",
  3896. image: {
  3897. source: "./media/characters/erestrebah/back.svg",
  3898. extra: 1257/1139,
  3899. bottom: 13/1270
  3900. }
  3901. },
  3902. wing: {
  3903. height: math.unit(2, "meter"),
  3904. weight: math.unit(50, "kg"),
  3905. name: "Wing",
  3906. image: {
  3907. source: "./media/characters/erestrebah/wing.svg",
  3908. extra: 1262/1162,
  3909. bottom: 96/1358
  3910. }
  3911. },
  3912. mouth: {
  3913. height: math.unit(0.39, "feet"),
  3914. name: "Mouth",
  3915. image: {
  3916. source: "./media/characters/erestrebah/mouth.svg"
  3917. }
  3918. }
  3919. },
  3920. [
  3921. {
  3922. name: "Normal",
  3923. height: math.unit(10, "feet")
  3924. },
  3925. {
  3926. name: "Large",
  3927. height: math.unit(50, "feet"),
  3928. default: true
  3929. },
  3930. {
  3931. name: "Macro",
  3932. height: math.unit(300, "feet")
  3933. },
  3934. {
  3935. name: "Macro+",
  3936. height: math.unit(750, "feet")
  3937. },
  3938. {
  3939. name: "Megamacro",
  3940. height: math.unit(3, "miles")
  3941. }
  3942. ]
  3943. ))
  3944. characterMakers.push(() => makeCharacter(
  3945. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3946. {
  3947. front: {
  3948. height: math.unit(2, "meter"),
  3949. weight: math.unit(80, "kg"),
  3950. name: "Front",
  3951. image: {
  3952. source: "./media/characters/jennifer/front.svg",
  3953. bottom: 0.11,
  3954. extra: 1.16
  3955. }
  3956. },
  3957. frontAlt: {
  3958. height: math.unit(2, "meter"),
  3959. weight: math.unit(80, "kg"),
  3960. name: "Front (Alt)",
  3961. image: {
  3962. source: "./media/characters/jennifer/front-alt.svg"
  3963. }
  3964. }
  3965. },
  3966. [
  3967. {
  3968. name: "Canon Height",
  3969. height: math.unit(120, "feet"),
  3970. default: true
  3971. },
  3972. {
  3973. name: "Macro+",
  3974. height: math.unit(300, "feet")
  3975. },
  3976. {
  3977. name: "Megamacro",
  3978. height: math.unit(20000, "feet")
  3979. }
  3980. ]
  3981. ))
  3982. characterMakers.push(() => makeCharacter(
  3983. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3984. {
  3985. front: {
  3986. height: math.unit(2, "meter"),
  3987. weight: math.unit(50, "kg"),
  3988. name: "Front",
  3989. image: {
  3990. source: "./media/characters/kalista/front.svg",
  3991. extra: 1314/1145,
  3992. bottom: 101/1415
  3993. }
  3994. },
  3995. back: {
  3996. height: math.unit(2, "meter"),
  3997. weight: math.unit(50, "kg"),
  3998. name: "Back",
  3999. image: {
  4000. source: "./media/characters/kalista/back.svg",
  4001. extra: 1366 / 1156,
  4002. bottom: 33.9 / 1362.78
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Uncomfortably Small",
  4009. height: math.unit(10, "feet")
  4010. },
  4011. {
  4012. name: "Small",
  4013. height: math.unit(30, "feet")
  4014. },
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(100, "feet"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Macro+",
  4022. height: math.unit(2000, "feet")
  4023. },
  4024. {
  4025. name: "True Form",
  4026. height: math.unit(8924, "miles")
  4027. }
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4032. {
  4033. front: {
  4034. height: math.unit(2, "meter"),
  4035. weight: math.unit(120, "kg"),
  4036. name: "Front",
  4037. image: {
  4038. source: "./media/characters/ggv/front.svg"
  4039. }
  4040. },
  4041. side: {
  4042. height: math.unit(2, "meter"),
  4043. weight: math.unit(120, "kg"),
  4044. name: "Side",
  4045. image: {
  4046. source: "./media/characters/ggv/side.svg"
  4047. }
  4048. }
  4049. },
  4050. [
  4051. {
  4052. name: "Extremely Puny",
  4053. height: math.unit(9 + 5 / 12, "feet")
  4054. },
  4055. {
  4056. name: "Horribly Small",
  4057. height: math.unit(47.7, "miles"),
  4058. default: true
  4059. },
  4060. {
  4061. name: "Reasonably Sized",
  4062. height: math.unit(25000, "parsecs")
  4063. },
  4064. {
  4065. name: "Slightly Uncompressed",
  4066. height: math.unit(7.77e31, "parsecs")
  4067. },
  4068. {
  4069. name: "Omniversal",
  4070. height: math.unit(1e300, "meters")
  4071. },
  4072. ]
  4073. ))
  4074. characterMakers.push(() => makeCharacter(
  4075. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4076. {
  4077. front: {
  4078. height: math.unit(2, "meter"),
  4079. weight: math.unit(75, "lb"),
  4080. name: "Front",
  4081. image: {
  4082. source: "./media/characters/napalm/front.svg"
  4083. }
  4084. },
  4085. back: {
  4086. height: math.unit(2, "meter"),
  4087. weight: math.unit(75, "lb"),
  4088. name: "Back",
  4089. image: {
  4090. source: "./media/characters/napalm/back.svg"
  4091. }
  4092. }
  4093. },
  4094. [
  4095. {
  4096. name: "Standard",
  4097. height: math.unit(55, "feet"),
  4098. default: true
  4099. }
  4100. ]
  4101. ))
  4102. characterMakers.push(() => makeCharacter(
  4103. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4104. {
  4105. front: {
  4106. height: math.unit(7 + 5 / 6, "feet"),
  4107. weight: math.unit(325, "lb"),
  4108. name: "Front",
  4109. image: {
  4110. source: "./media/characters/asana/front.svg",
  4111. extra: 1133 / 1060,
  4112. bottom: 15.2 / 1148.6
  4113. }
  4114. },
  4115. back: {
  4116. height: math.unit(7 + 5 / 6, "feet"),
  4117. weight: math.unit(325, "lb"),
  4118. name: "Back",
  4119. image: {
  4120. source: "./media/characters/asana/back.svg",
  4121. extra: 1114 / 1043,
  4122. bottom: 5 / 1120
  4123. }
  4124. },
  4125. dressedDark: {
  4126. height: math.unit(7 + 5 / 6, "feet"),
  4127. weight: math.unit(325, "lb"),
  4128. name: "Dressed (Dark)",
  4129. image: {
  4130. source: "./media/characters/asana/dressed-dark.svg",
  4131. extra: 1133 / 1060,
  4132. bottom: 15.2 / 1148.6
  4133. }
  4134. },
  4135. dressedLight: {
  4136. height: math.unit(7 + 5 / 6, "feet"),
  4137. weight: math.unit(325, "lb"),
  4138. name: "Dressed (Light)",
  4139. image: {
  4140. source: "./media/characters/asana/dressed-light.svg",
  4141. extra: 1133 / 1060,
  4142. bottom: 15.2 / 1148.6
  4143. }
  4144. },
  4145. },
  4146. [
  4147. {
  4148. name: "Standard",
  4149. height: math.unit(7 + 5 / 6, "feet"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Large",
  4154. height: math.unit(10, "meters")
  4155. },
  4156. {
  4157. name: "Macro",
  4158. height: math.unit(2500, "meters")
  4159. },
  4160. {
  4161. name: "Megamacro",
  4162. height: math.unit(5e6, "meters")
  4163. },
  4164. {
  4165. name: "Examacro",
  4166. height: math.unit(5e12, "lightyears")
  4167. },
  4168. {
  4169. name: "Max Size",
  4170. height: math.unit(1e31, "lightyears")
  4171. }
  4172. ]
  4173. ))
  4174. characterMakers.push(() => makeCharacter(
  4175. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4176. {
  4177. front: {
  4178. height: math.unit(2, "meter"),
  4179. weight: math.unit(60, "kg"),
  4180. name: "Front",
  4181. image: {
  4182. source: "./media/characters/ebony/front.svg",
  4183. bottom: 0.03,
  4184. extra: 1045 / 810 + 0.03
  4185. }
  4186. },
  4187. side: {
  4188. height: math.unit(2, "meter"),
  4189. weight: math.unit(60, "kg"),
  4190. name: "Side",
  4191. image: {
  4192. source: "./media/characters/ebony/side.svg",
  4193. bottom: 0.03,
  4194. extra: 1045 / 810 + 0.03
  4195. }
  4196. },
  4197. back: {
  4198. height: math.unit(2, "meter"),
  4199. weight: math.unit(60, "kg"),
  4200. name: "Back",
  4201. image: {
  4202. source: "./media/characters/ebony/back.svg",
  4203. bottom: 0.01,
  4204. extra: 1045 / 810 + 0.01
  4205. }
  4206. },
  4207. },
  4208. [
  4209. // TODO check why I did this lol
  4210. {
  4211. name: "Standard",
  4212. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4213. default: true
  4214. },
  4215. {
  4216. name: "Macro",
  4217. height: math.unit(200, "feet")
  4218. },
  4219. {
  4220. name: "Gigamacro",
  4221. height: math.unit(13000, "km")
  4222. }
  4223. ]
  4224. ))
  4225. characterMakers.push(() => makeCharacter(
  4226. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4227. {
  4228. front: {
  4229. height: math.unit(6, "feet"),
  4230. weight: math.unit(175, "lb"),
  4231. name: "Front",
  4232. image: {
  4233. source: "./media/characters/mountain/front.svg",
  4234. extra: 972 / 955,
  4235. bottom: 64 / 1036.6
  4236. }
  4237. },
  4238. back: {
  4239. height: math.unit(6, "feet"),
  4240. weight: math.unit(175, "lb"),
  4241. name: "Back",
  4242. image: {
  4243. source: "./media/characters/mountain/back.svg",
  4244. extra: 970 / 950,
  4245. bottom: 28.25 / 999
  4246. }
  4247. },
  4248. },
  4249. [
  4250. {
  4251. name: "Large",
  4252. height: math.unit(20, "meters")
  4253. },
  4254. {
  4255. name: "Macro",
  4256. height: math.unit(300, "meters")
  4257. },
  4258. {
  4259. name: "Gigamacro",
  4260. height: math.unit(10000, "km"),
  4261. default: true
  4262. },
  4263. {
  4264. name: "Examacro",
  4265. height: math.unit(10e9, "lightyears")
  4266. }
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4271. {
  4272. front: {
  4273. height: math.unit(8, "feet"),
  4274. weight: math.unit(500, "lb"),
  4275. name: "Front",
  4276. image: {
  4277. source: "./media/characters/rick/front.svg"
  4278. }
  4279. }
  4280. },
  4281. [
  4282. {
  4283. name: "Normal",
  4284. height: math.unit(8, "feet"),
  4285. default: true
  4286. },
  4287. {
  4288. name: "Macro",
  4289. height: math.unit(5, "km")
  4290. }
  4291. ]
  4292. ))
  4293. characterMakers.push(() => makeCharacter(
  4294. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4295. {
  4296. front: {
  4297. height: math.unit(8, "feet"),
  4298. weight: math.unit(120, "lb"),
  4299. name: "Front",
  4300. image: {
  4301. source: "./media/characters/ona/front.svg"
  4302. }
  4303. },
  4304. frontAlt: {
  4305. height: math.unit(8, "feet"),
  4306. weight: math.unit(120, "lb"),
  4307. name: "Front (Alt)",
  4308. image: {
  4309. source: "./media/characters/ona/front-alt.svg"
  4310. }
  4311. },
  4312. back: {
  4313. height: math.unit(8, "feet"),
  4314. weight: math.unit(120, "lb"),
  4315. name: "Back",
  4316. image: {
  4317. source: "./media/characters/ona/back.svg"
  4318. }
  4319. },
  4320. foot: {
  4321. height: math.unit(1.1, "feet"),
  4322. name: "Foot",
  4323. image: {
  4324. source: "./media/characters/ona/foot.svg"
  4325. }
  4326. }
  4327. },
  4328. [
  4329. {
  4330. name: "Megamacro",
  4331. height: math.unit(70, "km"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Gigamacro",
  4336. height: math.unit(681818, "miles")
  4337. },
  4338. {
  4339. name: "Examacro",
  4340. height: math.unit(3800000, "lightyears")
  4341. },
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4346. {
  4347. front: {
  4348. height: math.unit(12, "feet"),
  4349. weight: math.unit(3000, "lb"),
  4350. name: "Front",
  4351. image: {
  4352. source: "./media/characters/mech/front.svg",
  4353. extra: 2900 / 2770,
  4354. bottom: 110 / 3010
  4355. }
  4356. },
  4357. back: {
  4358. height: math.unit(12, "feet"),
  4359. weight: math.unit(3000, "lb"),
  4360. name: "Back",
  4361. image: {
  4362. source: "./media/characters/mech/back.svg",
  4363. extra: 3011 / 2890,
  4364. bottom: 94 / 3105
  4365. }
  4366. },
  4367. maw: {
  4368. height: math.unit(3.07, "feet"),
  4369. name: "Maw",
  4370. image: {
  4371. source: "./media/characters/mech/maw.svg"
  4372. }
  4373. },
  4374. head: {
  4375. height: math.unit(2.82, "feet"),
  4376. name: "Head",
  4377. image: {
  4378. source: "./media/characters/mech/head.svg"
  4379. }
  4380. },
  4381. dick: {
  4382. height: math.unit(1.43, "feet"),
  4383. name: "Dick",
  4384. image: {
  4385. source: "./media/characters/mech/dick.svg"
  4386. }
  4387. },
  4388. },
  4389. [
  4390. {
  4391. name: "Normal",
  4392. height: math.unit(12, "feet")
  4393. },
  4394. {
  4395. name: "Macro",
  4396. height: math.unit(300, "feet"),
  4397. default: true
  4398. },
  4399. {
  4400. name: "Macro+",
  4401. height: math.unit(1500, "feet")
  4402. },
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4407. {
  4408. front: {
  4409. height: math.unit(1.3, "meter"),
  4410. weight: math.unit(30, "kg"),
  4411. name: "Front",
  4412. image: {
  4413. source: "./media/characters/gregory/front.svg",
  4414. }
  4415. }
  4416. },
  4417. [
  4418. {
  4419. name: "Normal",
  4420. height: math.unit(1.3, "meter"),
  4421. default: true
  4422. },
  4423. {
  4424. name: "Macro",
  4425. height: math.unit(20, "meter")
  4426. }
  4427. ]
  4428. ))
  4429. characterMakers.push(() => makeCharacter(
  4430. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4431. {
  4432. front: {
  4433. height: math.unit(2.8, "meter"),
  4434. weight: math.unit(200, "kg"),
  4435. name: "Front",
  4436. image: {
  4437. source: "./media/characters/elory/front.svg",
  4438. }
  4439. }
  4440. },
  4441. [
  4442. {
  4443. name: "Normal",
  4444. height: math.unit(2.8, "meter"),
  4445. default: true
  4446. },
  4447. {
  4448. name: "Macro",
  4449. height: math.unit(38, "meter")
  4450. }
  4451. ]
  4452. ))
  4453. characterMakers.push(() => makeCharacter(
  4454. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4455. {
  4456. front: {
  4457. height: math.unit(470, "feet"),
  4458. weight: math.unit(924, "tons"),
  4459. name: "Front",
  4460. image: {
  4461. source: "./media/characters/angelpatamon/front.svg",
  4462. }
  4463. }
  4464. },
  4465. [
  4466. {
  4467. name: "Normal",
  4468. height: math.unit(470, "feet"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "Deity Size I",
  4473. height: math.unit(28651.2, "km")
  4474. },
  4475. {
  4476. name: "Deity Size II",
  4477. height: math.unit(171907.2, "km")
  4478. }
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4483. {
  4484. side: {
  4485. height: math.unit(7.2, "meter"),
  4486. weight: math.unit(8.2, "tons"),
  4487. name: "Side",
  4488. image: {
  4489. source: "./media/characters/cryae/side.svg",
  4490. extra: 3500 / 1500
  4491. }
  4492. }
  4493. },
  4494. [
  4495. {
  4496. name: "Normal",
  4497. height: math.unit(7.2, "meter"),
  4498. default: true
  4499. }
  4500. ]
  4501. ))
  4502. characterMakers.push(() => makeCharacter(
  4503. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4504. {
  4505. front: {
  4506. height: math.unit(6, "feet"),
  4507. weight: math.unit(175, "lb"),
  4508. name: "Front",
  4509. image: {
  4510. source: "./media/characters/xera/front.svg",
  4511. extra: 2377 / 1972,
  4512. bottom: 75.5 / 2452
  4513. }
  4514. },
  4515. side: {
  4516. height: math.unit(6, "feet"),
  4517. weight: math.unit(175, "lb"),
  4518. name: "Side",
  4519. image: {
  4520. source: "./media/characters/xera/side.svg",
  4521. extra: 2345 / 2019,
  4522. bottom: 39.7 / 2384
  4523. }
  4524. },
  4525. back: {
  4526. height: math.unit(6, "feet"),
  4527. weight: math.unit(175, "lb"),
  4528. name: "Back",
  4529. image: {
  4530. source: "./media/characters/xera/back.svg",
  4531. extra: 2095 / 1984,
  4532. bottom: 67 / 2166
  4533. }
  4534. },
  4535. },
  4536. [
  4537. {
  4538. name: "Small",
  4539. height: math.unit(10, "feet")
  4540. },
  4541. {
  4542. name: "Macro",
  4543. height: math.unit(500, "meters"),
  4544. default: true
  4545. },
  4546. {
  4547. name: "Macro+",
  4548. height: math.unit(10, "km")
  4549. },
  4550. {
  4551. name: "Gigamacro",
  4552. height: math.unit(25000, "km")
  4553. },
  4554. {
  4555. name: "Teramacro",
  4556. height: math.unit(3e6, "km")
  4557. }
  4558. ]
  4559. ))
  4560. characterMakers.push(() => makeCharacter(
  4561. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4562. {
  4563. front: {
  4564. height: math.unit(6, "feet"),
  4565. weight: math.unit(175, "lb"),
  4566. name: "Front",
  4567. image: {
  4568. source: "./media/characters/nebula/front.svg",
  4569. extra: 2566 / 2362,
  4570. bottom: 81 / 2644
  4571. }
  4572. }
  4573. },
  4574. [
  4575. {
  4576. name: "Small",
  4577. height: math.unit(4.5, "meters")
  4578. },
  4579. {
  4580. name: "Macro",
  4581. height: math.unit(1500, "meters"),
  4582. default: true
  4583. },
  4584. {
  4585. name: "Megamacro",
  4586. height: math.unit(150, "km")
  4587. },
  4588. {
  4589. name: "Gigamacro",
  4590. height: math.unit(27000, "km")
  4591. }
  4592. ]
  4593. ))
  4594. characterMakers.push(() => makeCharacter(
  4595. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4596. {
  4597. front: {
  4598. height: math.unit(6, "feet"),
  4599. weight: math.unit(225, "lb"),
  4600. name: "Front",
  4601. image: {
  4602. source: "./media/characters/abysgar/front.svg",
  4603. extra: 1739/1614,
  4604. bottom: 71/1810
  4605. }
  4606. },
  4607. frontNsfw: {
  4608. height: math.unit(6, "feet"),
  4609. weight: math.unit(225, "lb"),
  4610. name: "Front (NSFW)",
  4611. image: {
  4612. source: "./media/characters/abysgar/front-nsfw.svg",
  4613. extra: 1739/1614,
  4614. bottom: 71/1810
  4615. }
  4616. },
  4617. back: {
  4618. height: math.unit(4.6, "feet"),
  4619. weight: math.unit(225, "lb"),
  4620. name: "Back",
  4621. image: {
  4622. source: "./media/characters/abysgar/back.svg",
  4623. extra: 1384/1327,
  4624. bottom: 0/1384
  4625. }
  4626. },
  4627. head: {
  4628. height: math.unit(1.25, "feet"),
  4629. name: "Head",
  4630. image: {
  4631. source: "./media/characters/abysgar/head.svg",
  4632. extra: 669/569,
  4633. bottom: 0/669
  4634. }
  4635. },
  4636. },
  4637. [
  4638. {
  4639. name: "Small",
  4640. height: math.unit(4.5, "meters")
  4641. },
  4642. {
  4643. name: "Macro",
  4644. height: math.unit(1250, "meters"),
  4645. default: true
  4646. },
  4647. {
  4648. name: "Megamacro",
  4649. height: math.unit(125, "km")
  4650. },
  4651. {
  4652. name: "Gigamacro",
  4653. height: math.unit(26000, "km")
  4654. }
  4655. ]
  4656. ))
  4657. characterMakers.push(() => makeCharacter(
  4658. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4659. {
  4660. front: {
  4661. height: math.unit(6, "feet"),
  4662. weight: math.unit(180, "lb"),
  4663. name: "Front",
  4664. image: {
  4665. source: "./media/characters/yakuz/front.svg"
  4666. }
  4667. }
  4668. },
  4669. [
  4670. {
  4671. name: "Small",
  4672. height: math.unit(5, "meters")
  4673. },
  4674. {
  4675. name: "Macro",
  4676. height: math.unit(1500, "meters"),
  4677. default: true
  4678. },
  4679. {
  4680. name: "Megamacro",
  4681. height: math.unit(200, "km")
  4682. },
  4683. {
  4684. name: "Gigamacro",
  4685. height: math.unit(100000, "km")
  4686. }
  4687. ]
  4688. ))
  4689. characterMakers.push(() => makeCharacter(
  4690. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4691. {
  4692. front: {
  4693. height: math.unit(6, "feet"),
  4694. weight: math.unit(175, "lb"),
  4695. name: "Front",
  4696. image: {
  4697. source: "./media/characters/mirova/front.svg",
  4698. extra: 3334 / 3071,
  4699. bottom: 42 / 3375.6
  4700. }
  4701. }
  4702. },
  4703. [
  4704. {
  4705. name: "Small",
  4706. height: math.unit(5, "meters")
  4707. },
  4708. {
  4709. name: "Macro",
  4710. height: math.unit(900, "meters"),
  4711. default: true
  4712. },
  4713. {
  4714. name: "Megamacro",
  4715. height: math.unit(135, "km")
  4716. },
  4717. {
  4718. name: "Gigamacro",
  4719. height: math.unit(20000, "km")
  4720. }
  4721. ]
  4722. ))
  4723. characterMakers.push(() => makeCharacter(
  4724. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4725. {
  4726. side: {
  4727. height: math.unit(28.35, "feet"),
  4728. weight: math.unit(99.75, "tons"),
  4729. name: "Side",
  4730. image: {
  4731. source: "./media/characters/asana-mech/side.svg",
  4732. extra: 923 / 699,
  4733. bottom: 50 / 975
  4734. }
  4735. },
  4736. chaingun: {
  4737. height: math.unit(7, "feet"),
  4738. weight: math.unit(2400, "lb"),
  4739. name: "Chaingun",
  4740. image: {
  4741. source: "./media/characters/asana-mech/chaingun.svg"
  4742. }
  4743. },
  4744. laser: {
  4745. height: math.unit(7.12, "feet"),
  4746. weight: math.unit(2000, "lb"),
  4747. name: "Laser",
  4748. image: {
  4749. source: "./media/characters/asana-mech/laser.svg"
  4750. }
  4751. },
  4752. },
  4753. [
  4754. {
  4755. name: "Normal",
  4756. height: math.unit(28.35, "feet"),
  4757. default: true
  4758. },
  4759. {
  4760. name: "Macro",
  4761. height: math.unit(2500, "feet")
  4762. },
  4763. {
  4764. name: "Megamacro",
  4765. height: math.unit(25, "miles")
  4766. },
  4767. {
  4768. name: "Examacro",
  4769. height: math.unit(6e8, "lightyears")
  4770. },
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4775. {
  4776. front: {
  4777. height: math.unit(5, "meters"),
  4778. weight: math.unit(1000, "kg"),
  4779. name: "Front",
  4780. image: {
  4781. source: "./media/characters/asche/front.svg",
  4782. extra: 1258 / 1190,
  4783. bottom: 47 / 1305
  4784. }
  4785. },
  4786. frontUnderwear: {
  4787. height: math.unit(5, "meters"),
  4788. weight: math.unit(1000, "kg"),
  4789. name: "Front (Underwear)",
  4790. image: {
  4791. source: "./media/characters/asche/front-underwear.svg",
  4792. extra: 1258 / 1190,
  4793. bottom: 47 / 1305
  4794. }
  4795. },
  4796. frontDressed: {
  4797. height: math.unit(5, "meters"),
  4798. weight: math.unit(1000, "kg"),
  4799. name: "Front (Dressed)",
  4800. image: {
  4801. source: "./media/characters/asche/front-dressed.svg",
  4802. extra: 1258 / 1190,
  4803. bottom: 47 / 1305
  4804. }
  4805. },
  4806. frontArmor: {
  4807. height: math.unit(5, "meters"),
  4808. weight: math.unit(1000, "kg"),
  4809. name: "Front (Armored)",
  4810. image: {
  4811. source: "./media/characters/asche/front-armored.svg",
  4812. extra: 1374 / 1308,
  4813. bottom: 23 / 1397
  4814. }
  4815. },
  4816. mp724: {
  4817. height: math.unit(0.96, "meters"),
  4818. weight: math.unit(38, "kg"),
  4819. name: "H&K MP724",
  4820. image: {
  4821. source: "./media/characters/asche/h&k-mp724.svg"
  4822. }
  4823. },
  4824. side: {
  4825. height: math.unit(5, "meters"),
  4826. weight: math.unit(1000, "kg"),
  4827. name: "Side",
  4828. image: {
  4829. source: "./media/characters/asche/side.svg",
  4830. extra: 1717 / 1609,
  4831. bottom: 0.005
  4832. }
  4833. },
  4834. back: {
  4835. height: math.unit(5, "meters"),
  4836. weight: math.unit(1000, "kg"),
  4837. name: "Back",
  4838. image: {
  4839. source: "./media/characters/asche/back.svg",
  4840. extra: 1570 / 1501
  4841. }
  4842. },
  4843. },
  4844. [
  4845. {
  4846. name: "DEFCON 5",
  4847. height: math.unit(5, "meters")
  4848. },
  4849. {
  4850. name: "DEFCON 4",
  4851. height: math.unit(500, "meters"),
  4852. default: true
  4853. },
  4854. {
  4855. name: "DEFCON 3",
  4856. height: math.unit(5, "km")
  4857. },
  4858. {
  4859. name: "DEFCON 2",
  4860. height: math.unit(500, "km")
  4861. },
  4862. {
  4863. name: "DEFCON 1",
  4864. height: math.unit(500000, "km")
  4865. },
  4866. {
  4867. name: "DEFCON 0",
  4868. height: math.unit(3, "gigaparsecs")
  4869. },
  4870. ]
  4871. ))
  4872. characterMakers.push(() => makeCharacter(
  4873. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4874. {
  4875. front: {
  4876. height: math.unit(2, "meters"),
  4877. weight: math.unit(76, "kg"),
  4878. name: "Front",
  4879. image: {
  4880. source: "./media/characters/gale/front.svg"
  4881. }
  4882. },
  4883. frontAlt1: {
  4884. height: math.unit(2, "meters"),
  4885. weight: math.unit(76, "kg"),
  4886. name: "Front (Alt 1)",
  4887. image: {
  4888. source: "./media/characters/gale/front-alt-1.svg"
  4889. }
  4890. },
  4891. frontAlt2: {
  4892. height: math.unit(2, "meters"),
  4893. weight: math.unit(76, "kg"),
  4894. name: "Front (Alt 2)",
  4895. image: {
  4896. source: "./media/characters/gale/front-alt-2.svg"
  4897. }
  4898. },
  4899. },
  4900. [
  4901. {
  4902. name: "Normal",
  4903. height: math.unit(7, "feet")
  4904. },
  4905. {
  4906. name: "Macro",
  4907. height: math.unit(150, "feet"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Macro+",
  4912. height: math.unit(300, "feet")
  4913. },
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(5 + 10/12, "feet"),
  4921. weight: math.unit(67, "kg"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/draylen/front.svg",
  4925. extra: 832/777,
  4926. bottom: 85/917
  4927. }
  4928. }
  4929. },
  4930. [
  4931. {
  4932. name: "Normal",
  4933. height: math.unit(5 + 10/12, "feet")
  4934. },
  4935. {
  4936. name: "Macro",
  4937. height: math.unit(150, "feet"),
  4938. default: true
  4939. }
  4940. ]
  4941. ))
  4942. characterMakers.push(() => makeCharacter(
  4943. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4944. {
  4945. front: {
  4946. height: math.unit(7 + 9 / 12, "feet"),
  4947. weight: math.unit(379, "lbs"),
  4948. name: "Front",
  4949. image: {
  4950. source: "./media/characters/chez/front.svg"
  4951. }
  4952. },
  4953. side: {
  4954. height: math.unit(7 + 9 / 12, "feet"),
  4955. weight: math.unit(379, "lbs"),
  4956. name: "Side",
  4957. image: {
  4958. source: "./media/characters/chez/side.svg"
  4959. }
  4960. }
  4961. },
  4962. [
  4963. {
  4964. name: "Normal",
  4965. height: math.unit(7 + 9 / 12, "feet"),
  4966. default: true
  4967. },
  4968. {
  4969. name: "God King",
  4970. height: math.unit(9750000, "meters")
  4971. }
  4972. ]
  4973. ))
  4974. characterMakers.push(() => makeCharacter(
  4975. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4976. {
  4977. front: {
  4978. height: math.unit(6, "feet"),
  4979. weight: math.unit(275, "lbs"),
  4980. name: "Front",
  4981. image: {
  4982. source: "./media/characters/kaylum/front.svg",
  4983. bottom: 0.01,
  4984. extra: 1166 / 1031
  4985. }
  4986. },
  4987. frontWingless: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(275, "lbs"),
  4990. name: "Front (Wingless)",
  4991. image: {
  4992. source: "./media/characters/kaylum/front-wingless.svg",
  4993. bottom: 0.01,
  4994. extra: 1117 / 1031
  4995. }
  4996. }
  4997. },
  4998. [
  4999. {
  5000. name: "Normal",
  5001. height: math.unit(3.05, "meters")
  5002. },
  5003. {
  5004. name: "Master",
  5005. height: math.unit(5.5, "meters")
  5006. },
  5007. {
  5008. name: "Rampage",
  5009. height: math.unit(19, "meters")
  5010. },
  5011. {
  5012. name: "Macro Lite",
  5013. height: math.unit(37, "meters")
  5014. },
  5015. {
  5016. name: "Hyper Predator",
  5017. height: math.unit(61, "meters")
  5018. },
  5019. {
  5020. name: "Macro",
  5021. height: math.unit(138, "meters"),
  5022. default: true
  5023. }
  5024. ]
  5025. ))
  5026. characterMakers.push(() => makeCharacter(
  5027. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5028. {
  5029. front: {
  5030. height: math.unit(5 + 5 / 12, "feet"),
  5031. weight: math.unit(120, "lbs"),
  5032. name: "Front",
  5033. image: {
  5034. source: "./media/characters/geta/front.svg",
  5035. extra: 1003/933,
  5036. bottom: 21/1024
  5037. }
  5038. },
  5039. paw: {
  5040. height: math.unit(0.35, "feet"),
  5041. name: "Paw",
  5042. image: {
  5043. source: "./media/characters/geta/paw.svg"
  5044. }
  5045. },
  5046. },
  5047. [
  5048. {
  5049. name: "Micro",
  5050. height: math.unit(3, "inches"),
  5051. default: true
  5052. },
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(5 + 5 / 12, "feet")
  5056. }
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5061. {
  5062. front: {
  5063. height: math.unit(6, "feet"),
  5064. weight: math.unit(300, "lbs"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/tyrnn/front.svg"
  5068. }
  5069. }
  5070. },
  5071. [
  5072. {
  5073. name: "Main Height",
  5074. height: math.unit(355, "feet"),
  5075. default: true
  5076. },
  5077. {
  5078. name: "Fave. Height",
  5079. height: math.unit(2400, "feet")
  5080. }
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5085. {
  5086. front: {
  5087. height: math.unit(6, "feet"),
  5088. weight: math.unit(300, "lbs"),
  5089. name: "Front",
  5090. image: {
  5091. source: "./media/characters/appledectomy/front.svg"
  5092. }
  5093. }
  5094. },
  5095. [
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(2500, "feet")
  5099. },
  5100. {
  5101. name: "Megamacro",
  5102. height: math.unit(50, "miles"),
  5103. default: true
  5104. },
  5105. {
  5106. name: "Gigamacro",
  5107. height: math.unit(5000, "miles")
  5108. },
  5109. {
  5110. name: "Teramacro",
  5111. height: math.unit(250000, "miles")
  5112. },
  5113. ]
  5114. ))
  5115. characterMakers.push(() => makeCharacter(
  5116. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5117. {
  5118. front: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(200, "lbs"),
  5121. name: "Front",
  5122. image: {
  5123. source: "./media/characters/vulpes/front.svg",
  5124. extra: 573 / 543,
  5125. bottom: 0.033
  5126. }
  5127. },
  5128. side: {
  5129. height: math.unit(6, "feet"),
  5130. weight: math.unit(200, "lbs"),
  5131. name: "Side",
  5132. image: {
  5133. source: "./media/characters/vulpes/side.svg",
  5134. extra: 577 / 549,
  5135. bottom: 11 / 588
  5136. }
  5137. },
  5138. back: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(200, "lbs"),
  5141. name: "Back",
  5142. image: {
  5143. source: "./media/characters/vulpes/back.svg",
  5144. extra: 573 / 549,
  5145. bottom: 20 / 593
  5146. }
  5147. },
  5148. feet: {
  5149. height: math.unit(1.276, "feet"),
  5150. name: "Feet",
  5151. image: {
  5152. source: "./media/characters/vulpes/feet.svg"
  5153. }
  5154. },
  5155. maw: {
  5156. height: math.unit(1.18, "feet"),
  5157. name: "Maw",
  5158. image: {
  5159. source: "./media/characters/vulpes/maw.svg"
  5160. }
  5161. },
  5162. },
  5163. [
  5164. {
  5165. name: "Micro",
  5166. height: math.unit(2, "inches")
  5167. },
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(6.3, "feet")
  5171. },
  5172. {
  5173. name: "Macro",
  5174. height: math.unit(850, "feet")
  5175. },
  5176. {
  5177. name: "Megamacro",
  5178. height: math.unit(7500, "feet"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Gigamacro",
  5183. height: math.unit(570000, "miles")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5189. {
  5190. front: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(210, "lbs"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/rain-fallen/front.svg"
  5196. }
  5197. },
  5198. side: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(210, "lbs"),
  5201. name: "Side",
  5202. image: {
  5203. source: "./media/characters/rain-fallen/side.svg"
  5204. }
  5205. },
  5206. back: {
  5207. height: math.unit(6, "feet"),
  5208. weight: math.unit(210, "lbs"),
  5209. name: "Back",
  5210. image: {
  5211. source: "./media/characters/rain-fallen/back.svg"
  5212. }
  5213. },
  5214. feral: {
  5215. height: math.unit(9, "feet"),
  5216. weight: math.unit(700, "lbs"),
  5217. name: "Feral",
  5218. image: {
  5219. source: "./media/characters/rain-fallen/feral.svg"
  5220. }
  5221. },
  5222. },
  5223. [
  5224. {
  5225. name: "Meddling with Mortals",
  5226. height: math.unit(8 + 8/12, "feet")
  5227. },
  5228. {
  5229. name: "Normal",
  5230. height: math.unit(5, "meter")
  5231. },
  5232. {
  5233. name: "Macro",
  5234. height: math.unit(150, "meter"),
  5235. default: true
  5236. },
  5237. {
  5238. name: "Megamacro",
  5239. height: math.unit(278e6, "meter")
  5240. },
  5241. {
  5242. name: "Gigamacro",
  5243. height: math.unit(2e9, "meter")
  5244. },
  5245. {
  5246. name: "Teramacro",
  5247. height: math.unit(8e12, "meter")
  5248. },
  5249. {
  5250. name: "Devourer",
  5251. height: math.unit(14, "zettameters")
  5252. },
  5253. {
  5254. name: "Scarlet King",
  5255. height: math.unit(18, "yottameters")
  5256. },
  5257. {
  5258. name: "Void",
  5259. height: math.unit(1e88, "yottameters")
  5260. }
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5265. {
  5266. standing: {
  5267. height: math.unit(6, "feet"),
  5268. weight: math.unit(180, "lbs"),
  5269. name: "Standing",
  5270. image: {
  5271. source: "./media/characters/zaakira/standing.svg",
  5272. extra: 1599/1504,
  5273. bottom: 39/1638
  5274. }
  5275. },
  5276. laying: {
  5277. height: math.unit(3.3, "feet"),
  5278. weight: math.unit(180, "lbs"),
  5279. name: "Laying",
  5280. image: {
  5281. source: "./media/characters/zaakira/laying.svg"
  5282. }
  5283. },
  5284. },
  5285. [
  5286. {
  5287. name: "Normal",
  5288. height: math.unit(12, "feet")
  5289. },
  5290. {
  5291. name: "Macro",
  5292. height: math.unit(279, "feet"),
  5293. default: true
  5294. }
  5295. ]
  5296. ))
  5297. characterMakers.push(() => makeCharacter(
  5298. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5299. {
  5300. femSfw: {
  5301. height: math.unit(8, "feet"),
  5302. weight: math.unit(350, "lb"),
  5303. name: "Fem",
  5304. image: {
  5305. source: "./media/characters/sigvald/fem-sfw.svg",
  5306. extra: 182 / 164,
  5307. bottom: 8.7 / 190.5
  5308. }
  5309. },
  5310. femNsfw: {
  5311. height: math.unit(8, "feet"),
  5312. weight: math.unit(350, "lb"),
  5313. name: "Fem (NSFW)",
  5314. image: {
  5315. source: "./media/characters/sigvald/fem-nsfw.svg",
  5316. extra: 182 / 164,
  5317. bottom: 8.7 / 190.5
  5318. }
  5319. },
  5320. maleNsfw: {
  5321. height: math.unit(8, "feet"),
  5322. weight: math.unit(350, "lb"),
  5323. name: "Male (NSFW)",
  5324. image: {
  5325. source: "./media/characters/sigvald/male-nsfw.svg",
  5326. extra: 182 / 164,
  5327. bottom: 8.7 / 190.5
  5328. }
  5329. },
  5330. hermNsfw: {
  5331. height: math.unit(8, "feet"),
  5332. weight: math.unit(350, "lb"),
  5333. name: "Herm (NSFW)",
  5334. image: {
  5335. source: "./media/characters/sigvald/herm-nsfw.svg",
  5336. extra: 182 / 164,
  5337. bottom: 8.7 / 190.5
  5338. }
  5339. },
  5340. dick: {
  5341. height: math.unit(2.36, "feet"),
  5342. name: "Dick",
  5343. image: {
  5344. source: "./media/characters/sigvald/dick.svg"
  5345. }
  5346. },
  5347. eye: {
  5348. height: math.unit(0.31, "feet"),
  5349. name: "Eye",
  5350. image: {
  5351. source: "./media/characters/sigvald/eye.svg"
  5352. }
  5353. },
  5354. mouth: {
  5355. height: math.unit(0.92, "feet"),
  5356. name: "Mouth",
  5357. image: {
  5358. source: "./media/characters/sigvald/mouth.svg"
  5359. }
  5360. },
  5361. paws: {
  5362. height: math.unit(2.2, "feet"),
  5363. name: "Paws",
  5364. image: {
  5365. source: "./media/characters/sigvald/paws.svg"
  5366. }
  5367. }
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(8, "feet")
  5373. },
  5374. {
  5375. name: "Large",
  5376. height: math.unit(12, "feet")
  5377. },
  5378. {
  5379. name: "Larger",
  5380. height: math.unit(20, "feet")
  5381. },
  5382. {
  5383. name: "Macro",
  5384. height: math.unit(150, "feet")
  5385. },
  5386. {
  5387. name: "Macro+",
  5388. height: math.unit(200, "feet"),
  5389. default: true
  5390. },
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5395. {
  5396. side: {
  5397. height: math.unit(12, "feet"),
  5398. weight: math.unit(2000, "kg"),
  5399. name: "Side",
  5400. image: {
  5401. source: "./media/characters/scott/side.svg",
  5402. extra: 754 / 724,
  5403. bottom: 0.069
  5404. }
  5405. },
  5406. upright: {
  5407. height: math.unit(12, "feet"),
  5408. weight: math.unit(2000, "kg"),
  5409. name: "Upright",
  5410. image: {
  5411. source: "./media/characters/scott/upright.svg",
  5412. extra: 3881 / 3722,
  5413. bottom: 0.05
  5414. }
  5415. },
  5416. },
  5417. [
  5418. {
  5419. name: "Normal",
  5420. height: math.unit(12, "feet"),
  5421. default: true
  5422. },
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5427. {
  5428. side: {
  5429. height: math.unit(8, "meters"),
  5430. weight: math.unit(84755, "lbs"),
  5431. name: "Side",
  5432. image: {
  5433. source: "./media/characters/tobias/side.svg",
  5434. extra: 1474 / 1096,
  5435. bottom: 38.9 / 1513.1235
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(8, "meters"),
  5443. default: true
  5444. },
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5449. {
  5450. front: {
  5451. height: math.unit(5.5, "feet"),
  5452. weight: math.unit(400, "lbs"),
  5453. name: "Front",
  5454. image: {
  5455. source: "./media/characters/kieran/front.svg",
  5456. extra: 2694 / 2364,
  5457. bottom: 217 / 2908
  5458. }
  5459. },
  5460. side: {
  5461. height: math.unit(5.5, "feet"),
  5462. weight: math.unit(400, "lbs"),
  5463. name: "Side",
  5464. image: {
  5465. source: "./media/characters/kieran/side.svg",
  5466. extra: 875 / 777,
  5467. bottom: 84.6 / 959
  5468. }
  5469. },
  5470. },
  5471. [
  5472. {
  5473. name: "Normal",
  5474. height: math.unit(5.5, "feet"),
  5475. default: true
  5476. },
  5477. ]
  5478. ))
  5479. characterMakers.push(() => makeCharacter(
  5480. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5481. {
  5482. side: {
  5483. height: math.unit(2, "meters"),
  5484. weight: math.unit(70, "kg"),
  5485. name: "Side",
  5486. image: {
  5487. source: "./media/characters/sanya/side.svg",
  5488. bottom: 0.02,
  5489. extra: 1.02
  5490. }
  5491. },
  5492. },
  5493. [
  5494. {
  5495. name: "Small",
  5496. height: math.unit(2, "meters")
  5497. },
  5498. {
  5499. name: "Normal",
  5500. height: math.unit(3, "meters")
  5501. },
  5502. {
  5503. name: "Macro",
  5504. height: math.unit(16, "meters"),
  5505. default: true
  5506. },
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5511. {
  5512. front: {
  5513. height: math.unit(2, "meters"),
  5514. weight: math.unit(120, "kg"),
  5515. name: "Front",
  5516. image: {
  5517. source: "./media/characters/miranda/front.svg",
  5518. extra: 195 / 185,
  5519. bottom: 10.9 / 206.5
  5520. }
  5521. },
  5522. back: {
  5523. height: math.unit(2, "meters"),
  5524. weight: math.unit(120, "kg"),
  5525. name: "Back",
  5526. image: {
  5527. source: "./media/characters/miranda/back.svg",
  5528. extra: 201 / 193,
  5529. bottom: 2.3 / 203.7
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(10, "feet"),
  5537. default: true
  5538. }
  5539. ]
  5540. ))
  5541. characterMakers.push(() => makeCharacter(
  5542. { name: "James", species: ["deer"], tags: ["anthro"] },
  5543. {
  5544. side: {
  5545. height: math.unit(2, "meters"),
  5546. weight: math.unit(100, "kg"),
  5547. name: "Front",
  5548. image: {
  5549. source: "./media/characters/james/front.svg",
  5550. extra: 10 / 8.5
  5551. }
  5552. },
  5553. },
  5554. [
  5555. {
  5556. name: "Normal",
  5557. height: math.unit(8.5, "feet"),
  5558. default: true
  5559. }
  5560. ]
  5561. ))
  5562. characterMakers.push(() => makeCharacter(
  5563. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5564. {
  5565. side: {
  5566. height: math.unit(9.5, "feet"),
  5567. weight: math.unit(2500, "lbs"),
  5568. name: "Side",
  5569. image: {
  5570. source: "./media/characters/heather/side.svg"
  5571. }
  5572. },
  5573. },
  5574. [
  5575. {
  5576. name: "Normal",
  5577. height: math.unit(9.5, "feet"),
  5578. default: true
  5579. }
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5584. {
  5585. side: {
  5586. height: math.unit(6.5, "feet"),
  5587. weight: math.unit(400, "lbs"),
  5588. name: "Side",
  5589. image: {
  5590. source: "./media/characters/lukas/side.svg",
  5591. extra: 7.25 / 6.5
  5592. }
  5593. },
  5594. },
  5595. [
  5596. {
  5597. name: "Normal",
  5598. height: math.unit(6.5, "feet"),
  5599. default: true
  5600. }
  5601. ]
  5602. ))
  5603. characterMakers.push(() => makeCharacter(
  5604. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5605. {
  5606. side: {
  5607. height: math.unit(5, "feet"),
  5608. weight: math.unit(3000, "lbs"),
  5609. name: "Side",
  5610. image: {
  5611. source: "./media/characters/louise/side.svg"
  5612. }
  5613. },
  5614. },
  5615. [
  5616. {
  5617. name: "Normal",
  5618. height: math.unit(5, "feet"),
  5619. default: true
  5620. }
  5621. ]
  5622. ))
  5623. characterMakers.push(() => makeCharacter(
  5624. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5625. {
  5626. side: {
  5627. height: math.unit(6, "feet"),
  5628. weight: math.unit(150, "lbs"),
  5629. name: "Side",
  5630. image: {
  5631. source: "./media/characters/ramona/side.svg",
  5632. extra: 871/854,
  5633. bottom: 41/912
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(5.3, "meters"),
  5641. default: true
  5642. },
  5643. {
  5644. name: "Macro",
  5645. height: math.unit(20, "stories")
  5646. },
  5647. {
  5648. name: "Macro+",
  5649. height: math.unit(50, "stories")
  5650. },
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5655. {
  5656. standing: {
  5657. height: math.unit(5.75, "feet"),
  5658. weight: math.unit(160, "lbs"),
  5659. name: "Standing",
  5660. image: {
  5661. source: "./media/characters/deerpuff/standing.svg",
  5662. extra: 682 / 624
  5663. }
  5664. },
  5665. sitting: {
  5666. height: math.unit(5.75 / 1.79, "feet"),
  5667. weight: math.unit(160, "lbs"),
  5668. name: "Sitting",
  5669. image: {
  5670. source: "./media/characters/deerpuff/sitting.svg",
  5671. bottom: 44 / 400,
  5672. extra: 1
  5673. }
  5674. },
  5675. taurLaying: {
  5676. height: math.unit(6, "feet"),
  5677. weight: math.unit(400, "lbs"),
  5678. name: "Taur (Laying)",
  5679. image: {
  5680. source: "./media/characters/deerpuff/taur-laying.svg"
  5681. }
  5682. },
  5683. },
  5684. [
  5685. {
  5686. name: "Puffball",
  5687. height: math.unit(6, "inches")
  5688. },
  5689. {
  5690. name: "Normalpuff",
  5691. height: math.unit(5.75, "feet")
  5692. },
  5693. {
  5694. name: "Macropuff",
  5695. height: math.unit(1500, "feet"),
  5696. default: true
  5697. },
  5698. {
  5699. name: "Megapuff",
  5700. height: math.unit(500, "miles")
  5701. },
  5702. {
  5703. name: "Gigapuff",
  5704. height: math.unit(250000, "miles")
  5705. },
  5706. {
  5707. name: "Omegapuff",
  5708. height: math.unit(1000, "lightyears")
  5709. },
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5714. {
  5715. stomping: {
  5716. height: math.unit(6, "feet"),
  5717. weight: math.unit(170, "lbs"),
  5718. name: "Stomping",
  5719. image: {
  5720. source: "./media/characters/vivian/stomping.svg"
  5721. }
  5722. },
  5723. sitting: {
  5724. height: math.unit(6 / 1.75, "feet"),
  5725. weight: math.unit(170, "lbs"),
  5726. name: "Sitting",
  5727. image: {
  5728. source: "./media/characters/vivian/sitting.svg",
  5729. bottom: 1 / 6.4,
  5730. extra: 1,
  5731. }
  5732. },
  5733. },
  5734. [
  5735. {
  5736. name: "Normal",
  5737. height: math.unit(7, "feet"),
  5738. default: true
  5739. },
  5740. {
  5741. name: "Macro",
  5742. height: math.unit(10, "stories")
  5743. },
  5744. {
  5745. name: "Macro+",
  5746. height: math.unit(30, "stories")
  5747. },
  5748. {
  5749. name: "Megamacro",
  5750. height: math.unit(10, "miles")
  5751. },
  5752. {
  5753. name: "Megamacro+",
  5754. height: math.unit(2750000, "meters")
  5755. },
  5756. ]
  5757. ))
  5758. characterMakers.push(() => makeCharacter(
  5759. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5760. {
  5761. front: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(160, "lbs"),
  5764. name: "Front",
  5765. image: {
  5766. source: "./media/characters/prince/front.svg",
  5767. extra: 3400 / 3000
  5768. }
  5769. },
  5770. jumping: {
  5771. height: math.unit(6, "feet"),
  5772. weight: math.unit(160, "lbs"),
  5773. name: "Jumping",
  5774. image: {
  5775. source: "./media/characters/prince/jump.svg",
  5776. extra: 2555 / 2134
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(7.75, "feet"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Not cute",
  5788. height: math.unit(17, "feet")
  5789. },
  5790. {
  5791. name: "I said NOT",
  5792. height: math.unit(91, "feet")
  5793. },
  5794. {
  5795. name: "Please stop",
  5796. height: math.unit(560, "feet")
  5797. },
  5798. {
  5799. name: "What have you done",
  5800. height: math.unit(2200, "feet")
  5801. },
  5802. {
  5803. name: "Deer God",
  5804. height: math.unit(3.6, "miles")
  5805. },
  5806. ]
  5807. ))
  5808. characterMakers.push(() => makeCharacter(
  5809. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5810. {
  5811. standing: {
  5812. height: math.unit(6, "feet"),
  5813. weight: math.unit(300, "lbs"),
  5814. name: "Standing",
  5815. image: {
  5816. source: "./media/characters/psymon/standing.svg",
  5817. extra: 1888 / 1810,
  5818. bottom: 0.05
  5819. }
  5820. },
  5821. slithering: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(300, "lbs"),
  5824. name: "Slithering",
  5825. image: {
  5826. source: "./media/characters/psymon/slithering.svg",
  5827. extra: 1330 / 1224
  5828. }
  5829. },
  5830. slitheringAlt: {
  5831. height: math.unit(6, "feet"),
  5832. weight: math.unit(300, "lbs"),
  5833. name: "Slithering (Alt)",
  5834. image: {
  5835. source: "./media/characters/psymon/slithering-alt.svg",
  5836. extra: 1330 / 1224
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(11.25, "feet"),
  5844. default: true
  5845. },
  5846. {
  5847. name: "Large",
  5848. height: math.unit(27, "feet")
  5849. },
  5850. {
  5851. name: "Giant",
  5852. height: math.unit(87, "feet")
  5853. },
  5854. {
  5855. name: "Macro",
  5856. height: math.unit(365, "feet")
  5857. },
  5858. {
  5859. name: "Megamacro",
  5860. height: math.unit(3, "miles")
  5861. },
  5862. {
  5863. name: "World Serpent",
  5864. height: math.unit(8000, "miles")
  5865. },
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5870. {
  5871. front: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(180, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/daimos/front.svg",
  5877. extra: 4160 / 3897,
  5878. bottom: 0.021
  5879. }
  5880. }
  5881. },
  5882. [
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(8, "feet"),
  5886. default: true
  5887. },
  5888. {
  5889. name: "Big Dog",
  5890. height: math.unit(22, "feet")
  5891. },
  5892. {
  5893. name: "Macro",
  5894. height: math.unit(127, "feet")
  5895. },
  5896. {
  5897. name: "Megamacro",
  5898. height: math.unit(3600, "feet")
  5899. },
  5900. ]
  5901. ))
  5902. characterMakers.push(() => makeCharacter(
  5903. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5904. {
  5905. side: {
  5906. height: math.unit(6, "feet"),
  5907. weight: math.unit(180, "lbs"),
  5908. name: "Side",
  5909. image: {
  5910. source: "./media/characters/blake/side.svg",
  5911. extra: 1212 / 1120,
  5912. bottom: 0.05
  5913. }
  5914. },
  5915. crouched: {
  5916. height: math.unit(6 * 0.57, "feet"),
  5917. weight: math.unit(180, "lbs"),
  5918. name: "Crouched",
  5919. image: {
  5920. source: "./media/characters/blake/crouched.svg",
  5921. extra: 840 / 587,
  5922. bottom: 0.04
  5923. }
  5924. },
  5925. bent: {
  5926. height: math.unit(6 * 0.75, "feet"),
  5927. weight: math.unit(180, "lbs"),
  5928. name: "Bent",
  5929. image: {
  5930. source: "./media/characters/blake/bent.svg",
  5931. extra: 592 / 544,
  5932. bottom: 0.035
  5933. }
  5934. },
  5935. },
  5936. [
  5937. {
  5938. name: "Normal",
  5939. height: math.unit(8 + 1 / 6, "feet"),
  5940. default: true
  5941. },
  5942. {
  5943. name: "Big Backside",
  5944. height: math.unit(37, "feet")
  5945. },
  5946. {
  5947. name: "Subway Shredder",
  5948. height: math.unit(72, "feet")
  5949. },
  5950. {
  5951. name: "City Carver",
  5952. height: math.unit(1675, "feet")
  5953. },
  5954. {
  5955. name: "Tectonic Tweaker",
  5956. height: math.unit(2300, "miles")
  5957. },
  5958. ]
  5959. ))
  5960. characterMakers.push(() => makeCharacter(
  5961. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5962. {
  5963. front: {
  5964. height: math.unit(6, "feet"),
  5965. weight: math.unit(180, "lbs"),
  5966. name: "Front",
  5967. image: {
  5968. source: "./media/characters/guisetto/front.svg",
  5969. extra: 856 / 817,
  5970. bottom: 0.06
  5971. }
  5972. },
  5973. airborne: {
  5974. height: math.unit(6, "feet"),
  5975. weight: math.unit(180, "lbs"),
  5976. name: "Airborne",
  5977. image: {
  5978. source: "./media/characters/guisetto/airborne.svg",
  5979. extra: 584 / 525
  5980. }
  5981. },
  5982. },
  5983. [
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(10 + 11 / 12, "feet"),
  5987. default: true
  5988. },
  5989. {
  5990. name: "Large",
  5991. height: math.unit(35, "feet")
  5992. },
  5993. {
  5994. name: "Macro",
  5995. height: math.unit(475, "feet")
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(6, "feet"),
  6004. weight: math.unit(180, "lbs"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/luxor/front.svg",
  6008. extra: 2940 / 2152
  6009. }
  6010. },
  6011. back: {
  6012. height: math.unit(6, "feet"),
  6013. weight: math.unit(180, "lbs"),
  6014. name: "Back",
  6015. image: {
  6016. source: "./media/characters/luxor/back.svg",
  6017. extra: 1083 / 960
  6018. }
  6019. },
  6020. },
  6021. [
  6022. {
  6023. name: "Normal",
  6024. height: math.unit(5 + 5 / 6, "feet"),
  6025. default: true
  6026. },
  6027. {
  6028. name: "Lamp",
  6029. height: math.unit(50, "feet")
  6030. },
  6031. {
  6032. name: "Lämp",
  6033. height: math.unit(300, "feet")
  6034. },
  6035. {
  6036. name: "The sun is a lamp",
  6037. height: math.unit(250000, "miles")
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6043. {
  6044. front: {
  6045. height: math.unit(6, "feet"),
  6046. weight: math.unit(50, "lbs"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/huoyan/front.svg"
  6050. }
  6051. },
  6052. side: {
  6053. height: math.unit(6, "feet"),
  6054. weight: math.unit(180, "lbs"),
  6055. name: "Side",
  6056. image: {
  6057. source: "./media/characters/huoyan/side.svg"
  6058. }
  6059. },
  6060. },
  6061. [
  6062. {
  6063. name: "Chef",
  6064. height: math.unit(9, "feet")
  6065. },
  6066. {
  6067. name: "Normal",
  6068. height: math.unit(65, "feet"),
  6069. default: true
  6070. },
  6071. {
  6072. name: "Macro",
  6073. height: math.unit(780, "feet")
  6074. },
  6075. {
  6076. name: "Flaming Mountain",
  6077. height: math.unit(4.8, "miles")
  6078. },
  6079. {
  6080. name: "Celestial",
  6081. height: math.unit(765000, "miles")
  6082. },
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6087. {
  6088. front: {
  6089. height: math.unit(5 + 3 / 4, "feet"),
  6090. weight: math.unit(120, "lbs"),
  6091. name: "Front",
  6092. image: {
  6093. source: "./media/characters/tails/front.svg"
  6094. }
  6095. }
  6096. },
  6097. [
  6098. {
  6099. name: "Normal",
  6100. height: math.unit(5 + 3 / 4, "feet"),
  6101. default: true
  6102. }
  6103. ]
  6104. ))
  6105. characterMakers.push(() => makeCharacter(
  6106. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6107. {
  6108. front: {
  6109. height: math.unit(4, "feet"),
  6110. weight: math.unit(50, "lbs"),
  6111. name: "Front",
  6112. image: {
  6113. source: "./media/characters/rainy/front.svg"
  6114. }
  6115. }
  6116. },
  6117. [
  6118. {
  6119. name: "Macro",
  6120. height: math.unit(800, "feet"),
  6121. default: true
  6122. }
  6123. ]
  6124. ))
  6125. characterMakers.push(() => makeCharacter(
  6126. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6127. {
  6128. front: {
  6129. height: math.unit(6, "feet"),
  6130. weight: math.unit(150, "lbs"),
  6131. name: "Front",
  6132. image: {
  6133. source: "./media/characters/rainier/front.svg"
  6134. }
  6135. }
  6136. },
  6137. [
  6138. {
  6139. name: "Micro",
  6140. height: math.unit(2, "mm"),
  6141. default: true
  6142. }
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6147. {
  6148. front: {
  6149. height: math.unit(8 + 4/12, "feet"),
  6150. weight: math.unit(450, "kilograms"),
  6151. volume: math.unit(5, "cups"),
  6152. name: "Front",
  6153. image: {
  6154. source: "./media/characters/andy-renard/front.svg",
  6155. extra: 1839/1726,
  6156. bottom: 134/1973
  6157. }
  6158. },
  6159. back: {
  6160. height: math.unit(8 + 4/12, "feet"),
  6161. weight: math.unit(450, "kilograms"),
  6162. volume: math.unit(5, "cups"),
  6163. name: "Back",
  6164. image: {
  6165. source: "./media/characters/andy-renard/back.svg",
  6166. extra: 1838/1710,
  6167. bottom: 105/1943
  6168. }
  6169. },
  6170. },
  6171. [
  6172. {
  6173. name: "Tall",
  6174. height: math.unit(8 + 4/12, "feet")
  6175. },
  6176. {
  6177. name: "Mini Macro",
  6178. height: math.unit(15, "feet"),
  6179. default: true
  6180. },
  6181. {
  6182. name: "Macro",
  6183. height: math.unit(100, "feet")
  6184. },
  6185. {
  6186. name: "Mega Macro",
  6187. height: math.unit(1000, "feet")
  6188. },
  6189. {
  6190. name: "Giga Macro",
  6191. height: math.unit(10, "miles")
  6192. },
  6193. {
  6194. name: "God Macro",
  6195. height: math.unit(1, "multiverse")
  6196. },
  6197. ]
  6198. ))
  6199. characterMakers.push(() => makeCharacter(
  6200. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6201. {
  6202. front: {
  6203. height: math.unit(6, "feet"),
  6204. weight: math.unit(210, "lbs"),
  6205. name: "Front",
  6206. image: {
  6207. source: "./media/characters/cimmaron/front-sfw.svg",
  6208. extra: 701 / 676,
  6209. bottom: 0.046
  6210. }
  6211. },
  6212. back: {
  6213. height: math.unit(6, "feet"),
  6214. weight: math.unit(210, "lbs"),
  6215. name: "Back",
  6216. image: {
  6217. source: "./media/characters/cimmaron/back-sfw.svg",
  6218. extra: 701 / 676,
  6219. bottom: 0.046
  6220. }
  6221. },
  6222. frontNsfw: {
  6223. height: math.unit(6, "feet"),
  6224. weight: math.unit(210, "lbs"),
  6225. name: "Front (NSFW)",
  6226. image: {
  6227. source: "./media/characters/cimmaron/front-nsfw.svg",
  6228. extra: 701 / 676,
  6229. bottom: 0.046
  6230. }
  6231. },
  6232. backNsfw: {
  6233. height: math.unit(6, "feet"),
  6234. weight: math.unit(210, "lbs"),
  6235. name: "Back (NSFW)",
  6236. image: {
  6237. source: "./media/characters/cimmaron/back-nsfw.svg",
  6238. extra: 701 / 676,
  6239. bottom: 0.046
  6240. }
  6241. },
  6242. dick: {
  6243. height: math.unit(1.714, "feet"),
  6244. name: "Dick",
  6245. image: {
  6246. source: "./media/characters/cimmaron/dick.svg"
  6247. }
  6248. },
  6249. },
  6250. [
  6251. {
  6252. name: "Normal",
  6253. height: math.unit(6, "feet"),
  6254. default: true
  6255. },
  6256. {
  6257. name: "Macro Mayor",
  6258. height: math.unit(350, "meters")
  6259. },
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6264. {
  6265. front: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(200, "lbs"),
  6268. name: "Front",
  6269. image: {
  6270. source: "./media/characters/akari/front.svg",
  6271. extra: 962 / 901,
  6272. bottom: 0.04
  6273. }
  6274. }
  6275. },
  6276. [
  6277. {
  6278. name: "Micro",
  6279. height: math.unit(5, "inches"),
  6280. default: true
  6281. },
  6282. {
  6283. name: "Normal",
  6284. height: math.unit(7, "feet")
  6285. },
  6286. ]
  6287. ))
  6288. characterMakers.push(() => makeCharacter(
  6289. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6290. {
  6291. front: {
  6292. height: math.unit(6, "feet"),
  6293. weight: math.unit(140, "lbs"),
  6294. name: "Front",
  6295. image: {
  6296. source: "./media/characters/cynosura/front.svg",
  6297. extra: 896 / 847
  6298. }
  6299. },
  6300. back: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(140, "lbs"),
  6303. name: "Back",
  6304. image: {
  6305. source: "./media/characters/cynosura/back.svg",
  6306. extra: 1365 / 1250
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Micro",
  6313. height: math.unit(4, "inches")
  6314. },
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(5.75, "feet"),
  6318. default: true
  6319. },
  6320. {
  6321. name: "Tall",
  6322. height: math.unit(10, "feet")
  6323. },
  6324. {
  6325. name: "Big",
  6326. height: math.unit(20, "feet")
  6327. },
  6328. {
  6329. name: "Macro",
  6330. height: math.unit(50, "feet")
  6331. },
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(13 + 2/12, "feet"),
  6339. weight: math.unit(800, "kg"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/gin/front.svg",
  6343. extra: 1312/1191,
  6344. bottom: 45/1357
  6345. }
  6346. },
  6347. mouth: {
  6348. height: math.unit(2.39 * 1.8, "feet"),
  6349. name: "Mouth",
  6350. image: {
  6351. source: "./media/characters/gin/mouth.svg"
  6352. }
  6353. },
  6354. hand: {
  6355. height: math.unit(1.57 * 2.19, "feet"),
  6356. name: "Hand",
  6357. image: {
  6358. source: "./media/characters/gin/hand.svg"
  6359. }
  6360. },
  6361. foot: {
  6362. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6363. name: "Foot",
  6364. image: {
  6365. source: "./media/characters/gin/foot.svg"
  6366. }
  6367. },
  6368. sole: {
  6369. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6370. name: "Sole",
  6371. image: {
  6372. source: "./media/characters/gin/sole.svg"
  6373. }
  6374. },
  6375. },
  6376. [
  6377. {
  6378. name: "Very Small",
  6379. height: math.unit(13 + 2 / 12, "feet")
  6380. },
  6381. {
  6382. name: "Micro",
  6383. height: math.unit(600, "miles")
  6384. },
  6385. {
  6386. name: "Regular",
  6387. height: math.unit(20, "earths"),
  6388. default: true
  6389. },
  6390. {
  6391. name: "Macro",
  6392. height: math.unit(2.2, "solarradii")
  6393. },
  6394. {
  6395. name: "Teramacro",
  6396. height: math.unit(1.2, "galaxies")
  6397. },
  6398. {
  6399. name: "Omegamacro",
  6400. height: math.unit(200, "universes")
  6401. },
  6402. ]
  6403. ))
  6404. characterMakers.push(() => makeCharacter(
  6405. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6406. {
  6407. front: {
  6408. height: math.unit(6 + 1 / 6, "feet"),
  6409. weight: math.unit(178, "lbs"),
  6410. name: "Front",
  6411. image: {
  6412. source: "./media/characters/guy/front.svg"
  6413. }
  6414. }
  6415. },
  6416. [
  6417. {
  6418. name: "Normal",
  6419. height: math.unit(6 + 1 / 6, "feet"),
  6420. default: true
  6421. },
  6422. {
  6423. name: "Large",
  6424. height: math.unit(25 + 7 / 12, "feet")
  6425. },
  6426. {
  6427. name: "Macro",
  6428. height: math.unit(60 + 9 / 12, "feet")
  6429. },
  6430. {
  6431. name: "Macro+",
  6432. height: math.unit(246, "feet")
  6433. },
  6434. {
  6435. name: "Macro++",
  6436. height: math.unit(878, "feet")
  6437. }
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6442. {
  6443. front: {
  6444. height: math.unit(9, "feet"),
  6445. weight: math.unit(800, "lbs"),
  6446. name: "Front",
  6447. image: {
  6448. source: "./media/characters/tiberius/front.svg",
  6449. extra: 2295 / 2071
  6450. }
  6451. },
  6452. back: {
  6453. height: math.unit(9, "feet"),
  6454. weight: math.unit(800, "lbs"),
  6455. name: "Back",
  6456. image: {
  6457. source: "./media/characters/tiberius/back.svg",
  6458. extra: 2373 / 2160
  6459. }
  6460. },
  6461. },
  6462. [
  6463. {
  6464. name: "Normal",
  6465. height: math.unit(9, "feet"),
  6466. default: true
  6467. }
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6472. {
  6473. front: {
  6474. height: math.unit(6, "feet"),
  6475. weight: math.unit(600, "lbs"),
  6476. name: "Front",
  6477. image: {
  6478. source: "./media/characters/surgo/front.svg",
  6479. extra: 3591 / 2227
  6480. }
  6481. },
  6482. back: {
  6483. height: math.unit(6, "feet"),
  6484. weight: math.unit(600, "lbs"),
  6485. name: "Back",
  6486. image: {
  6487. source: "./media/characters/surgo/back.svg",
  6488. extra: 3557 / 2228
  6489. }
  6490. },
  6491. laying: {
  6492. height: math.unit(6 * 0.85, "feet"),
  6493. weight: math.unit(600, "lbs"),
  6494. name: "Laying",
  6495. image: {
  6496. source: "./media/characters/surgo/laying.svg"
  6497. }
  6498. },
  6499. },
  6500. [
  6501. {
  6502. name: "Normal",
  6503. height: math.unit(6, "feet"),
  6504. default: true
  6505. }
  6506. ]
  6507. ))
  6508. characterMakers.push(() => makeCharacter(
  6509. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6510. {
  6511. side: {
  6512. height: math.unit(6, "feet"),
  6513. weight: math.unit(150, "lbs"),
  6514. name: "Side",
  6515. image: {
  6516. source: "./media/characters/cibus/side.svg",
  6517. extra: 800 / 400
  6518. }
  6519. },
  6520. },
  6521. [
  6522. {
  6523. name: "Normal",
  6524. height: math.unit(6, "feet"),
  6525. default: true
  6526. }
  6527. ]
  6528. ))
  6529. characterMakers.push(() => makeCharacter(
  6530. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6531. {
  6532. front: {
  6533. height: math.unit(6, "feet"),
  6534. weight: math.unit(240, "lbs"),
  6535. name: "Front",
  6536. image: {
  6537. source: "./media/characters/nibbles/front.svg"
  6538. }
  6539. },
  6540. side: {
  6541. height: math.unit(6, "feet"),
  6542. weight: math.unit(240, "lbs"),
  6543. name: "Side",
  6544. image: {
  6545. source: "./media/characters/nibbles/side.svg"
  6546. }
  6547. },
  6548. },
  6549. [
  6550. {
  6551. name: "Normal",
  6552. height: math.unit(9, "feet"),
  6553. default: true
  6554. }
  6555. ]
  6556. ))
  6557. characterMakers.push(() => makeCharacter(
  6558. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6559. {
  6560. side: {
  6561. height: math.unit(5 + 1 / 6, "feet"),
  6562. weight: math.unit(130, "lbs"),
  6563. name: "Side",
  6564. image: {
  6565. source: "./media/characters/rikky/side.svg",
  6566. extra: 851 / 801
  6567. }
  6568. },
  6569. },
  6570. [
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(5 + 1 / 6, "feet")
  6574. },
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(152, "feet"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Megamacro",
  6582. height: math.unit(7, "miles")
  6583. }
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6588. {
  6589. side: {
  6590. height: math.unit(370, "cm"),
  6591. weight: math.unit(350, "lbs"),
  6592. name: "Side",
  6593. image: {
  6594. source: "./media/characters/malfressa/side.svg"
  6595. }
  6596. },
  6597. walking: {
  6598. height: math.unit(370, "cm"),
  6599. weight: math.unit(350, "lbs"),
  6600. name: "Walking",
  6601. image: {
  6602. source: "./media/characters/malfressa/walking.svg"
  6603. }
  6604. },
  6605. feral: {
  6606. height: math.unit(2500, "cm"),
  6607. weight: math.unit(100000, "lbs"),
  6608. name: "Feral",
  6609. image: {
  6610. source: "./media/characters/malfressa/feral.svg",
  6611. extra: 2108 / 837,
  6612. bottom: 0.02
  6613. }
  6614. },
  6615. },
  6616. [
  6617. {
  6618. name: "Normal",
  6619. height: math.unit(370, "cm")
  6620. },
  6621. {
  6622. name: "Macro",
  6623. height: math.unit(300, "meters"),
  6624. default: true
  6625. }
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6630. {
  6631. front: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(60, "kg"),
  6634. name: "Front",
  6635. image: {
  6636. source: "./media/characters/jaro/front.svg",
  6637. extra: 845/817,
  6638. bottom: 45/890
  6639. }
  6640. },
  6641. back: {
  6642. height: math.unit(6, "feet"),
  6643. weight: math.unit(60, "kg"),
  6644. name: "Back",
  6645. image: {
  6646. source: "./media/characters/jaro/back.svg",
  6647. extra: 847/817,
  6648. bottom: 34/881
  6649. }
  6650. },
  6651. },
  6652. [
  6653. {
  6654. name: "Micro",
  6655. height: math.unit(7, "inches")
  6656. },
  6657. {
  6658. name: "Normal",
  6659. height: math.unit(5.5, "feet"),
  6660. default: true
  6661. },
  6662. {
  6663. name: "Minimacro",
  6664. height: math.unit(20, "feet")
  6665. },
  6666. {
  6667. name: "Macro",
  6668. height: math.unit(200, "meters")
  6669. }
  6670. ]
  6671. ))
  6672. characterMakers.push(() => makeCharacter(
  6673. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6674. {
  6675. front: {
  6676. height: math.unit(6, "feet"),
  6677. weight: math.unit(195, "lb"),
  6678. name: "Front",
  6679. image: {
  6680. source: "./media/characters/rogue/front.svg"
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Macro",
  6687. height: math.unit(90, "feet"),
  6688. default: true
  6689. },
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6694. {
  6695. standing: {
  6696. height: math.unit(5 + 8 / 12, "feet"),
  6697. weight: math.unit(140, "lb"),
  6698. name: "Standing",
  6699. image: {
  6700. source: "./media/characters/piper/standing.svg",
  6701. extra: 1440/1284,
  6702. bottom: 66/1506
  6703. }
  6704. },
  6705. running: {
  6706. height: math.unit(5 + 8 / 12, "feet"),
  6707. weight: math.unit(140, "lb"),
  6708. name: "Running",
  6709. image: {
  6710. source: "./media/characters/piper/running.svg",
  6711. extra: 3948/3655,
  6712. bottom: 0/3948
  6713. }
  6714. },
  6715. sole: {
  6716. height: math.unit(0.81, "feet"),
  6717. weight: math.unit(2, "kg"),
  6718. name: "Sole",
  6719. image: {
  6720. source: "./media/characters/piper/sole.svg"
  6721. }
  6722. },
  6723. nipple: {
  6724. height: math.unit(0.25, "feet"),
  6725. weight: math.unit(1.5, "lb"),
  6726. name: "Nipple",
  6727. image: {
  6728. source: "./media/characters/piper/nipple.svg"
  6729. }
  6730. },
  6731. head: {
  6732. height: math.unit(1.1, "feet"),
  6733. name: "Head",
  6734. image: {
  6735. source: "./media/characters/piper/head.svg"
  6736. }
  6737. },
  6738. },
  6739. [
  6740. {
  6741. name: "Micro",
  6742. height: math.unit(2, "inches")
  6743. },
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(5 + 8 / 12, "feet")
  6747. },
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(250, "feet"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Megamacro",
  6755. height: math.unit(7, "miles")
  6756. },
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(6, "feet"),
  6764. weight: math.unit(220, "lb"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/gemini/front.svg"
  6768. }
  6769. },
  6770. back: {
  6771. height: math.unit(6, "feet"),
  6772. weight: math.unit(220, "lb"),
  6773. name: "Back",
  6774. image: {
  6775. source: "./media/characters/gemini/back.svg"
  6776. }
  6777. },
  6778. kneeling: {
  6779. height: math.unit(6 / 1.5, "feet"),
  6780. weight: math.unit(220, "lb"),
  6781. name: "Kneeling",
  6782. image: {
  6783. source: "./media/characters/gemini/kneeling.svg",
  6784. bottom: 0.02
  6785. }
  6786. },
  6787. },
  6788. [
  6789. {
  6790. name: "Macro",
  6791. height: math.unit(300, "meters"),
  6792. default: true
  6793. },
  6794. {
  6795. name: "Megamacro",
  6796. height: math.unit(6900, "meters")
  6797. },
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6802. {
  6803. anthro: {
  6804. height: math.unit(2.35, "meters"),
  6805. weight: math.unit(73, "kg"),
  6806. name: "Anthro",
  6807. image: {
  6808. source: "./media/characters/alicia/anthro.svg",
  6809. extra: 2571 / 2385,
  6810. bottom: 75 / 2648
  6811. }
  6812. },
  6813. paw: {
  6814. height: math.unit(1.32, "feet"),
  6815. name: "Paw",
  6816. image: {
  6817. source: "./media/characters/alicia/paw.svg"
  6818. }
  6819. },
  6820. feral: {
  6821. height: math.unit(1.69, "meters"),
  6822. weight: math.unit(73, "kg"),
  6823. name: "Feral",
  6824. image: {
  6825. source: "./media/characters/alicia/feral.svg",
  6826. extra: 2123 / 1715,
  6827. bottom: 222 / 2349
  6828. }
  6829. },
  6830. },
  6831. [
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(2.35, "meters")
  6835. },
  6836. {
  6837. name: "Macro",
  6838. height: math.unit(60, "meters"),
  6839. default: true
  6840. },
  6841. {
  6842. name: "Megamacro",
  6843. height: math.unit(10000, "kilometers")
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(7, "feet"),
  6852. weight: math.unit(250, "lbs"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/archy/front.svg"
  6856. }
  6857. }
  6858. },
  6859. [
  6860. {
  6861. name: "Micro",
  6862. height: math.unit(1, "inch")
  6863. },
  6864. {
  6865. name: "Shorty",
  6866. height: math.unit(5, "feet")
  6867. },
  6868. {
  6869. name: "Normal",
  6870. height: math.unit(7, "feet")
  6871. },
  6872. {
  6873. name: "Macro",
  6874. height: math.unit(600, "meters"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Megamacro",
  6879. height: math.unit(1, "mile")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(1.65, "meters"),
  6888. weight: math.unit(74, "kg"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/berri/front.svg",
  6892. extra: 857 / 837,
  6893. bottom: 18 / 877
  6894. }
  6895. },
  6896. bum: {
  6897. height: math.unit(1.46, "feet"),
  6898. name: "Bum",
  6899. image: {
  6900. source: "./media/characters/berri/bum.svg"
  6901. }
  6902. },
  6903. mouth: {
  6904. height: math.unit(0.44, "feet"),
  6905. name: "Mouth",
  6906. image: {
  6907. source: "./media/characters/berri/mouth.svg"
  6908. }
  6909. },
  6910. paw: {
  6911. height: math.unit(0.826, "feet"),
  6912. name: "Paw",
  6913. image: {
  6914. source: "./media/characters/berri/paw.svg"
  6915. }
  6916. },
  6917. },
  6918. [
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(1.65, "meters")
  6922. },
  6923. {
  6924. name: "Macro",
  6925. height: math.unit(60, "m"),
  6926. default: true
  6927. },
  6928. {
  6929. name: "Megamacro",
  6930. height: math.unit(9.213, "km")
  6931. },
  6932. {
  6933. name: "Planet Eater",
  6934. height: math.unit(489, "megameters")
  6935. },
  6936. {
  6937. name: "Teramacro",
  6938. height: math.unit(2471635000000, "meters")
  6939. },
  6940. {
  6941. name: "Examacro",
  6942. height: math.unit(8.0624e+26, "meters")
  6943. }
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6948. {
  6949. front: {
  6950. height: math.unit(1.72, "meters"),
  6951. weight: math.unit(68, "kg"),
  6952. name: "Front",
  6953. image: {
  6954. source: "./media/characters/lexi/front.svg"
  6955. }
  6956. }
  6957. },
  6958. [
  6959. {
  6960. name: "Very Smol",
  6961. height: math.unit(10, "mm")
  6962. },
  6963. {
  6964. name: "Micro",
  6965. height: math.unit(6.8, "cm"),
  6966. default: true
  6967. },
  6968. {
  6969. name: "Normal",
  6970. height: math.unit(1.72, "m")
  6971. }
  6972. ]
  6973. ))
  6974. characterMakers.push(() => makeCharacter(
  6975. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6976. {
  6977. front: {
  6978. height: math.unit(1.69, "meters"),
  6979. weight: math.unit(68, "kg"),
  6980. name: "Front",
  6981. image: {
  6982. source: "./media/characters/martin/front.svg",
  6983. extra: 596 / 581
  6984. }
  6985. }
  6986. },
  6987. [
  6988. {
  6989. name: "Micro",
  6990. height: math.unit(6.85, "cm"),
  6991. default: true
  6992. },
  6993. {
  6994. name: "Normal",
  6995. height: math.unit(1.69, "m")
  6996. }
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7001. {
  7002. front: {
  7003. height: math.unit(1.69, "meters"),
  7004. weight: math.unit(68, "kg"),
  7005. name: "Front",
  7006. image: {
  7007. source: "./media/characters/juno/front.svg"
  7008. }
  7009. }
  7010. },
  7011. [
  7012. {
  7013. name: "Micro",
  7014. height: math.unit(7, "cm")
  7015. },
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(1.89, "m")
  7019. },
  7020. {
  7021. name: "Macro",
  7022. height: math.unit(353, "meters"),
  7023. default: true
  7024. }
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(1.93, "meters"),
  7032. weight: math.unit(83, "kg"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/samantha/front.svg"
  7036. }
  7037. },
  7038. frontClothed: {
  7039. height: math.unit(1.93, "meters"),
  7040. weight: math.unit(83, "kg"),
  7041. name: "Front (Clothed)",
  7042. image: {
  7043. source: "./media/characters/samantha/front-clothed.svg"
  7044. }
  7045. },
  7046. back: {
  7047. height: math.unit(1.93, "meters"),
  7048. weight: math.unit(83, "kg"),
  7049. name: "Back",
  7050. image: {
  7051. source: "./media/characters/samantha/back.svg"
  7052. }
  7053. },
  7054. },
  7055. [
  7056. {
  7057. name: "Normal",
  7058. height: math.unit(1.93, "m")
  7059. },
  7060. {
  7061. name: "Macro",
  7062. height: math.unit(74, "meters"),
  7063. default: true
  7064. },
  7065. {
  7066. name: "Macro+",
  7067. height: math.unit(223, "meters"),
  7068. },
  7069. {
  7070. name: "Megamacro",
  7071. height: math.unit(8381, "meters"),
  7072. },
  7073. {
  7074. name: "Megamacro+",
  7075. height: math.unit(12000, "kilometers")
  7076. },
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7081. {
  7082. front: {
  7083. height: math.unit(1.92, "meters"),
  7084. weight: math.unit(80, "kg"),
  7085. name: "Front",
  7086. image: {
  7087. source: "./media/characters/dr-clay/front.svg"
  7088. }
  7089. },
  7090. frontClothed: {
  7091. height: math.unit(1.92, "meters"),
  7092. weight: math.unit(80, "kg"),
  7093. name: "Front (Clothed)",
  7094. image: {
  7095. source: "./media/characters/dr-clay/front-clothed.svg"
  7096. }
  7097. }
  7098. },
  7099. [
  7100. {
  7101. name: "Normal",
  7102. height: math.unit(1.92, "m")
  7103. },
  7104. {
  7105. name: "Macro",
  7106. height: math.unit(214, "meters"),
  7107. default: true
  7108. },
  7109. {
  7110. name: "Macro+",
  7111. height: math.unit(12.237, "meters"),
  7112. },
  7113. {
  7114. name: "Megamacro",
  7115. height: math.unit(557, "megameters"),
  7116. },
  7117. {
  7118. name: "Unimaginable",
  7119. height: math.unit(120e9, "lightyears")
  7120. },
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(2, "meters"),
  7128. weight: math.unit(80, "kg"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7132. }
  7133. }
  7134. },
  7135. [
  7136. {
  7137. name: "Teramacro",
  7138. height: math.unit(500000, "lightyears"),
  7139. default: true
  7140. },
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7145. {
  7146. crux: {
  7147. height: math.unit(2, "meters"),
  7148. weight: math.unit(150, "kg"),
  7149. name: "Crux",
  7150. image: {
  7151. source: "./media/characters/vemus/crux.svg",
  7152. extra: 1074/936,
  7153. bottom: 23/1097
  7154. }
  7155. },
  7156. skunkTanuki: {
  7157. height: math.unit(2, "meters"),
  7158. weight: math.unit(150, "kg"),
  7159. name: "Skunk-Tanuki",
  7160. image: {
  7161. source: "./media/characters/vemus/skunk-tanuki.svg",
  7162. extra: 926/893,
  7163. bottom: 20/946
  7164. }
  7165. },
  7166. },
  7167. [
  7168. {
  7169. name: "Normal",
  7170. height: math.unit(3.75, "meters"),
  7171. default: true
  7172. },
  7173. {
  7174. name: "Big",
  7175. height: math.unit(8, "meters")
  7176. },
  7177. {
  7178. name: "Macro",
  7179. height: math.unit(100, "meters")
  7180. },
  7181. {
  7182. name: "Macro+",
  7183. height: math.unit(1500, "meters")
  7184. },
  7185. {
  7186. name: "Stellar",
  7187. height: math.unit(14e8, "meters")
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(2, "meters"),
  7196. weight: math.unit(70, "kg"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/beherit/front.svg",
  7200. extra: 1234/1109,
  7201. bottom: 55/1289
  7202. }
  7203. }
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(6, "feet")
  7209. },
  7210. {
  7211. name: "Lorg",
  7212. height: math.unit(25, "feet"),
  7213. default: true
  7214. },
  7215. {
  7216. name: "Lorger",
  7217. height: math.unit(75, "feet")
  7218. },
  7219. {
  7220. name: "Macro",
  7221. height: math.unit(200, "meters")
  7222. },
  7223. ]
  7224. ))
  7225. characterMakers.push(() => makeCharacter(
  7226. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7227. {
  7228. front: {
  7229. height: math.unit(2, "meters"),
  7230. weight: math.unit(150, "kg"),
  7231. name: "Front",
  7232. image: {
  7233. source: "./media/characters/everett/front.svg",
  7234. extra: 1017/866,
  7235. bottom: 86/1103
  7236. }
  7237. },
  7238. paw: {
  7239. height: math.unit(2 / 3.6, "meters"),
  7240. name: "Paw",
  7241. image: {
  7242. source: "./media/characters/everett/paw.svg"
  7243. }
  7244. },
  7245. },
  7246. [
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(15, "feet"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Lorg",
  7254. height: math.unit(70, "feet"),
  7255. default: true
  7256. },
  7257. {
  7258. name: "Lorger",
  7259. height: math.unit(250, "feet")
  7260. },
  7261. {
  7262. name: "Macro",
  7263. height: math.unit(500, "meters")
  7264. },
  7265. ]
  7266. ))
  7267. characterMakers.push(() => makeCharacter(
  7268. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7269. {
  7270. front: {
  7271. height: math.unit(2, "meters"),
  7272. weight: math.unit(86, "kg"),
  7273. name: "Front",
  7274. image: {
  7275. source: "./media/characters/rose/front.svg",
  7276. extra: 1785/1636,
  7277. bottom: 30/1815
  7278. },
  7279. form: "liom",
  7280. default: true
  7281. },
  7282. frontSporty: {
  7283. height: math.unit(2, "meters"),
  7284. weight: math.unit(86, "kg"),
  7285. name: "Front (Sporty)",
  7286. image: {
  7287. source: "./media/characters/rose/front-sporty.svg",
  7288. extra: 350/335,
  7289. bottom: 10/360
  7290. },
  7291. form: "liom"
  7292. },
  7293. frontAlt: {
  7294. height: math.unit(1.6, "meters"),
  7295. weight: math.unit(86, "kg"),
  7296. name: "Front (Alt)",
  7297. image: {
  7298. source: "./media/characters/rose/front-alt.svg",
  7299. extra: 299/283,
  7300. bottom: 3/302
  7301. },
  7302. form: "liom"
  7303. },
  7304. plush: {
  7305. height: math.unit(2, "meters"),
  7306. weight: math.unit(86/3, "kg"),
  7307. name: "Plush",
  7308. image: {
  7309. source: "./media/characters/rose/plush.svg",
  7310. extra: 361/337,
  7311. bottom: 11/372
  7312. },
  7313. form: "plush",
  7314. default: true
  7315. },
  7316. faeStanding: {
  7317. height: math.unit(10, "cm"),
  7318. weight: math.unit(10, "grams"),
  7319. name: "Standing",
  7320. image: {
  7321. source: "./media/characters/rose/fae-standing.svg",
  7322. extra: 1189/1060,
  7323. bottom: 27/1216
  7324. },
  7325. form: "fae",
  7326. default: true
  7327. },
  7328. faeSitting: {
  7329. height: math.unit(5, "cm"),
  7330. weight: math.unit(10, "grams"),
  7331. name: "Sitting",
  7332. image: {
  7333. source: "./media/characters/rose/fae-sitting.svg",
  7334. extra: 737/577,
  7335. bottom: 356/1093
  7336. },
  7337. form: "fae"
  7338. },
  7339. faePaw: {
  7340. height: math.unit(1.35, "cm"),
  7341. name: "Paw",
  7342. image: {
  7343. source: "./media/characters/rose/fae-paw.svg"
  7344. },
  7345. form: "fae"
  7346. },
  7347. },
  7348. [
  7349. {
  7350. name: "True Micro",
  7351. height: math.unit(9, "cm"),
  7352. form: "liom"
  7353. },
  7354. {
  7355. name: "Micro",
  7356. height: math.unit(16, "cm"),
  7357. form: "liom"
  7358. },
  7359. {
  7360. name: "Normal",
  7361. height: math.unit(1.85, "meters"),
  7362. default: true,
  7363. form: "liom"
  7364. },
  7365. {
  7366. name: "Mini-Macro",
  7367. height: math.unit(5, "meters"),
  7368. form: "liom"
  7369. },
  7370. {
  7371. name: "Macro",
  7372. height: math.unit(15, "meters"),
  7373. form: "liom"
  7374. },
  7375. {
  7376. name: "True Macro",
  7377. height: math.unit(40, "meters"),
  7378. form: "liom"
  7379. },
  7380. {
  7381. name: "City Scale",
  7382. height: math.unit(1, "km"),
  7383. form: "liom"
  7384. },
  7385. {
  7386. name: "Plushie",
  7387. height: math.unit(9, "cm"),
  7388. form: "plush",
  7389. default: true
  7390. },
  7391. {
  7392. name: "Fae",
  7393. height: math.unit(10, "cm"),
  7394. form: "fae",
  7395. default: true
  7396. },
  7397. ],
  7398. {
  7399. "liom": {
  7400. name: "Liom"
  7401. },
  7402. "plush": {
  7403. name: "Plush"
  7404. },
  7405. "fae": {
  7406. name: "Fae Fox",
  7407. default: true
  7408. }
  7409. }
  7410. ))
  7411. characterMakers.push(() => makeCharacter(
  7412. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7413. {
  7414. front: {
  7415. height: math.unit(2, "meters"),
  7416. weight: math.unit(350, "lbs"),
  7417. name: "Front",
  7418. image: {
  7419. source: "./media/characters/regal/front.svg"
  7420. }
  7421. },
  7422. back: {
  7423. height: math.unit(2, "meters"),
  7424. weight: math.unit(350, "lbs"),
  7425. name: "Back",
  7426. image: {
  7427. source: "./media/characters/regal/back.svg"
  7428. }
  7429. },
  7430. },
  7431. [
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(350, "feet"),
  7435. default: true
  7436. }
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7441. {
  7442. front: {
  7443. height: math.unit(4 + 11 / 12, "feet"),
  7444. weight: math.unit(100, "lbs"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/opal/front.svg"
  7448. }
  7449. },
  7450. frontAlt: {
  7451. height: math.unit(4 + 11 / 12, "feet"),
  7452. weight: math.unit(100, "lbs"),
  7453. name: "Front (Alt)",
  7454. image: {
  7455. source: "./media/characters/opal/front-alt.svg"
  7456. }
  7457. },
  7458. },
  7459. [
  7460. {
  7461. name: "Small",
  7462. height: math.unit(4 + 11 / 12, "feet")
  7463. },
  7464. {
  7465. name: "Normal",
  7466. height: math.unit(20, "feet"),
  7467. default: true
  7468. },
  7469. {
  7470. name: "Macro",
  7471. height: math.unit(120, "feet")
  7472. },
  7473. {
  7474. name: "Megamacro",
  7475. height: math.unit(80, "miles")
  7476. },
  7477. {
  7478. name: "True Size",
  7479. height: math.unit(100000, "lightyears")
  7480. },
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7485. {
  7486. front: {
  7487. height: math.unit(6, "feet"),
  7488. weight: math.unit(200, "lbs"),
  7489. name: "Front",
  7490. image: {
  7491. source: "./media/characters/vector-wuff/front.svg"
  7492. }
  7493. }
  7494. },
  7495. [
  7496. {
  7497. name: "Normal",
  7498. height: math.unit(2.8, "meters")
  7499. },
  7500. {
  7501. name: "Macro",
  7502. height: math.unit(450, "meters"),
  7503. default: true
  7504. },
  7505. {
  7506. name: "Megamacro",
  7507. height: math.unit(15, "kilometers")
  7508. }
  7509. ]
  7510. ))
  7511. characterMakers.push(() => makeCharacter(
  7512. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7513. {
  7514. front: {
  7515. height: math.unit(6, "feet"),
  7516. weight: math.unit(256, "lbs"),
  7517. name: "Front",
  7518. image: {
  7519. source: "./media/characters/dannik/front.svg"
  7520. }
  7521. }
  7522. },
  7523. [
  7524. {
  7525. name: "Macro",
  7526. height: math.unit(69.57, "meters"),
  7527. default: true
  7528. },
  7529. ]
  7530. ))
  7531. characterMakers.push(() => makeCharacter(
  7532. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7533. {
  7534. front: {
  7535. height: math.unit(6, "feet"),
  7536. weight: math.unit(120, "lbs"),
  7537. name: "Front",
  7538. image: {
  7539. source: "./media/characters/azura-saharah/front.svg"
  7540. }
  7541. },
  7542. back: {
  7543. height: math.unit(6, "feet"),
  7544. weight: math.unit(120, "lbs"),
  7545. name: "Back",
  7546. image: {
  7547. source: "./media/characters/azura-saharah/back.svg"
  7548. }
  7549. },
  7550. },
  7551. [
  7552. {
  7553. name: "Macro",
  7554. height: math.unit(100, "feet"),
  7555. default: true
  7556. },
  7557. ]
  7558. ))
  7559. characterMakers.push(() => makeCharacter(
  7560. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7561. {
  7562. side: {
  7563. height: math.unit(5 + 4 / 12, "feet"),
  7564. weight: math.unit(163, "lbs"),
  7565. name: "Side",
  7566. image: {
  7567. source: "./media/characters/kennedy/side.svg"
  7568. }
  7569. }
  7570. },
  7571. [
  7572. {
  7573. name: "Standard Doggo",
  7574. height: math.unit(5 + 4 / 12, "feet")
  7575. },
  7576. {
  7577. name: "Big Doggo",
  7578. height: math.unit(25 + 3 / 12, "feet"),
  7579. default: true
  7580. },
  7581. ]
  7582. ))
  7583. characterMakers.push(() => makeCharacter(
  7584. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7585. {
  7586. front: {
  7587. height: math.unit(5 + 5/12, "feet"),
  7588. weight: math.unit(100, "lbs"),
  7589. name: "Front",
  7590. image: {
  7591. source: "./media/characters/odios-de-lunar/front.svg",
  7592. extra: 1468/1323,
  7593. bottom: 22/1490
  7594. }
  7595. }
  7596. },
  7597. [
  7598. {
  7599. name: "Micro",
  7600. height: math.unit(3, "inches")
  7601. },
  7602. {
  7603. name: "Normal",
  7604. height: math.unit(5.5, "feet"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Macro",
  7609. height: math.unit(100, "feet")
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7615. {
  7616. back: {
  7617. height: math.unit(6, "feet"),
  7618. weight: math.unit(220, "lbs"),
  7619. name: "Back",
  7620. image: {
  7621. source: "./media/characters/mandake/back.svg"
  7622. }
  7623. }
  7624. },
  7625. [
  7626. {
  7627. name: "Normal",
  7628. height: math.unit(7, "feet"),
  7629. default: true
  7630. },
  7631. {
  7632. name: "Macro",
  7633. height: math.unit(78, "feet")
  7634. },
  7635. {
  7636. name: "Macro+",
  7637. height: math.unit(300, "meters")
  7638. },
  7639. {
  7640. name: "Macro++",
  7641. height: math.unit(2400, "feet")
  7642. },
  7643. {
  7644. name: "Megamacro",
  7645. height: math.unit(5167, "meters")
  7646. },
  7647. {
  7648. name: "Gigamacro",
  7649. height: math.unit(41769, "miles")
  7650. },
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7655. {
  7656. front: {
  7657. height: math.unit(6, "feet"),
  7658. weight: math.unit(120, "lbs"),
  7659. name: "Front",
  7660. image: {
  7661. source: "./media/characters/yozey/front.svg"
  7662. }
  7663. },
  7664. frontAlt: {
  7665. height: math.unit(6, "feet"),
  7666. weight: math.unit(120, "lbs"),
  7667. name: "Front (Alt)",
  7668. image: {
  7669. source: "./media/characters/yozey/front-alt.svg"
  7670. }
  7671. },
  7672. side: {
  7673. height: math.unit(6, "feet"),
  7674. weight: math.unit(120, "lbs"),
  7675. name: "Side",
  7676. image: {
  7677. source: "./media/characters/yozey/side.svg"
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Micro",
  7684. height: math.unit(3, "inches"),
  7685. default: true
  7686. },
  7687. {
  7688. name: "Normal",
  7689. height: math.unit(6, "feet")
  7690. }
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(6, "feet"),
  7698. weight: math.unit(103, "lbs"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/valeska-voss/front.svg"
  7702. }
  7703. }
  7704. },
  7705. [
  7706. {
  7707. name: "Mini-Sized Sub",
  7708. height: math.unit(3.1, "inches")
  7709. },
  7710. {
  7711. name: "Mid-Sized Sub",
  7712. height: math.unit(6.2, "inches")
  7713. },
  7714. {
  7715. name: "Full-Sized Sub",
  7716. height: math.unit(9.3, "inches")
  7717. },
  7718. {
  7719. name: "Normal",
  7720. height: math.unit(5 + 2 / 12, "foot"),
  7721. default: true
  7722. },
  7723. ]
  7724. ))
  7725. characterMakers.push(() => makeCharacter(
  7726. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7727. {
  7728. front: {
  7729. height: math.unit(6, "feet"),
  7730. weight: math.unit(160, "lbs"),
  7731. name: "Front",
  7732. image: {
  7733. source: "./media/characters/gene-zeta/front.svg",
  7734. extra: 3006 / 2826,
  7735. bottom: 182 / 3188
  7736. }
  7737. }
  7738. },
  7739. [
  7740. {
  7741. name: "Micro",
  7742. height: math.unit(6, "inches")
  7743. },
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(5 + 11 / 12, "foot"),
  7747. default: true
  7748. },
  7749. {
  7750. name: "Macro",
  7751. height: math.unit(140, "feet")
  7752. },
  7753. {
  7754. name: "Supercharged",
  7755. height: math.unit(2500, "feet")
  7756. },
  7757. ]
  7758. ))
  7759. characterMakers.push(() => makeCharacter(
  7760. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7761. {
  7762. front: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(350, "lbs"),
  7765. name: "Front",
  7766. image: {
  7767. source: "./media/characters/razinox/front.svg",
  7768. extra: 1686 / 1548,
  7769. bottom: 28.2 / 1868
  7770. }
  7771. },
  7772. back: {
  7773. height: math.unit(6, "feet"),
  7774. weight: math.unit(350, "lbs"),
  7775. name: "Back",
  7776. image: {
  7777. source: "./media/characters/razinox/back.svg",
  7778. extra: 1660 / 1590,
  7779. bottom: 15 / 1665
  7780. }
  7781. },
  7782. },
  7783. [
  7784. {
  7785. name: "Normal",
  7786. height: math.unit(10 + 8 / 12, "foot")
  7787. },
  7788. {
  7789. name: "Minimacro",
  7790. height: math.unit(15, "foot")
  7791. },
  7792. {
  7793. name: "Macro",
  7794. height: math.unit(60, "foot"),
  7795. default: true
  7796. },
  7797. {
  7798. name: "Megamacro",
  7799. height: math.unit(5, "miles")
  7800. },
  7801. {
  7802. name: "Gigamacro",
  7803. height: math.unit(6000, "miles")
  7804. },
  7805. ]
  7806. ))
  7807. characterMakers.push(() => makeCharacter(
  7808. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7809. {
  7810. front: {
  7811. height: math.unit(6, "feet"),
  7812. weight: math.unit(150, "lbs"),
  7813. name: "Front",
  7814. image: {
  7815. source: "./media/characters/cobalt/front.svg"
  7816. }
  7817. }
  7818. },
  7819. [
  7820. {
  7821. name: "Normal",
  7822. height: math.unit(8 + 1 / 12, "foot")
  7823. },
  7824. {
  7825. name: "Macro",
  7826. height: math.unit(111, "foot"),
  7827. default: true
  7828. },
  7829. {
  7830. name: "Supracosmic",
  7831. height: math.unit(1e42, "feet")
  7832. },
  7833. ]
  7834. ))
  7835. characterMakers.push(() => makeCharacter(
  7836. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7837. {
  7838. front: {
  7839. height: math.unit(5, "inches"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/amanda/front.svg",
  7843. extra: 926/791,
  7844. bottom: 38/964
  7845. }
  7846. },
  7847. back: {
  7848. height: math.unit(5, "inches"),
  7849. name: "Back",
  7850. image: {
  7851. source: "./media/characters/amanda/back.svg",
  7852. extra: 909/805,
  7853. bottom: 43/952
  7854. }
  7855. },
  7856. },
  7857. [
  7858. {
  7859. name: "Micro",
  7860. height: math.unit(5, "inches"),
  7861. default: true
  7862. },
  7863. ]
  7864. ))
  7865. characterMakers.push(() => makeCharacter(
  7866. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7867. {
  7868. front: {
  7869. height: math.unit(2.75, "meters"),
  7870. weight: math.unit(1200, "lb"),
  7871. name: "Front",
  7872. image: {
  7873. source: "./media/characters/teal/front.svg",
  7874. extra: 2463 / 2320,
  7875. bottom: 166 / 2629
  7876. }
  7877. },
  7878. back: {
  7879. height: math.unit(2.75, "meters"),
  7880. weight: math.unit(1200, "lb"),
  7881. name: "Back",
  7882. image: {
  7883. source: "./media/characters/teal/back.svg",
  7884. extra: 2580 / 2489,
  7885. bottom: 151 / 2731
  7886. }
  7887. },
  7888. sitting: {
  7889. height: math.unit(1.9, "meters"),
  7890. weight: math.unit(1200, "lb"),
  7891. name: "Sitting",
  7892. image: {
  7893. source: "./media/characters/teal/sitting.svg",
  7894. extra: 623 / 590,
  7895. bottom: 121 / 744
  7896. }
  7897. },
  7898. standing: {
  7899. height: math.unit(2.75, "meters"),
  7900. weight: math.unit(1200, "lb"),
  7901. name: "Standing",
  7902. image: {
  7903. source: "./media/characters/teal/standing.svg",
  7904. extra: 923 / 893,
  7905. bottom: 60 / 983
  7906. }
  7907. },
  7908. stretching: {
  7909. height: math.unit(3.65, "meters"),
  7910. weight: math.unit(1200, "lb"),
  7911. name: "Stretching",
  7912. image: {
  7913. source: "./media/characters/teal/stretching.svg",
  7914. extra: 1276 / 1244,
  7915. bottom: 0 / 1276
  7916. }
  7917. },
  7918. legged: {
  7919. height: math.unit(1.3, "meters"),
  7920. weight: math.unit(100, "lb"),
  7921. name: "Legged",
  7922. image: {
  7923. source: "./media/characters/teal/legged.svg",
  7924. extra: 462 / 437,
  7925. bottom: 24 / 486
  7926. }
  7927. },
  7928. naga: {
  7929. height: math.unit(5.4, "meters"),
  7930. weight: math.unit(4000, "lb"),
  7931. name: "Naga",
  7932. image: {
  7933. source: "./media/characters/teal/naga.svg",
  7934. extra: 1902 / 1858,
  7935. bottom: 0 / 1902
  7936. }
  7937. },
  7938. hand: {
  7939. height: math.unit(0.52, "meters"),
  7940. name: "Hand",
  7941. image: {
  7942. source: "./media/characters/teal/hand.svg"
  7943. }
  7944. },
  7945. maw: {
  7946. height: math.unit(0.43, "meters"),
  7947. name: "Maw",
  7948. image: {
  7949. source: "./media/characters/teal/maw.svg"
  7950. }
  7951. },
  7952. slit: {
  7953. height: math.unit(0.25, "meters"),
  7954. name: "Slit",
  7955. image: {
  7956. source: "./media/characters/teal/slit.svg"
  7957. }
  7958. },
  7959. },
  7960. [
  7961. {
  7962. name: "Normal",
  7963. height: math.unit(2.75, "meters"),
  7964. default: true
  7965. },
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(300, "feet")
  7969. },
  7970. {
  7971. name: "Macro+",
  7972. height: math.unit(2000, "feet")
  7973. },
  7974. ]
  7975. ))
  7976. characterMakers.push(() => makeCharacter(
  7977. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7978. {
  7979. frontCat: {
  7980. height: math.unit(6, "feet"),
  7981. weight: math.unit(180, "lbs"),
  7982. name: "Front (Cat)",
  7983. image: {
  7984. source: "./media/characters/ravin-amulet/front-cat.svg"
  7985. }
  7986. },
  7987. frontCatAlt: {
  7988. height: math.unit(6, "feet"),
  7989. weight: math.unit(180, "lbs"),
  7990. name: "Front (Alt, Cat)",
  7991. image: {
  7992. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7993. }
  7994. },
  7995. frontWerewolf: {
  7996. height: math.unit(6 * 1.2, "feet"),
  7997. weight: math.unit(225, "lbs"),
  7998. name: "Front (Werewolf)",
  7999. image: {
  8000. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8001. }
  8002. },
  8003. backWerewolf: {
  8004. height: math.unit(6 * 1.2, "feet"),
  8005. weight: math.unit(225, "lbs"),
  8006. name: "Back (Werewolf)",
  8007. image: {
  8008. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8009. }
  8010. },
  8011. },
  8012. [
  8013. {
  8014. name: "Nano",
  8015. height: math.unit(1, "micrometer")
  8016. },
  8017. {
  8018. name: "Micro",
  8019. height: math.unit(1, "inch")
  8020. },
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(6, "feet"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(60, "feet")
  8029. }
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8034. {
  8035. front: {
  8036. height: math.unit(6, "feet"),
  8037. weight: math.unit(165, "lbs"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/fluoresce/front.svg"
  8041. }
  8042. }
  8043. },
  8044. [
  8045. {
  8046. name: "Micro",
  8047. height: math.unit(6, "cm")
  8048. },
  8049. {
  8050. name: "Normal",
  8051. height: math.unit(5 + 7 / 12, "feet"),
  8052. default: true
  8053. },
  8054. {
  8055. name: "Macro",
  8056. height: math.unit(56, "feet")
  8057. },
  8058. {
  8059. name: "Megamacro",
  8060. height: math.unit(1.9, "miles")
  8061. },
  8062. ]
  8063. ))
  8064. characterMakers.push(() => makeCharacter(
  8065. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8066. {
  8067. front: {
  8068. height: math.unit(9 + 6 / 12, "feet"),
  8069. weight: math.unit(523, "lbs"),
  8070. name: "Side",
  8071. image: {
  8072. source: "./media/characters/aurora/side.svg"
  8073. }
  8074. }
  8075. },
  8076. [
  8077. {
  8078. name: "Normal",
  8079. height: math.unit(9 + 6 / 12, "feet")
  8080. },
  8081. {
  8082. name: "Macro",
  8083. height: math.unit(96, "feet"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Macro+",
  8088. height: math.unit(243, "feet")
  8089. },
  8090. ]
  8091. ))
  8092. characterMakers.push(() => makeCharacter(
  8093. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8094. {
  8095. front: {
  8096. height: math.unit(194, "cm"),
  8097. weight: math.unit(90, "kg"),
  8098. name: "Front",
  8099. image: {
  8100. source: "./media/characters/ranek/front.svg",
  8101. extra: 1862/1791,
  8102. bottom: 80/1942
  8103. }
  8104. },
  8105. back: {
  8106. height: math.unit(194, "cm"),
  8107. weight: math.unit(90, "kg"),
  8108. name: "Back",
  8109. image: {
  8110. source: "./media/characters/ranek/back.svg",
  8111. extra: 1853/1787,
  8112. bottom: 74/1927
  8113. }
  8114. },
  8115. feral: {
  8116. height: math.unit(30, "cm"),
  8117. weight: math.unit(1.6, "lbs"),
  8118. name: "Feral",
  8119. image: {
  8120. source: "./media/characters/ranek/feral.svg",
  8121. extra: 990/631,
  8122. bottom: 29/1019
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(194, "cm"),
  8130. default: true
  8131. },
  8132. {
  8133. name: "Macro",
  8134. height: math.unit(100, "meters")
  8135. },
  8136. ]
  8137. ))
  8138. characterMakers.push(() => makeCharacter(
  8139. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8140. {
  8141. front: {
  8142. height: math.unit(5 + 6 / 12, "feet"),
  8143. weight: math.unit(153, "lbs"),
  8144. name: "Front",
  8145. image: {
  8146. source: "./media/characters/andrew-cooper/front.svg"
  8147. }
  8148. },
  8149. },
  8150. [
  8151. {
  8152. name: "Nano",
  8153. height: math.unit(1, "mm")
  8154. },
  8155. {
  8156. name: "Micro",
  8157. height: math.unit(2, "inches")
  8158. },
  8159. {
  8160. name: "Normal",
  8161. height: math.unit(5 + 6 / 12, "feet"),
  8162. default: true
  8163. }
  8164. ]
  8165. ))
  8166. characterMakers.push(() => makeCharacter(
  8167. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8168. {
  8169. front: {
  8170. height: math.unit(6, "feet"),
  8171. weight: math.unit(180, "lbs"),
  8172. name: "Front",
  8173. image: {
  8174. source: "./media/characters/akane-sato/front.svg",
  8175. extra: 1219 / 1140
  8176. }
  8177. },
  8178. back: {
  8179. height: math.unit(6, "feet"),
  8180. weight: math.unit(180, "lbs"),
  8181. name: "Back",
  8182. image: {
  8183. source: "./media/characters/akane-sato/back.svg",
  8184. extra: 1219 / 1170
  8185. }
  8186. },
  8187. },
  8188. [
  8189. {
  8190. name: "Normal",
  8191. height: math.unit(2.5, "meters")
  8192. },
  8193. {
  8194. name: "Macro",
  8195. height: math.unit(250, "meters"),
  8196. default: true
  8197. },
  8198. {
  8199. name: "Megamacro",
  8200. height: math.unit(25, "km")
  8201. },
  8202. ]
  8203. ))
  8204. characterMakers.push(() => makeCharacter(
  8205. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8206. {
  8207. front: {
  8208. height: math.unit(6, "feet"),
  8209. weight: math.unit(65, "kg"),
  8210. name: "Front",
  8211. image: {
  8212. source: "./media/characters/rook/front.svg",
  8213. extra: 960 / 950
  8214. }
  8215. }
  8216. },
  8217. [
  8218. {
  8219. name: "Normal",
  8220. height: math.unit(8.8, "feet")
  8221. },
  8222. {
  8223. name: "Macro",
  8224. height: math.unit(88, "feet"),
  8225. default: true
  8226. },
  8227. {
  8228. name: "Megamacro",
  8229. height: math.unit(8, "miles")
  8230. },
  8231. ]
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8235. {
  8236. front: {
  8237. height: math.unit(12 + 2 / 12, "feet"),
  8238. weight: math.unit(808, "lbs"),
  8239. name: "Front",
  8240. image: {
  8241. source: "./media/characters/prodigy/front.svg"
  8242. }
  8243. }
  8244. },
  8245. [
  8246. {
  8247. name: "Normal",
  8248. height: math.unit(12 + 2 / 12, "feet"),
  8249. default: true
  8250. },
  8251. {
  8252. name: "Macro",
  8253. height: math.unit(143, "feet")
  8254. },
  8255. {
  8256. name: "Macro+",
  8257. height: math.unit(400, "feet")
  8258. },
  8259. ]
  8260. ))
  8261. characterMakers.push(() => makeCharacter(
  8262. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8263. {
  8264. front: {
  8265. height: math.unit(6, "feet"),
  8266. weight: math.unit(225, "lbs"),
  8267. name: "Front",
  8268. image: {
  8269. source: "./media/characters/daniel/front.svg"
  8270. }
  8271. },
  8272. leaning: {
  8273. height: math.unit(6, "feet"),
  8274. weight: math.unit(225, "lbs"),
  8275. name: "Leaning",
  8276. image: {
  8277. source: "./media/characters/daniel/leaning.svg"
  8278. }
  8279. },
  8280. },
  8281. [
  8282. {
  8283. name: "Macro",
  8284. height: math.unit(1000, "feet"),
  8285. default: true
  8286. },
  8287. ]
  8288. ))
  8289. characterMakers.push(() => makeCharacter(
  8290. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8291. {
  8292. front: {
  8293. height: math.unit(6, "feet"),
  8294. weight: math.unit(88, "lbs"),
  8295. name: "Front",
  8296. image: {
  8297. source: "./media/characters/chiros/front.svg",
  8298. extra: 306 / 226
  8299. }
  8300. },
  8301. side: {
  8302. height: math.unit(6, "feet"),
  8303. weight: math.unit(88, "lbs"),
  8304. name: "Side",
  8305. image: {
  8306. source: "./media/characters/chiros/side.svg",
  8307. extra: 306 / 226
  8308. }
  8309. },
  8310. },
  8311. [
  8312. {
  8313. name: "Normal",
  8314. height: math.unit(6, "cm"),
  8315. default: true
  8316. },
  8317. ]
  8318. ))
  8319. characterMakers.push(() => makeCharacter(
  8320. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8321. {
  8322. front: {
  8323. height: math.unit(6, "feet"),
  8324. weight: math.unit(100, "lbs"),
  8325. name: "Front",
  8326. image: {
  8327. source: "./media/characters/selka/front.svg",
  8328. extra: 947 / 887
  8329. }
  8330. }
  8331. },
  8332. [
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(5, "cm"),
  8336. default: true
  8337. },
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8342. {
  8343. front: {
  8344. height: math.unit(8 + 3 / 12, "feet"),
  8345. weight: math.unit(424, "lbs"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/verin/front.svg",
  8349. extra: 1845 / 1550
  8350. }
  8351. },
  8352. frontArmored: {
  8353. height: math.unit(8 + 3 / 12, "feet"),
  8354. weight: math.unit(424, "lbs"),
  8355. name: "Front (Armored)",
  8356. image: {
  8357. source: "./media/characters/verin/front-armor.svg",
  8358. extra: 1845 / 1550,
  8359. bottom: 0.01
  8360. }
  8361. },
  8362. back: {
  8363. height: math.unit(8 + 3 / 12, "feet"),
  8364. weight: math.unit(424, "lbs"),
  8365. name: "Back",
  8366. image: {
  8367. source: "./media/characters/verin/back.svg",
  8368. bottom: 0.1,
  8369. extra: 1
  8370. }
  8371. },
  8372. foot: {
  8373. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8374. name: "Foot",
  8375. image: {
  8376. source: "./media/characters/verin/foot.svg"
  8377. }
  8378. },
  8379. },
  8380. [
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(8 + 3 / 12, "feet")
  8384. },
  8385. {
  8386. name: "Minimacro",
  8387. height: math.unit(21, "feet"),
  8388. default: true
  8389. },
  8390. {
  8391. name: "Macro",
  8392. height: math.unit(626, "feet")
  8393. },
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8398. {
  8399. front: {
  8400. height: math.unit(2.718, "meters"),
  8401. weight: math.unit(150, "lbs"),
  8402. name: "Front",
  8403. image: {
  8404. source: "./media/characters/sovrim-terraquian/front.svg",
  8405. extra: 1752/1689,
  8406. bottom: 36/1788
  8407. }
  8408. },
  8409. back: {
  8410. height: math.unit(2.718, "meters"),
  8411. weight: math.unit(150, "lbs"),
  8412. name: "Back",
  8413. image: {
  8414. source: "./media/characters/sovrim-terraquian/back.svg",
  8415. extra: 1698/1657,
  8416. bottom: 58/1756
  8417. }
  8418. },
  8419. tongue: {
  8420. height: math.unit(2.865, "feet"),
  8421. name: "Tongue",
  8422. image: {
  8423. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8424. }
  8425. },
  8426. hand: {
  8427. height: math.unit(1.61, "feet"),
  8428. name: "Hand",
  8429. image: {
  8430. source: "./media/characters/sovrim-terraquian/hand.svg"
  8431. }
  8432. },
  8433. foot: {
  8434. height: math.unit(1.05, "feet"),
  8435. name: "Foot",
  8436. image: {
  8437. source: "./media/characters/sovrim-terraquian/foot.svg"
  8438. }
  8439. },
  8440. footAlt: {
  8441. height: math.unit(0.88, "feet"),
  8442. name: "Foot (Alt)",
  8443. image: {
  8444. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8445. }
  8446. },
  8447. },
  8448. [
  8449. {
  8450. name: "Micro",
  8451. height: math.unit(2, "inches")
  8452. },
  8453. {
  8454. name: "Small",
  8455. height: math.unit(1, "meter")
  8456. },
  8457. {
  8458. name: "Normal",
  8459. height: math.unit(Math.E, "meters"),
  8460. default: true
  8461. },
  8462. {
  8463. name: "Macro",
  8464. height: math.unit(20, "meters")
  8465. },
  8466. {
  8467. name: "Macro+",
  8468. height: math.unit(400, "meters")
  8469. },
  8470. ]
  8471. ))
  8472. characterMakers.push(() => makeCharacter(
  8473. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8474. {
  8475. front: {
  8476. height: math.unit(7, "feet"),
  8477. weight: math.unit(489, "lbs"),
  8478. name: "Front",
  8479. image: {
  8480. source: "./media/characters/reece-silvermane/front.svg",
  8481. bottom: 0.02,
  8482. extra: 1
  8483. }
  8484. },
  8485. },
  8486. [
  8487. {
  8488. name: "Macro",
  8489. height: math.unit(1.5, "miles"),
  8490. default: true
  8491. },
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8496. {
  8497. front: {
  8498. height: math.unit(6, "feet"),
  8499. weight: math.unit(78, "kg"),
  8500. name: "Front",
  8501. image: {
  8502. source: "./media/characters/kane/front.svg",
  8503. extra: 978 / 899
  8504. }
  8505. },
  8506. },
  8507. [
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(2.1, "m"),
  8511. },
  8512. {
  8513. name: "Macro",
  8514. height: math.unit(1, "km"),
  8515. default: true
  8516. },
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8521. {
  8522. front: {
  8523. height: math.unit(6, "feet"),
  8524. weight: math.unit(200, "kg"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/tegon/front.svg",
  8528. bottom: 0.01,
  8529. extra: 1
  8530. }
  8531. },
  8532. },
  8533. [
  8534. {
  8535. name: "Micro",
  8536. height: math.unit(1, "inch")
  8537. },
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(6 + 3 / 12, "feet"),
  8541. default: true
  8542. },
  8543. {
  8544. name: "Macro",
  8545. height: math.unit(300, "feet")
  8546. },
  8547. {
  8548. name: "Megamacro",
  8549. height: math.unit(69, "miles")
  8550. },
  8551. ]
  8552. ))
  8553. characterMakers.push(() => makeCharacter(
  8554. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8555. {
  8556. side: {
  8557. height: math.unit(6, "feet"),
  8558. weight: math.unit(2304, "lbs"),
  8559. name: "Side",
  8560. image: {
  8561. source: "./media/characters/arcturax/side.svg",
  8562. extra: 790 / 376,
  8563. bottom: 0.01
  8564. }
  8565. },
  8566. },
  8567. [
  8568. {
  8569. name: "Micro",
  8570. height: math.unit(2, "inch")
  8571. },
  8572. {
  8573. name: "Normal",
  8574. height: math.unit(6, "feet")
  8575. },
  8576. {
  8577. name: "Macro",
  8578. height: math.unit(39, "feet"),
  8579. default: true
  8580. },
  8581. {
  8582. name: "Megamacro",
  8583. height: math.unit(7, "miles")
  8584. },
  8585. ]
  8586. ))
  8587. characterMakers.push(() => makeCharacter(
  8588. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8589. {
  8590. front: {
  8591. height: math.unit(6, "feet"),
  8592. weight: math.unit(50, "lbs"),
  8593. name: "Front",
  8594. image: {
  8595. source: "./media/characters/sentri/front.svg",
  8596. extra: 1750 / 1570,
  8597. bottom: 0.025
  8598. }
  8599. },
  8600. frontAlt: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(50, "lbs"),
  8603. name: "Front (Alt)",
  8604. image: {
  8605. source: "./media/characters/sentri/front-alt.svg",
  8606. extra: 1750 / 1570,
  8607. bottom: 0.025
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Normal",
  8614. height: math.unit(15, "feet"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Macro",
  8619. height: math.unit(2500, "feet")
  8620. }
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8625. {
  8626. front: {
  8627. height: math.unit(5 + 8 / 12, "feet"),
  8628. weight: math.unit(130, "lbs"),
  8629. name: "Front",
  8630. image: {
  8631. source: "./media/characters/corvin/front.svg",
  8632. extra: 1803 / 1629
  8633. }
  8634. },
  8635. frontShirt: {
  8636. height: math.unit(5 + 8 / 12, "feet"),
  8637. weight: math.unit(130, "lbs"),
  8638. name: "Front (Shirt)",
  8639. image: {
  8640. source: "./media/characters/corvin/front-shirt.svg",
  8641. extra: 1803 / 1629
  8642. }
  8643. },
  8644. frontPoncho: {
  8645. height: math.unit(5 + 8 / 12, "feet"),
  8646. weight: math.unit(130, "lbs"),
  8647. name: "Front (Poncho)",
  8648. image: {
  8649. source: "./media/characters/corvin/front-poncho.svg",
  8650. extra: 1803 / 1629
  8651. }
  8652. },
  8653. side: {
  8654. height: math.unit(5 + 8 / 12, "feet"),
  8655. weight: math.unit(130, "lbs"),
  8656. name: "Side",
  8657. image: {
  8658. source: "./media/characters/corvin/side.svg",
  8659. extra: 1012 / 945
  8660. }
  8661. },
  8662. back: {
  8663. height: math.unit(5 + 8 / 12, "feet"),
  8664. weight: math.unit(130, "lbs"),
  8665. name: "Back",
  8666. image: {
  8667. source: "./media/characters/corvin/back.svg",
  8668. extra: 1803 / 1629
  8669. }
  8670. },
  8671. },
  8672. [
  8673. {
  8674. name: "Micro",
  8675. height: math.unit(3, "inches")
  8676. },
  8677. {
  8678. name: "Normal",
  8679. height: math.unit(5 + 8 / 12, "feet")
  8680. },
  8681. {
  8682. name: "Macro",
  8683. height: math.unit(300, "feet"),
  8684. default: true
  8685. },
  8686. {
  8687. name: "Megamacro",
  8688. height: math.unit(500, "miles")
  8689. }
  8690. ]
  8691. ))
  8692. characterMakers.push(() => makeCharacter(
  8693. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8694. {
  8695. front: {
  8696. height: math.unit(6, "feet"),
  8697. weight: math.unit(135, "lbs"),
  8698. name: "Front",
  8699. image: {
  8700. source: "./media/characters/q/front.svg",
  8701. extra: 854 / 752,
  8702. bottom: 0.005
  8703. }
  8704. },
  8705. back: {
  8706. height: math.unit(6, "feet"),
  8707. weight: math.unit(130, "lbs"),
  8708. name: "Back",
  8709. image: {
  8710. source: "./media/characters/q/back.svg",
  8711. extra: 854 / 752
  8712. }
  8713. },
  8714. },
  8715. [
  8716. {
  8717. name: "Macro",
  8718. height: math.unit(90, "feet"),
  8719. default: true
  8720. },
  8721. {
  8722. name: "Extra Macro",
  8723. height: math.unit(300, "feet"),
  8724. },
  8725. {
  8726. name: "BIG WALF",
  8727. height: math.unit(750, "feet"),
  8728. },
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(6, "feet"),
  8736. weight: math.unit(150, "lbs"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/carley/front.svg",
  8740. extra: 3927 / 3540,
  8741. bottom: 29.2 / 735
  8742. }
  8743. }
  8744. },
  8745. [
  8746. {
  8747. name: "Normal",
  8748. height: math.unit(6 + 3 / 12, "feet")
  8749. },
  8750. {
  8751. name: "Macro",
  8752. height: math.unit(185, "feet"),
  8753. default: true
  8754. },
  8755. {
  8756. name: "Megamacro",
  8757. height: math.unit(8, "miles"),
  8758. },
  8759. ]
  8760. ))
  8761. characterMakers.push(() => makeCharacter(
  8762. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8763. {
  8764. front: {
  8765. height: math.unit(3, "feet"),
  8766. weight: math.unit(28, "lbs"),
  8767. name: "Front",
  8768. image: {
  8769. source: "./media/characters/citrine/front.svg"
  8770. }
  8771. }
  8772. },
  8773. [
  8774. {
  8775. name: "Normal",
  8776. height: math.unit(3, "feet"),
  8777. default: true
  8778. }
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8783. {
  8784. front: {
  8785. height: math.unit(14, "feet"),
  8786. weight: math.unit(1450, "kg"),
  8787. preyCapacity: math.unit(15, "people"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/aura-starwind/front.svg",
  8791. extra: 1440/1327,
  8792. bottom: 11/1451
  8793. }
  8794. },
  8795. side: {
  8796. height: math.unit(14, "feet"),
  8797. weight: math.unit(1450, "kg"),
  8798. preyCapacity: math.unit(15, "people"),
  8799. name: "Side",
  8800. image: {
  8801. source: "./media/characters/aura-starwind/side.svg",
  8802. extra: 1654 / 1497
  8803. }
  8804. },
  8805. taur: {
  8806. height: math.unit(18, "feet"),
  8807. weight: math.unit(5500, "kg"),
  8808. preyCapacity: math.unit(50, "people"),
  8809. name: "Taur",
  8810. image: {
  8811. source: "./media/characters/aura-starwind/taur.svg",
  8812. extra: 1760 / 1650
  8813. }
  8814. },
  8815. feral: {
  8816. height: math.unit(46, "feet"),
  8817. weight: math.unit(25000, "kg"),
  8818. preyCapacity: math.unit(120, "people"),
  8819. name: "Feral",
  8820. image: {
  8821. source: "./media/characters/aura-starwind/feral.svg"
  8822. }
  8823. },
  8824. },
  8825. [
  8826. {
  8827. name: "Normal",
  8828. height: math.unit(14, "feet"),
  8829. default: true
  8830. },
  8831. {
  8832. name: "Macro",
  8833. height: math.unit(50, "meters")
  8834. },
  8835. {
  8836. name: "Megamacro",
  8837. height: math.unit(5000, "meters")
  8838. },
  8839. {
  8840. name: "Gigamacro",
  8841. height: math.unit(100000, "kilometers")
  8842. },
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8847. {
  8848. front: {
  8849. height: math.unit(2 + 7 / 12, "feet"),
  8850. weight: math.unit(32, "lbs"),
  8851. name: "Front",
  8852. image: {
  8853. source: "./media/characters/rivet/front.svg",
  8854. extra: 1716 / 1658,
  8855. bottom: 0.03
  8856. }
  8857. },
  8858. foot: {
  8859. height: math.unit(0.551, "feet"),
  8860. name: "Rivet's Foot",
  8861. image: {
  8862. source: "./media/characters/rivet/foot.svg"
  8863. },
  8864. rename: true
  8865. }
  8866. },
  8867. [
  8868. {
  8869. name: "Micro",
  8870. height: math.unit(1.5, "inches"),
  8871. },
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(2 + 7 / 12, "feet"),
  8875. default: true
  8876. },
  8877. {
  8878. name: "Macro",
  8879. height: math.unit(85, "feet")
  8880. },
  8881. {
  8882. name: "Megamacro",
  8883. height: math.unit(2.2, "km")
  8884. }
  8885. ]
  8886. ))
  8887. characterMakers.push(() => makeCharacter(
  8888. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8889. {
  8890. front: {
  8891. height: math.unit(5 + 9 / 12, "feet"),
  8892. weight: math.unit(150, "lbs"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/coffee/front.svg",
  8896. extra: 3666 / 3032,
  8897. bottom: 0.04
  8898. }
  8899. },
  8900. foot: {
  8901. height: math.unit(1.29, "feet"),
  8902. name: "Foot",
  8903. image: {
  8904. source: "./media/characters/coffee/foot.svg"
  8905. }
  8906. },
  8907. },
  8908. [
  8909. {
  8910. name: "Micro",
  8911. height: math.unit(2, "inches"),
  8912. },
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(5 + 9 / 12, "feet"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Macro",
  8920. height: math.unit(800, "feet")
  8921. },
  8922. {
  8923. name: "Megamacro",
  8924. height: math.unit(25, "miles")
  8925. }
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(6, "feet"),
  8933. weight: math.unit(200, "lbs"),
  8934. name: "Front",
  8935. image: {
  8936. source: "./media/characters/chari-gal/front.svg",
  8937. extra: 1568 / 1385,
  8938. bottom: 0.047
  8939. }
  8940. },
  8941. gigantamax: {
  8942. height: math.unit(6 * 16, "feet"),
  8943. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8944. name: "Gigantamax",
  8945. image: {
  8946. source: "./media/characters/chari-gal/gigantamax.svg",
  8947. extra: 1124 / 888,
  8948. bottom: 0.03
  8949. }
  8950. },
  8951. },
  8952. [
  8953. {
  8954. name: "Normal",
  8955. height: math.unit(5 + 7 / 12, "feet")
  8956. },
  8957. {
  8958. name: "Macro",
  8959. height: math.unit(200, "feet"),
  8960. default: true
  8961. }
  8962. ]
  8963. ))
  8964. characterMakers.push(() => makeCharacter(
  8965. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8966. {
  8967. front: {
  8968. height: math.unit(6, "feet"),
  8969. weight: math.unit(150, "lbs"),
  8970. name: "Front",
  8971. image: {
  8972. source: "./media/characters/nova/front.svg",
  8973. extra: 5000 / 4722,
  8974. bottom: 0.02
  8975. }
  8976. }
  8977. },
  8978. [
  8979. {
  8980. name: "Micro-",
  8981. height: math.unit(0.8, "inches")
  8982. },
  8983. {
  8984. name: "Micro",
  8985. height: math.unit(2, "inches"),
  8986. default: true
  8987. },
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8992. {
  8993. front: {
  8994. height: math.unit(3 + 1 / 12, "feet"),
  8995. weight: math.unit(21.7, "lbs"),
  8996. name: "Front",
  8997. image: {
  8998. source: "./media/characters/argent/front.svg",
  8999. extra: 1471 / 1331,
  9000. bottom: 100.8 / 1575.5
  9001. }
  9002. }
  9003. },
  9004. [
  9005. {
  9006. name: "Micro",
  9007. height: math.unit(2, "inches")
  9008. },
  9009. {
  9010. name: "Normal",
  9011. height: math.unit(3 + 1 / 12, "feet"),
  9012. default: true
  9013. },
  9014. {
  9015. name: "Macro",
  9016. height: math.unit(120, "feet")
  9017. },
  9018. ]
  9019. ))
  9020. characterMakers.push(() => makeCharacter(
  9021. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9022. {
  9023. lamp: {
  9024. height: math.unit(7 * 1559 / 989, "feet"),
  9025. name: "Magic Lamp",
  9026. image: {
  9027. source: "./media/characters/mira-al-cul/lamp.svg",
  9028. extra: 1617 / 1559
  9029. }
  9030. },
  9031. front: {
  9032. height: math.unit(7, "feet"),
  9033. name: "Front",
  9034. image: {
  9035. source: "./media/characters/mira-al-cul/front.svg",
  9036. extra: 1044 / 990
  9037. }
  9038. },
  9039. },
  9040. [
  9041. {
  9042. name: "Heavily Restricted",
  9043. height: math.unit(7 * 1559 / 989, "feet")
  9044. },
  9045. {
  9046. name: "Freshly Freed",
  9047. height: math.unit(50 * 1559 / 989, "feet")
  9048. },
  9049. {
  9050. name: "World Encompassing",
  9051. height: math.unit(10000 * 1559 / 989, "miles")
  9052. },
  9053. {
  9054. name: "Galactic",
  9055. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9056. },
  9057. {
  9058. name: "Palmed Universe",
  9059. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9060. default: true
  9061. },
  9062. {
  9063. name: "Multiversal Matriarch",
  9064. height: math.unit(8.87e10, "yottameters")
  9065. },
  9066. {
  9067. name: "Void Mother",
  9068. height: math.unit(3.14e110, "yottaparsecs")
  9069. },
  9070. {
  9071. name: "Toying with Transcendence",
  9072. height: math.unit(1e307, "meters")
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9078. {
  9079. front: {
  9080. height: math.unit(17 + 1 / 12, "feet"),
  9081. weight: math.unit(476.2 * 5, "lbs"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/kuro-shi-uchū/front.svg",
  9085. extra: 2329 / 1835,
  9086. bottom: 0.02
  9087. }
  9088. },
  9089. },
  9090. [
  9091. {
  9092. name: "Micro",
  9093. height: math.unit(2, "inches")
  9094. },
  9095. {
  9096. name: "Normal",
  9097. height: math.unit(12, "meters")
  9098. },
  9099. {
  9100. name: "Planetary",
  9101. height: math.unit(0.00929, "AU"),
  9102. default: true
  9103. },
  9104. {
  9105. name: "Universal",
  9106. height: math.unit(20, "gigaparsecs")
  9107. },
  9108. ]
  9109. ))
  9110. characterMakers.push(() => makeCharacter(
  9111. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9112. {
  9113. front: {
  9114. height: math.unit(5 + 2 / 12, "feet"),
  9115. weight: math.unit(120, "lbs"),
  9116. name: "Front",
  9117. image: {
  9118. source: "./media/characters/katherine/front.svg",
  9119. extra: 2075 / 1969
  9120. }
  9121. },
  9122. dress: {
  9123. height: math.unit(5 + 2 / 12, "feet"),
  9124. weight: math.unit(120, "lbs"),
  9125. name: "Dress",
  9126. image: {
  9127. source: "./media/characters/katherine/dress.svg",
  9128. extra: 2258 / 2064
  9129. }
  9130. },
  9131. },
  9132. [
  9133. {
  9134. name: "Micro",
  9135. height: math.unit(1, "inches"),
  9136. default: true
  9137. },
  9138. {
  9139. name: "Normal",
  9140. height: math.unit(5 + 2 / 12, "feet")
  9141. },
  9142. {
  9143. name: "Macro",
  9144. height: math.unit(100, "meters")
  9145. },
  9146. {
  9147. name: "Megamacro",
  9148. height: math.unit(80, "miles")
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(7 + 8 / 12, "feet"),
  9157. weight: math.unit(250, "lbs"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/yevis/front.svg",
  9161. extra: 1938 / 1755
  9162. }
  9163. }
  9164. },
  9165. [
  9166. {
  9167. name: "Mortal",
  9168. height: math.unit(7 + 8 / 12, "feet")
  9169. },
  9170. {
  9171. name: "Battle",
  9172. height: math.unit(25 + 11 / 12, "feet")
  9173. },
  9174. {
  9175. name: "Wrath",
  9176. height: math.unit(1654 + 11 / 12, "feet")
  9177. },
  9178. {
  9179. name: "Planet Destroyer",
  9180. height: math.unit(12000, "miles")
  9181. },
  9182. {
  9183. name: "Galaxy Conqueror",
  9184. height: math.unit(1.45, "zettameters"),
  9185. default: true
  9186. },
  9187. {
  9188. name: "Universal War",
  9189. height: math.unit(184, "gigaparsecs")
  9190. },
  9191. {
  9192. name: "Eternity War",
  9193. height: math.unit(1.98e55, "yottaparsecs")
  9194. },
  9195. ]
  9196. ))
  9197. characterMakers.push(() => makeCharacter(
  9198. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9199. {
  9200. front: {
  9201. height: math.unit(5 + 8 / 12, "feet"),
  9202. weight: math.unit(63, "kg"),
  9203. name: "Front",
  9204. image: {
  9205. source: "./media/characters/xavier/front.svg",
  9206. extra: 944 / 883
  9207. }
  9208. },
  9209. frontStretch: {
  9210. height: math.unit(5 + 8 / 12, "feet"),
  9211. weight: math.unit(63, "kg"),
  9212. name: "Stretching",
  9213. image: {
  9214. source: "./media/characters/xavier/front-stretch.svg",
  9215. extra: 962 / 820
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Normal",
  9222. height: math.unit(5 + 8 / 12, "feet")
  9223. },
  9224. {
  9225. name: "Macro",
  9226. height: math.unit(100, "meters"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "McLargeHuge",
  9231. height: math.unit(10, "miles")
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9237. {
  9238. front: {
  9239. height: math.unit(5 + 5 / 12, "feet"),
  9240. weight: math.unit(150, "lb"),
  9241. name: "Front",
  9242. image: {
  9243. source: "./media/characters/joshii/front.svg",
  9244. extra: 765 / 653,
  9245. bottom: 51 / 816
  9246. }
  9247. },
  9248. foot: {
  9249. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9250. name: "Foot",
  9251. image: {
  9252. source: "./media/characters/joshii/foot.svg"
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Micro",
  9259. height: math.unit(2, "inches"),
  9260. default: true
  9261. },
  9262. {
  9263. name: "Normal",
  9264. height: math.unit(5 + 5 / 12, "feet")
  9265. },
  9266. {
  9267. name: "Macro",
  9268. height: math.unit(785, "feet")
  9269. },
  9270. {
  9271. name: "Megamacro",
  9272. height: math.unit(24.5, "miles")
  9273. },
  9274. ]
  9275. ))
  9276. characterMakers.push(() => makeCharacter(
  9277. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9278. {
  9279. front: {
  9280. height: math.unit(6, "feet"),
  9281. weight: math.unit(150, "lb"),
  9282. name: "Front",
  9283. image: {
  9284. source: "./media/characters/goddess-elizabeth/front.svg",
  9285. extra: 1800 / 1525,
  9286. bottom: 0.005
  9287. }
  9288. },
  9289. foot: {
  9290. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9291. name: "Foot",
  9292. image: {
  9293. source: "./media/characters/goddess-elizabeth/foot.svg"
  9294. }
  9295. },
  9296. mouth: {
  9297. height: math.unit(6, "feet"),
  9298. name: "Mouth",
  9299. image: {
  9300. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9301. }
  9302. },
  9303. },
  9304. [
  9305. {
  9306. name: "Micro",
  9307. height: math.unit(12, "feet")
  9308. },
  9309. {
  9310. name: "Normal",
  9311. height: math.unit(80, "miles"),
  9312. default: true
  9313. },
  9314. {
  9315. name: "Macro",
  9316. height: math.unit(15000, "parsecs")
  9317. },
  9318. ]
  9319. ))
  9320. characterMakers.push(() => makeCharacter(
  9321. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9322. {
  9323. front: {
  9324. height: math.unit(5 + 9 / 12, "feet"),
  9325. weight: math.unit(144, "lb"),
  9326. name: "Front",
  9327. image: {
  9328. source: "./media/characters/kara/front.svg"
  9329. }
  9330. },
  9331. feet: {
  9332. height: math.unit(6 / 6.765, "feet"),
  9333. name: "Kara's Feet",
  9334. rename: true,
  9335. image: {
  9336. source: "./media/characters/kara/feet.svg"
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(5 + 9 / 12, "feet")
  9344. },
  9345. {
  9346. name: "Macro",
  9347. height: math.unit(174, "feet"),
  9348. default: true
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(18, "feet"),
  9357. weight: math.unit(4050, "lb"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/tyrone/front.svg",
  9361. extra: 2405 / 2270,
  9362. bottom: 182 / 2587
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(18, "feet"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Macro",
  9374. height: math.unit(300, "feet")
  9375. },
  9376. {
  9377. name: "Megamacro",
  9378. height: math.unit(15, "km")
  9379. },
  9380. {
  9381. name: "Gigamacro",
  9382. height: math.unit(500, "km")
  9383. },
  9384. {
  9385. name: "Teramacro",
  9386. height: math.unit(0.5, "gigameters")
  9387. },
  9388. {
  9389. name: "Omnimacro",
  9390. height: math.unit(1e252, "yottauniverse")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(7 + 8 / 12, "feet"),
  9399. weight: math.unit(120, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/danny/front.svg",
  9403. extra: 1490 / 1350
  9404. }
  9405. },
  9406. back: {
  9407. height: math.unit(7 + 8 / 12, "feet"),
  9408. weight: math.unit(120, "lb"),
  9409. name: "Back",
  9410. image: {
  9411. source: "./media/characters/danny/back.svg",
  9412. extra: 1490 / 1350
  9413. }
  9414. },
  9415. },
  9416. [
  9417. {
  9418. name: "Normal",
  9419. height: math.unit(7 + 8 / 12, "feet"),
  9420. default: true
  9421. },
  9422. ]
  9423. ))
  9424. characterMakers.push(() => makeCharacter(
  9425. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9426. {
  9427. front: {
  9428. height: math.unit(3.5, "inches"),
  9429. weight: math.unit(19, "grams"),
  9430. name: "Front",
  9431. image: {
  9432. source: "./media/characters/mallow/front.svg",
  9433. extra: 471 / 431
  9434. }
  9435. },
  9436. back: {
  9437. height: math.unit(3.5, "inches"),
  9438. weight: math.unit(19, "grams"),
  9439. name: "Back",
  9440. image: {
  9441. source: "./media/characters/mallow/back.svg",
  9442. extra: 471 / 431
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(3.5, "inches"),
  9450. default: true
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(9, "feet"),
  9459. weight: math.unit(230, "kg"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/starry-aqua/front.svg"
  9463. }
  9464. },
  9465. back: {
  9466. height: math.unit(9, "feet"),
  9467. weight: math.unit(230, "kg"),
  9468. name: "Back",
  9469. image: {
  9470. source: "./media/characters/starry-aqua/back.svg"
  9471. }
  9472. },
  9473. hand: {
  9474. height: math.unit(9 * 0.1168, "feet"),
  9475. name: "Hand",
  9476. image: {
  9477. source: "./media/characters/starry-aqua/hand.svg"
  9478. }
  9479. },
  9480. foot: {
  9481. height: math.unit(9 * 0.18, "feet"),
  9482. name: "Foot",
  9483. image: {
  9484. source: "./media/characters/starry-aqua/foot.svg"
  9485. }
  9486. }
  9487. },
  9488. [
  9489. {
  9490. name: "Micro",
  9491. height: math.unit(3, "inches")
  9492. },
  9493. {
  9494. name: "Normal",
  9495. height: math.unit(9, "feet")
  9496. },
  9497. {
  9498. name: "Macro",
  9499. height: math.unit(300, "feet"),
  9500. default: true
  9501. },
  9502. {
  9503. name: "Megamacro",
  9504. height: math.unit(3200, "feet")
  9505. }
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9510. {
  9511. front: {
  9512. height: math.unit(15, "feet"),
  9513. weight: math.unit(5026, "lb"),
  9514. name: "Front",
  9515. image: {
  9516. source: "./media/characters/luka-towers/front.svg",
  9517. extra: 1269/1133,
  9518. bottom: 51/1320
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Normal",
  9525. height: math.unit(15, "feet"),
  9526. default: true
  9527. },
  9528. {
  9529. name: "Minimacro",
  9530. height: math.unit(25, "feet")
  9531. },
  9532. {
  9533. name: "Macro",
  9534. height: math.unit(320, "feet")
  9535. },
  9536. {
  9537. name: "Megamacro",
  9538. height: math.unit(35000, "feet")
  9539. },
  9540. {
  9541. name: "Gigamacro",
  9542. height: math.unit(4000, "miles")
  9543. },
  9544. {
  9545. name: "Teramacro",
  9546. height: math.unit(15000, "miles")
  9547. },
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9552. {
  9553. front: {
  9554. height: math.unit(6, "feet"),
  9555. weight: math.unit(150, "lb"),
  9556. name: "Front",
  9557. image: {
  9558. source: "./media/characters/natalie-nightring/front.svg",
  9559. extra: 1,
  9560. bottom: 0.06
  9561. }
  9562. },
  9563. },
  9564. [
  9565. {
  9566. name: "Uh Oh",
  9567. height: math.unit(0.1, "mm")
  9568. },
  9569. {
  9570. name: "Small",
  9571. height: math.unit(3, "inches")
  9572. },
  9573. {
  9574. name: "Human Scale",
  9575. height: math.unit(6, "feet")
  9576. },
  9577. {
  9578. name: "Librarian",
  9579. height: math.unit(50, "feet"),
  9580. default: true
  9581. },
  9582. {
  9583. name: "Immense",
  9584. height: math.unit(200, "miles")
  9585. },
  9586. ]
  9587. ))
  9588. characterMakers.push(() => makeCharacter(
  9589. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9590. {
  9591. front: {
  9592. height: math.unit(6, "feet"),
  9593. weight: math.unit(180, "lbs"),
  9594. name: "Front",
  9595. image: {
  9596. source: "./media/characters/danni-rosie/front.svg",
  9597. extra: 1260 / 1128,
  9598. bottom: 0.022
  9599. }
  9600. },
  9601. },
  9602. [
  9603. {
  9604. name: "Micro",
  9605. height: math.unit(2, "inches"),
  9606. default: true
  9607. },
  9608. ]
  9609. ))
  9610. characterMakers.push(() => makeCharacter(
  9611. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9612. {
  9613. front: {
  9614. height: math.unit(5 + 9 / 12, "feet"),
  9615. weight: math.unit(220, "lb"),
  9616. name: "Front",
  9617. image: {
  9618. source: "./media/characters/samantha-kruse/front.svg",
  9619. extra: (985 / 935),
  9620. bottom: 0.03
  9621. }
  9622. },
  9623. frontUndressed: {
  9624. height: math.unit(5 + 9 / 12, "feet"),
  9625. weight: math.unit(220, "lb"),
  9626. name: "Front (Undressed)",
  9627. image: {
  9628. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9629. extra: (973 / 923),
  9630. bottom: 0.025
  9631. }
  9632. },
  9633. fat: {
  9634. height: math.unit(5 + 9 / 12, "feet"),
  9635. weight: math.unit(900, "lb"),
  9636. name: "Front (Fat)",
  9637. image: {
  9638. source: "./media/characters/samantha-kruse/fat.svg",
  9639. extra: 2688 / 2561
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(5 + 9 / 12, "feet"),
  9647. default: true
  9648. }
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9653. {
  9654. back: {
  9655. height: math.unit(5 + 4 / 12, "feet"),
  9656. weight: math.unit(4963, "lb"),
  9657. name: "Back",
  9658. image: {
  9659. source: "./media/characters/amelia-rosie/back.svg",
  9660. extra: 1113 / 963,
  9661. bottom: 0.01
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Level 0",
  9668. height: math.unit(5 + 4 / 12, "feet")
  9669. },
  9670. {
  9671. name: "Level 1",
  9672. height: math.unit(164597, "feet"),
  9673. default: true
  9674. },
  9675. {
  9676. name: "Level 2",
  9677. height: math.unit(956243, "miles")
  9678. },
  9679. {
  9680. name: "Level 3",
  9681. height: math.unit(29421709423, "miles")
  9682. },
  9683. {
  9684. name: "Level 4",
  9685. height: math.unit(154, "lightyears")
  9686. },
  9687. {
  9688. name: "Level 5",
  9689. height: math.unit(4738272, "lightyears")
  9690. },
  9691. {
  9692. name: "Level 6",
  9693. height: math.unit(145787152896, "lightyears")
  9694. },
  9695. ]
  9696. ))
  9697. characterMakers.push(() => makeCharacter(
  9698. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9699. {
  9700. front: {
  9701. height: math.unit(5 + 11 / 12, "feet"),
  9702. weight: math.unit(65, "kg"),
  9703. name: "Front",
  9704. image: {
  9705. source: "./media/characters/rook-kitara/front.svg",
  9706. extra: 1347 / 1274,
  9707. bottom: 0.005
  9708. }
  9709. },
  9710. },
  9711. [
  9712. {
  9713. name: "Totally Unfair",
  9714. height: math.unit(1.8, "mm")
  9715. },
  9716. {
  9717. name: "Lap Rookie",
  9718. height: math.unit(1.4, "feet")
  9719. },
  9720. {
  9721. name: "Normal",
  9722. height: math.unit(5 + 11 / 12, "feet"),
  9723. default: true
  9724. },
  9725. {
  9726. name: "How Did This Happen",
  9727. height: math.unit(80, "miles")
  9728. }
  9729. ]
  9730. ))
  9731. characterMakers.push(() => makeCharacter(
  9732. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9733. {
  9734. front: {
  9735. height: math.unit(7, "feet"),
  9736. weight: math.unit(300, "lb"),
  9737. name: "Front",
  9738. image: {
  9739. source: "./media/characters/pisces/front.svg",
  9740. extra: 2255 / 2115,
  9741. bottom: 0.03
  9742. }
  9743. },
  9744. back: {
  9745. height: math.unit(7, "feet"),
  9746. weight: math.unit(300, "lb"),
  9747. name: "Back",
  9748. image: {
  9749. source: "./media/characters/pisces/back.svg",
  9750. extra: 2146 / 2055,
  9751. bottom: 0.04
  9752. }
  9753. },
  9754. },
  9755. [
  9756. {
  9757. name: "Normal",
  9758. height: math.unit(7, "feet"),
  9759. default: true
  9760. },
  9761. {
  9762. name: "Swimming Pool",
  9763. height: math.unit(12.2, "meters")
  9764. },
  9765. {
  9766. name: "Olympic Swimming Pool",
  9767. height: math.unit(56.3, "meters")
  9768. },
  9769. {
  9770. name: "Lake Superior",
  9771. height: math.unit(93900, "meters")
  9772. },
  9773. {
  9774. name: "Mediterranean Sea",
  9775. height: math.unit(644457, "meters")
  9776. },
  9777. {
  9778. name: "World's Oceans",
  9779. height: math.unit(4567491, "meters")
  9780. },
  9781. ]
  9782. ))
  9783. characterMakers.push(() => makeCharacter(
  9784. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9785. {
  9786. front: {
  9787. height: math.unit(2.3, "meters"),
  9788. weight: math.unit(120, "kg"),
  9789. name: "Front",
  9790. image: {
  9791. source: "./media/characters/zelas/front.svg"
  9792. }
  9793. },
  9794. side: {
  9795. height: math.unit(2.3, "meters"),
  9796. weight: math.unit(120, "kg"),
  9797. name: "Side",
  9798. image: {
  9799. source: "./media/characters/zelas/side.svg"
  9800. }
  9801. },
  9802. back: {
  9803. height: math.unit(2.3, "meters"),
  9804. weight: math.unit(120, "kg"),
  9805. name: "Back",
  9806. image: {
  9807. source: "./media/characters/zelas/back.svg"
  9808. }
  9809. },
  9810. foot: {
  9811. height: math.unit(1.116, "feet"),
  9812. name: "Foot",
  9813. image: {
  9814. source: "./media/characters/zelas/foot.svg"
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(2.3, "meters")
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(30, "meters"),
  9826. default: true
  9827. },
  9828. ]
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9832. {
  9833. front: {
  9834. height: math.unit(1, "inch"),
  9835. weight: math.unit(0.21, "grams"),
  9836. name: "Front",
  9837. image: {
  9838. source: "./media/characters/talbot/front.svg",
  9839. extra: 594 / 544
  9840. }
  9841. },
  9842. },
  9843. [
  9844. {
  9845. name: "Micro",
  9846. height: math.unit(1, "inch"),
  9847. default: true
  9848. },
  9849. ]
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9853. {
  9854. front: {
  9855. height: math.unit(3 + 3 / 12, "feet"),
  9856. weight: math.unit(51.8, "lb"),
  9857. name: "Front",
  9858. image: {
  9859. source: "./media/characters/fliss/front.svg",
  9860. extra: 840 / 640
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Teeny Tiny",
  9867. height: math.unit(1, "mm")
  9868. },
  9869. {
  9870. name: "Small",
  9871. height: math.unit(1, "inch"),
  9872. default: true
  9873. },
  9874. {
  9875. name: "Standard Sylveon",
  9876. height: math.unit(3 + 3 / 12, "feet")
  9877. },
  9878. {
  9879. name: "Large Nuisance",
  9880. height: math.unit(33, "feet")
  9881. },
  9882. {
  9883. name: "City Filler",
  9884. height: math.unit(3000, "feet")
  9885. },
  9886. {
  9887. name: "New Horizon",
  9888. height: math.unit(6000, "miles")
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(5, "cm"),
  9897. weight: math.unit(1.94, "g"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/fleta/front.svg",
  9901. extra: 835 / 803
  9902. }
  9903. },
  9904. back: {
  9905. height: math.unit(5, "cm"),
  9906. weight: math.unit(1.94, "g"),
  9907. name: "Back",
  9908. image: {
  9909. source: "./media/characters/fleta/back.svg",
  9910. extra: 835 / 803
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(5, "cm"),
  9918. default: true
  9919. },
  9920. ]
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9924. {
  9925. front: {
  9926. height: math.unit(6, "feet"),
  9927. weight: math.unit(225, "lb"),
  9928. name: "Front",
  9929. image: {
  9930. source: "./media/characters/dominic/front.svg",
  9931. extra: 1770 / 1620,
  9932. bottom: 0.025
  9933. }
  9934. },
  9935. back: {
  9936. height: math.unit(6, "feet"),
  9937. weight: math.unit(225, "lb"),
  9938. name: "Back",
  9939. image: {
  9940. source: "./media/characters/dominic/back.svg",
  9941. extra: 1745 / 1620,
  9942. bottom: 0.065
  9943. }
  9944. },
  9945. },
  9946. [
  9947. {
  9948. name: "Nano",
  9949. height: math.unit(0.1, "mm")
  9950. },
  9951. {
  9952. name: "Micro-",
  9953. height: math.unit(1, "mm")
  9954. },
  9955. {
  9956. name: "Micro",
  9957. height: math.unit(4, "inches")
  9958. },
  9959. {
  9960. name: "Normal",
  9961. height: math.unit(6 + 4 / 12, "feet"),
  9962. default: true
  9963. },
  9964. {
  9965. name: "Macro",
  9966. height: math.unit(115, "feet")
  9967. },
  9968. {
  9969. name: "Macro+",
  9970. height: math.unit(955, "feet")
  9971. },
  9972. {
  9973. name: "Megamacro",
  9974. height: math.unit(8990, "feet")
  9975. },
  9976. {
  9977. name: "Gigmacro",
  9978. height: math.unit(9310, "miles")
  9979. },
  9980. {
  9981. name: "Teramacro",
  9982. height: math.unit(1567005010, "miles")
  9983. },
  9984. {
  9985. name: "Examacro",
  9986. height: math.unit(1425, "parsecs")
  9987. },
  9988. ]
  9989. ))
  9990. characterMakers.push(() => makeCharacter(
  9991. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9992. {
  9993. front: {
  9994. height: math.unit(400, "feet"),
  9995. weight: math.unit(44444444, "lb"),
  9996. name: "Front",
  9997. image: {
  9998. source: "./media/characters/major-colonel/front.svg"
  9999. }
  10000. },
  10001. back: {
  10002. height: math.unit(400, "feet"),
  10003. weight: math.unit(44444444, "lb"),
  10004. name: "Back",
  10005. image: {
  10006. source: "./media/characters/major-colonel/back.svg"
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Macro",
  10013. height: math.unit(400, "feet"),
  10014. default: true
  10015. },
  10016. ]
  10017. ))
  10018. characterMakers.push(() => makeCharacter(
  10019. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10020. {
  10021. catFront: {
  10022. height: math.unit(6, "feet"),
  10023. weight: math.unit(120, "lb"),
  10024. name: "Front (Cat Side)",
  10025. image: {
  10026. source: "./media/characters/axel-lycan/cat-front.svg",
  10027. extra: 430 / 402,
  10028. bottom: 43 / 472.35
  10029. }
  10030. },
  10031. catBack: {
  10032. height: math.unit(6, "feet"),
  10033. weight: math.unit(120, "lb"),
  10034. name: "Back (Cat Side)",
  10035. image: {
  10036. source: "./media/characters/axel-lycan/cat-back.svg",
  10037. extra: 447 / 419,
  10038. bottom: 23.3 / 469
  10039. }
  10040. },
  10041. wolfFront: {
  10042. height: math.unit(6, "feet"),
  10043. weight: math.unit(120, "lb"),
  10044. name: "Front (Wolf Side)",
  10045. image: {
  10046. source: "./media/characters/axel-lycan/wolf-front.svg",
  10047. extra: 485 / 456,
  10048. bottom: 19 / 504
  10049. }
  10050. },
  10051. wolfBack: {
  10052. height: math.unit(6, "feet"),
  10053. weight: math.unit(120, "lb"),
  10054. name: "Back (Wolf Side)",
  10055. image: {
  10056. source: "./media/characters/axel-lycan/wolf-back.svg",
  10057. extra: 475 / 438,
  10058. bottom: 39.2 / 514
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Macro",
  10065. height: math.unit(1, "km"),
  10066. default: true
  10067. },
  10068. ]
  10069. ))
  10070. characterMakers.push(() => makeCharacter(
  10071. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10072. {
  10073. front: {
  10074. height: math.unit(5 + 9 / 12, "feet"),
  10075. weight: math.unit(175, "lb"),
  10076. name: "Front",
  10077. image: {
  10078. source: "./media/characters/vanrel-hyena/front.svg",
  10079. extra: 1086 / 1010,
  10080. bottom: 0.04
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Normal",
  10087. height: math.unit(5 + 9 / 12, "feet"),
  10088. default: true
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(6, "feet"),
  10097. weight: math.unit(103, "lb"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/abbott-absol/front.svg",
  10101. extra: 2010 / 1842
  10102. }
  10103. },
  10104. },
  10105. [
  10106. {
  10107. name: "Megamicro",
  10108. height: math.unit(0.1, "mm")
  10109. },
  10110. {
  10111. name: "Micro",
  10112. height: math.unit(1, "inch")
  10113. },
  10114. {
  10115. name: "Normal",
  10116. height: math.unit(6, "feet"),
  10117. default: true
  10118. },
  10119. ]
  10120. ))
  10121. characterMakers.push(() => makeCharacter(
  10122. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10123. {
  10124. front: {
  10125. height: math.unit(6, "feet"),
  10126. weight: math.unit(264, "lb"),
  10127. name: "Front",
  10128. image: {
  10129. source: "./media/characters/hector/front.svg",
  10130. extra: 2280 / 2130,
  10131. bottom: 0.07
  10132. }
  10133. },
  10134. },
  10135. [
  10136. {
  10137. name: "Normal",
  10138. height: math.unit(12.25, "foot"),
  10139. default: true
  10140. },
  10141. {
  10142. name: "Macro",
  10143. height: math.unit(160, "feet")
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10149. {
  10150. front: {
  10151. height: math.unit(6, "feet"),
  10152. weight: math.unit(150, "lb"),
  10153. name: "Front",
  10154. image: {
  10155. source: "./media/characters/sal/front.svg",
  10156. extra: 1846 / 1699,
  10157. bottom: 0.04
  10158. }
  10159. },
  10160. },
  10161. [
  10162. {
  10163. name: "Megamacro",
  10164. height: math.unit(10, "miles"),
  10165. default: true
  10166. },
  10167. ]
  10168. ))
  10169. characterMakers.push(() => makeCharacter(
  10170. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10171. {
  10172. front: {
  10173. height: math.unit(3, "meters"),
  10174. weight: math.unit(450, "kg"),
  10175. name: "front",
  10176. image: {
  10177. source: "./media/characters/ranger/front.svg",
  10178. extra: 2401 / 2243,
  10179. bottom: 0.05
  10180. }
  10181. },
  10182. },
  10183. [
  10184. {
  10185. name: "Normal",
  10186. height: math.unit(3, "meters"),
  10187. default: true
  10188. },
  10189. ]
  10190. ))
  10191. characterMakers.push(() => makeCharacter(
  10192. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10193. {
  10194. front: {
  10195. height: math.unit(14, "feet"),
  10196. weight: math.unit(800, "kg"),
  10197. name: "Front",
  10198. image: {
  10199. source: "./media/characters/theresa/front.svg",
  10200. extra: 3575 / 3346,
  10201. bottom: 0.03
  10202. }
  10203. },
  10204. },
  10205. [
  10206. {
  10207. name: "Normal",
  10208. height: math.unit(14, "feet"),
  10209. default: true
  10210. },
  10211. ]
  10212. ))
  10213. characterMakers.push(() => makeCharacter(
  10214. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10215. {
  10216. front: {
  10217. height: math.unit(6, "feet"),
  10218. weight: math.unit(3, "kg"),
  10219. name: "Front",
  10220. image: {
  10221. source: "./media/characters/ine/front.svg",
  10222. extra: 678 / 539,
  10223. bottom: 0.023
  10224. }
  10225. },
  10226. },
  10227. [
  10228. {
  10229. name: "Normal",
  10230. height: math.unit(2.265, "feet"),
  10231. default: true
  10232. },
  10233. ]
  10234. ))
  10235. characterMakers.push(() => makeCharacter(
  10236. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10237. {
  10238. front: {
  10239. height: math.unit(5, "feet"),
  10240. weight: math.unit(30, "kg"),
  10241. name: "Front",
  10242. image: {
  10243. source: "./media/characters/vial/front.svg",
  10244. extra: 1365 / 1277,
  10245. bottom: 0.04
  10246. }
  10247. },
  10248. },
  10249. [
  10250. {
  10251. name: "Normal",
  10252. height: math.unit(5, "feet"),
  10253. default: true
  10254. },
  10255. ]
  10256. ))
  10257. characterMakers.push(() => makeCharacter(
  10258. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10259. {
  10260. side: {
  10261. height: math.unit(3.4, "meters"),
  10262. weight: math.unit(1000, "lb"),
  10263. name: "Side",
  10264. image: {
  10265. source: "./media/characters/rovoska/side.svg",
  10266. extra: 4403 / 1515
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Normal",
  10273. height: math.unit(3.4, "meters"),
  10274. default: true
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10280. {
  10281. front: {
  10282. height: math.unit(8, "feet"),
  10283. weight: math.unit(315, "lb"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/gunner-rotthbauer/front.svg"
  10287. }
  10288. },
  10289. back: {
  10290. height: math.unit(8, "feet"),
  10291. weight: math.unit(315, "lb"),
  10292. name: "Back",
  10293. image: {
  10294. source: "./media/characters/gunner-rotthbauer/back.svg"
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Micro",
  10301. height: math.unit(3.5, "inches")
  10302. },
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(8, "feet"),
  10306. default: true
  10307. },
  10308. {
  10309. name: "Macro",
  10310. height: math.unit(250, "feet")
  10311. },
  10312. {
  10313. name: "Megamacro",
  10314. height: math.unit(1, "AU")
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(5 + 5 / 12, "feet"),
  10323. weight: math.unit(140, "lb"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/allatia/front.svg",
  10327. extra: 1227 / 1180,
  10328. bottom: 0.027
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(5 + 5 / 12, "feet")
  10336. },
  10337. {
  10338. name: "Macro",
  10339. height: math.unit(250, "feet"),
  10340. default: true
  10341. },
  10342. {
  10343. name: "Megamacro",
  10344. height: math.unit(8, "miles")
  10345. }
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10350. {
  10351. front: {
  10352. height: math.unit(6, "feet"),
  10353. weight: math.unit(120, "lb"),
  10354. name: "Front",
  10355. image: {
  10356. source: "./media/characters/tene/front.svg",
  10357. extra: 814/750,
  10358. bottom: 36/850
  10359. }
  10360. },
  10361. stomping: {
  10362. height: math.unit(2.025, "meters"),
  10363. weight: math.unit(120, "lb"),
  10364. name: "Stomping",
  10365. image: {
  10366. source: "./media/characters/tene/stomping.svg",
  10367. extra: 885/821,
  10368. bottom: 15/900
  10369. }
  10370. },
  10371. sitting: {
  10372. height: math.unit(1, "meter"),
  10373. weight: math.unit(120, "lb"),
  10374. name: "Sitting",
  10375. image: {
  10376. source: "./media/characters/tene/sitting.svg",
  10377. extra: 396/366,
  10378. bottom: 79/475
  10379. }
  10380. },
  10381. smiling: {
  10382. height: math.unit(1.2, "feet"),
  10383. name: "Smiling",
  10384. image: {
  10385. source: "./media/characters/tene/smiling.svg",
  10386. extra: 1364/1071,
  10387. bottom: 0/1364
  10388. }
  10389. },
  10390. smug: {
  10391. height: math.unit(1.3, "feet"),
  10392. name: "Smug",
  10393. image: {
  10394. source: "./media/characters/tene/smug.svg",
  10395. extra: 1323/1082,
  10396. bottom: 0/1323
  10397. }
  10398. },
  10399. feral: {
  10400. height: math.unit(3.9, "feet"),
  10401. weight: math.unit(250, "lb"),
  10402. name: "Feral",
  10403. image: {
  10404. source: "./media/characters/tene/feral.svg",
  10405. extra: 717 / 458,
  10406. bottom: 0.179
  10407. }
  10408. },
  10409. },
  10410. [
  10411. {
  10412. name: "Normal",
  10413. height: math.unit(6, "feet")
  10414. },
  10415. {
  10416. name: "Macro",
  10417. height: math.unit(300, "feet"),
  10418. default: true
  10419. },
  10420. {
  10421. name: "Megamacro",
  10422. height: math.unit(5, "miles")
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10428. {
  10429. side: {
  10430. height: math.unit(6, "feet"),
  10431. name: "Side",
  10432. image: {
  10433. source: "./media/characters/evander/side.svg",
  10434. extra: 877 / 477
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Normal",
  10441. height: math.unit(0.83, "meters"),
  10442. default: true
  10443. },
  10444. ]
  10445. ))
  10446. characterMakers.push(() => makeCharacter(
  10447. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10448. {
  10449. front: {
  10450. height: math.unit(12, "feet"),
  10451. weight: math.unit(1000, "lb"),
  10452. name: "Front",
  10453. image: {
  10454. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10455. extra: 1762 / 1611
  10456. }
  10457. },
  10458. back: {
  10459. height: math.unit(12, "feet"),
  10460. weight: math.unit(1000, "lb"),
  10461. name: "Back",
  10462. image: {
  10463. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10464. extra: 1762 / 1611
  10465. }
  10466. },
  10467. },
  10468. [
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(12, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Kaiju",
  10476. height: math.unit(150, "feet")
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(150, "lb"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/zero-alurus/front.svg"
  10489. }
  10490. },
  10491. back: {
  10492. height: math.unit(6, "feet"),
  10493. weight: math.unit(150, "lb"),
  10494. name: "Back",
  10495. image: {
  10496. source: "./media/characters/zero-alurus/back.svg"
  10497. }
  10498. },
  10499. },
  10500. [
  10501. {
  10502. name: "Normal",
  10503. height: math.unit(5 + 10 / 12, "feet")
  10504. },
  10505. {
  10506. name: "Macro",
  10507. height: math.unit(60, "feet"),
  10508. default: true
  10509. },
  10510. {
  10511. name: "Macro+",
  10512. height: math.unit(450, "feet")
  10513. },
  10514. ]
  10515. ))
  10516. characterMakers.push(() => makeCharacter(
  10517. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10518. {
  10519. front: {
  10520. height: math.unit(6, "feet"),
  10521. weight: math.unit(200, "lb"),
  10522. name: "Front",
  10523. image: {
  10524. source: "./media/characters/mega-shi/front.svg",
  10525. extra: 1279 / 1250,
  10526. bottom: 0.02
  10527. }
  10528. },
  10529. back: {
  10530. height: math.unit(6, "feet"),
  10531. weight: math.unit(200, "lb"),
  10532. name: "Back",
  10533. image: {
  10534. source: "./media/characters/mega-shi/back.svg",
  10535. extra: 1279 / 1250,
  10536. bottom: 0.02
  10537. }
  10538. },
  10539. },
  10540. [
  10541. {
  10542. name: "Micro",
  10543. height: math.unit(16 + 6 / 12, "feet")
  10544. },
  10545. {
  10546. name: "Third Dimension",
  10547. height: math.unit(40, "meters")
  10548. },
  10549. {
  10550. name: "Normal",
  10551. height: math.unit(660, "feet"),
  10552. default: true
  10553. },
  10554. {
  10555. name: "Megamacro",
  10556. height: math.unit(10, "miles")
  10557. },
  10558. {
  10559. name: "Planetary Launch",
  10560. height: math.unit(500, "miles")
  10561. },
  10562. {
  10563. name: "Interstellar",
  10564. height: math.unit(1e9, "miles")
  10565. },
  10566. {
  10567. name: "Leaving the Universe",
  10568. height: math.unit(1, "gigaparsec")
  10569. },
  10570. {
  10571. name: "Travelling Universes",
  10572. height: math.unit(30e15, "parsecs")
  10573. },
  10574. ]
  10575. ))
  10576. characterMakers.push(() => makeCharacter(
  10577. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10578. {
  10579. front: {
  10580. height: math.unit(5 + 4/12, "feet"),
  10581. weight: math.unit(120, "lb"),
  10582. name: "Front",
  10583. image: {
  10584. source: "./media/characters/odyssey/front.svg",
  10585. extra: 1747/1571,
  10586. bottom: 47/1794
  10587. }
  10588. },
  10589. side: {
  10590. height: math.unit(5.1, "feet"),
  10591. weight: math.unit(120, "lb"),
  10592. name: "Side",
  10593. image: {
  10594. source: "./media/characters/odyssey/side.svg",
  10595. extra: 1847/1619,
  10596. bottom: 47/1894
  10597. }
  10598. },
  10599. lounging: {
  10600. height: math.unit(1.464, "feet"),
  10601. weight: math.unit(120, "lb"),
  10602. name: "Lounging",
  10603. image: {
  10604. source: "./media/characters/odyssey/lounging.svg",
  10605. extra: 1235/837,
  10606. bottom: 551/1786
  10607. }
  10608. },
  10609. },
  10610. [
  10611. {
  10612. name: "Normal",
  10613. height: math.unit(5 + 4 / 12, "feet")
  10614. },
  10615. {
  10616. name: "Macro",
  10617. height: math.unit(1, "km")
  10618. },
  10619. {
  10620. name: "Megamacro",
  10621. height: math.unit(3000, "km")
  10622. },
  10623. {
  10624. name: "Gigamacro",
  10625. height: math.unit(1, "AU"),
  10626. default: true
  10627. },
  10628. {
  10629. name: "Omniversal",
  10630. height: math.unit(100e14, "lightyears")
  10631. },
  10632. ]
  10633. ))
  10634. characterMakers.push(() => makeCharacter(
  10635. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10636. {
  10637. front: {
  10638. height: math.unit(6, "feet"),
  10639. weight: math.unit(300, "lb"),
  10640. name: "Front",
  10641. image: {
  10642. source: "./media/characters/mekuto/front.svg",
  10643. extra: 921 / 832,
  10644. bottom: 0.03
  10645. }
  10646. },
  10647. hand: {
  10648. height: math.unit(6 / 10.24, "feet"),
  10649. name: "Hand",
  10650. image: {
  10651. source: "./media/characters/mekuto/hand.svg"
  10652. }
  10653. },
  10654. foot: {
  10655. height: math.unit(6 / 5.05, "feet"),
  10656. name: "Foot",
  10657. image: {
  10658. source: "./media/characters/mekuto/foot.svg"
  10659. }
  10660. },
  10661. },
  10662. [
  10663. {
  10664. name: "Minimicro",
  10665. height: math.unit(0.2, "inches")
  10666. },
  10667. {
  10668. name: "Micro",
  10669. height: math.unit(1.5, "inches")
  10670. },
  10671. {
  10672. name: "Normal",
  10673. height: math.unit(5 + 11 / 12, "feet"),
  10674. default: true
  10675. },
  10676. {
  10677. name: "Minimacro",
  10678. height: math.unit(17 + 9 / 12, "feet")
  10679. },
  10680. {
  10681. name: "Macro",
  10682. height: math.unit(177.5, "feet")
  10683. },
  10684. {
  10685. name: "Megamacro",
  10686. height: math.unit(152, "miles")
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10692. {
  10693. front: {
  10694. height: math.unit(6.5, "inches"),
  10695. weight: math.unit(13, "oz"),
  10696. name: "Front",
  10697. image: {
  10698. source: "./media/characters/dafydd-tomos/front.svg",
  10699. extra: 2990 / 2603,
  10700. bottom: 0.03
  10701. }
  10702. },
  10703. },
  10704. [
  10705. {
  10706. name: "Micro",
  10707. height: math.unit(6.5, "inches"),
  10708. default: true
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10714. {
  10715. front: {
  10716. height: math.unit(6, "feet"),
  10717. weight: math.unit(150, "lb"),
  10718. name: "Front",
  10719. image: {
  10720. source: "./media/characters/splinter/front.svg",
  10721. extra: 2990 / 2882,
  10722. bottom: 0.04
  10723. }
  10724. },
  10725. back: {
  10726. height: math.unit(6, "feet"),
  10727. weight: math.unit(150, "lb"),
  10728. name: "Back",
  10729. image: {
  10730. source: "./media/characters/splinter/back.svg",
  10731. extra: 2990 / 2882,
  10732. bottom: 0.04
  10733. }
  10734. },
  10735. },
  10736. [
  10737. {
  10738. name: "Normal",
  10739. height: math.unit(6, "feet")
  10740. },
  10741. {
  10742. name: "Macro",
  10743. height: math.unit(230, "meters"),
  10744. default: true
  10745. },
  10746. ]
  10747. ))
  10748. characterMakers.push(() => makeCharacter(
  10749. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10750. {
  10751. front: {
  10752. height: math.unit(4 + 10 / 12, "feet"),
  10753. weight: math.unit(480, "lb"),
  10754. name: "Front",
  10755. image: {
  10756. source: "./media/characters/snow-gabumon/front.svg",
  10757. extra: 1140 / 963,
  10758. bottom: 0.058
  10759. }
  10760. },
  10761. back: {
  10762. height: math.unit(4 + 10 / 12, "feet"),
  10763. weight: math.unit(480, "lb"),
  10764. name: "Back",
  10765. image: {
  10766. source: "./media/characters/snow-gabumon/back.svg",
  10767. extra: 1115 / 962,
  10768. bottom: 0.041
  10769. }
  10770. },
  10771. frontUndresed: {
  10772. height: math.unit(4 + 10 / 12, "feet"),
  10773. weight: math.unit(480, "lb"),
  10774. name: "Front (Undressed)",
  10775. image: {
  10776. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10777. extra: 1061 / 960,
  10778. bottom: 0.045
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Micro",
  10785. height: math.unit(1, "inch")
  10786. },
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(4 + 10 / 12, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Macro",
  10794. height: math.unit(200, "feet")
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(120, "miles")
  10799. },
  10800. {
  10801. name: "Gigamacro",
  10802. height: math.unit(9800, "miles")
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10808. {
  10809. front: {
  10810. height: math.unit(1.7, "meters"),
  10811. weight: math.unit(140, "lb"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/moody/front.svg",
  10815. extra: 3226 / 3007,
  10816. bottom: 0.087
  10817. }
  10818. },
  10819. },
  10820. [
  10821. {
  10822. name: "Micro",
  10823. height: math.unit(1, "mm")
  10824. },
  10825. {
  10826. name: "Normal",
  10827. height: math.unit(1.7, "meters"),
  10828. default: true
  10829. },
  10830. {
  10831. name: "Macro",
  10832. height: math.unit(80, "meters")
  10833. },
  10834. {
  10835. name: "Macro+",
  10836. height: math.unit(500, "meters")
  10837. },
  10838. ]
  10839. ))
  10840. characterMakers.push(() => makeCharacter(
  10841. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10842. {
  10843. front: {
  10844. height: math.unit(6, "feet"),
  10845. weight: math.unit(150, "lb"),
  10846. name: "Front",
  10847. image: {
  10848. source: "./media/characters/zyas/front.svg",
  10849. extra: 1180 / 1120,
  10850. bottom: 0.045
  10851. }
  10852. },
  10853. },
  10854. [
  10855. {
  10856. name: "Normal",
  10857. height: math.unit(10, "feet"),
  10858. default: true
  10859. },
  10860. {
  10861. name: "Macro",
  10862. height: math.unit(500, "feet")
  10863. },
  10864. {
  10865. name: "Megamacro",
  10866. height: math.unit(5, "miles")
  10867. },
  10868. {
  10869. name: "Teramacro",
  10870. height: math.unit(150000, "miles")
  10871. },
  10872. ]
  10873. ))
  10874. characterMakers.push(() => makeCharacter(
  10875. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10876. {
  10877. front: {
  10878. height: math.unit(6, "feet"),
  10879. weight: math.unit(150, "lb"),
  10880. name: "Front",
  10881. image: {
  10882. source: "./media/characters/cuon/front.svg",
  10883. extra: 1390 / 1320,
  10884. bottom: 0.008
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Micro",
  10891. height: math.unit(3, "inches")
  10892. },
  10893. {
  10894. name: "Normal",
  10895. height: math.unit(18 + 9 / 12, "feet"),
  10896. default: true
  10897. },
  10898. {
  10899. name: "Macro",
  10900. height: math.unit(360, "feet")
  10901. },
  10902. {
  10903. name: "Megamacro",
  10904. height: math.unit(360, "miles")
  10905. },
  10906. ]
  10907. ))
  10908. characterMakers.push(() => makeCharacter(
  10909. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10910. {
  10911. front: {
  10912. height: math.unit(2.4, "meters"),
  10913. weight: math.unit(70, "kg"),
  10914. name: "Front",
  10915. image: {
  10916. source: "./media/characters/nyanuxk/front.svg",
  10917. extra: 1172 / 1084,
  10918. bottom: 0.065
  10919. }
  10920. },
  10921. side: {
  10922. height: math.unit(2.4, "meters"),
  10923. weight: math.unit(70, "kg"),
  10924. name: "Side",
  10925. image: {
  10926. source: "./media/characters/nyanuxk/side.svg",
  10927. extra: 1190 / 1132,
  10928. bottom: 0.007
  10929. }
  10930. },
  10931. back: {
  10932. height: math.unit(2.4, "meters"),
  10933. weight: math.unit(70, "kg"),
  10934. name: "Back",
  10935. image: {
  10936. source: "./media/characters/nyanuxk/back.svg",
  10937. extra: 1200 / 1141,
  10938. bottom: 0.015
  10939. }
  10940. },
  10941. foot: {
  10942. height: math.unit(0.52, "meters"),
  10943. name: "Foot",
  10944. image: {
  10945. source: "./media/characters/nyanuxk/foot.svg"
  10946. }
  10947. },
  10948. },
  10949. [
  10950. {
  10951. name: "Micro",
  10952. height: math.unit(2, "cm")
  10953. },
  10954. {
  10955. name: "Normal",
  10956. height: math.unit(2.4, "meters"),
  10957. default: true
  10958. },
  10959. {
  10960. name: "Smaller Macro",
  10961. height: math.unit(120, "meters")
  10962. },
  10963. {
  10964. name: "Bigger Macro",
  10965. height: math.unit(1.2, "km")
  10966. },
  10967. {
  10968. name: "Megamacro",
  10969. height: math.unit(15, "kilometers")
  10970. },
  10971. {
  10972. name: "Gigamacro",
  10973. height: math.unit(2000, "km")
  10974. },
  10975. {
  10976. name: "Teramacro",
  10977. height: math.unit(500000, "km")
  10978. },
  10979. ]
  10980. ))
  10981. characterMakers.push(() => makeCharacter(
  10982. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10983. {
  10984. side: {
  10985. height: math.unit(6, "feet"),
  10986. name: "Side",
  10987. image: {
  10988. source: "./media/characters/ailbhe/side.svg",
  10989. extra: 757 / 464,
  10990. bottom: 0.041
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Normal",
  10997. height: math.unit(1.07, "meters"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(6, "feet"),
  11007. weight: math.unit(120, "kg"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/zevulfius/front.svg",
  11011. extra: 965 / 903
  11012. }
  11013. },
  11014. side: {
  11015. height: math.unit(6, "feet"),
  11016. weight: math.unit(120, "kg"),
  11017. name: "Side",
  11018. image: {
  11019. source: "./media/characters/zevulfius/side.svg",
  11020. extra: 939 / 900
  11021. }
  11022. },
  11023. back: {
  11024. height: math.unit(6, "feet"),
  11025. weight: math.unit(120, "kg"),
  11026. name: "Back",
  11027. image: {
  11028. source: "./media/characters/zevulfius/back.svg",
  11029. extra: 918 / 854,
  11030. bottom: 0.005
  11031. }
  11032. },
  11033. foot: {
  11034. height: math.unit(6 / 3.72, "feet"),
  11035. name: "Foot",
  11036. image: {
  11037. source: "./media/characters/zevulfius/foot.svg"
  11038. }
  11039. },
  11040. },
  11041. [
  11042. {
  11043. name: "Macro",
  11044. height: math.unit(750, "meters")
  11045. },
  11046. {
  11047. name: "Megamacro",
  11048. height: math.unit(20, "km"),
  11049. default: true
  11050. },
  11051. {
  11052. name: "Gigamacro",
  11053. height: math.unit(2000, "km")
  11054. },
  11055. {
  11056. name: "Teramacro",
  11057. height: math.unit(250000, "km")
  11058. },
  11059. ]
  11060. ))
  11061. characterMakers.push(() => makeCharacter(
  11062. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11063. {
  11064. front: {
  11065. height: math.unit(100, "feet"),
  11066. weight: math.unit(350, "kg"),
  11067. name: "Front",
  11068. image: {
  11069. source: "./media/characters/rikes/front.svg",
  11070. extra: 1565 / 1483,
  11071. bottom: 0.017
  11072. }
  11073. },
  11074. },
  11075. [
  11076. {
  11077. name: "Macro",
  11078. height: math.unit(100, "feet"),
  11079. default: true
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11085. {
  11086. front: {
  11087. height: math.unit(8, "feet"),
  11088. weight: math.unit(356, "lb"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/adam-silver-mane/front.svg",
  11092. extra: 1036/937,
  11093. bottom: 63/1099
  11094. }
  11095. },
  11096. side: {
  11097. height: math.unit(8, "feet"),
  11098. weight: math.unit(356, "lb"),
  11099. name: "Side",
  11100. image: {
  11101. source: "./media/characters/adam-silver-mane/side.svg",
  11102. extra: 997/901,
  11103. bottom: 59/1056
  11104. }
  11105. },
  11106. frontNsfw: {
  11107. height: math.unit(8, "feet"),
  11108. weight: math.unit(356, "lb"),
  11109. name: "Front (NSFW)",
  11110. image: {
  11111. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11112. extra: 1036/937,
  11113. bottom: 63/1099
  11114. }
  11115. },
  11116. sideNsfw: {
  11117. height: math.unit(8, "feet"),
  11118. weight: math.unit(356, "lb"),
  11119. name: "Side (NSFW)",
  11120. image: {
  11121. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11122. extra: 997/901,
  11123. bottom: 59/1056
  11124. }
  11125. },
  11126. dick: {
  11127. height: math.unit(2.1, "feet"),
  11128. name: "Dick",
  11129. image: {
  11130. source: "./media/characters/adam-silver-mane/dick.svg"
  11131. }
  11132. },
  11133. taur: {
  11134. height: math.unit(16, "feet"),
  11135. weight: math.unit(1500, "kg"),
  11136. name: "Taur",
  11137. image: {
  11138. source: "./media/characters/adam-silver-mane/taur.svg",
  11139. extra: 1713 / 1571,
  11140. bottom: 0.01
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Normal",
  11147. height: math.unit(8, "feet")
  11148. },
  11149. {
  11150. name: "Minimacro",
  11151. height: math.unit(80, "feet")
  11152. },
  11153. {
  11154. name: "MDA",
  11155. height: math.unit(80, "meters")
  11156. },
  11157. {
  11158. name: "Macro",
  11159. height: math.unit(800, "feet"),
  11160. default: true
  11161. },
  11162. {
  11163. name: "Megamacro",
  11164. height: math.unit(8000, "feet")
  11165. },
  11166. {
  11167. name: "Gigamacro",
  11168. height: math.unit(800, "miles")
  11169. },
  11170. {
  11171. name: "Teramacro",
  11172. height: math.unit(80000, "miles")
  11173. },
  11174. {
  11175. name: "Celestial",
  11176. height: math.unit(8e6, "miles")
  11177. },
  11178. {
  11179. name: "Star Dragon",
  11180. height: math.unit(800000, "parsecs")
  11181. },
  11182. {
  11183. name: "Godly",
  11184. height: math.unit(800, "teraparsecs")
  11185. },
  11186. ]
  11187. ))
  11188. characterMakers.push(() => makeCharacter(
  11189. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11190. {
  11191. front: {
  11192. height: math.unit(6, "feet"),
  11193. weight: math.unit(150, "lb"),
  11194. name: "Front",
  11195. image: {
  11196. source: "./media/characters/ky'owin/front.svg",
  11197. extra: 3888 / 3068,
  11198. bottom: 0.015
  11199. }
  11200. },
  11201. },
  11202. [
  11203. {
  11204. name: "Normal",
  11205. height: math.unit(6 + 8 / 12, "feet")
  11206. },
  11207. {
  11208. name: "Large",
  11209. height: math.unit(68, "feet")
  11210. },
  11211. {
  11212. name: "Macro",
  11213. height: math.unit(132, "feet")
  11214. },
  11215. {
  11216. name: "Macro+",
  11217. height: math.unit(340, "feet")
  11218. },
  11219. {
  11220. name: "Macro++",
  11221. height: math.unit(680, "feet"),
  11222. default: true
  11223. },
  11224. {
  11225. name: "Megamacro",
  11226. height: math.unit(1, "mile")
  11227. },
  11228. {
  11229. name: "Megamacro+",
  11230. height: math.unit(10, "miles")
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11236. {
  11237. front: {
  11238. height: math.unit(4, "feet"),
  11239. weight: math.unit(50, "lb"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/mal/front.svg",
  11243. extra: 785 / 724,
  11244. bottom: 0.07
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Micro",
  11251. height: math.unit(4, "inches")
  11252. },
  11253. {
  11254. name: "Normal",
  11255. height: math.unit(4, "feet"),
  11256. default: true
  11257. },
  11258. {
  11259. name: "Macro",
  11260. height: math.unit(200, "feet")
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(6, "feet"),
  11269. weight: math.unit(150, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/jordan-deware/front.svg",
  11273. extra: 1191 / 1012
  11274. }
  11275. },
  11276. },
  11277. [
  11278. {
  11279. name: "Nano",
  11280. height: math.unit(0.01, "mm")
  11281. },
  11282. {
  11283. name: "Minimicro",
  11284. height: math.unit(1, "mm")
  11285. },
  11286. {
  11287. name: "Micro",
  11288. height: math.unit(0.5, "inches")
  11289. },
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(4, "feet"),
  11293. default: true
  11294. },
  11295. {
  11296. name: "Minimacro",
  11297. height: math.unit(40, "meters")
  11298. },
  11299. {
  11300. name: "Small Macro",
  11301. height: math.unit(400, "meters")
  11302. },
  11303. {
  11304. name: "Macro",
  11305. height: math.unit(4, "miles")
  11306. },
  11307. {
  11308. name: "Megamacro",
  11309. height: math.unit(40, "miles")
  11310. },
  11311. {
  11312. name: "Megamacro+",
  11313. height: math.unit(400, "miles")
  11314. },
  11315. {
  11316. name: "Gigamacro",
  11317. height: math.unit(400000, "miles")
  11318. },
  11319. ]
  11320. ))
  11321. characterMakers.push(() => makeCharacter(
  11322. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11323. {
  11324. side: {
  11325. height: math.unit(6, "feet"),
  11326. weight: math.unit(150, "lb"),
  11327. name: "Side",
  11328. image: {
  11329. source: "./media/characters/kimiko/side.svg",
  11330. extra: 600 / 358
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(15, "feet"),
  11338. default: true
  11339. },
  11340. {
  11341. name: "Macro",
  11342. height: math.unit(220, "feet")
  11343. },
  11344. {
  11345. name: "Macro+",
  11346. height: math.unit(1450, "feet")
  11347. },
  11348. {
  11349. name: "Megamacro",
  11350. height: math.unit(11500, "feet")
  11351. },
  11352. {
  11353. name: "Gigamacro",
  11354. height: math.unit(9500, "miles")
  11355. },
  11356. {
  11357. name: "Teramacro",
  11358. height: math.unit(2208005005, "miles")
  11359. },
  11360. {
  11361. name: "Examacro",
  11362. height: math.unit(2750, "parsecs")
  11363. },
  11364. {
  11365. name: "Zettamacro",
  11366. height: math.unit(101500, "parsecs")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11372. {
  11373. front: {
  11374. height: math.unit(6, "feet"),
  11375. weight: math.unit(70, "kg"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/andrew-sleepy/front.svg"
  11379. }
  11380. },
  11381. side: {
  11382. height: math.unit(6, "feet"),
  11383. weight: math.unit(70, "kg"),
  11384. name: "Side",
  11385. image: {
  11386. source: "./media/characters/andrew-sleepy/side.svg"
  11387. }
  11388. },
  11389. },
  11390. [
  11391. {
  11392. name: "Micro",
  11393. height: math.unit(1, "mm"),
  11394. default: true
  11395. },
  11396. ]
  11397. ))
  11398. characterMakers.push(() => makeCharacter(
  11399. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11400. {
  11401. front: {
  11402. height: math.unit(6, "feet"),
  11403. weight: math.unit(150, "lb"),
  11404. name: "Front",
  11405. image: {
  11406. source: "./media/characters/judio/front.svg",
  11407. extra: 1258 / 1110
  11408. }
  11409. },
  11410. },
  11411. [
  11412. {
  11413. name: "Normal",
  11414. height: math.unit(5 + 6 / 12, "feet")
  11415. },
  11416. {
  11417. name: "Macro",
  11418. height: math.unit(1000, "feet"),
  11419. default: true
  11420. },
  11421. {
  11422. name: "Megamacro",
  11423. height: math.unit(10, "miles")
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11429. {
  11430. frontDressed: {
  11431. height: math.unit(6, "feet"),
  11432. weight: math.unit(68, "kg"),
  11433. name: "Front (Dressed)",
  11434. image: {
  11435. source: "./media/characters/nomaxice/front-dressed.svg",
  11436. extra: 1137/824,
  11437. bottom: 74/1211
  11438. }
  11439. },
  11440. frontShorts: {
  11441. height: math.unit(6, "feet"),
  11442. weight: math.unit(68, "kg"),
  11443. name: "Front (Shorts)",
  11444. image: {
  11445. source: "./media/characters/nomaxice/front-shorts.svg",
  11446. extra: 1137/824,
  11447. bottom: 74/1211
  11448. }
  11449. },
  11450. back: {
  11451. height: math.unit(6, "feet"),
  11452. weight: math.unit(68, "kg"),
  11453. name: "Back",
  11454. image: {
  11455. source: "./media/characters/nomaxice/back.svg",
  11456. extra: 822/786,
  11457. bottom: 39/861
  11458. }
  11459. },
  11460. hand: {
  11461. height: math.unit(0.565, "feet"),
  11462. name: "Hand",
  11463. image: {
  11464. source: "./media/characters/nomaxice/hand.svg"
  11465. }
  11466. },
  11467. foot: {
  11468. height: math.unit(1, "feet"),
  11469. name: "Foot",
  11470. image: {
  11471. source: "./media/characters/nomaxice/foot.svg"
  11472. }
  11473. },
  11474. },
  11475. [
  11476. {
  11477. name: "Micro",
  11478. height: math.unit(8, "cm")
  11479. },
  11480. {
  11481. name: "Norm",
  11482. height: math.unit(1.82, "m")
  11483. },
  11484. {
  11485. name: "Norm+",
  11486. height: math.unit(8.8, "feet"),
  11487. default: true
  11488. },
  11489. {
  11490. name: "Big",
  11491. height: math.unit(8, "meters")
  11492. },
  11493. {
  11494. name: "Macro",
  11495. height: math.unit(18, "meters")
  11496. },
  11497. {
  11498. name: "Macro+",
  11499. height: math.unit(88, "meters")
  11500. },
  11501. ]
  11502. ))
  11503. characterMakers.push(() => makeCharacter(
  11504. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11505. {
  11506. front: {
  11507. height: math.unit(12, "feet"),
  11508. weight: math.unit(1.5, "tons"),
  11509. name: "Front",
  11510. image: {
  11511. source: "./media/characters/dydros/front.svg",
  11512. extra: 863 / 800,
  11513. bottom: 0.015
  11514. }
  11515. },
  11516. back: {
  11517. height: math.unit(12, "feet"),
  11518. weight: math.unit(1.5, "tons"),
  11519. name: "Back",
  11520. image: {
  11521. source: "./media/characters/dydros/back.svg",
  11522. extra: 900 / 843,
  11523. bottom: 0.005
  11524. }
  11525. },
  11526. },
  11527. [
  11528. {
  11529. name: "Normal",
  11530. height: math.unit(12, "feet"),
  11531. default: true
  11532. },
  11533. ]
  11534. ))
  11535. characterMakers.push(() => makeCharacter(
  11536. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11537. {
  11538. front: {
  11539. height: math.unit(6, "feet"),
  11540. weight: math.unit(100, "kg"),
  11541. name: "Front",
  11542. image: {
  11543. source: "./media/characters/riggi/front.svg",
  11544. extra: 5787 / 5303
  11545. }
  11546. },
  11547. hyper: {
  11548. height: math.unit(6 * 5 / 3, "feet"),
  11549. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11550. name: "Hyper",
  11551. image: {
  11552. source: "./media/characters/riggi/hyper.svg",
  11553. extra: 3595 / 3485
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Small Macro",
  11560. height: math.unit(50, "feet")
  11561. },
  11562. {
  11563. name: "Default",
  11564. height: math.unit(200, "feet"),
  11565. default: true
  11566. },
  11567. {
  11568. name: "Loom",
  11569. height: math.unit(10000, "feet")
  11570. },
  11571. {
  11572. name: "Cruising Altitude",
  11573. height: math.unit(30000, "feet")
  11574. },
  11575. {
  11576. name: "Megamacro",
  11577. height: math.unit(100, "miles")
  11578. },
  11579. {
  11580. name: "Continent Sized",
  11581. height: math.unit(2800, "miles")
  11582. },
  11583. {
  11584. name: "Earth Sized",
  11585. height: math.unit(8000, "miles")
  11586. },
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11591. {
  11592. front: {
  11593. height: math.unit(6, "feet"),
  11594. weight: math.unit(250, "lb"),
  11595. name: "Front",
  11596. image: {
  11597. source: "./media/characters/alexi/front.svg",
  11598. extra: 3483 / 3291,
  11599. bottom: 0.04
  11600. }
  11601. },
  11602. back: {
  11603. height: math.unit(6, "feet"),
  11604. weight: math.unit(250, "lb"),
  11605. name: "Back",
  11606. image: {
  11607. source: "./media/characters/alexi/back.svg",
  11608. extra: 3533 / 3356,
  11609. bottom: 0.021
  11610. }
  11611. },
  11612. frontTransforming: {
  11613. height: math.unit(8.58, "feet"),
  11614. weight: math.unit(1300, "lb"),
  11615. name: "Transforming",
  11616. image: {
  11617. source: "./media/characters/alexi/front-transforming.svg",
  11618. extra: 437 / 409,
  11619. bottom: 19 / 458.66
  11620. }
  11621. },
  11622. frontTransformed: {
  11623. height: math.unit(12.5, "feet"),
  11624. weight: math.unit(4000, "lb"),
  11625. name: "Transformed",
  11626. image: {
  11627. source: "./media/characters/alexi/front-transformed.svg",
  11628. extra: 639 / 614,
  11629. bottom: 30.55 / 671
  11630. }
  11631. },
  11632. },
  11633. [
  11634. {
  11635. name: "Normal",
  11636. height: math.unit(14, "feet"),
  11637. default: true
  11638. },
  11639. {
  11640. name: "Minimacro",
  11641. height: math.unit(30, "meters")
  11642. },
  11643. {
  11644. name: "Macro",
  11645. height: math.unit(500, "meters")
  11646. },
  11647. {
  11648. name: "Megamacro",
  11649. height: math.unit(9000, "km")
  11650. },
  11651. {
  11652. name: "Teramacro",
  11653. height: math.unit(384000, "km")
  11654. },
  11655. ]
  11656. ))
  11657. characterMakers.push(() => makeCharacter(
  11658. { name: "Kayroo", species: ["kangaroo"], 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/kayroo/front.svg",
  11666. extra: 1153 / 1038,
  11667. bottom: 0.06
  11668. }
  11669. },
  11670. foot: {
  11671. height: math.unit(6, "feet"),
  11672. weight: math.unit(150, "lb"),
  11673. name: "Foot",
  11674. image: {
  11675. source: "./media/characters/kayroo/foot.svg"
  11676. }
  11677. },
  11678. },
  11679. [
  11680. {
  11681. name: "Normal",
  11682. height: math.unit(8, "feet"),
  11683. default: true
  11684. },
  11685. {
  11686. name: "Minimacro",
  11687. height: math.unit(250, "feet")
  11688. },
  11689. {
  11690. name: "Macro",
  11691. height: math.unit(2800, "feet")
  11692. },
  11693. {
  11694. name: "Megamacro",
  11695. height: math.unit(5200, "feet")
  11696. },
  11697. {
  11698. name: "Gigamacro",
  11699. height: math.unit(27000, "feet")
  11700. },
  11701. {
  11702. name: "Omega",
  11703. height: math.unit(45000, "feet")
  11704. },
  11705. ]
  11706. ))
  11707. characterMakers.push(() => makeCharacter(
  11708. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11709. {
  11710. front: {
  11711. height: math.unit(18, "feet"),
  11712. weight: math.unit(5800, "lb"),
  11713. name: "Front",
  11714. image: {
  11715. source: "./media/characters/rhys/front.svg",
  11716. extra: 3386 / 3090,
  11717. bottom: 0.07
  11718. }
  11719. },
  11720. },
  11721. [
  11722. {
  11723. name: "Normal",
  11724. height: math.unit(18, "feet"),
  11725. default: true
  11726. },
  11727. {
  11728. name: "Working Size",
  11729. height: math.unit(200, "feet")
  11730. },
  11731. {
  11732. name: "Demolition Size",
  11733. height: math.unit(2000, "feet")
  11734. },
  11735. {
  11736. name: "Maximum Licensed Size",
  11737. height: math.unit(5, "miles")
  11738. },
  11739. {
  11740. name: "Maximum Observed Size",
  11741. height: math.unit(10, "yottameters")
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11747. {
  11748. front: {
  11749. height: math.unit(6, "feet"),
  11750. weight: math.unit(250, "lb"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/toto/front.svg",
  11754. extra: 527 / 479,
  11755. bottom: 0.05
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Micro",
  11762. height: math.unit(3, "feet")
  11763. },
  11764. {
  11765. name: "Normal",
  11766. height: math.unit(10, "feet")
  11767. },
  11768. {
  11769. name: "Macro",
  11770. height: math.unit(150, "feet"),
  11771. default: true
  11772. },
  11773. {
  11774. name: "Megamacro",
  11775. height: math.unit(1200, "feet")
  11776. },
  11777. ]
  11778. ))
  11779. characterMakers.push(() => makeCharacter(
  11780. { name: "King", species: ["lion"], tags: ["anthro"] },
  11781. {
  11782. back: {
  11783. height: math.unit(6, "feet"),
  11784. weight: math.unit(150, "lb"),
  11785. name: "Back",
  11786. image: {
  11787. source: "./media/characters/king/back.svg"
  11788. }
  11789. },
  11790. },
  11791. [
  11792. {
  11793. name: "Micro",
  11794. height: math.unit(2, "inches")
  11795. },
  11796. {
  11797. name: "Normal",
  11798. height: math.unit(8, "feet")
  11799. },
  11800. {
  11801. name: "Macro",
  11802. height: math.unit(200, "feet"),
  11803. default: true
  11804. },
  11805. {
  11806. name: "Megamacro",
  11807. height: math.unit(50, "miles")
  11808. },
  11809. ]
  11810. ))
  11811. characterMakers.push(() => makeCharacter(
  11812. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11813. {
  11814. front: {
  11815. height: math.unit(11, "feet"),
  11816. weight: math.unit(1400, "lb"),
  11817. name: "Front",
  11818. image: {
  11819. source: "./media/characters/cordite/front.svg",
  11820. extra: 1919/1827,
  11821. bottom: 40/1959
  11822. }
  11823. },
  11824. side: {
  11825. height: math.unit(11, "feet"),
  11826. weight: math.unit(1400, "lb"),
  11827. name: "Side",
  11828. image: {
  11829. source: "./media/characters/cordite/side.svg",
  11830. extra: 1908/1793,
  11831. bottom: 38/1946
  11832. }
  11833. },
  11834. back: {
  11835. height: math.unit(11, "feet"),
  11836. weight: math.unit(1400, "lb"),
  11837. name: "Back",
  11838. image: {
  11839. source: "./media/characters/cordite/back.svg",
  11840. extra: 1938/1837,
  11841. bottom: 10/1948
  11842. }
  11843. },
  11844. feral: {
  11845. height: math.unit(2, "feet"),
  11846. weight: math.unit(90, "lb"),
  11847. name: "Feral",
  11848. image: {
  11849. source: "./media/characters/cordite/feral.svg",
  11850. extra: 1260 / 755,
  11851. bottom: 0.05
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(11, "feet"),
  11859. default: true
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(150, "lb"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/pianostrong/front.svg",
  11872. extra: 6577 / 6254,
  11873. bottom: 0.02
  11874. }
  11875. },
  11876. side: {
  11877. height: math.unit(6, "feet"),
  11878. weight: math.unit(150, "lb"),
  11879. name: "Side",
  11880. image: {
  11881. source: "./media/characters/pianostrong/side.svg",
  11882. extra: 6106 / 5730
  11883. }
  11884. },
  11885. back: {
  11886. height: math.unit(6, "feet"),
  11887. weight: math.unit(150, "lb"),
  11888. name: "Back",
  11889. image: {
  11890. source: "./media/characters/pianostrong/back.svg",
  11891. extra: 6085 / 5733,
  11892. bottom: 0.01
  11893. }
  11894. },
  11895. },
  11896. [
  11897. {
  11898. name: "Macro",
  11899. height: math.unit(100, "feet")
  11900. },
  11901. {
  11902. name: "Macro+",
  11903. height: math.unit(300, "feet"),
  11904. default: true
  11905. },
  11906. {
  11907. name: "Macro++",
  11908. height: math.unit(1000, "feet")
  11909. },
  11910. ]
  11911. ))
  11912. characterMakers.push(() => makeCharacter(
  11913. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11914. {
  11915. front: {
  11916. height: math.unit(6, "feet"),
  11917. weight: math.unit(150, "lb"),
  11918. name: "Front",
  11919. image: {
  11920. source: "./media/characters/kona/front.svg",
  11921. extra: 2960 / 2629,
  11922. bottom: 0.005
  11923. }
  11924. },
  11925. },
  11926. [
  11927. {
  11928. name: "Normal",
  11929. height: math.unit(11 + 8 / 12, "feet")
  11930. },
  11931. {
  11932. name: "Macro",
  11933. height: math.unit(850, "feet"),
  11934. default: true
  11935. },
  11936. {
  11937. name: "Macro+",
  11938. height: math.unit(1.5, "km"),
  11939. default: true
  11940. },
  11941. {
  11942. name: "Megamacro",
  11943. height: math.unit(80, "miles")
  11944. },
  11945. {
  11946. name: "Gigamacro",
  11947. height: math.unit(3500, "miles")
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11953. {
  11954. side: {
  11955. height: math.unit(1.9, "meters"),
  11956. weight: math.unit(326, "kg"),
  11957. name: "Side",
  11958. image: {
  11959. source: "./media/characters/levi/side.svg",
  11960. extra: 1704 / 1334,
  11961. bottom: 0.02
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Normal",
  11968. height: math.unit(1.9, "meters"),
  11969. default: true
  11970. },
  11971. {
  11972. name: "Macro",
  11973. height: math.unit(20, "meters")
  11974. },
  11975. {
  11976. name: "Macro+",
  11977. height: math.unit(200, "meters")
  11978. },
  11979. {
  11980. name: "Megamacro",
  11981. height: math.unit(2, "km")
  11982. },
  11983. {
  11984. name: "Megamacro+",
  11985. height: math.unit(20, "km")
  11986. },
  11987. {
  11988. name: "Gigamacro",
  11989. height: math.unit(2500, "km")
  11990. },
  11991. {
  11992. name: "Gigamacro+",
  11993. height: math.unit(120000, "km")
  11994. },
  11995. {
  11996. name: "Teramacro",
  11997. height: math.unit(7.77e6, "km")
  11998. },
  11999. ]
  12000. ))
  12001. characterMakers.push(() => makeCharacter(
  12002. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12003. {
  12004. front: {
  12005. height: math.unit(6 + 4/12, "feet"),
  12006. weight: math.unit(190, "lb"),
  12007. name: "Front",
  12008. image: {
  12009. source: "./media/characters/bmc/front.svg",
  12010. extra: 1626/1472,
  12011. bottom: 79/1705
  12012. }
  12013. },
  12014. back: {
  12015. height: math.unit(6 + 4/12, "feet"),
  12016. weight: math.unit(190, "lb"),
  12017. name: "Back",
  12018. image: {
  12019. source: "./media/characters/bmc/back.svg",
  12020. extra: 1640/1479,
  12021. bottom: 45/1685
  12022. }
  12023. },
  12024. frontArmor: {
  12025. height: math.unit(6 + 4/12, "feet"),
  12026. weight: math.unit(190, "lb"),
  12027. name: "Front-armor",
  12028. image: {
  12029. source: "./media/characters/bmc/front-armor.svg",
  12030. extra: 1538/1468,
  12031. bottom: 79/1617
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Human-sized",
  12038. height: math.unit(6 + 4 / 12, "feet")
  12039. },
  12040. {
  12041. name: "Interactive Size",
  12042. height: math.unit(25, "feet")
  12043. },
  12044. {
  12045. name: "Small",
  12046. height: math.unit(250, "feet")
  12047. },
  12048. {
  12049. name: "Normal",
  12050. height: math.unit(1250, "feet"),
  12051. default: true
  12052. },
  12053. {
  12054. name: "Good Day",
  12055. height: math.unit(88, "miles")
  12056. },
  12057. {
  12058. name: "Largest Measured Size",
  12059. height: math.unit(105.960, "galaxies")
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12065. {
  12066. front: {
  12067. height: math.unit(20, "feet"),
  12068. weight: math.unit(2016, "kg"),
  12069. name: "Front",
  12070. image: {
  12071. source: "./media/characters/sven-the-kaiju/front.svg",
  12072. extra: 1277/1250,
  12073. bottom: 35/1312
  12074. }
  12075. },
  12076. mouth: {
  12077. height: math.unit(1.85, "feet"),
  12078. name: "Mouth",
  12079. image: {
  12080. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12081. }
  12082. },
  12083. },
  12084. [
  12085. {
  12086. name: "Fairy",
  12087. height: math.unit(6, "inches")
  12088. },
  12089. {
  12090. name: "Normal",
  12091. height: math.unit(20, "feet"),
  12092. default: true
  12093. },
  12094. {
  12095. name: "Rampage",
  12096. height: math.unit(200, "feet")
  12097. },
  12098. {
  12099. name: "Archfey Forest Guardian",
  12100. height: math.unit(1, "mile")
  12101. },
  12102. ]
  12103. ))
  12104. characterMakers.push(() => makeCharacter(
  12105. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12106. {
  12107. front: {
  12108. height: math.unit(4, "meters"),
  12109. weight: math.unit(2, "tons"),
  12110. name: "Front",
  12111. image: {
  12112. source: "./media/characters/marik/front.svg",
  12113. extra: 1057 / 1003,
  12114. bottom: 0.08
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Normal",
  12121. height: math.unit(4, "meters"),
  12122. default: true
  12123. },
  12124. {
  12125. name: "Macro",
  12126. height: math.unit(20, "meters")
  12127. },
  12128. {
  12129. name: "Megamacro",
  12130. height: math.unit(50, "km")
  12131. },
  12132. {
  12133. name: "Gigamacro",
  12134. height: math.unit(100, "km")
  12135. },
  12136. {
  12137. name: "Alpha Macro",
  12138. height: math.unit(7.88e7, "yottameters")
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(6, "feet"),
  12147. weight: math.unit(110, "lb"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/mel/front.svg",
  12151. extra: 736 / 617,
  12152. bottom: 0.017
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Pico",
  12159. height: math.unit(3, "pm")
  12160. },
  12161. {
  12162. name: "Nano",
  12163. height: math.unit(3, "nm")
  12164. },
  12165. {
  12166. name: "Micro",
  12167. height: math.unit(0.3, "mm"),
  12168. default: true
  12169. },
  12170. {
  12171. name: "Micro+",
  12172. height: math.unit(3, "mm")
  12173. },
  12174. {
  12175. name: "Normal",
  12176. height: math.unit(5 + 10.5 / 12, "feet")
  12177. },
  12178. ]
  12179. ))
  12180. characterMakers.push(() => makeCharacter(
  12181. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12182. {
  12183. kaiju: {
  12184. height: math.unit(1.75, "meters"),
  12185. weight: math.unit(55, "kg"),
  12186. name: "Kaiju",
  12187. image: {
  12188. source: "./media/characters/lykonous/kaiju.svg",
  12189. extra: 1055 / 946,
  12190. bottom: 0.135
  12191. }
  12192. },
  12193. },
  12194. [
  12195. {
  12196. name: "Normal",
  12197. height: math.unit(2.5, "meters"),
  12198. default: true
  12199. },
  12200. {
  12201. name: "Kaiju Dragon",
  12202. height: math.unit(60, "meters")
  12203. },
  12204. {
  12205. name: "Mega Kaiju",
  12206. height: math.unit(120, "km")
  12207. },
  12208. {
  12209. name: "Giga Kaiju",
  12210. height: math.unit(200, "megameters")
  12211. },
  12212. {
  12213. name: "Terra Kaiju",
  12214. height: math.unit(400, "gigameters")
  12215. },
  12216. {
  12217. name: "Kaiju Dragon God",
  12218. height: math.unit(13000, "exaparsecs")
  12219. },
  12220. ]
  12221. ))
  12222. characterMakers.push(() => makeCharacter(
  12223. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12224. {
  12225. front: {
  12226. height: math.unit(6, "feet"),
  12227. weight: math.unit(150, "lb"),
  12228. name: "Front",
  12229. image: {
  12230. source: "./media/characters/blü/front.svg",
  12231. extra: 1883 / 1564,
  12232. bottom: 0.031
  12233. }
  12234. },
  12235. },
  12236. [
  12237. {
  12238. name: "Normal",
  12239. height: math.unit(13, "feet"),
  12240. default: true
  12241. },
  12242. {
  12243. name: "Big Boi",
  12244. height: math.unit(150, "meters")
  12245. },
  12246. {
  12247. name: "Mini Stomper",
  12248. height: math.unit(300, "meters")
  12249. },
  12250. {
  12251. name: "Macro",
  12252. height: math.unit(1000, "meters")
  12253. },
  12254. {
  12255. name: "Megamacro",
  12256. height: math.unit(11000, "meters")
  12257. },
  12258. {
  12259. name: "Gigamacro",
  12260. height: math.unit(11000, "km")
  12261. },
  12262. {
  12263. name: "Teramacro",
  12264. height: math.unit(420000, "km")
  12265. },
  12266. {
  12267. name: "Examacro",
  12268. height: math.unit(120, "parsecs")
  12269. },
  12270. {
  12271. name: "God Tho",
  12272. height: math.unit(98000000000, "parsecs")
  12273. },
  12274. ]
  12275. ))
  12276. characterMakers.push(() => makeCharacter(
  12277. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12278. {
  12279. taurFront: {
  12280. height: math.unit(6, "feet"),
  12281. weight: math.unit(200, "lb"),
  12282. name: "Taur (Front)",
  12283. image: {
  12284. source: "./media/characters/scales/taur-front.svg",
  12285. extra: 1,
  12286. bottom: 0.05
  12287. }
  12288. },
  12289. taurBack: {
  12290. height: math.unit(6, "feet"),
  12291. weight: math.unit(200, "lb"),
  12292. name: "Taur (Back)",
  12293. image: {
  12294. source: "./media/characters/scales/taur-back.svg",
  12295. extra: 1,
  12296. bottom: 0.08
  12297. }
  12298. },
  12299. anthro: {
  12300. height: math.unit(6 * 7 / 12, "feet"),
  12301. weight: math.unit(100, "lb"),
  12302. name: "Anthro",
  12303. image: {
  12304. source: "./media/characters/scales/anthro.svg",
  12305. extra: 1,
  12306. bottom: 0.06
  12307. }
  12308. },
  12309. },
  12310. [
  12311. {
  12312. name: "Normal",
  12313. height: math.unit(12, "feet"),
  12314. default: true
  12315. },
  12316. ]
  12317. ))
  12318. characterMakers.push(() => makeCharacter(
  12319. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12320. {
  12321. front: {
  12322. height: math.unit(6, "feet"),
  12323. weight: math.unit(150, "lb"),
  12324. name: "Front",
  12325. image: {
  12326. source: "./media/characters/koragos/front.svg",
  12327. extra: 841 / 794,
  12328. bottom: 0.035
  12329. }
  12330. },
  12331. back: {
  12332. height: math.unit(6, "feet"),
  12333. weight: math.unit(150, "lb"),
  12334. name: "Back",
  12335. image: {
  12336. source: "./media/characters/koragos/back.svg",
  12337. extra: 841 / 810,
  12338. bottom: 0.022
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Normal",
  12345. height: math.unit(6 + 11 / 12, "feet"),
  12346. default: true
  12347. },
  12348. {
  12349. name: "Macro",
  12350. height: math.unit(490, "feet")
  12351. },
  12352. {
  12353. name: "Megamacro",
  12354. height: math.unit(10, "miles")
  12355. },
  12356. {
  12357. name: "Gigamacro",
  12358. height: math.unit(50, "miles")
  12359. },
  12360. ]
  12361. ))
  12362. characterMakers.push(() => makeCharacter(
  12363. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12364. {
  12365. front: {
  12366. height: math.unit(6, "feet"),
  12367. weight: math.unit(250, "lb"),
  12368. name: "Front",
  12369. image: {
  12370. source: "./media/characters/xylrem/front.svg",
  12371. extra: 3323 / 3050,
  12372. bottom: 0.065
  12373. }
  12374. },
  12375. },
  12376. [
  12377. {
  12378. name: "Micro",
  12379. height: math.unit(4, "feet")
  12380. },
  12381. {
  12382. name: "Normal",
  12383. height: math.unit(16, "feet"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Macro",
  12388. height: math.unit(2720, "feet")
  12389. },
  12390. {
  12391. name: "Megamacro",
  12392. height: math.unit(25000, "miles")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12398. {
  12399. front: {
  12400. height: math.unit(8, "feet"),
  12401. weight: math.unit(250, "kg"),
  12402. name: "Front",
  12403. image: {
  12404. source: "./media/characters/ikideru/front.svg",
  12405. extra: 930 / 870,
  12406. bottom: 0.087
  12407. }
  12408. },
  12409. back: {
  12410. height: math.unit(8, "feet"),
  12411. weight: math.unit(250, "kg"),
  12412. name: "Back",
  12413. image: {
  12414. source: "./media/characters/ikideru/back.svg",
  12415. extra: 919 / 852,
  12416. bottom: 0.055
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Rare",
  12423. height: math.unit(8, "feet"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Playful Loom",
  12428. height: math.unit(80, "feet")
  12429. },
  12430. {
  12431. name: "City Leaner",
  12432. height: math.unit(230, "feet")
  12433. },
  12434. {
  12435. name: "Megamacro",
  12436. height: math.unit(2500, "feet")
  12437. },
  12438. {
  12439. name: "Gigamacro",
  12440. height: math.unit(26400, "feet")
  12441. },
  12442. {
  12443. name: "Tectonic Shifter",
  12444. height: math.unit(1.7, "megameters")
  12445. },
  12446. {
  12447. name: "Planet Carer",
  12448. height: math.unit(21, "megameters")
  12449. },
  12450. {
  12451. name: "God",
  12452. height: math.unit(11157.22, "parsecs")
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(6, "feet"),
  12461. weight: math.unit(120, "lb"),
  12462. name: "Front",
  12463. image: {
  12464. source: "./media/characters/neo/front.svg"
  12465. }
  12466. },
  12467. },
  12468. [
  12469. {
  12470. name: "Micro",
  12471. height: math.unit(2, "inches"),
  12472. default: true
  12473. },
  12474. {
  12475. name: "Human Size",
  12476. height: math.unit(5 + 8 / 12, "feet")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(13 + 10 / 12, "feet"),
  12485. weight: math.unit(5320, "lb"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/chauncey-chantz/front.svg",
  12489. extra: 1587 / 1435,
  12490. bottom: 0.02
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Normal",
  12497. height: math.unit(13 + 10 / 12, "feet"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Macro",
  12502. height: math.unit(45, "feet")
  12503. },
  12504. {
  12505. name: "Megamacro",
  12506. height: math.unit(250, "miles")
  12507. },
  12508. {
  12509. name: "Planetary",
  12510. height: math.unit(10000, "miles")
  12511. },
  12512. {
  12513. name: "Galactic",
  12514. height: math.unit(40000, "parsecs")
  12515. },
  12516. {
  12517. name: "Universal",
  12518. height: math.unit(1, "yottameter")
  12519. },
  12520. ]
  12521. ))
  12522. characterMakers.push(() => makeCharacter(
  12523. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12524. {
  12525. front: {
  12526. height: math.unit(6, "feet"),
  12527. weight: math.unit(150, "lb"),
  12528. name: "Front",
  12529. image: {
  12530. source: "./media/characters/epifox/front.svg",
  12531. extra: 1,
  12532. bottom: 0.075
  12533. }
  12534. },
  12535. },
  12536. [
  12537. {
  12538. name: "Micro",
  12539. height: math.unit(6, "inches")
  12540. },
  12541. {
  12542. name: "Normal",
  12543. height: math.unit(12, "feet"),
  12544. default: true
  12545. },
  12546. {
  12547. name: "Macro",
  12548. height: math.unit(3810, "feet")
  12549. },
  12550. {
  12551. name: "Megamacro",
  12552. height: math.unit(500, "miles")
  12553. },
  12554. ]
  12555. ))
  12556. characterMakers.push(() => makeCharacter(
  12557. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12558. {
  12559. front: {
  12560. height: math.unit(1.8796, "m"),
  12561. weight: math.unit(230, "lb"),
  12562. name: "Front",
  12563. image: {
  12564. source: "./media/characters/colin-t/front.svg",
  12565. extra: 1272 / 1193,
  12566. bottom: 0.07
  12567. }
  12568. },
  12569. },
  12570. [
  12571. {
  12572. name: "Micro",
  12573. height: math.unit(0.571, "meters")
  12574. },
  12575. {
  12576. name: "Normal",
  12577. height: math.unit(1.8796, "meters"),
  12578. default: true
  12579. },
  12580. {
  12581. name: "Tall",
  12582. height: math.unit(4, "meters")
  12583. },
  12584. {
  12585. name: "Macro",
  12586. height: math.unit(67.241, "meters")
  12587. },
  12588. {
  12589. name: "Megamacro",
  12590. height: math.unit(371.856, "meters")
  12591. },
  12592. {
  12593. name: "Planetary",
  12594. height: math.unit(12631.5689, "km")
  12595. },
  12596. ]
  12597. ))
  12598. characterMakers.push(() => makeCharacter(
  12599. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12600. {
  12601. front: {
  12602. height: math.unit(1.85, "meters"),
  12603. weight: math.unit(80, "kg"),
  12604. name: "Front",
  12605. image: {
  12606. source: "./media/characters/matvei/front.svg",
  12607. extra: 614 / 594,
  12608. bottom: 0.01
  12609. }
  12610. },
  12611. },
  12612. [
  12613. {
  12614. name: "Normal",
  12615. height: math.unit(1.85, "meters"),
  12616. default: true
  12617. },
  12618. ]
  12619. ))
  12620. characterMakers.push(() => makeCharacter(
  12621. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12622. {
  12623. front: {
  12624. height: math.unit(5 + 9 / 12, "feet"),
  12625. weight: math.unit(70, "lb"),
  12626. name: "Front",
  12627. image: {
  12628. source: "./media/characters/quincy/front.svg",
  12629. extra: 3041 / 2751
  12630. }
  12631. },
  12632. back: {
  12633. height: math.unit(5 + 9 / 12, "feet"),
  12634. weight: math.unit(70, "lb"),
  12635. name: "Back",
  12636. image: {
  12637. source: "./media/characters/quincy/back.svg",
  12638. extra: 3041 / 2751
  12639. }
  12640. },
  12641. flying: {
  12642. height: math.unit(5 + 4 / 12, "feet"),
  12643. weight: math.unit(70, "lb"),
  12644. name: "Flying",
  12645. image: {
  12646. source: "./media/characters/quincy/flying.svg",
  12647. extra: 1044 / 930
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Micro",
  12654. height: math.unit(3, "cm")
  12655. },
  12656. {
  12657. name: "Normal",
  12658. height: math.unit(5 + 9 / 12, "feet")
  12659. },
  12660. {
  12661. name: "Macro",
  12662. height: math.unit(200, "meters"),
  12663. default: true
  12664. },
  12665. {
  12666. name: "Megamacro",
  12667. height: math.unit(1000, "meters")
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(3 + 11/12, "feet"),
  12676. weight: math.unit(50, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/vanrel/front.svg",
  12680. extra: 1104/949,
  12681. bottom: 52/1156
  12682. }
  12683. },
  12684. back: {
  12685. height: math.unit(3 + 11/12, "feet"),
  12686. weight: math.unit(50, "lb"),
  12687. name: "Back",
  12688. image: {
  12689. source: "./media/characters/vanrel/back.svg",
  12690. extra: 1119/976,
  12691. bottom: 37/1156
  12692. }
  12693. },
  12694. tome: {
  12695. height: math.unit(1.35, "feet"),
  12696. weight: math.unit(10, "lb"),
  12697. name: "Vanrel's Tome",
  12698. rename: true,
  12699. image: {
  12700. source: "./media/characters/vanrel/tome.svg"
  12701. }
  12702. },
  12703. beans: {
  12704. height: math.unit(0.89, "feet"),
  12705. name: "Beans",
  12706. image: {
  12707. source: "./media/characters/vanrel/beans.svg"
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Normal",
  12714. height: math.unit(3 + 11/12, "feet"),
  12715. default: true
  12716. },
  12717. ]
  12718. ))
  12719. characterMakers.push(() => makeCharacter(
  12720. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12721. {
  12722. front: {
  12723. height: math.unit(7 + 5 / 12, "feet"),
  12724. name: "Front",
  12725. image: {
  12726. source: "./media/characters/kuiper-vanrel/front.svg",
  12727. extra: 1219/1169,
  12728. bottom: 69/1288
  12729. }
  12730. },
  12731. back: {
  12732. height: math.unit(7 + 5 / 12, "feet"),
  12733. name: "Back",
  12734. image: {
  12735. source: "./media/characters/kuiper-vanrel/back.svg",
  12736. extra: 1236/1193,
  12737. bottom: 27/1263
  12738. }
  12739. },
  12740. foot: {
  12741. height: math.unit(0.55, "meters"),
  12742. name: "Foot",
  12743. image: {
  12744. source: "./media/characters/kuiper-vanrel/foot.svg",
  12745. }
  12746. },
  12747. battle: {
  12748. height: math.unit(6.824, "feet"),
  12749. name: "Battle",
  12750. image: {
  12751. source: "./media/characters/kuiper-vanrel/battle.svg",
  12752. extra: 1466 / 1327,
  12753. bottom: 29 / 1492.5
  12754. }
  12755. },
  12756. meerkui: {
  12757. height: math.unit(18, "inches"),
  12758. name: "Meerkui",
  12759. image: {
  12760. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12761. extra: 1354/1289,
  12762. bottom: 69/1423
  12763. }
  12764. },
  12765. },
  12766. [
  12767. {
  12768. name: "Normal",
  12769. height: math.unit(7 + 5 / 12, "feet"),
  12770. default: true
  12771. },
  12772. ]
  12773. ))
  12774. characterMakers.push(() => makeCharacter(
  12775. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12776. {
  12777. front: {
  12778. height: math.unit(8 + 5 / 12, "feet"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/keset-vanrel/front.svg",
  12782. extra: 1231/1148,
  12783. bottom: 82/1313
  12784. }
  12785. },
  12786. back: {
  12787. height: math.unit(8 + 5 / 12, "feet"),
  12788. name: "Back",
  12789. image: {
  12790. source: "./media/characters/keset-vanrel/back.svg",
  12791. extra: 1240/1174,
  12792. bottom: 33/1273
  12793. }
  12794. },
  12795. hand: {
  12796. height: math.unit(0.6, "meters"),
  12797. name: "Hand",
  12798. image: {
  12799. source: "./media/characters/keset-vanrel/hand.svg"
  12800. }
  12801. },
  12802. foot: {
  12803. height: math.unit(0.94978, "meters"),
  12804. name: "Foot",
  12805. image: {
  12806. source: "./media/characters/keset-vanrel/foot.svg"
  12807. }
  12808. },
  12809. battle: {
  12810. height: math.unit(7.408, "feet"),
  12811. name: "Battle",
  12812. image: {
  12813. source: "./media/characters/keset-vanrel/battle.svg",
  12814. extra: 1890 / 1386,
  12815. bottom: 73.28 / 1970
  12816. }
  12817. },
  12818. },
  12819. [
  12820. {
  12821. name: "Normal",
  12822. height: math.unit(8 + 5 / 12, "feet"),
  12823. default: true
  12824. },
  12825. ]
  12826. ))
  12827. characterMakers.push(() => makeCharacter(
  12828. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12829. {
  12830. front: {
  12831. height: math.unit(6, "feet"),
  12832. weight: math.unit(150, "lb"),
  12833. name: "Front",
  12834. image: {
  12835. source: "./media/characters/neos/front.svg",
  12836. extra: 1696 / 992,
  12837. bottom: 0.14
  12838. }
  12839. },
  12840. },
  12841. [
  12842. {
  12843. name: "Normal",
  12844. height: math.unit(54, "cm"),
  12845. default: true
  12846. },
  12847. {
  12848. name: "Macro",
  12849. height: math.unit(100, "m")
  12850. },
  12851. {
  12852. name: "Megamacro",
  12853. height: math.unit(10, "km")
  12854. },
  12855. {
  12856. name: "Megamacro+",
  12857. height: math.unit(100, "km")
  12858. },
  12859. {
  12860. name: "Gigamacro",
  12861. height: math.unit(100, "Mm")
  12862. },
  12863. {
  12864. name: "Teramacro",
  12865. height: math.unit(100, "Gm")
  12866. },
  12867. {
  12868. name: "Examacro",
  12869. height: math.unit(100, "Em")
  12870. },
  12871. {
  12872. name: "Godly",
  12873. height: math.unit(10000, "Ym")
  12874. },
  12875. {
  12876. name: "Beyond Godly",
  12877. height: math.unit(25, "multiverses")
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12883. {
  12884. feminine: {
  12885. height: math.unit(5, "feet"),
  12886. weight: math.unit(100, "lb"),
  12887. name: "Feminine",
  12888. image: {
  12889. source: "./media/characters/sammy-mouse/feminine.svg",
  12890. extra: 2526 / 2425,
  12891. bottom: 0.123
  12892. }
  12893. },
  12894. masculine: {
  12895. height: math.unit(5, "feet"),
  12896. weight: math.unit(100, "lb"),
  12897. name: "Masculine",
  12898. image: {
  12899. source: "./media/characters/sammy-mouse/masculine.svg",
  12900. extra: 2526 / 2425,
  12901. bottom: 0.123
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Micro",
  12908. height: math.unit(5, "inches")
  12909. },
  12910. {
  12911. name: "Normal",
  12912. height: math.unit(5, "feet"),
  12913. default: true
  12914. },
  12915. {
  12916. name: "Macro",
  12917. height: math.unit(60, "feet")
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12923. {
  12924. front: {
  12925. height: math.unit(4, "feet"),
  12926. weight: math.unit(50, "lb"),
  12927. name: "Front",
  12928. image: {
  12929. source: "./media/characters/kole/front.svg",
  12930. extra: 1423 / 1303,
  12931. bottom: 0.025
  12932. }
  12933. },
  12934. back: {
  12935. height: math.unit(4, "feet"),
  12936. weight: math.unit(50, "lb"),
  12937. name: "Back",
  12938. image: {
  12939. source: "./media/characters/kole/back.svg",
  12940. extra: 1426 / 1280,
  12941. bottom: 0.02
  12942. }
  12943. },
  12944. },
  12945. [
  12946. {
  12947. name: "Normal",
  12948. height: math.unit(4, "feet"),
  12949. default: true
  12950. },
  12951. ]
  12952. ))
  12953. characterMakers.push(() => makeCharacter(
  12954. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12955. {
  12956. front: {
  12957. height: math.unit(2.5, "feet"),
  12958. weight: math.unit(32, "lb"),
  12959. name: "Front",
  12960. image: {
  12961. source: "./media/characters/rufran/front.svg",
  12962. extra: 1313/885,
  12963. bottom: 94/1407
  12964. }
  12965. },
  12966. side: {
  12967. height: math.unit(2.5, "feet"),
  12968. weight: math.unit(32, "lb"),
  12969. name: "Side",
  12970. image: {
  12971. source: "./media/characters/rufran/side.svg",
  12972. extra: 1109/852,
  12973. bottom: 118/1227
  12974. }
  12975. },
  12976. back: {
  12977. height: math.unit(2.5, "feet"),
  12978. weight: math.unit(32, "lb"),
  12979. name: "Back",
  12980. image: {
  12981. source: "./media/characters/rufran/back.svg",
  12982. extra: 1280/878,
  12983. bottom: 131/1411
  12984. }
  12985. },
  12986. mouth: {
  12987. height: math.unit(1.13, "feet"),
  12988. name: "Mouth",
  12989. image: {
  12990. source: "./media/characters/rufran/mouth.svg"
  12991. }
  12992. },
  12993. foot: {
  12994. height: math.unit(1.33, "feet"),
  12995. name: "Foot",
  12996. image: {
  12997. source: "./media/characters/rufran/foot.svg"
  12998. }
  12999. },
  13000. koboldFront: {
  13001. height: math.unit(2 + 6 / 12, "feet"),
  13002. weight: math.unit(20, "lb"),
  13003. name: "Front (Kobold)",
  13004. image: {
  13005. source: "./media/characters/rufran/kobold-front.svg",
  13006. extra: 2041 / 1839,
  13007. bottom: 0.055
  13008. }
  13009. },
  13010. koboldBack: {
  13011. height: math.unit(2 + 6 / 12, "feet"),
  13012. weight: math.unit(20, "lb"),
  13013. name: "Back (Kobold)",
  13014. image: {
  13015. source: "./media/characters/rufran/kobold-back.svg",
  13016. extra: 2054 / 1839,
  13017. bottom: 0.01
  13018. }
  13019. },
  13020. koboldHand: {
  13021. height: math.unit(0.2166, "meters"),
  13022. name: "Hand (Kobold)",
  13023. image: {
  13024. source: "./media/characters/rufran/kobold-hand.svg"
  13025. }
  13026. },
  13027. koboldFoot: {
  13028. height: math.unit(0.185, "meters"),
  13029. name: "Foot (Kobold)",
  13030. image: {
  13031. source: "./media/characters/rufran/kobold-foot.svg"
  13032. }
  13033. },
  13034. },
  13035. [
  13036. {
  13037. name: "Micro",
  13038. height: math.unit(1, "inch")
  13039. },
  13040. {
  13041. name: "Normal",
  13042. height: math.unit(2 + 6 / 12, "feet"),
  13043. default: true
  13044. },
  13045. {
  13046. name: "Big",
  13047. height: math.unit(60, "feet")
  13048. },
  13049. {
  13050. name: "Macro",
  13051. height: math.unit(325, "feet")
  13052. },
  13053. ]
  13054. ))
  13055. characterMakers.push(() => makeCharacter(
  13056. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13057. {
  13058. front: {
  13059. height: math.unit(0.3, "meters"),
  13060. weight: math.unit(3.5, "kg"),
  13061. name: "Front",
  13062. image: {
  13063. source: "./media/characters/chip/front.svg",
  13064. extra: 748 / 674
  13065. }
  13066. },
  13067. },
  13068. [
  13069. {
  13070. name: "Micro",
  13071. height: math.unit(1, "inch"),
  13072. default: true
  13073. },
  13074. ]
  13075. ))
  13076. characterMakers.push(() => makeCharacter(
  13077. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13078. {
  13079. side: {
  13080. height: math.unit(2.3, "meters"),
  13081. weight: math.unit(3500, "lb"),
  13082. name: "Side",
  13083. image: {
  13084. source: "./media/characters/torvid/side.svg",
  13085. extra: 1972 / 722,
  13086. bottom: 0.035
  13087. }
  13088. },
  13089. },
  13090. [
  13091. {
  13092. name: "Normal",
  13093. height: math.unit(2.3, "meters"),
  13094. default: true
  13095. },
  13096. ]
  13097. ))
  13098. characterMakers.push(() => makeCharacter(
  13099. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13100. {
  13101. front: {
  13102. height: math.unit(2, "meters"),
  13103. weight: math.unit(150.5, "kg"),
  13104. name: "Front",
  13105. image: {
  13106. source: "./media/characters/susan/front.svg",
  13107. extra: 693 / 635,
  13108. bottom: 0.05
  13109. }
  13110. },
  13111. },
  13112. [
  13113. {
  13114. name: "Megamacro",
  13115. height: math.unit(505, "miles"),
  13116. default: true
  13117. },
  13118. ]
  13119. ))
  13120. characterMakers.push(() => makeCharacter(
  13121. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13122. {
  13123. front: {
  13124. height: math.unit(6, "feet"),
  13125. weight: math.unit(150, "lb"),
  13126. name: "Front",
  13127. image: {
  13128. source: "./media/characters/raindrops/front.svg",
  13129. extra: 2655 / 2461,
  13130. bottom: 49 / 2705
  13131. }
  13132. },
  13133. back: {
  13134. height: math.unit(6, "feet"),
  13135. weight: math.unit(150, "lb"),
  13136. name: "Back",
  13137. image: {
  13138. source: "./media/characters/raindrops/back.svg",
  13139. extra: 2574 / 2400,
  13140. bottom: 65 / 2634
  13141. }
  13142. },
  13143. },
  13144. [
  13145. {
  13146. name: "Micro",
  13147. height: math.unit(6, "inches")
  13148. },
  13149. {
  13150. name: "Normal",
  13151. height: math.unit(6 + 2 / 12, "feet")
  13152. },
  13153. {
  13154. name: "Macro",
  13155. height: math.unit(131, "feet"),
  13156. default: true
  13157. },
  13158. {
  13159. name: "Megamacro",
  13160. height: math.unit(15, "miles")
  13161. },
  13162. {
  13163. name: "Gigamacro",
  13164. height: math.unit(4000, "miles")
  13165. },
  13166. {
  13167. name: "Teramacro",
  13168. height: math.unit(315000, "miles")
  13169. },
  13170. ]
  13171. ))
  13172. characterMakers.push(() => makeCharacter(
  13173. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13174. {
  13175. front: {
  13176. height: math.unit(2.794, "meters"),
  13177. weight: math.unit(325, "kg"),
  13178. name: "Front",
  13179. image: {
  13180. source: "./media/characters/tezwa/front.svg",
  13181. extra: 2083 / 1906,
  13182. bottom: 0.031
  13183. }
  13184. },
  13185. foot: {
  13186. height: math.unit(0.687, "meters"),
  13187. name: "Foot",
  13188. image: {
  13189. source: "./media/characters/tezwa/foot.svg"
  13190. }
  13191. },
  13192. },
  13193. [
  13194. {
  13195. name: "Normal",
  13196. height: math.unit(9 + 2 / 12, "feet"),
  13197. default: true
  13198. },
  13199. ]
  13200. ))
  13201. characterMakers.push(() => makeCharacter(
  13202. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13203. {
  13204. front: {
  13205. height: math.unit(58, "feet"),
  13206. weight: math.unit(89000, "lb"),
  13207. name: "Front",
  13208. image: {
  13209. source: "./media/characters/typhus/front.svg",
  13210. extra: 816 / 800,
  13211. bottom: 0.065
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Macro",
  13218. height: math.unit(58, "feet"),
  13219. default: true
  13220. },
  13221. ]
  13222. ))
  13223. characterMakers.push(() => makeCharacter(
  13224. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13225. {
  13226. front: {
  13227. height: math.unit(12, "feet"),
  13228. weight: math.unit(6, "tonnes"),
  13229. name: "Front",
  13230. image: {
  13231. source: "./media/characters/lyra-von-wulf/front.svg",
  13232. extra: 1,
  13233. bottom: 0.10
  13234. }
  13235. },
  13236. frontMecha: {
  13237. height: math.unit(12, "feet"),
  13238. weight: math.unit(12, "tonnes"),
  13239. name: "Front (Mecha)",
  13240. image: {
  13241. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13242. extra: 1,
  13243. bottom: 0.042
  13244. }
  13245. },
  13246. maw: {
  13247. height: math.unit(2.2, "feet"),
  13248. name: "Maw",
  13249. image: {
  13250. source: "./media/characters/lyra-von-wulf/maw.svg"
  13251. }
  13252. },
  13253. },
  13254. [
  13255. {
  13256. name: "Normal",
  13257. height: math.unit(12, "feet"),
  13258. default: true
  13259. },
  13260. {
  13261. name: "Classic",
  13262. height: math.unit(50, "feet")
  13263. },
  13264. {
  13265. name: "Macro",
  13266. height: math.unit(500, "feet")
  13267. },
  13268. {
  13269. name: "Megamacro",
  13270. height: math.unit(1, "mile")
  13271. },
  13272. {
  13273. name: "Gigamacro",
  13274. height: math.unit(400, "miles")
  13275. },
  13276. {
  13277. name: "Teramacro",
  13278. height: math.unit(22000, "miles")
  13279. },
  13280. {
  13281. name: "Solarmacro",
  13282. height: math.unit(8600000, "miles")
  13283. },
  13284. {
  13285. name: "Galactic",
  13286. height: math.unit(1057000, "lightyears")
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13292. {
  13293. front: {
  13294. height: math.unit(6 + 10 / 12, "feet"),
  13295. weight: math.unit(150, "lb"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/dixon/front.svg",
  13299. extra: 3361 / 3209,
  13300. bottom: 0.01
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(6 + 10 / 12, "feet"),
  13308. default: true
  13309. },
  13310. {
  13311. name: "Big",
  13312. height: math.unit(12, "meters")
  13313. },
  13314. {
  13315. name: "Macro",
  13316. height: math.unit(500, "meters")
  13317. },
  13318. {
  13319. name: "Megamacro",
  13320. height: math.unit(2, "km")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(185, "cm"),
  13329. weight: math.unit(68, "kg"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/kauko/front.svg",
  13333. extra: 1455 / 1421,
  13334. bottom: 0.03
  13335. }
  13336. },
  13337. back: {
  13338. height: math.unit(185, "cm"),
  13339. weight: math.unit(68, "kg"),
  13340. name: "Back",
  13341. image: {
  13342. source: "./media/characters/kauko/back.svg",
  13343. extra: 1455 / 1421,
  13344. bottom: 0.004
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Normal",
  13351. height: math.unit(185, "cm"),
  13352. default: true
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13358. {
  13359. front: {
  13360. height: math.unit(6, "feet"),
  13361. weight: math.unit(150, "kg"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/varg/front.svg",
  13365. extra: 1108 / 1018,
  13366. bottom: 0.0375
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Normal",
  13373. height: math.unit(5, "meters")
  13374. },
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(200, "meters")
  13378. },
  13379. {
  13380. name: "Megamacro",
  13381. height: math.unit(20, "kilometers")
  13382. },
  13383. {
  13384. name: "True Size",
  13385. height: math.unit(211, "km"),
  13386. default: true
  13387. },
  13388. {
  13389. name: "Gigamacro",
  13390. height: math.unit(1000, "km")
  13391. },
  13392. {
  13393. name: "Gigamacro+",
  13394. height: math.unit(8000, "km")
  13395. },
  13396. {
  13397. name: "Teramacro",
  13398. height: math.unit(1000000, "km")
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13404. {
  13405. front: {
  13406. height: math.unit(7 + 7 / 12, "feet"),
  13407. weight: math.unit(267, "lb"),
  13408. name: "Front",
  13409. image: {
  13410. source: "./media/characters/dayza/front.svg",
  13411. extra: 1262 / 1200,
  13412. bottom: 0.035
  13413. }
  13414. },
  13415. side: {
  13416. height: math.unit(7 + 7 / 12, "feet"),
  13417. weight: math.unit(267, "lb"),
  13418. name: "Side",
  13419. image: {
  13420. source: "./media/characters/dayza/side.svg",
  13421. extra: 1295 / 1245,
  13422. bottom: 0.05
  13423. }
  13424. },
  13425. back: {
  13426. height: math.unit(7 + 7 / 12, "feet"),
  13427. weight: math.unit(267, "lb"),
  13428. name: "Back",
  13429. image: {
  13430. source: "./media/characters/dayza/back.svg",
  13431. extra: 1241 / 1170
  13432. }
  13433. },
  13434. },
  13435. [
  13436. {
  13437. name: "Normal",
  13438. height: math.unit(7 + 7 / 12, "feet"),
  13439. default: true
  13440. },
  13441. {
  13442. name: "Macro",
  13443. height: math.unit(155, "feet")
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13449. {
  13450. front: {
  13451. height: math.unit(6 + 5 / 12, "feet"),
  13452. weight: math.unit(160, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/xanthos/front.svg",
  13456. extra: 1,
  13457. bottom: 0.04
  13458. }
  13459. },
  13460. back: {
  13461. height: math.unit(6 + 5 / 12, "feet"),
  13462. weight: math.unit(160, "lb"),
  13463. name: "Back",
  13464. image: {
  13465. source: "./media/characters/xanthos/back.svg",
  13466. extra: 1,
  13467. bottom: 0.03
  13468. }
  13469. },
  13470. hand: {
  13471. height: math.unit(0.928, "feet"),
  13472. name: "Hand",
  13473. image: {
  13474. source: "./media/characters/xanthos/hand.svg"
  13475. }
  13476. },
  13477. foot: {
  13478. height: math.unit(1.286, "feet"),
  13479. name: "Foot",
  13480. image: {
  13481. source: "./media/characters/xanthos/foot.svg"
  13482. }
  13483. },
  13484. },
  13485. [
  13486. {
  13487. name: "Normal",
  13488. height: math.unit(6 + 5 / 12, "feet"),
  13489. default: true
  13490. },
  13491. {
  13492. name: "Normal+",
  13493. height: math.unit(6, "meters")
  13494. },
  13495. {
  13496. name: "Macro",
  13497. height: math.unit(40, "feet")
  13498. },
  13499. {
  13500. name: "Macro+",
  13501. height: math.unit(200, "meters")
  13502. },
  13503. {
  13504. name: "Megamacro",
  13505. height: math.unit(20, "km")
  13506. },
  13507. {
  13508. name: "Megamacro+",
  13509. height: math.unit(100, "km")
  13510. },
  13511. {
  13512. name: "Gigamacro",
  13513. height: math.unit(200, "megameters")
  13514. },
  13515. {
  13516. name: "Gigamacro+",
  13517. height: math.unit(1.5, "gigameters")
  13518. },
  13519. ]
  13520. ))
  13521. characterMakers.push(() => makeCharacter(
  13522. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13523. {
  13524. front: {
  13525. height: math.unit(6 + 3 / 12, "feet"),
  13526. weight: math.unit(215, "lb"),
  13527. name: "Front",
  13528. image: {
  13529. source: "./media/characters/grynn/front.svg",
  13530. extra: 4627 / 4209,
  13531. bottom: 0.047
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Micro",
  13538. height: math.unit(6, "inches")
  13539. },
  13540. {
  13541. name: "Normal",
  13542. height: math.unit(6 + 3 / 12, "feet"),
  13543. default: true
  13544. },
  13545. {
  13546. name: "Big",
  13547. height: math.unit(104, "feet")
  13548. },
  13549. {
  13550. name: "Macro",
  13551. height: math.unit(944, "feet")
  13552. },
  13553. {
  13554. name: "Macro+",
  13555. height: math.unit(9480, "feet")
  13556. },
  13557. {
  13558. name: "Megamacro",
  13559. height: math.unit(78752, "feet")
  13560. },
  13561. {
  13562. name: "Megamacro+",
  13563. height: math.unit(630128, "feet")
  13564. },
  13565. {
  13566. name: "Megamacro++",
  13567. height: math.unit(3150695, "feet")
  13568. },
  13569. ]
  13570. ))
  13571. characterMakers.push(() => makeCharacter(
  13572. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13573. {
  13574. front: {
  13575. height: math.unit(7 + 5 / 12, "feet"),
  13576. weight: math.unit(450, "lb"),
  13577. name: "Front",
  13578. image: {
  13579. source: "./media/characters/mocha-aura/front.svg",
  13580. extra: 1907 / 1817,
  13581. bottom: 0.04
  13582. }
  13583. },
  13584. back: {
  13585. height: math.unit(7 + 5 / 12, "feet"),
  13586. weight: math.unit(450, "lb"),
  13587. name: "Back",
  13588. image: {
  13589. source: "./media/characters/mocha-aura/back.svg",
  13590. extra: 1900 / 1825,
  13591. bottom: 0.045
  13592. }
  13593. },
  13594. },
  13595. [
  13596. {
  13597. name: "Nano",
  13598. height: math.unit(1, "nm")
  13599. },
  13600. {
  13601. name: "Megamicro",
  13602. height: math.unit(1, "mm")
  13603. },
  13604. {
  13605. name: "Micro",
  13606. height: math.unit(3, "inches")
  13607. },
  13608. {
  13609. name: "Normal",
  13610. height: math.unit(7 + 5 / 12, "feet"),
  13611. default: true
  13612. },
  13613. {
  13614. name: "Macro",
  13615. height: math.unit(30, "feet")
  13616. },
  13617. {
  13618. name: "Megamacro",
  13619. height: math.unit(3500, "feet")
  13620. },
  13621. {
  13622. name: "Teramacro",
  13623. height: math.unit(500000, "miles")
  13624. },
  13625. {
  13626. name: "Petamacro",
  13627. height: math.unit(50000000000000000, "parsecs")
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13633. {
  13634. front: {
  13635. height: math.unit(6, "feet"),
  13636. weight: math.unit(150, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/ilisha-devya/front.svg",
  13640. extra: 1053/1049,
  13641. bottom: 270/1323
  13642. }
  13643. },
  13644. back: {
  13645. height: math.unit(6, "feet"),
  13646. weight: math.unit(150, "lb"),
  13647. name: "Back",
  13648. image: {
  13649. source: "./media/characters/ilisha-devya/back.svg",
  13650. extra: 1131/1128,
  13651. bottom: 39/1170
  13652. }
  13653. },
  13654. },
  13655. [
  13656. {
  13657. name: "Macro",
  13658. height: math.unit(500, "feet"),
  13659. default: true
  13660. },
  13661. {
  13662. name: "Megamacro",
  13663. height: math.unit(10, "miles")
  13664. },
  13665. {
  13666. name: "Gigamacro",
  13667. height: math.unit(100000, "miles")
  13668. },
  13669. {
  13670. name: "Examacro",
  13671. height: math.unit(1e9, "lightyears")
  13672. },
  13673. {
  13674. name: "Omniversal",
  13675. height: math.unit(1e33, "lightyears")
  13676. },
  13677. {
  13678. name: "Beyond Infinite",
  13679. height: math.unit(1e100, "lightyears")
  13680. },
  13681. ]
  13682. ))
  13683. characterMakers.push(() => makeCharacter(
  13684. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13685. {
  13686. Side: {
  13687. height: math.unit(6, "feet"),
  13688. weight: math.unit(150, "lb"),
  13689. name: "Side",
  13690. image: {
  13691. source: "./media/characters/mira/side.svg",
  13692. extra: 900 / 799,
  13693. bottom: 0.02
  13694. }
  13695. },
  13696. },
  13697. [
  13698. {
  13699. name: "Human Size",
  13700. height: math.unit(6, "feet")
  13701. },
  13702. {
  13703. name: "Macro",
  13704. height: math.unit(100, "feet"),
  13705. default: true
  13706. },
  13707. {
  13708. name: "Megamacro",
  13709. height: math.unit(10, "miles")
  13710. },
  13711. {
  13712. name: "Gigamacro",
  13713. height: math.unit(25000, "miles")
  13714. },
  13715. {
  13716. name: "Teramacro",
  13717. height: math.unit(300, "AU")
  13718. },
  13719. {
  13720. name: "Full Size",
  13721. height: math.unit(4.5e10, "lightyears")
  13722. },
  13723. ]
  13724. ))
  13725. characterMakers.push(() => makeCharacter(
  13726. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13727. {
  13728. front: {
  13729. height: math.unit(6, "feet"),
  13730. weight: math.unit(150, "lb"),
  13731. name: "Front",
  13732. image: {
  13733. source: "./media/characters/holly/front.svg",
  13734. extra: 639 / 606
  13735. }
  13736. },
  13737. back: {
  13738. height: math.unit(6, "feet"),
  13739. weight: math.unit(150, "lb"),
  13740. name: "Back",
  13741. image: {
  13742. source: "./media/characters/holly/back.svg",
  13743. extra: 623 / 598
  13744. }
  13745. },
  13746. frontWorking: {
  13747. height: math.unit(6, "feet"),
  13748. weight: math.unit(150, "lb"),
  13749. name: "Front (Working)",
  13750. image: {
  13751. source: "./media/characters/holly/front-working.svg",
  13752. extra: 607 / 577,
  13753. bottom: 0.048
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Normal",
  13760. height: math.unit(12 + 3 / 12, "feet"),
  13761. default: true
  13762. },
  13763. ]
  13764. ))
  13765. characterMakers.push(() => makeCharacter(
  13766. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13767. {
  13768. front: {
  13769. height: math.unit(6, "feet"),
  13770. weight: math.unit(150, "lb"),
  13771. name: "Front",
  13772. image: {
  13773. source: "./media/characters/porter/front.svg",
  13774. extra: 1,
  13775. bottom: 0.01
  13776. }
  13777. },
  13778. frontRobes: {
  13779. height: math.unit(6, "feet"),
  13780. weight: math.unit(150, "lb"),
  13781. name: "Front (Robes)",
  13782. image: {
  13783. source: "./media/characters/porter/front-robes.svg",
  13784. extra: 1.01,
  13785. bottom: 0.01
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Normal",
  13792. height: math.unit(11 + 9 / 12, "feet"),
  13793. default: true
  13794. },
  13795. ]
  13796. ))
  13797. characterMakers.push(() => makeCharacter(
  13798. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13799. {
  13800. legendary: {
  13801. height: math.unit(6, "feet"),
  13802. weight: math.unit(150, "lb"),
  13803. name: "Legendary",
  13804. image: {
  13805. source: "./media/characters/lucy/legendary.svg",
  13806. extra: 1355 / 1100,
  13807. bottom: 0.045
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Legendary",
  13814. height: math.unit(86882 * 2, "miles"),
  13815. default: true
  13816. },
  13817. ]
  13818. ))
  13819. characterMakers.push(() => makeCharacter(
  13820. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13821. {
  13822. front: {
  13823. height: math.unit(6, "feet"),
  13824. weight: math.unit(150, "lb"),
  13825. name: "Front",
  13826. image: {
  13827. source: "./media/characters/drusilla/front.svg",
  13828. extra: 678 / 635,
  13829. bottom: 0.03
  13830. }
  13831. },
  13832. back: {
  13833. height: math.unit(6, "feet"),
  13834. weight: math.unit(150, "lb"),
  13835. name: "Back",
  13836. image: {
  13837. source: "./media/characters/drusilla/back.svg",
  13838. extra: 678 / 635,
  13839. bottom: 0.005
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Macro",
  13846. height: math.unit(100, "feet")
  13847. },
  13848. {
  13849. name: "Canon Height",
  13850. height: math.unit(2000, "feet"),
  13851. default: true
  13852. },
  13853. ]
  13854. ))
  13855. characterMakers.push(() => makeCharacter(
  13856. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13857. {
  13858. front: {
  13859. height: math.unit(6, "feet"),
  13860. weight: math.unit(180, "lb"),
  13861. name: "Front",
  13862. image: {
  13863. source: "./media/characters/renard-thatch/front.svg",
  13864. extra: 2411 / 2275,
  13865. bottom: 0.01
  13866. }
  13867. },
  13868. frontPosing: {
  13869. height: math.unit(6, "feet"),
  13870. weight: math.unit(180, "lb"),
  13871. name: "Front (Posing)",
  13872. image: {
  13873. source: "./media/characters/renard-thatch/front-posing.svg",
  13874. extra: 2381 / 2261,
  13875. bottom: 0.01
  13876. }
  13877. },
  13878. back: {
  13879. height: math.unit(6, "feet"),
  13880. weight: math.unit(180, "lb"),
  13881. name: "Back",
  13882. image: {
  13883. source: "./media/characters/renard-thatch/back.svg",
  13884. extra: 2428 / 2288
  13885. }
  13886. },
  13887. },
  13888. [
  13889. {
  13890. name: "Micro",
  13891. height: math.unit(3, "inches")
  13892. },
  13893. {
  13894. name: "Default",
  13895. height: math.unit(6, "feet"),
  13896. default: true
  13897. },
  13898. {
  13899. name: "Macro",
  13900. height: math.unit(75, "feet")
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13906. {
  13907. front: {
  13908. height: math.unit(1450, "feet"),
  13909. weight: math.unit(1.21e6, "tons"),
  13910. name: "Front",
  13911. image: {
  13912. source: "./media/characters/sekvra/front.svg",
  13913. extra: 1193/1190,
  13914. bottom: 78/1271
  13915. }
  13916. },
  13917. side: {
  13918. height: math.unit(1450, "feet"),
  13919. weight: math.unit(1.21e6, "tons"),
  13920. name: "Side",
  13921. image: {
  13922. source: "./media/characters/sekvra/side.svg",
  13923. extra: 1193/1190,
  13924. bottom: 52/1245
  13925. }
  13926. },
  13927. back: {
  13928. height: math.unit(1450, "feet"),
  13929. weight: math.unit(1.21e6, "tons"),
  13930. name: "Back",
  13931. image: {
  13932. source: "./media/characters/sekvra/back.svg",
  13933. extra: 1219/1216,
  13934. bottom: 21/1240
  13935. }
  13936. },
  13937. frontClothed: {
  13938. height: math.unit(1450, "feet"),
  13939. weight: math.unit(1.21e6, "tons"),
  13940. name: "Front (Clothed)",
  13941. image: {
  13942. source: "./media/characters/sekvra/front-clothed.svg",
  13943. extra: 1192/1189,
  13944. bottom: 79/1271
  13945. }
  13946. },
  13947. },
  13948. [
  13949. {
  13950. name: "Macro",
  13951. height: math.unit(1450, "feet"),
  13952. default: true
  13953. },
  13954. {
  13955. name: "Megamacro",
  13956. height: math.unit(15000, "feet")
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13962. {
  13963. front: {
  13964. height: math.unit(6, "feet"),
  13965. weight: math.unit(150, "lb"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/carmine/front.svg",
  13969. extra: 1,
  13970. bottom: 0.035
  13971. }
  13972. },
  13973. frontArmor: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(150, "lb"),
  13976. name: "Front (Armor)",
  13977. image: {
  13978. source: "./media/characters/carmine/front-armor.svg",
  13979. extra: 1,
  13980. bottom: 0.035
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Large",
  13987. height: math.unit(1, "mile")
  13988. },
  13989. {
  13990. name: "Huge",
  13991. height: math.unit(40, "miles"),
  13992. default: true
  13993. },
  13994. {
  13995. name: "Colossal",
  13996. height: math.unit(2500, "miles")
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(6, "feet"),
  14005. weight: math.unit(150, "lb"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/elyssia/front.svg",
  14009. extra: 2201 / 2035,
  14010. bottom: 0.05
  14011. }
  14012. },
  14013. frontClothed: {
  14014. height: math.unit(6, "feet"),
  14015. weight: math.unit(150, "lb"),
  14016. name: "Front (Clothed)",
  14017. image: {
  14018. source: "./media/characters/elyssia/front-clothed.svg",
  14019. extra: 2201 / 2035,
  14020. bottom: 0.05
  14021. }
  14022. },
  14023. back: {
  14024. height: math.unit(6, "feet"),
  14025. weight: math.unit(150, "lb"),
  14026. name: "Back",
  14027. image: {
  14028. source: "./media/characters/elyssia/back.svg",
  14029. extra: 2201 / 2035,
  14030. bottom: 0.013
  14031. }
  14032. },
  14033. },
  14034. [
  14035. {
  14036. name: "Smaller",
  14037. height: math.unit(150, "feet")
  14038. },
  14039. {
  14040. name: "Standard",
  14041. height: math.unit(1400, "feet"),
  14042. default: true
  14043. },
  14044. {
  14045. name: "Distracted",
  14046. height: math.unit(15000, "feet")
  14047. },
  14048. ]
  14049. ))
  14050. characterMakers.push(() => makeCharacter(
  14051. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14052. {
  14053. front: {
  14054. height: math.unit(7 + 4/12, "feet"),
  14055. weight: math.unit(690, "lb"),
  14056. name: "Front",
  14057. image: {
  14058. source: "./media/characters/geno-maxwell/front.svg",
  14059. extra: 984/856,
  14060. bottom: 87/1071
  14061. }
  14062. },
  14063. back: {
  14064. height: math.unit(7 + 4/12, "feet"),
  14065. weight: math.unit(690, "lb"),
  14066. name: "Back",
  14067. image: {
  14068. source: "./media/characters/geno-maxwell/back.svg",
  14069. extra: 981/854,
  14070. bottom: 57/1038
  14071. }
  14072. },
  14073. frontCostume: {
  14074. height: math.unit(7 + 4/12, "feet"),
  14075. weight: math.unit(690, "lb"),
  14076. name: "Front (Costume)",
  14077. image: {
  14078. source: "./media/characters/geno-maxwell/front-costume.svg",
  14079. extra: 984/856,
  14080. bottom: 87/1071
  14081. }
  14082. },
  14083. backcostume: {
  14084. height: math.unit(7 + 4/12, "feet"),
  14085. weight: math.unit(690, "lb"),
  14086. name: "Back (Costume)",
  14087. image: {
  14088. source: "./media/characters/geno-maxwell/back-costume.svg",
  14089. extra: 981/854,
  14090. bottom: 57/1038
  14091. }
  14092. },
  14093. },
  14094. [
  14095. {
  14096. name: "Micro",
  14097. height: math.unit(3, "inches")
  14098. },
  14099. {
  14100. name: "Normal",
  14101. height: math.unit(7 + 4 / 12, "feet"),
  14102. default: true
  14103. },
  14104. {
  14105. name: "Macro",
  14106. height: math.unit(220, "feet")
  14107. },
  14108. {
  14109. name: "Megamacro",
  14110. height: math.unit(11, "miles")
  14111. },
  14112. ]
  14113. ))
  14114. characterMakers.push(() => makeCharacter(
  14115. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14116. {
  14117. front: {
  14118. height: math.unit(7 + 4/12, "feet"),
  14119. weight: math.unit(750, "lb"),
  14120. name: "Front",
  14121. image: {
  14122. source: "./media/characters/regena-maxwell/front.svg",
  14123. extra: 984/856,
  14124. bottom: 87/1071
  14125. }
  14126. },
  14127. back: {
  14128. height: math.unit(7 + 4/12, "feet"),
  14129. weight: math.unit(750, "lb"),
  14130. name: "Back",
  14131. image: {
  14132. source: "./media/characters/regena-maxwell/back.svg",
  14133. extra: 981/854,
  14134. bottom: 57/1038
  14135. }
  14136. },
  14137. frontCostume: {
  14138. height: math.unit(7 + 4/12, "feet"),
  14139. weight: math.unit(750, "lb"),
  14140. name: "Front (Costume)",
  14141. image: {
  14142. source: "./media/characters/regena-maxwell/front-costume.svg",
  14143. extra: 984/856,
  14144. bottom: 87/1071
  14145. }
  14146. },
  14147. backcostume: {
  14148. height: math.unit(7 + 4/12, "feet"),
  14149. weight: math.unit(750, "lb"),
  14150. name: "Back (Costume)",
  14151. image: {
  14152. source: "./media/characters/regena-maxwell/back-costume.svg",
  14153. extra: 981/854,
  14154. bottom: 57/1038
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Normal",
  14161. height: math.unit(7 + 4 / 12, "feet"),
  14162. default: true
  14163. },
  14164. {
  14165. name: "Macro",
  14166. height: math.unit(220, "feet")
  14167. },
  14168. {
  14169. name: "Megamacro",
  14170. height: math.unit(11, "miles")
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(6, "feet"),
  14179. weight: math.unit(150, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14183. extra: 860 / 690,
  14184. bottom: 0.03
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Normal",
  14191. height: math.unit(1.7, "meters"),
  14192. default: true
  14193. },
  14194. ]
  14195. ))
  14196. characterMakers.push(() => makeCharacter(
  14197. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14198. {
  14199. front: {
  14200. height: math.unit(6, "feet"),
  14201. weight: math.unit(150, "lb"),
  14202. name: "Front",
  14203. image: {
  14204. source: "./media/characters/quilly/front.svg",
  14205. extra: 890 / 776
  14206. }
  14207. },
  14208. },
  14209. [
  14210. {
  14211. name: "Gigamacro",
  14212. height: math.unit(404090, "miles"),
  14213. default: true
  14214. },
  14215. ]
  14216. ))
  14217. characterMakers.push(() => makeCharacter(
  14218. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14219. {
  14220. front: {
  14221. height: math.unit(7 + 8 / 12, "feet"),
  14222. weight: math.unit(350, "lb"),
  14223. name: "Front",
  14224. image: {
  14225. source: "./media/characters/tempest/front.svg",
  14226. extra: 1175 / 1086,
  14227. bottom: 0.02
  14228. }
  14229. },
  14230. },
  14231. [
  14232. {
  14233. name: "Normal",
  14234. height: math.unit(7 + 8 / 12, "feet"),
  14235. default: true
  14236. },
  14237. ]
  14238. ))
  14239. characterMakers.push(() => makeCharacter(
  14240. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14241. {
  14242. side: {
  14243. height: math.unit(4 + 5 / 12, "feet"),
  14244. weight: math.unit(80, "lb"),
  14245. name: "Side",
  14246. image: {
  14247. source: "./media/characters/rodger/side.svg",
  14248. extra: 1235 / 1118
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Micro",
  14255. height: math.unit(1, "inch")
  14256. },
  14257. {
  14258. name: "Normal",
  14259. height: math.unit(4 + 5 / 12, "feet"),
  14260. default: true
  14261. },
  14262. {
  14263. name: "Macro",
  14264. height: math.unit(120, "feet")
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14270. {
  14271. front: {
  14272. height: math.unit(6, "feet"),
  14273. weight: math.unit(150, "lb"),
  14274. name: "Front",
  14275. image: {
  14276. source: "./media/characters/danyel/front.svg",
  14277. extra: 1185 / 1123,
  14278. bottom: 0.05
  14279. }
  14280. },
  14281. },
  14282. [
  14283. {
  14284. name: "Shrunken",
  14285. height: math.unit(0.5, "mm")
  14286. },
  14287. {
  14288. name: "Micro",
  14289. height: math.unit(1, "mm"),
  14290. default: true
  14291. },
  14292. {
  14293. name: "Upsized",
  14294. height: math.unit(5 + 5 / 12, "feet")
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14300. {
  14301. front: {
  14302. height: math.unit(5 + 6 / 12, "feet"),
  14303. weight: math.unit(200, "lb"),
  14304. name: "Front",
  14305. image: {
  14306. source: "./media/characters/vivian-bijoux/front.svg",
  14307. extra: 1217/1209,
  14308. bottom: 76/1293
  14309. }
  14310. },
  14311. back: {
  14312. height: math.unit(5 + 6 / 12, "feet"),
  14313. weight: math.unit(200, "lb"),
  14314. name: "Back",
  14315. image: {
  14316. source: "./media/characters/vivian-bijoux/back.svg",
  14317. extra: 1214/1208,
  14318. bottom: 51/1265
  14319. }
  14320. },
  14321. dressed: {
  14322. height: math.unit(5 + 6 / 12, "feet"),
  14323. weight: math.unit(200, "lb"),
  14324. name: "Dressed",
  14325. image: {
  14326. source: "./media/characters/vivian-bijoux/dressed.svg",
  14327. extra: 1217/1209,
  14328. bottom: 76/1293
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Normal",
  14335. height: math.unit(5 + 6 / 12, "feet"),
  14336. default: true
  14337. },
  14338. {
  14339. name: "Bad Dream",
  14340. height: math.unit(500, "feet")
  14341. },
  14342. {
  14343. name: "Nightmare",
  14344. height: math.unit(500, "miles")
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14350. {
  14351. front: {
  14352. height: math.unit(6 + 1 / 12, "feet"),
  14353. weight: math.unit(260, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/zeta/front.svg",
  14357. extra: 1968 / 1889,
  14358. bottom: 0.06
  14359. }
  14360. },
  14361. back: {
  14362. height: math.unit(6 + 1 / 12, "feet"),
  14363. weight: math.unit(260, "lb"),
  14364. name: "Back",
  14365. image: {
  14366. source: "./media/characters/zeta/back.svg",
  14367. extra: 1944 / 1858,
  14368. bottom: 0.03
  14369. }
  14370. },
  14371. hand: {
  14372. height: math.unit(1.112, "feet"),
  14373. name: "Hand",
  14374. image: {
  14375. source: "./media/characters/zeta/hand.svg"
  14376. }
  14377. },
  14378. foot: {
  14379. height: math.unit(1.48, "feet"),
  14380. name: "Foot",
  14381. image: {
  14382. source: "./media/characters/zeta/foot.svg"
  14383. }
  14384. },
  14385. },
  14386. [
  14387. {
  14388. name: "Micro",
  14389. height: math.unit(6, "inches")
  14390. },
  14391. {
  14392. name: "Normal",
  14393. height: math.unit(6 + 1 / 12, "feet"),
  14394. default: true
  14395. },
  14396. {
  14397. name: "Macro",
  14398. height: math.unit(20, "feet")
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14404. {
  14405. front: {
  14406. height: math.unit(6, "feet"),
  14407. weight: math.unit(150, "lb"),
  14408. name: "Front",
  14409. image: {
  14410. source: "./media/characters/jamie-larsen/front.svg",
  14411. extra: 962 / 933,
  14412. bottom: 0.02
  14413. }
  14414. },
  14415. back: {
  14416. height: math.unit(6, "feet"),
  14417. weight: math.unit(150, "lb"),
  14418. name: "Back",
  14419. image: {
  14420. source: "./media/characters/jamie-larsen/back.svg",
  14421. extra: 997 / 946
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Macro",
  14428. height: math.unit(28 + 7 / 12, "feet"),
  14429. default: true
  14430. },
  14431. {
  14432. name: "Macro+",
  14433. height: math.unit(180, "feet")
  14434. },
  14435. {
  14436. name: "Megamacro",
  14437. height: math.unit(10, "miles")
  14438. },
  14439. {
  14440. name: "Gigamacro",
  14441. height: math.unit(200000, "miles")
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(6, "feet"),
  14450. weight: math.unit(120, "lb"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/vance/front.svg",
  14454. extra: 1980 / 1890,
  14455. bottom: 0.09
  14456. }
  14457. },
  14458. back: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(120, "lb"),
  14461. name: "Back",
  14462. image: {
  14463. source: "./media/characters/vance/back.svg",
  14464. extra: 2081 / 1994,
  14465. bottom: 0.014
  14466. }
  14467. },
  14468. hand: {
  14469. height: math.unit(0.88, "feet"),
  14470. name: "Hand",
  14471. image: {
  14472. source: "./media/characters/vance/hand.svg"
  14473. }
  14474. },
  14475. foot: {
  14476. height: math.unit(0.64, "feet"),
  14477. name: "Foot",
  14478. image: {
  14479. source: "./media/characters/vance/foot.svg"
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Small",
  14486. height: math.unit(90, "feet"),
  14487. default: true
  14488. },
  14489. {
  14490. name: "Macro",
  14491. height: math.unit(100, "meters")
  14492. },
  14493. {
  14494. name: "Megamacro",
  14495. height: math.unit(15, "miles")
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(6, "feet"),
  14504. weight: math.unit(180, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/xochitl/front.svg",
  14508. extra: 2297 / 2261,
  14509. bottom: 0.065
  14510. }
  14511. },
  14512. back: {
  14513. height: math.unit(6, "feet"),
  14514. weight: math.unit(180, "lb"),
  14515. name: "Back",
  14516. image: {
  14517. source: "./media/characters/xochitl/back.svg",
  14518. extra: 2386 / 2354,
  14519. bottom: 0.01
  14520. }
  14521. },
  14522. foot: {
  14523. height: math.unit(6 / 5 * 1.15, "feet"),
  14524. weight: math.unit(150, "lb"),
  14525. name: "Foot",
  14526. image: {
  14527. source: "./media/characters/xochitl/foot.svg"
  14528. }
  14529. },
  14530. },
  14531. [
  14532. {
  14533. name: "Macro",
  14534. height: math.unit(80, "feet")
  14535. },
  14536. {
  14537. name: "Macro+",
  14538. height: math.unit(400, "feet"),
  14539. default: true
  14540. },
  14541. {
  14542. name: "Gigamacro",
  14543. height: math.unit(80000, "miles")
  14544. },
  14545. {
  14546. name: "Gigamacro+",
  14547. height: math.unit(400000, "miles")
  14548. },
  14549. {
  14550. name: "Teramacro",
  14551. height: math.unit(300, "AU")
  14552. },
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(6, "feet"),
  14560. weight: math.unit(150, "lb"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/vincent/front.svg",
  14564. extra: 1130 / 1080,
  14565. bottom: 0.055
  14566. }
  14567. },
  14568. beak: {
  14569. height: math.unit(6 * 0.1, "feet"),
  14570. name: "Beak",
  14571. image: {
  14572. source: "./media/characters/vincent/beak.svg"
  14573. }
  14574. },
  14575. hand: {
  14576. height: math.unit(6 * 0.85, "feet"),
  14577. weight: math.unit(150, "lb"),
  14578. name: "Hand",
  14579. image: {
  14580. source: "./media/characters/vincent/hand.svg"
  14581. }
  14582. },
  14583. foot: {
  14584. height: math.unit(6 * 0.19, "feet"),
  14585. weight: math.unit(150, "lb"),
  14586. name: "Foot",
  14587. image: {
  14588. source: "./media/characters/vincent/foot.svg"
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Base",
  14595. height: math.unit(6 + 5 / 12, "feet"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "Macro",
  14600. height: math.unit(300, "feet")
  14601. },
  14602. {
  14603. name: "Megamacro",
  14604. height: math.unit(2, "miles")
  14605. },
  14606. {
  14607. name: "Gigamacro",
  14608. height: math.unit(1000, "miles")
  14609. },
  14610. ]
  14611. ))
  14612. characterMakers.push(() => makeCharacter(
  14613. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14614. {
  14615. front: {
  14616. height: math.unit(2, "meters"),
  14617. weight: math.unit(500, "kg"),
  14618. name: "Front",
  14619. image: {
  14620. source: "./media/characters/coatl/front.svg",
  14621. extra: 3948 / 3500,
  14622. bottom: 0.082
  14623. }
  14624. },
  14625. },
  14626. [
  14627. {
  14628. name: "Normal",
  14629. height: math.unit(4, "meters")
  14630. },
  14631. {
  14632. name: "Macro",
  14633. height: math.unit(100, "meters"),
  14634. default: true
  14635. },
  14636. {
  14637. name: "Macro+",
  14638. height: math.unit(300, "meters")
  14639. },
  14640. {
  14641. name: "Megamacro",
  14642. height: math.unit(3, "gigameters")
  14643. },
  14644. {
  14645. name: "Megamacro+",
  14646. height: math.unit(300, "terameters")
  14647. },
  14648. {
  14649. name: "Megamacro++",
  14650. height: math.unit(3, "lightyears")
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14656. {
  14657. front: {
  14658. height: math.unit(6, "feet"),
  14659. weight: math.unit(50, "kg"),
  14660. name: "front",
  14661. image: {
  14662. source: "./media/characters/shiroryu/front.svg",
  14663. extra: 1990 / 1935
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Mortal Mingling",
  14670. height: math.unit(3, "meters")
  14671. },
  14672. {
  14673. name: "Kaiju-ish",
  14674. height: math.unit(250, "meters")
  14675. },
  14676. {
  14677. name: "Somewhat Godly",
  14678. height: math.unit(400, "km"),
  14679. default: true
  14680. },
  14681. {
  14682. name: "Planetary",
  14683. height: math.unit(300, "megameters")
  14684. },
  14685. {
  14686. name: "Galaxy-dwarfing",
  14687. height: math.unit(450, "kiloparsecs")
  14688. },
  14689. {
  14690. name: "Universe Eater",
  14691. height: math.unit(150, "gigaparsecs")
  14692. },
  14693. {
  14694. name: "Almost Immeasurable",
  14695. height: math.unit(1.3e266, "yottaparsecs")
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(6, "feet"),
  14704. weight: math.unit(150, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/umeko/front.svg",
  14708. extra: 1,
  14709. bottom: 0.019
  14710. }
  14711. },
  14712. frontArmored: {
  14713. height: math.unit(6, "feet"),
  14714. weight: math.unit(150, "lb"),
  14715. name: "Front (Armored)",
  14716. image: {
  14717. source: "./media/characters/umeko/front-armored.svg",
  14718. extra: 1,
  14719. bottom: 0.021
  14720. }
  14721. },
  14722. },
  14723. [
  14724. {
  14725. name: "Macro",
  14726. height: math.unit(220, "feet"),
  14727. default: true
  14728. },
  14729. {
  14730. name: "Guardian Dragon",
  14731. height: math.unit(50, "miles")
  14732. },
  14733. {
  14734. name: "Cosmic",
  14735. height: math.unit(800000, "miles")
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14741. {
  14742. front: {
  14743. height: math.unit(6, "feet"),
  14744. weight: math.unit(150, "lb"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/cassidy/front.svg",
  14748. extra: 810/808,
  14749. bottom: 41/851
  14750. }
  14751. },
  14752. },
  14753. [
  14754. {
  14755. name: "Canon Height",
  14756. height: math.unit(120, "feet"),
  14757. default: true
  14758. },
  14759. {
  14760. name: "Macro+",
  14761. height: math.unit(400, "feet")
  14762. },
  14763. {
  14764. name: "Macro++",
  14765. height: math.unit(4000, "feet")
  14766. },
  14767. {
  14768. name: "Megamacro",
  14769. height: math.unit(3, "miles")
  14770. },
  14771. ]
  14772. ))
  14773. characterMakers.push(() => makeCharacter(
  14774. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14775. {
  14776. front: {
  14777. height: math.unit(6, "feet"),
  14778. weight: math.unit(150, "lb"),
  14779. name: "Front",
  14780. image: {
  14781. source: "./media/characters/isaac/front.svg",
  14782. extra: 896 / 815,
  14783. bottom: 0.11
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Human Size",
  14790. height: math.unit(8, "feet"),
  14791. default: true
  14792. },
  14793. {
  14794. name: "Macro",
  14795. height: math.unit(400, "feet")
  14796. },
  14797. {
  14798. name: "Megamacro",
  14799. height: math.unit(50, "miles")
  14800. },
  14801. {
  14802. name: "Canon Height",
  14803. height: math.unit(200, "AU")
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14809. {
  14810. front: {
  14811. height: math.unit(6, "feet"),
  14812. weight: math.unit(72, "kg"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/sleekit/front.svg",
  14816. extra: 4693 / 4487,
  14817. bottom: 0.012
  14818. }
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Minimum Height",
  14824. height: math.unit(10, "meters")
  14825. },
  14826. {
  14827. name: "Smaller",
  14828. height: math.unit(25, "meters")
  14829. },
  14830. {
  14831. name: "Larger",
  14832. height: math.unit(38, "meters"),
  14833. default: true
  14834. },
  14835. {
  14836. name: "Maximum height",
  14837. height: math.unit(100, "meters")
  14838. },
  14839. ]
  14840. ))
  14841. characterMakers.push(() => makeCharacter(
  14842. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14843. {
  14844. front: {
  14845. height: math.unit(6, "feet"),
  14846. weight: math.unit(150, "lb"),
  14847. name: "Front",
  14848. image: {
  14849. source: "./media/characters/nillia/front.svg",
  14850. extra: 2195 / 2037,
  14851. bottom: 0.005
  14852. }
  14853. },
  14854. back: {
  14855. height: math.unit(6, "feet"),
  14856. weight: math.unit(150, "lb"),
  14857. name: "Back",
  14858. image: {
  14859. source: "./media/characters/nillia/back.svg",
  14860. extra: 2195 / 2037,
  14861. bottom: 0.005
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Canon Height",
  14868. height: math.unit(489, "feet"),
  14869. default: true
  14870. }
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14875. {
  14876. front: {
  14877. height: math.unit(6, "feet"),
  14878. weight: math.unit(150, "lb"),
  14879. name: "Front",
  14880. image: {
  14881. source: "./media/characters/mesmyriza/front.svg",
  14882. extra: 2067 / 1784,
  14883. bottom: 0.035
  14884. }
  14885. },
  14886. foot: {
  14887. height: math.unit(6 / (250 / 35), "feet"),
  14888. name: "Foot",
  14889. image: {
  14890. source: "./media/characters/mesmyriza/foot.svg"
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Macro",
  14897. height: math.unit(457, "meters"),
  14898. default: true
  14899. },
  14900. {
  14901. name: "Megamacro",
  14902. height: math.unit(8, "megameters")
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(6, "feet"),
  14911. weight: math.unit(250, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/saudade/front.svg",
  14915. extra: 1172 / 1139,
  14916. bottom: 0.035
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Micro",
  14923. height: math.unit(3, "inches")
  14924. },
  14925. {
  14926. name: "Normal",
  14927. height: math.unit(6, "feet"),
  14928. default: true
  14929. },
  14930. {
  14931. name: "Macro",
  14932. height: math.unit(50, "feet")
  14933. },
  14934. {
  14935. name: "Megamacro",
  14936. height: math.unit(2800, "feet")
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14942. {
  14943. front: {
  14944. height: math.unit(5 + 4 / 12, "feet"),
  14945. weight: math.unit(100, "lb"),
  14946. name: "Front",
  14947. image: {
  14948. source: "./media/characters/keireer/front.svg",
  14949. extra: 716 / 666,
  14950. bottom: 0.05
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Normal",
  14957. height: math.unit(5 + 4 / 12, "feet"),
  14958. default: true
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(6, "feet"),
  14967. weight: math.unit(90, "kg"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/mirja/front.svg",
  14971. extra: 1789 / 1683,
  14972. bottom: 0.05
  14973. }
  14974. },
  14975. frontDressed: {
  14976. height: math.unit(6, "feet"),
  14977. weight: math.unit(90, "lb"),
  14978. name: "Front (Dressed)",
  14979. image: {
  14980. source: "./media/characters/mirja/front-dressed.svg",
  14981. extra: 1789 / 1683,
  14982. bottom: 0.05
  14983. }
  14984. },
  14985. back: {
  14986. height: math.unit(6, "feet"),
  14987. weight: math.unit(90, "lb"),
  14988. name: "Back",
  14989. image: {
  14990. source: "./media/characters/mirja/back.svg",
  14991. extra: 953 / 917,
  14992. bottom: 0.017
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "\"Incognito\"",
  14999. height: math.unit(3, "meters")
  15000. },
  15001. {
  15002. name: "Strolling Size",
  15003. height: math.unit(15, "km")
  15004. },
  15005. {
  15006. name: "Larger Strolling Size",
  15007. height: math.unit(400, "km")
  15008. },
  15009. {
  15010. name: "Preferred Size",
  15011. height: math.unit(5000, "km")
  15012. },
  15013. {
  15014. name: "True Size",
  15015. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15016. default: true
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15022. {
  15023. front: {
  15024. height: math.unit(15, "feet"),
  15025. weight: math.unit(880, "kg"),
  15026. name: "Front",
  15027. image: {
  15028. source: "./media/characters/nightraver/front.svg",
  15029. extra: 2444 / 2160,
  15030. bottom: 0.027
  15031. }
  15032. },
  15033. back: {
  15034. height: math.unit(15, "feet"),
  15035. weight: math.unit(880, "kg"),
  15036. name: "Back",
  15037. image: {
  15038. source: "./media/characters/nightraver/back.svg",
  15039. extra: 2309 / 2180,
  15040. bottom: 0.005
  15041. }
  15042. },
  15043. sole: {
  15044. height: math.unit(2.878, "feet"),
  15045. name: "Sole",
  15046. image: {
  15047. source: "./media/characters/nightraver/sole.svg"
  15048. }
  15049. },
  15050. foot: {
  15051. height: math.unit(2.285, "feet"),
  15052. name: "Foot",
  15053. image: {
  15054. source: "./media/characters/nightraver/foot.svg"
  15055. }
  15056. },
  15057. maw: {
  15058. height: math.unit(2.67, "feet"),
  15059. name: "Maw",
  15060. image: {
  15061. source: "./media/characters/nightraver/maw.svg"
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Micro",
  15068. height: math.unit(1, "cm")
  15069. },
  15070. {
  15071. name: "Normal",
  15072. height: math.unit(15, "feet"),
  15073. default: true
  15074. },
  15075. {
  15076. name: "Macro",
  15077. height: math.unit(300, "feet")
  15078. },
  15079. {
  15080. name: "Megamacro",
  15081. height: math.unit(300, "miles")
  15082. },
  15083. {
  15084. name: "Gigamacro",
  15085. height: math.unit(10000, "miles")
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15091. {
  15092. side: {
  15093. height: math.unit(2, "inches"),
  15094. weight: math.unit(5, "grams"),
  15095. name: "Side",
  15096. image: {
  15097. source: "./media/characters/arc/side.svg"
  15098. }
  15099. },
  15100. },
  15101. [
  15102. {
  15103. name: "Micro",
  15104. height: math.unit(2, "inches"),
  15105. default: true
  15106. },
  15107. ]
  15108. ))
  15109. characterMakers.push(() => makeCharacter(
  15110. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15111. {
  15112. front: {
  15113. height: math.unit(1.1938, "meters"),
  15114. weight: math.unit(54, "kg"),
  15115. name: "Front",
  15116. image: {
  15117. source: "./media/characters/nebula-shahar/front.svg",
  15118. extra: 1642 / 1436,
  15119. bottom: 0.06
  15120. }
  15121. },
  15122. },
  15123. [
  15124. {
  15125. name: "Megamicro",
  15126. height: math.unit(0.3, "mm")
  15127. },
  15128. {
  15129. name: "Micro",
  15130. height: math.unit(3, "cm")
  15131. },
  15132. {
  15133. name: "Normal",
  15134. height: math.unit(138, "cm"),
  15135. default: true
  15136. },
  15137. {
  15138. name: "Macro",
  15139. height: math.unit(30, "m")
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15145. {
  15146. front: {
  15147. height: math.unit(5.24, "feet"),
  15148. weight: math.unit(150, "lb"),
  15149. name: "Front",
  15150. image: {
  15151. source: "./media/characters/shayla/front.svg",
  15152. extra: 1512 / 1414,
  15153. bottom: 0.01
  15154. }
  15155. },
  15156. back: {
  15157. height: math.unit(5.24, "feet"),
  15158. weight: math.unit(150, "lb"),
  15159. name: "Back",
  15160. image: {
  15161. source: "./media/characters/shayla/back.svg",
  15162. extra: 1512 / 1414
  15163. }
  15164. },
  15165. hand: {
  15166. height: math.unit(0.7781496062992126, "feet"),
  15167. name: "Hand",
  15168. image: {
  15169. source: "./media/characters/shayla/hand.svg"
  15170. }
  15171. },
  15172. foot: {
  15173. height: math.unit(1.4206036745406823, "feet"),
  15174. name: "Foot",
  15175. image: {
  15176. source: "./media/characters/shayla/foot.svg"
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Micro",
  15183. height: math.unit(0.32, "feet")
  15184. },
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(5.24, "feet"),
  15188. default: true
  15189. },
  15190. {
  15191. name: "Macro",
  15192. height: math.unit(492.12, "feet")
  15193. },
  15194. {
  15195. name: "Megamacro",
  15196. height: math.unit(186.41, "miles")
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(2.2, "m"),
  15205. weight: math.unit(120, "kg"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/pia-jr/front.svg",
  15209. extra: 1000 / 970,
  15210. bottom: 0.035
  15211. }
  15212. },
  15213. hand: {
  15214. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15215. name: "Hand",
  15216. image: {
  15217. source: "./media/characters/pia-jr/hand.svg"
  15218. }
  15219. },
  15220. paw: {
  15221. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15222. name: "Paw",
  15223. image: {
  15224. source: "./media/characters/pia-jr/paw.svg"
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Micro",
  15231. height: math.unit(1.2, "cm")
  15232. },
  15233. {
  15234. name: "Normal",
  15235. height: math.unit(2.2, "m"),
  15236. default: true
  15237. },
  15238. {
  15239. name: "Macro",
  15240. height: math.unit(180, "m")
  15241. },
  15242. {
  15243. name: "Megamacro",
  15244. height: math.unit(420, "km")
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(2, "m"),
  15253. weight: math.unit(115, "kg"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/pia-sr/front.svg",
  15257. extra: 760 / 730,
  15258. bottom: 0.015
  15259. }
  15260. },
  15261. back: {
  15262. height: math.unit(2, "m"),
  15263. weight: math.unit(115, "kg"),
  15264. name: "Back",
  15265. image: {
  15266. source: "./media/characters/pia-sr/back.svg",
  15267. extra: 760 / 730,
  15268. bottom: 0.01
  15269. }
  15270. },
  15271. hand: {
  15272. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15273. name: "Hand",
  15274. image: {
  15275. source: "./media/characters/pia-sr/hand.svg"
  15276. }
  15277. },
  15278. foot: {
  15279. height: math.unit(1.83, "feet"),
  15280. name: "Foot",
  15281. image: {
  15282. source: "./media/characters/pia-sr/foot.svg"
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Micro",
  15289. height: math.unit(88, "mm")
  15290. },
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(2, "m"),
  15294. default: true
  15295. },
  15296. {
  15297. name: "Macro",
  15298. height: math.unit(200, "m")
  15299. },
  15300. {
  15301. name: "Megamacro",
  15302. height: math.unit(420, "km")
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15308. {
  15309. front: {
  15310. height: math.unit(8 + 2 / 12, "feet"),
  15311. weight: math.unit(300, "lb"),
  15312. name: "Front",
  15313. image: {
  15314. source: "./media/characters/kibibyte/front.svg",
  15315. extra: 2221 / 2098,
  15316. bottom: 0.04
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Normal",
  15323. height: math.unit(8 + 2 / 12, "feet"),
  15324. default: true
  15325. },
  15326. {
  15327. name: "Socialable Macro",
  15328. height: math.unit(50, "feet")
  15329. },
  15330. {
  15331. name: "Macro",
  15332. height: math.unit(300, "feet")
  15333. },
  15334. {
  15335. name: "Megamacro",
  15336. height: math.unit(500, "miles")
  15337. },
  15338. ]
  15339. ))
  15340. characterMakers.push(() => makeCharacter(
  15341. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15342. {
  15343. front: {
  15344. height: math.unit(6, "feet"),
  15345. weight: math.unit(150, "lb"),
  15346. name: "Front",
  15347. image: {
  15348. source: "./media/characters/felix/front.svg",
  15349. extra: 762 / 722,
  15350. bottom: 0.02
  15351. }
  15352. },
  15353. frontClothed: {
  15354. height: math.unit(6, "feet"),
  15355. weight: math.unit(150, "lb"),
  15356. name: "Front (Clothed)",
  15357. image: {
  15358. source: "./media/characters/felix/front-clothed.svg",
  15359. extra: 762 / 722,
  15360. bottom: 0.02
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Normal",
  15367. height: math.unit(6 + 8 / 12, "feet"),
  15368. default: true
  15369. },
  15370. {
  15371. name: "Macro",
  15372. height: math.unit(2600, "feet")
  15373. },
  15374. {
  15375. name: "Megamacro",
  15376. height: math.unit(450, "miles")
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15382. {
  15383. front: {
  15384. height: math.unit(6 + 1 / 12, "feet"),
  15385. weight: math.unit(250, "lb"),
  15386. name: "Front",
  15387. image: {
  15388. source: "./media/characters/tobo/front.svg",
  15389. extra: 608 / 586,
  15390. bottom: 0.023
  15391. }
  15392. },
  15393. back: {
  15394. height: math.unit(6 + 1 / 12, "feet"),
  15395. weight: math.unit(250, "lb"),
  15396. name: "Back",
  15397. image: {
  15398. source: "./media/characters/tobo/back.svg",
  15399. extra: 608 / 586
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Nano",
  15406. height: math.unit(2, "nm")
  15407. },
  15408. {
  15409. name: "Megamicro",
  15410. height: math.unit(0.1, "mm")
  15411. },
  15412. {
  15413. name: "Micro",
  15414. height: math.unit(1, "inch"),
  15415. default: true
  15416. },
  15417. {
  15418. name: "Human-sized",
  15419. height: math.unit(6 + 1 / 12, "feet")
  15420. },
  15421. {
  15422. name: "Macro",
  15423. height: math.unit(250, "feet")
  15424. },
  15425. {
  15426. name: "Megamacro",
  15427. height: math.unit(75, "miles")
  15428. },
  15429. {
  15430. name: "Texas-sized",
  15431. height: math.unit(750, "miles")
  15432. },
  15433. {
  15434. name: "Teramacro",
  15435. height: math.unit(50000, "miles")
  15436. },
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15441. {
  15442. front: {
  15443. height: math.unit(6, "feet"),
  15444. weight: math.unit(269, "lb"),
  15445. name: "Front",
  15446. image: {
  15447. source: "./media/characters/danny-kapowsky/front.svg",
  15448. extra: 766 / 736,
  15449. bottom: 0.044
  15450. }
  15451. },
  15452. back: {
  15453. height: math.unit(6, "feet"),
  15454. weight: math.unit(269, "lb"),
  15455. name: "Back",
  15456. image: {
  15457. source: "./media/characters/danny-kapowsky/back.svg",
  15458. extra: 797 / 760,
  15459. bottom: 0.025
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Macro",
  15466. height: math.unit(150, "feet"),
  15467. default: true
  15468. },
  15469. {
  15470. name: "Macro+",
  15471. height: math.unit(200, "feet")
  15472. },
  15473. {
  15474. name: "Macro++",
  15475. height: math.unit(300, "feet")
  15476. },
  15477. {
  15478. name: "Macro+++",
  15479. height: math.unit(400, "feet")
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15485. {
  15486. side: {
  15487. height: math.unit(6, "feet"),
  15488. weight: math.unit(170, "lb"),
  15489. name: "Side",
  15490. image: {
  15491. source: "./media/characters/finn/side.svg",
  15492. extra: 1953 / 1807,
  15493. bottom: 0.057
  15494. }
  15495. },
  15496. },
  15497. [
  15498. {
  15499. name: "Megamacro",
  15500. height: math.unit(14445, "feet"),
  15501. default: true
  15502. },
  15503. ]
  15504. ))
  15505. characterMakers.push(() => makeCharacter(
  15506. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15507. {
  15508. front: {
  15509. height: math.unit(5 + 6 / 12, "feet"),
  15510. weight: math.unit(125, "lb"),
  15511. name: "Front",
  15512. image: {
  15513. source: "./media/characters/roy/front.svg",
  15514. extra: 1,
  15515. bottom: 0.11
  15516. }
  15517. },
  15518. },
  15519. [
  15520. {
  15521. name: "Micro",
  15522. height: math.unit(3, "inches"),
  15523. default: true
  15524. },
  15525. {
  15526. name: "Normal",
  15527. height: math.unit(5 + 6 / 12, "feet")
  15528. },
  15529. {
  15530. name: "Lesser Macro",
  15531. height: math.unit(60, "feet")
  15532. },
  15533. {
  15534. name: "Greater Macro",
  15535. height: math.unit(120, "feet")
  15536. },
  15537. ]
  15538. ))
  15539. characterMakers.push(() => makeCharacter(
  15540. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15541. {
  15542. front: {
  15543. height: math.unit(6, "feet"),
  15544. weight: math.unit(100, "lb"),
  15545. name: "Front",
  15546. image: {
  15547. source: "./media/characters/aevsivs/front.svg",
  15548. extra: 1,
  15549. bottom: 0.03
  15550. }
  15551. },
  15552. back: {
  15553. height: math.unit(6, "feet"),
  15554. weight: math.unit(100, "lb"),
  15555. name: "Back",
  15556. image: {
  15557. source: "./media/characters/aevsivs/back.svg"
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Micro",
  15564. height: math.unit(2, "inches"),
  15565. default: true
  15566. },
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(5, "feet")
  15570. },
  15571. ]
  15572. ))
  15573. characterMakers.push(() => makeCharacter(
  15574. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15575. {
  15576. front: {
  15577. height: math.unit(5 + 7 / 12, "feet"),
  15578. weight: math.unit(159, "lb"),
  15579. name: "Front",
  15580. image: {
  15581. source: "./media/characters/hildegard/front.svg",
  15582. extra: 289 / 269,
  15583. bottom: 7.63 / 297.8
  15584. }
  15585. },
  15586. back: {
  15587. height: math.unit(5 + 7 / 12, "feet"),
  15588. weight: math.unit(159, "lb"),
  15589. name: "Back",
  15590. image: {
  15591. source: "./media/characters/hildegard/back.svg",
  15592. extra: 280 / 260,
  15593. bottom: 2.3 / 282
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(5 + 7 / 12, "feet"),
  15601. default: true
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15607. {
  15608. bernard: {
  15609. height: math.unit(2 + 7 / 12, "feet"),
  15610. weight: math.unit(66, "lb"),
  15611. name: "Bernard",
  15612. rename: true,
  15613. image: {
  15614. source: "./media/characters/bernard-wilder/bernard.svg",
  15615. extra: 192 / 128,
  15616. bottom: 0.05
  15617. }
  15618. },
  15619. wilder: {
  15620. height: math.unit(5 + 8 / 12, "feet"),
  15621. weight: math.unit(143, "lb"),
  15622. name: "Wilder",
  15623. rename: true,
  15624. image: {
  15625. source: "./media/characters/bernard-wilder/wilder.svg",
  15626. extra: 361 / 312,
  15627. bottom: 0.02
  15628. }
  15629. },
  15630. },
  15631. [
  15632. {
  15633. name: "Normal",
  15634. height: math.unit(2 + 7 / 12, "feet"),
  15635. default: true
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15641. {
  15642. anthro: {
  15643. height: math.unit(6 + 1 / 12, "feet"),
  15644. weight: math.unit(155, "lb"),
  15645. name: "Anthro",
  15646. image: {
  15647. source: "./media/characters/hearth/anthro.svg",
  15648. extra: 1178/1136,
  15649. bottom: 28/1206
  15650. }
  15651. },
  15652. feral: {
  15653. height: math.unit(3.78, "feet"),
  15654. weight: math.unit(35, "kg"),
  15655. name: "Feral",
  15656. image: {
  15657. source: "./media/characters/hearth/feral.svg",
  15658. extra: 153 / 135,
  15659. bottom: 0.03
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Normal",
  15666. height: math.unit(6 + 1 / 12, "feet"),
  15667. default: true
  15668. },
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15673. {
  15674. front: {
  15675. height: math.unit(6, "feet"),
  15676. weight: math.unit(182, "lb"),
  15677. name: "Front",
  15678. image: {
  15679. source: "./media/characters/ingrid/front.svg",
  15680. extra: 294 / 268,
  15681. bottom: 0.027
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(6, "feet"),
  15689. default: true
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15695. {
  15696. eevee: {
  15697. height: math.unit(2 + 10 / 12, "feet"),
  15698. weight: math.unit(86, "lb"),
  15699. name: "Malgam",
  15700. image: {
  15701. source: "./media/characters/malgam/eevee.svg",
  15702. extra: 952/784,
  15703. bottom: 38/990
  15704. }
  15705. },
  15706. sylveon: {
  15707. height: math.unit(4, "feet"),
  15708. weight: math.unit(101, "lb"),
  15709. name: "Future Malgam",
  15710. rename: true,
  15711. image: {
  15712. source: "./media/characters/malgam/sylveon.svg",
  15713. extra: 371 / 325,
  15714. bottom: 0.015
  15715. }
  15716. },
  15717. gigantamax: {
  15718. height: math.unit(50, "feet"),
  15719. name: "Gigantamax Malgam",
  15720. rename: true,
  15721. image: {
  15722. source: "./media/characters/malgam/gigantamax.svg"
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(2 + 10 / 12, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15736. {
  15737. front: {
  15738. height: math.unit(5 + 11 / 12, "feet"),
  15739. weight: math.unit(188, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/fleur/front.svg",
  15743. extra: 309 / 283,
  15744. bottom: 0.007
  15745. }
  15746. },
  15747. },
  15748. [
  15749. {
  15750. name: "Normal",
  15751. height: math.unit(5 + 11 / 12, "feet"),
  15752. default: true
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15758. {
  15759. front: {
  15760. height: math.unit(5 + 4 / 12, "feet"),
  15761. weight: math.unit(122, "lb"),
  15762. name: "Front",
  15763. image: {
  15764. source: "./media/characters/jude/front.svg",
  15765. extra: 288 / 273,
  15766. bottom: 0.03
  15767. }
  15768. },
  15769. },
  15770. [
  15771. {
  15772. name: "Normal",
  15773. height: math.unit(5 + 4 / 12, "feet"),
  15774. default: true
  15775. },
  15776. ]
  15777. ))
  15778. characterMakers.push(() => makeCharacter(
  15779. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15780. {
  15781. front: {
  15782. height: math.unit(5 + 11 / 12, "feet"),
  15783. weight: math.unit(190, "lb"),
  15784. name: "Front",
  15785. image: {
  15786. source: "./media/characters/seara/front.svg",
  15787. extra: 1,
  15788. bottom: 0.05
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(5 + 11 / 12, "feet"),
  15796. default: true
  15797. },
  15798. ]
  15799. ))
  15800. characterMakers.push(() => makeCharacter(
  15801. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15802. {
  15803. front: {
  15804. height: math.unit(16 + 5 / 12, "feet"),
  15805. weight: math.unit(524, "lb"),
  15806. name: "Front",
  15807. image: {
  15808. source: "./media/characters/caspian-lugia/front.svg",
  15809. extra: 1,
  15810. bottom: 0.04
  15811. }
  15812. },
  15813. },
  15814. [
  15815. {
  15816. name: "Normal",
  15817. height: math.unit(16 + 5 / 12, "feet"),
  15818. default: true
  15819. },
  15820. ]
  15821. ))
  15822. characterMakers.push(() => makeCharacter(
  15823. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15824. {
  15825. front: {
  15826. height: math.unit(5 + 7 / 12, "feet"),
  15827. weight: math.unit(170, "lb"),
  15828. name: "Front",
  15829. image: {
  15830. source: "./media/characters/mika/front.svg",
  15831. extra: 1,
  15832. bottom: 0.016
  15833. }
  15834. },
  15835. },
  15836. [
  15837. {
  15838. name: "Normal",
  15839. height: math.unit(5 + 7 / 12, "feet"),
  15840. default: true
  15841. },
  15842. ]
  15843. ))
  15844. characterMakers.push(() => makeCharacter(
  15845. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15846. {
  15847. front: {
  15848. height: math.unit(6 + 2 / 12, "feet"),
  15849. weight: math.unit(268, "lb"),
  15850. name: "Front",
  15851. image: {
  15852. source: "./media/characters/sol/front.svg",
  15853. extra: 247 / 231,
  15854. bottom: 0.05
  15855. }
  15856. },
  15857. },
  15858. [
  15859. {
  15860. name: "Normal",
  15861. height: math.unit(6 + 2 / 12, "feet"),
  15862. default: true
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15868. {
  15869. buizel: {
  15870. height: math.unit(2 + 5 / 12, "feet"),
  15871. weight: math.unit(87, "lb"),
  15872. name: "Front",
  15873. image: {
  15874. source: "./media/characters/umiko/buizel.svg",
  15875. extra: 172 / 157,
  15876. bottom: 0.01
  15877. },
  15878. form: "buizel",
  15879. default: true
  15880. },
  15881. floatzel: {
  15882. height: math.unit(5 + 9 / 12, "feet"),
  15883. weight: math.unit(250, "lb"),
  15884. name: "Front",
  15885. image: {
  15886. source: "./media/characters/umiko/floatzel.svg",
  15887. extra: 1076/1006,
  15888. bottom: 15/1091
  15889. },
  15890. form: "floatzel",
  15891. default: true
  15892. },
  15893. },
  15894. [
  15895. {
  15896. name: "Normal",
  15897. height: math.unit(2 + 5 / 12, "feet"),
  15898. form: "buizel",
  15899. default: true
  15900. },
  15901. {
  15902. name: "Normal",
  15903. height: math.unit(5 + 9 / 12, "feet"),
  15904. form: "floatzel",
  15905. default: true
  15906. },
  15907. ],
  15908. {
  15909. "buizel": {
  15910. name: "Buizel"
  15911. },
  15912. "floatzel": {
  15913. name: "Floatzel",
  15914. default: true
  15915. }
  15916. }
  15917. ))
  15918. characterMakers.push(() => makeCharacter(
  15919. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15920. {
  15921. front: {
  15922. height: math.unit(6 + 2 / 12, "feet"),
  15923. weight: math.unit(146, "lb"),
  15924. name: "Front",
  15925. image: {
  15926. source: "./media/characters/iliac/front.svg",
  15927. extra: 389 / 365,
  15928. bottom: 0.035
  15929. }
  15930. },
  15931. },
  15932. [
  15933. {
  15934. name: "Normal",
  15935. height: math.unit(6 + 2 / 12, "feet"),
  15936. default: true
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15942. {
  15943. front: {
  15944. height: math.unit(6, "feet"),
  15945. weight: math.unit(170, "lb"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/topaz/front.svg",
  15949. extra: 317 / 303,
  15950. bottom: 0.055
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(6, "feet"),
  15958. default: true
  15959. },
  15960. ]
  15961. ))
  15962. characterMakers.push(() => makeCharacter(
  15963. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15964. {
  15965. front: {
  15966. height: math.unit(5 + 11 / 12, "feet"),
  15967. weight: math.unit(144, "lb"),
  15968. name: "Front",
  15969. image: {
  15970. source: "./media/characters/gabriel/front.svg",
  15971. extra: 285 / 262,
  15972. bottom: 0.004
  15973. }
  15974. },
  15975. },
  15976. [
  15977. {
  15978. name: "Normal",
  15979. height: math.unit(5 + 11 / 12, "feet"),
  15980. default: true
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15986. {
  15987. side: {
  15988. height: math.unit(6 + 5 / 12, "feet"),
  15989. weight: math.unit(300, "lb"),
  15990. name: "Side",
  15991. image: {
  15992. source: "./media/characters/tempest-suicune/side.svg",
  15993. extra: 195 / 154,
  15994. bottom: 0.04
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(6 + 5 / 12, "feet"),
  16002. default: true
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16008. {
  16009. front: {
  16010. height: math.unit(7 + 2 / 12, "feet"),
  16011. weight: math.unit(322, "lb"),
  16012. name: "Front",
  16013. image: {
  16014. source: "./media/characters/vulcan/front.svg",
  16015. extra: 154 / 147,
  16016. bottom: 0.04
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Normal",
  16023. height: math.unit(7 + 2 / 12, "feet"),
  16024. default: true
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(5 + 10 / 12, "feet"),
  16033. weight: math.unit(264, "lb"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/gault/front.svg",
  16037. extra: 161 / 140,
  16038. bottom: 0.028
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Normal",
  16045. height: math.unit(5 + 10 / 12, "feet"),
  16046. default: true
  16047. },
  16048. ]
  16049. ))
  16050. characterMakers.push(() => makeCharacter(
  16051. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16052. {
  16053. front: {
  16054. height: math.unit(6, "feet"),
  16055. weight: math.unit(150, "lb"),
  16056. name: "Front",
  16057. image: {
  16058. source: "./media/characters/shard/front.svg",
  16059. extra: 273 / 238,
  16060. bottom: 0.02
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(3 + 6 / 12, "feet"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(5 + 11 / 12, "feet"),
  16077. weight: math.unit(146, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/ashe/front.svg",
  16081. extra: 400 / 373,
  16082. bottom: 0.01
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(5 + 11 / 12, "feet"),
  16090. default: true
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16096. {
  16097. front: {
  16098. height: math.unit(5 + 5 / 12, "feet"),
  16099. weight: math.unit(135, "lb"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/beatrix/front.svg",
  16103. extra: 392 / 379,
  16104. bottom: 0.01
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Normal",
  16111. height: math.unit(6, "feet"),
  16112. default: true
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16118. {
  16119. front: {
  16120. height: math.unit(6 + 2/12, "feet"),
  16121. weight: math.unit(135, "lb"),
  16122. name: "Front",
  16123. image: {
  16124. source: "./media/characters/ignatius/front.svg",
  16125. extra: 1380/1259,
  16126. bottom: 27/1407
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(6 + 2/12, "feet"),
  16134. default: true
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(6 + 2 / 12, "feet"),
  16143. weight: math.unit(138, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/mei-li/front.svg",
  16147. extra: 237 / 229,
  16148. bottom: 0.03
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(6 + 2 / 12, "feet"),
  16156. default: true
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(2 + 4 / 12, "feet"),
  16165. weight: math.unit(62, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/puru/front.svg",
  16169. extra: 206 / 149,
  16170. bottom: 0.06
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(2 + 4 / 12, "feet"),
  16178. default: true
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16184. {
  16185. anthro: {
  16186. height: math.unit(5 + 8/12, "feet"),
  16187. weight: math.unit(200, "lb"),
  16188. energyNeed: math.unit(2000, "kcal"),
  16189. name: "Anthro",
  16190. image: {
  16191. source: "./media/characters/kee/anthro.svg",
  16192. extra: 3251/3184,
  16193. bottom: 250/3501
  16194. }
  16195. },
  16196. taur: {
  16197. height: math.unit(11, "feet"),
  16198. weight: math.unit(500, "lb"),
  16199. energyNeed: math.unit(5000, "kcal"),
  16200. name: "Taur",
  16201. image: {
  16202. source: "./media/characters/kee/taur.svg",
  16203. extra: 1362/1320,
  16204. bottom: 83/1445
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(5 + 8/12, "feet"),
  16212. default: true
  16213. },
  16214. {
  16215. name: "Macro",
  16216. height: math.unit(35, "feet")
  16217. },
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16222. {
  16223. anthro: {
  16224. height: math.unit(7, "feet"),
  16225. weight: math.unit(190, "lb"),
  16226. name: "Anthro",
  16227. image: {
  16228. source: "./media/characters/cobalt-dracha/anthro.svg",
  16229. extra: 231 / 225,
  16230. bottom: 0.04
  16231. }
  16232. },
  16233. feral: {
  16234. height: math.unit(9 + 7 / 12, "feet"),
  16235. weight: math.unit(294, "lb"),
  16236. name: "Feral",
  16237. image: {
  16238. source: "./media/characters/cobalt-dracha/feral.svg",
  16239. extra: 692 / 633,
  16240. bottom: 0.05
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(7, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16254. {
  16255. fallen: {
  16256. height: math.unit(11 + 8 / 12, "feet"),
  16257. weight: math.unit(485, "lb"),
  16258. name: "Java (Fallen)",
  16259. rename: true,
  16260. image: {
  16261. source: "./media/characters/java/fallen.svg",
  16262. extra: 226 / 208,
  16263. bottom: 0.005
  16264. }
  16265. },
  16266. godkin: {
  16267. height: math.unit(10 + 6 / 12, "feet"),
  16268. weight: math.unit(328, "lb"),
  16269. name: "Java (Godkin)",
  16270. rename: true,
  16271. image: {
  16272. source: "./media/characters/java/godkin.svg",
  16273. extra: 1104/1068,
  16274. bottom: 36/1140
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(11 + 8 / 12, "feet"),
  16282. default: true
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16288. {
  16289. front: {
  16290. height: math.unit(5 + 9 / 12, "feet"),
  16291. weight: math.unit(170, "lb"),
  16292. name: "Front",
  16293. image: {
  16294. source: "./media/characters/purna/front.svg",
  16295. extra: 239 / 229,
  16296. bottom: 0.01
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Normal",
  16303. height: math.unit(5 + 9 / 12, "feet"),
  16304. default: true
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(5 + 9 / 12, "feet"),
  16313. weight: math.unit(142, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/kuva/front.svg",
  16317. extra: 281 / 271,
  16318. bottom: 0.006
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Normal",
  16325. height: math.unit(5 + 9 / 12, "feet"),
  16326. default: true
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16332. {
  16333. anthro: {
  16334. height: math.unit(9 + 2 / 12, "feet"),
  16335. weight: math.unit(270, "lb"),
  16336. name: "Anthro",
  16337. image: {
  16338. source: "./media/characters/embra/anthro.svg",
  16339. extra: 200 / 187,
  16340. bottom: 0.02
  16341. }
  16342. },
  16343. feral: {
  16344. height: math.unit(18 + 8 / 12, "feet"),
  16345. weight: math.unit(576, "lb"),
  16346. name: "Feral",
  16347. image: {
  16348. source: "./media/characters/embra/feral.svg",
  16349. extra: 152 / 137,
  16350. bottom: 0.037
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(9 + 2 / 12, "feet"),
  16358. default: true
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16364. {
  16365. anthro: {
  16366. height: math.unit(10 + 9 / 12, "feet"),
  16367. weight: math.unit(224, "lb"),
  16368. name: "Anthro",
  16369. image: {
  16370. source: "./media/characters/grottos/anthro.svg",
  16371. extra: 350 / 332,
  16372. bottom: 0.045
  16373. }
  16374. },
  16375. feral: {
  16376. height: math.unit(20 + 7 / 12, "feet"),
  16377. weight: math.unit(629, "lb"),
  16378. name: "Feral",
  16379. image: {
  16380. source: "./media/characters/grottos/feral.svg",
  16381. extra: 207 / 190,
  16382. bottom: 0.05
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(10 + 9 / 12, "feet"),
  16390. default: true
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16396. {
  16397. anthro: {
  16398. height: math.unit(9 + 6 / 12, "feet"),
  16399. weight: math.unit(298, "lb"),
  16400. name: "Anthro",
  16401. image: {
  16402. source: "./media/characters/frifna/anthro.svg",
  16403. extra: 282 / 269,
  16404. bottom: 0.015
  16405. }
  16406. },
  16407. feral: {
  16408. height: math.unit(16 + 2 / 12, "feet"),
  16409. weight: math.unit(624, "lb"),
  16410. name: "Feral",
  16411. image: {
  16412. source: "./media/characters/frifna/feral.svg"
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(9 + 6 / 12, "feet"),
  16420. default: true
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16426. {
  16427. front: {
  16428. height: math.unit(6 + 2 / 12, "feet"),
  16429. weight: math.unit(168, "lb"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/elise/front.svg",
  16433. extra: 276 / 271
  16434. }
  16435. },
  16436. },
  16437. [
  16438. {
  16439. name: "Normal",
  16440. height: math.unit(6 + 2 / 12, "feet"),
  16441. default: true
  16442. },
  16443. ]
  16444. ))
  16445. characterMakers.push(() => makeCharacter(
  16446. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16447. {
  16448. front: {
  16449. height: math.unit(5 + 10 / 12, "feet"),
  16450. weight: math.unit(210, "lb"),
  16451. name: "Front",
  16452. image: {
  16453. source: "./media/characters/glade/front.svg",
  16454. extra: 258 / 247,
  16455. bottom: 0.008
  16456. }
  16457. },
  16458. },
  16459. [
  16460. {
  16461. name: "Normal",
  16462. height: math.unit(5 + 10 / 12, "feet"),
  16463. default: true
  16464. },
  16465. ]
  16466. ))
  16467. characterMakers.push(() => makeCharacter(
  16468. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16469. {
  16470. front: {
  16471. height: math.unit(5 + 10 / 12, "feet"),
  16472. weight: math.unit(129, "lb"),
  16473. name: "Front",
  16474. image: {
  16475. source: "./media/characters/rina/front.svg",
  16476. extra: 266 / 255,
  16477. bottom: 0.005
  16478. }
  16479. },
  16480. },
  16481. [
  16482. {
  16483. name: "Normal",
  16484. height: math.unit(5 + 10 / 12, "feet"),
  16485. default: true
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16491. {
  16492. front: {
  16493. height: math.unit(6 + 1 / 12, "feet"),
  16494. weight: math.unit(192, "lb"),
  16495. name: "Front",
  16496. image: {
  16497. source: "./media/characters/veronica/front.svg",
  16498. extra: 319 / 309,
  16499. bottom: 0.005
  16500. }
  16501. },
  16502. },
  16503. [
  16504. {
  16505. name: "Normal",
  16506. height: math.unit(6 + 1 / 12, "feet"),
  16507. default: true
  16508. },
  16509. ]
  16510. ))
  16511. characterMakers.push(() => makeCharacter(
  16512. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16513. {
  16514. front: {
  16515. height: math.unit(9 + 3 / 12, "feet"),
  16516. weight: math.unit(1100, "lb"),
  16517. name: "Front",
  16518. image: {
  16519. source: "./media/characters/braxton/front.svg",
  16520. extra: 1057 / 984,
  16521. bottom: 0.05
  16522. }
  16523. },
  16524. },
  16525. [
  16526. {
  16527. name: "Normal",
  16528. height: math.unit(9 + 3 / 12, "feet")
  16529. },
  16530. {
  16531. name: "Giant",
  16532. height: math.unit(300, "feet"),
  16533. default: true
  16534. },
  16535. {
  16536. name: "Macro",
  16537. height: math.unit(700, "feet")
  16538. },
  16539. {
  16540. name: "Megamacro",
  16541. height: math.unit(6000, "feet")
  16542. },
  16543. ]
  16544. ))
  16545. characterMakers.push(() => makeCharacter(
  16546. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16547. {
  16548. front: {
  16549. height: math.unit(6 + 7 / 12, "feet"),
  16550. weight: math.unit(150, "lb"),
  16551. name: "Front",
  16552. image: {
  16553. source: "./media/characters/blue-feyonics/front.svg",
  16554. extra: 1403 / 1306,
  16555. bottom: 0.047
  16556. }
  16557. },
  16558. },
  16559. [
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(6 + 7 / 12, "feet"),
  16563. default: true
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16569. {
  16570. front: {
  16571. height: math.unit(1.8, "meters"),
  16572. weight: math.unit(60, "kg"),
  16573. name: "Front",
  16574. image: {
  16575. source: "./media/characters/maxwell/front.svg",
  16576. extra: 2060 / 1873
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Micro",
  16583. height: math.unit(1, "mm")
  16584. },
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(1.8, "meter"),
  16588. default: true
  16589. },
  16590. {
  16591. name: "Macro",
  16592. height: math.unit(30, "meters")
  16593. },
  16594. {
  16595. name: "Megamacro",
  16596. height: math.unit(10, "km")
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16602. {
  16603. front: {
  16604. height: math.unit(6, "feet"),
  16605. weight: math.unit(150, "lb"),
  16606. name: "Front",
  16607. image: {
  16608. source: "./media/characters/jack/front.svg",
  16609. extra: 1754 / 1640,
  16610. bottom: 0.01
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(80000, "feet"),
  16618. default: true
  16619. },
  16620. {
  16621. name: "Max size",
  16622. height: math.unit(10, "lightyears")
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16628. {
  16629. urban: {
  16630. height: math.unit(5, "feet"),
  16631. weight: math.unit(240, "lb"),
  16632. name: "Urban",
  16633. image: {
  16634. source: "./media/characters/cafat/urban.svg",
  16635. extra: 1223/1126,
  16636. bottom: 205/1428
  16637. }
  16638. },
  16639. summer: {
  16640. height: math.unit(5, "feet"),
  16641. weight: math.unit(240, "lb"),
  16642. name: "Summer",
  16643. image: {
  16644. source: "./media/characters/cafat/summer.svg",
  16645. extra: 1223/1126,
  16646. bottom: 205/1428
  16647. }
  16648. },
  16649. winter: {
  16650. height: math.unit(5, "feet"),
  16651. weight: math.unit(240, "lb"),
  16652. name: "Winter",
  16653. image: {
  16654. source: "./media/characters/cafat/winter.svg",
  16655. extra: 1223/1126,
  16656. bottom: 205/1428
  16657. }
  16658. },
  16659. lingerie: {
  16660. height: math.unit(5, "feet"),
  16661. weight: math.unit(240, "lb"),
  16662. name: "Lingerie",
  16663. image: {
  16664. source: "./media/characters/cafat/lingerie.svg",
  16665. extra: 1223/1126,
  16666. bottom: 205/1428
  16667. }
  16668. },
  16669. upright: {
  16670. height: math.unit(6.3, "feet"),
  16671. weight: math.unit(240, "lb"),
  16672. name: "Upright",
  16673. image: {
  16674. source: "./media/characters/cafat/upright.svg",
  16675. bottom: 0.01
  16676. }
  16677. },
  16678. uprightFull: {
  16679. height: math.unit(6.3, "feet"),
  16680. weight: math.unit(240, "lb"),
  16681. name: "Upright (Full)",
  16682. image: {
  16683. source: "./media/characters/cafat/upright-full.svg",
  16684. bottom: 0.01
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Small",
  16691. height: math.unit(5, "feet"),
  16692. default: true
  16693. },
  16694. {
  16695. name: "Large",
  16696. height: math.unit(13, "feet")
  16697. },
  16698. ]
  16699. ))
  16700. characterMakers.push(() => makeCharacter(
  16701. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16702. {
  16703. front: {
  16704. height: math.unit(6, "feet"),
  16705. weight: math.unit(150, "lb"),
  16706. name: "Front",
  16707. image: {
  16708. source: "./media/characters/verin-raharra/front.svg",
  16709. extra: 5019 / 4835,
  16710. bottom: 0.023
  16711. }
  16712. },
  16713. },
  16714. [
  16715. {
  16716. name: "Normal",
  16717. height: math.unit(7 + 5 / 12, "feet"),
  16718. default: true
  16719. },
  16720. {
  16721. name: "Upsized",
  16722. height: math.unit(20, "feet")
  16723. },
  16724. ]
  16725. ))
  16726. characterMakers.push(() => makeCharacter(
  16727. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16728. {
  16729. front: {
  16730. height: math.unit(7, "feet"),
  16731. weight: math.unit(230, "lb"),
  16732. name: "Front",
  16733. image: {
  16734. source: "./media/characters/nakata/front.svg",
  16735. extra: 1.005,
  16736. bottom: 0.01
  16737. }
  16738. },
  16739. },
  16740. [
  16741. {
  16742. name: "Normal",
  16743. height: math.unit(7, "feet"),
  16744. default: true
  16745. },
  16746. {
  16747. name: "Big",
  16748. height: math.unit(14, "feet")
  16749. },
  16750. {
  16751. name: "Macro",
  16752. height: math.unit(400, "feet")
  16753. },
  16754. ]
  16755. ))
  16756. characterMakers.push(() => makeCharacter(
  16757. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16758. {
  16759. front: {
  16760. height: math.unit(4.91, "feet"),
  16761. weight: math.unit(100, "lb"),
  16762. name: "Front",
  16763. image: {
  16764. source: "./media/characters/lily/front.svg",
  16765. extra: 1585 / 1415,
  16766. bottom: 0.02
  16767. }
  16768. },
  16769. },
  16770. [
  16771. {
  16772. name: "Normal",
  16773. height: math.unit(4.91, "feet"),
  16774. default: true
  16775. },
  16776. ]
  16777. ))
  16778. characterMakers.push(() => makeCharacter(
  16779. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16780. {
  16781. laying: {
  16782. height: math.unit(4 + 4 / 12, "feet"),
  16783. weight: math.unit(600, "lb"),
  16784. name: "Laying",
  16785. image: {
  16786. source: "./media/characters/sheila/laying.svg",
  16787. extra: 1333 / 1265,
  16788. bottom: 0.16
  16789. }
  16790. },
  16791. },
  16792. [
  16793. {
  16794. name: "Normal",
  16795. height: math.unit(4 + 4 / 12, "feet"),
  16796. default: true
  16797. },
  16798. ]
  16799. ))
  16800. characterMakers.push(() => makeCharacter(
  16801. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16802. {
  16803. front: {
  16804. height: math.unit(6, "feet"),
  16805. weight: math.unit(190, "lb"),
  16806. name: "Front",
  16807. image: {
  16808. source: "./media/characters/sax/front.svg",
  16809. extra: 1187 / 973,
  16810. bottom: 0.042
  16811. }
  16812. },
  16813. },
  16814. [
  16815. {
  16816. name: "Micro",
  16817. height: math.unit(4, "inches"),
  16818. default: true
  16819. },
  16820. ]
  16821. ))
  16822. characterMakers.push(() => makeCharacter(
  16823. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16824. {
  16825. front: {
  16826. height: math.unit(6, "feet"),
  16827. weight: math.unit(150, "lb"),
  16828. name: "Front",
  16829. image: {
  16830. source: "./media/characters/pandora/front.svg",
  16831. extra: 2720 / 2556,
  16832. bottom: 0.015
  16833. }
  16834. },
  16835. back: {
  16836. height: math.unit(6, "feet"),
  16837. weight: math.unit(150, "lb"),
  16838. name: "Back",
  16839. image: {
  16840. source: "./media/characters/pandora/back.svg",
  16841. extra: 2720 / 2556,
  16842. bottom: 0.01
  16843. }
  16844. },
  16845. beans: {
  16846. height: math.unit(6 / 8, "feet"),
  16847. name: "Beans",
  16848. image: {
  16849. source: "./media/characters/pandora/beans.svg"
  16850. }
  16851. },
  16852. collar: {
  16853. height: math.unit(0.31, "feet"),
  16854. name: "Collar",
  16855. image: {
  16856. source: "./media/characters/pandora/collar.svg"
  16857. }
  16858. },
  16859. skirt: {
  16860. height: math.unit(6, "feet"),
  16861. weight: math.unit(150, "lb"),
  16862. name: "Skirt",
  16863. image: {
  16864. source: "./media/characters/pandora/skirt.svg",
  16865. extra: 1622 / 1525,
  16866. bottom: 0.015
  16867. }
  16868. },
  16869. hoodie: {
  16870. height: math.unit(6, "feet"),
  16871. weight: math.unit(150, "lb"),
  16872. name: "Hoodie",
  16873. image: {
  16874. source: "./media/characters/pandora/hoodie.svg",
  16875. extra: 1622 / 1525,
  16876. bottom: 0.015
  16877. }
  16878. },
  16879. casual: {
  16880. height: math.unit(6, "feet"),
  16881. weight: math.unit(150, "lb"),
  16882. name: "Casual",
  16883. image: {
  16884. source: "./media/characters/pandora/casual.svg",
  16885. extra: 1622 / 1525,
  16886. bottom: 0.015
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(6, "feet")
  16894. },
  16895. {
  16896. name: "Big Steppy",
  16897. height: math.unit(1, "km"),
  16898. default: true
  16899. },
  16900. {
  16901. name: "Galactic Steppy",
  16902. height: math.unit(2, "gigameters")
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16908. {
  16909. side: {
  16910. height: math.unit(10, "feet"),
  16911. weight: math.unit(800, "kg"),
  16912. name: "Side",
  16913. image: {
  16914. source: "./media/characters/venio-darcony/side.svg",
  16915. extra: 1373 / 1003,
  16916. bottom: 0.037
  16917. }
  16918. },
  16919. front: {
  16920. height: math.unit(19, "feet"),
  16921. weight: math.unit(800, "kg"),
  16922. name: "Front",
  16923. image: {
  16924. source: "./media/characters/venio-darcony/front.svg"
  16925. }
  16926. },
  16927. back: {
  16928. height: math.unit(19, "feet"),
  16929. weight: math.unit(800, "kg"),
  16930. name: "Back",
  16931. image: {
  16932. source: "./media/characters/venio-darcony/back.svg"
  16933. }
  16934. },
  16935. sideNsfw: {
  16936. height: math.unit(10, "feet"),
  16937. weight: math.unit(800, "kg"),
  16938. name: "Side (NSFW)",
  16939. image: {
  16940. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16941. extra: 1373 / 1003,
  16942. bottom: 0.037
  16943. }
  16944. },
  16945. frontNsfw: {
  16946. height: math.unit(19, "feet"),
  16947. weight: math.unit(800, "kg"),
  16948. name: "Front (NSFW)",
  16949. image: {
  16950. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16951. }
  16952. },
  16953. backNsfw: {
  16954. height: math.unit(19, "feet"),
  16955. weight: math.unit(800, "kg"),
  16956. name: "Back (NSFW)",
  16957. image: {
  16958. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16959. }
  16960. },
  16961. sideArmored: {
  16962. height: math.unit(10, "feet"),
  16963. weight: math.unit(800, "kg"),
  16964. name: "Side (Armored)",
  16965. image: {
  16966. source: "./media/characters/venio-darcony/side-armored.svg",
  16967. extra: 1373 / 1003,
  16968. bottom: 0.037
  16969. }
  16970. },
  16971. frontArmored: {
  16972. height: math.unit(19, "feet"),
  16973. weight: math.unit(900, "kg"),
  16974. name: "Front (Armored)",
  16975. image: {
  16976. source: "./media/characters/venio-darcony/front-armored.svg"
  16977. }
  16978. },
  16979. backArmored: {
  16980. height: math.unit(19, "feet"),
  16981. weight: math.unit(900, "kg"),
  16982. name: "Back (Armored)",
  16983. image: {
  16984. source: "./media/characters/venio-darcony/back-armored.svg"
  16985. }
  16986. },
  16987. sword: {
  16988. height: math.unit(10, "feet"),
  16989. weight: math.unit(50, "lb"),
  16990. name: "Sword",
  16991. image: {
  16992. source: "./media/characters/venio-darcony/sword.svg"
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(10, "feet")
  17000. },
  17001. {
  17002. name: "Macro",
  17003. height: math.unit(130, "feet"),
  17004. default: true
  17005. },
  17006. {
  17007. name: "Macro+",
  17008. height: math.unit(240, "feet")
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(6, "feet"),
  17017. weight: math.unit(150, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/veski/front.svg",
  17021. extra: 1299 / 1225,
  17022. bottom: 0.04
  17023. }
  17024. },
  17025. back: {
  17026. height: math.unit(6, "feet"),
  17027. weight: math.unit(150, "lb"),
  17028. name: "Back",
  17029. image: {
  17030. source: "./media/characters/veski/back.svg",
  17031. extra: 1299 / 1225,
  17032. bottom: 0.008
  17033. }
  17034. },
  17035. maw: {
  17036. height: math.unit(1.5 * 1.21, "feet"),
  17037. name: "Maw",
  17038. image: {
  17039. source: "./media/characters/veski/maw.svg"
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Macro",
  17046. height: math.unit(2, "km"),
  17047. default: true
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17053. {
  17054. front: {
  17055. height: math.unit(5 + 7 / 12, "feet"),
  17056. name: "Front",
  17057. image: {
  17058. source: "./media/characters/isabelle/front.svg",
  17059. extra: 2130 / 1976,
  17060. bottom: 0.05
  17061. }
  17062. },
  17063. },
  17064. [
  17065. {
  17066. name: "Supermicro",
  17067. height: math.unit(10, "micrometers")
  17068. },
  17069. {
  17070. name: "Micro",
  17071. height: math.unit(1, "inch")
  17072. },
  17073. {
  17074. name: "Tiny",
  17075. height: math.unit(5, "inches")
  17076. },
  17077. {
  17078. name: "Standard",
  17079. height: math.unit(5 + 7 / 12, "inches")
  17080. },
  17081. {
  17082. name: "Macro",
  17083. height: math.unit(80, "meters"),
  17084. default: true
  17085. },
  17086. {
  17087. name: "Megamacro",
  17088. height: math.unit(250, "meters")
  17089. },
  17090. {
  17091. name: "Gigamacro",
  17092. height: math.unit(5, "km")
  17093. },
  17094. {
  17095. name: "Cosmic",
  17096. height: math.unit(2.5e6, "miles")
  17097. },
  17098. ]
  17099. ))
  17100. characterMakers.push(() => makeCharacter(
  17101. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17102. {
  17103. front: {
  17104. height: math.unit(6, "feet"),
  17105. weight: math.unit(150, "lb"),
  17106. name: "Front",
  17107. image: {
  17108. source: "./media/characters/hanzo/front.svg",
  17109. extra: 374 / 344,
  17110. bottom: 0.02
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(8, "feet"),
  17118. default: true
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17124. {
  17125. front: {
  17126. height: math.unit(7, "feet"),
  17127. weight: math.unit(130, "lb"),
  17128. name: "Front",
  17129. image: {
  17130. source: "./media/characters/anna/front.svg",
  17131. extra: 169 / 145,
  17132. bottom: 0.06
  17133. }
  17134. },
  17135. full: {
  17136. height: math.unit(4.96, "feet"),
  17137. weight: math.unit(220, "lb"),
  17138. name: "Full",
  17139. image: {
  17140. source: "./media/characters/anna/full.svg",
  17141. extra: 138 / 114,
  17142. bottom: 0.15
  17143. }
  17144. },
  17145. tongue: {
  17146. height: math.unit(2.53, "feet"),
  17147. name: "Tongue",
  17148. image: {
  17149. source: "./media/characters/anna/tongue.svg"
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(7, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(7, "feet"),
  17166. weight: math.unit(150, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/ian-corvid/front.svg",
  17170. extra: 150 / 142,
  17171. bottom: 0.02
  17172. }
  17173. },
  17174. back: {
  17175. height: math.unit(7, "feet"),
  17176. weight: math.unit(150, "lb"),
  17177. name: "Back",
  17178. image: {
  17179. source: "./media/characters/ian-corvid/back.svg",
  17180. extra: 150 / 143,
  17181. bottom: 0.01
  17182. }
  17183. },
  17184. stomping: {
  17185. height: math.unit(7, "feet"),
  17186. weight: math.unit(150, "lb"),
  17187. name: "Stomping",
  17188. image: {
  17189. source: "./media/characters/ian-corvid/stomping.svg",
  17190. extra: 76 / 72
  17191. }
  17192. },
  17193. sitting: {
  17194. height: math.unit(7 / 1.8, "feet"),
  17195. weight: math.unit(150, "lb"),
  17196. name: "Sitting",
  17197. image: {
  17198. source: "./media/characters/ian-corvid/sitting.svg",
  17199. extra: 1400 / 1269,
  17200. bottom: 0.15
  17201. }
  17202. },
  17203. },
  17204. [
  17205. {
  17206. name: "Tiny Microw",
  17207. height: math.unit(1, "inch")
  17208. },
  17209. {
  17210. name: "Microw",
  17211. height: math.unit(6, "inches")
  17212. },
  17213. {
  17214. name: "Crow",
  17215. height: math.unit(7 + 1 / 12, "feet"),
  17216. default: true
  17217. },
  17218. {
  17219. name: "Macrow",
  17220. height: math.unit(176, "feet")
  17221. },
  17222. ]
  17223. ))
  17224. characterMakers.push(() => makeCharacter(
  17225. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17226. {
  17227. front: {
  17228. height: math.unit(5 + 7 / 12, "feet"),
  17229. weight: math.unit(147, "lb"),
  17230. name: "Front",
  17231. image: {
  17232. source: "./media/characters/natalie-kellon/front.svg",
  17233. extra: 1214 / 1141,
  17234. bottom: 0.02
  17235. }
  17236. },
  17237. },
  17238. [
  17239. {
  17240. name: "Micro",
  17241. height: math.unit(1 / 16, "inch")
  17242. },
  17243. {
  17244. name: "Tiny",
  17245. height: math.unit(4, "inches")
  17246. },
  17247. {
  17248. name: "Normal",
  17249. height: math.unit(5 + 7 / 12, "feet"),
  17250. default: true
  17251. },
  17252. {
  17253. name: "Amazon",
  17254. height: math.unit(12, "feet")
  17255. },
  17256. {
  17257. name: "Giantess",
  17258. height: math.unit(160, "meters")
  17259. },
  17260. {
  17261. name: "Titaness",
  17262. height: math.unit(800, "meters")
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17268. {
  17269. front: {
  17270. height: math.unit(6, "feet"),
  17271. weight: math.unit(150, "lb"),
  17272. name: "Front",
  17273. image: {
  17274. source: "./media/characters/alluria/front.svg",
  17275. extra: 806 / 738,
  17276. bottom: 0.01
  17277. }
  17278. },
  17279. side: {
  17280. height: math.unit(6, "feet"),
  17281. weight: math.unit(150, "lb"),
  17282. name: "Side",
  17283. image: {
  17284. source: "./media/characters/alluria/side.svg",
  17285. extra: 800 / 750,
  17286. }
  17287. },
  17288. back: {
  17289. height: math.unit(6, "feet"),
  17290. weight: math.unit(150, "lb"),
  17291. name: "Back",
  17292. image: {
  17293. source: "./media/characters/alluria/back.svg",
  17294. extra: 806 / 738,
  17295. }
  17296. },
  17297. frontMaid: {
  17298. height: math.unit(6, "feet"),
  17299. weight: math.unit(150, "lb"),
  17300. name: "Front (Maid)",
  17301. image: {
  17302. source: "./media/characters/alluria/front-maid.svg",
  17303. extra: 806 / 738,
  17304. bottom: 0.01
  17305. }
  17306. },
  17307. sideMaid: {
  17308. height: math.unit(6, "feet"),
  17309. weight: math.unit(150, "lb"),
  17310. name: "Side (Maid)",
  17311. image: {
  17312. source: "./media/characters/alluria/side-maid.svg",
  17313. extra: 800 / 750,
  17314. bottom: 0.005
  17315. }
  17316. },
  17317. backMaid: {
  17318. height: math.unit(6, "feet"),
  17319. weight: math.unit(150, "lb"),
  17320. name: "Back (Maid)",
  17321. image: {
  17322. source: "./media/characters/alluria/back-maid.svg",
  17323. extra: 806 / 738,
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Micro",
  17330. height: math.unit(6, "inches"),
  17331. default: true
  17332. },
  17333. ]
  17334. ))
  17335. characterMakers.push(() => makeCharacter(
  17336. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17337. {
  17338. front: {
  17339. height: math.unit(6, "feet"),
  17340. weight: math.unit(150, "lb"),
  17341. name: "Front",
  17342. image: {
  17343. source: "./media/characters/kyle/front.svg",
  17344. extra: 1069 / 962,
  17345. bottom: 77.228 / 1727.45
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Macro",
  17352. height: math.unit(150, "feet"),
  17353. default: true
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17359. {
  17360. front: {
  17361. height: math.unit(6, "feet"),
  17362. weight: math.unit(300, "lb"),
  17363. name: "Front",
  17364. image: {
  17365. source: "./media/characters/duncan/front.svg",
  17366. extra: 1650 / 1482,
  17367. bottom: 0.05
  17368. }
  17369. },
  17370. },
  17371. [
  17372. {
  17373. name: "Macro",
  17374. height: math.unit(100, "feet"),
  17375. default: true
  17376. },
  17377. ]
  17378. ))
  17379. characterMakers.push(() => makeCharacter(
  17380. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17381. {
  17382. front: {
  17383. height: math.unit(5 + 4 / 12, "feet"),
  17384. weight: math.unit(220, "lb"),
  17385. name: "Front",
  17386. image: {
  17387. source: "./media/characters/memory/front.svg",
  17388. extra: 3641 / 3545,
  17389. bottom: 0.03
  17390. }
  17391. },
  17392. back: {
  17393. height: math.unit(5 + 4 / 12, "feet"),
  17394. weight: math.unit(220, "lb"),
  17395. name: "Back",
  17396. image: {
  17397. source: "./media/characters/memory/back.svg",
  17398. extra: 3641 / 3545,
  17399. bottom: 0.025
  17400. }
  17401. },
  17402. frontSkirt: {
  17403. height: math.unit(5 + 4 / 12, "feet"),
  17404. weight: math.unit(220, "lb"),
  17405. name: "Front (Skirt)",
  17406. image: {
  17407. source: "./media/characters/memory/front-skirt.svg",
  17408. extra: 3641 / 3545,
  17409. bottom: 0.03
  17410. }
  17411. },
  17412. frontDress: {
  17413. height: math.unit(5 + 4 / 12, "feet"),
  17414. weight: math.unit(220, "lb"),
  17415. name: "Front (Dress)",
  17416. image: {
  17417. source: "./media/characters/memory/front-dress.svg",
  17418. extra: 3641 / 3545,
  17419. bottom: 0.03
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Micro",
  17426. height: math.unit(6, "inches"),
  17427. default: true
  17428. },
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(5 + 4 / 12, "feet")
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(4 + 11 / 12, "feet"),
  17440. weight: math.unit(100, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/luno/front.svg",
  17444. extra: 1535 / 1487,
  17445. bottom: 0.03
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Micro",
  17452. height: math.unit(3, "inches")
  17453. },
  17454. {
  17455. name: "Normal",
  17456. height: math.unit(4 + 11 / 12, "feet"),
  17457. default: true
  17458. },
  17459. {
  17460. name: "Macro",
  17461. height: math.unit(300, "feet")
  17462. },
  17463. {
  17464. name: "Megamacro",
  17465. height: math.unit(700, "miles")
  17466. },
  17467. ]
  17468. ))
  17469. characterMakers.push(() => makeCharacter(
  17470. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17471. {
  17472. front: {
  17473. height: math.unit(6 + 2 / 12, "feet"),
  17474. weight: math.unit(170, "lb"),
  17475. name: "Front",
  17476. image: {
  17477. source: "./media/characters/jamesy/front.svg",
  17478. extra: 440 / 382,
  17479. bottom: 0.005
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Micro",
  17486. height: math.unit(3, "inches")
  17487. },
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(6 + 2 / 12, "feet"),
  17491. default: true
  17492. },
  17493. {
  17494. name: "Macro",
  17495. height: math.unit(300, "feet")
  17496. },
  17497. {
  17498. name: "Megamacro",
  17499. height: math.unit(700, "miles")
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(6, "feet"),
  17508. weight: math.unit(160, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/mark/front.svg",
  17512. extra: 3300 / 3100,
  17513. bottom: 136.42 / 3440.47
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Macro",
  17520. height: math.unit(120, "meters")
  17521. },
  17522. {
  17523. name: "Bigger Macro",
  17524. height: math.unit(350, "meters")
  17525. },
  17526. {
  17527. name: "Megamacro",
  17528. height: math.unit(8, "km"),
  17529. default: true
  17530. },
  17531. {
  17532. name: "Continental",
  17533. height: math.unit(4550, "km")
  17534. },
  17535. {
  17536. name: "Planetary",
  17537. height: math.unit(65000, "km")
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17543. {
  17544. front: {
  17545. height: math.unit(6, "feet"),
  17546. weight: math.unit(400, "lb"),
  17547. name: "Front",
  17548. image: {
  17549. source: "./media/characters/mac/front.svg",
  17550. extra: 1048 / 987.7,
  17551. bottom: 60 / 1107.6,
  17552. }
  17553. },
  17554. },
  17555. [
  17556. {
  17557. name: "Macro",
  17558. height: math.unit(500, "feet"),
  17559. default: true
  17560. },
  17561. ]
  17562. ))
  17563. characterMakers.push(() => makeCharacter(
  17564. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17565. {
  17566. front: {
  17567. height: math.unit(5 + 2 / 12, "feet"),
  17568. weight: math.unit(190, "lb"),
  17569. name: "Front",
  17570. image: {
  17571. source: "./media/characters/bari/front.svg",
  17572. extra: 3156 / 2880,
  17573. bottom: 0.03
  17574. }
  17575. },
  17576. back: {
  17577. height: math.unit(5 + 2 / 12, "feet"),
  17578. weight: math.unit(190, "lb"),
  17579. name: "Back",
  17580. image: {
  17581. source: "./media/characters/bari/back.svg",
  17582. extra: 3260 / 2834,
  17583. bottom: 0.025
  17584. }
  17585. },
  17586. frontPlush: {
  17587. height: math.unit(5 + 2 / 12, "feet"),
  17588. weight: math.unit(190, "lb"),
  17589. name: "Front (Plush)",
  17590. image: {
  17591. source: "./media/characters/bari/front-plush.svg",
  17592. extra: 1112 / 1061,
  17593. bottom: 0.002
  17594. }
  17595. },
  17596. },
  17597. [
  17598. {
  17599. name: "Micro",
  17600. height: math.unit(3, "inches")
  17601. },
  17602. {
  17603. name: "Normal",
  17604. height: math.unit(5 + 2 / 12, "feet"),
  17605. default: true
  17606. },
  17607. {
  17608. name: "Macro",
  17609. height: math.unit(20, "feet")
  17610. },
  17611. ]
  17612. ))
  17613. characterMakers.push(() => makeCharacter(
  17614. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17615. {
  17616. front: {
  17617. height: math.unit(6 + 1 / 12, "feet"),
  17618. weight: math.unit(275, "lb"),
  17619. name: "Front",
  17620. image: {
  17621. source: "./media/characters/hunter-misha-raven/front.svg"
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Mortal",
  17628. height: math.unit(6 + 1 / 12, "feet")
  17629. },
  17630. {
  17631. name: "Divine",
  17632. height: math.unit(1.12134e34, "parsecs"),
  17633. default: true
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17639. {
  17640. front: {
  17641. height: math.unit(6 + 3 / 12, "feet"),
  17642. weight: math.unit(220, "lb"),
  17643. name: "Front",
  17644. image: {
  17645. source: "./media/characters/max-calore/front.svg",
  17646. extra: 1700 / 1648,
  17647. bottom: 0.01
  17648. }
  17649. },
  17650. back: {
  17651. height: math.unit(6 + 3 / 12, "feet"),
  17652. weight: math.unit(220, "lb"),
  17653. name: "Back",
  17654. image: {
  17655. source: "./media/characters/max-calore/back.svg",
  17656. extra: 1700 / 1648,
  17657. bottom: 0.01
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Normal",
  17664. height: math.unit(6 + 3 / 12, "feet"),
  17665. default: true
  17666. },
  17667. ]
  17668. ))
  17669. characterMakers.push(() => makeCharacter(
  17670. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17671. {
  17672. side: {
  17673. height: math.unit(2 + 8 / 12, "feet"),
  17674. weight: math.unit(99, "lb"),
  17675. name: "Side",
  17676. image: {
  17677. source: "./media/characters/aspen/side.svg",
  17678. extra: 152 / 138,
  17679. bottom: 0.032
  17680. }
  17681. },
  17682. },
  17683. [
  17684. {
  17685. name: "Normal",
  17686. height: math.unit(2 + 8 / 12, "feet"),
  17687. default: true
  17688. },
  17689. ]
  17690. ))
  17691. characterMakers.push(() => makeCharacter(
  17692. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17693. {
  17694. side: {
  17695. height: math.unit(3 + 2 / 12, "feet"),
  17696. weight: math.unit(224, "lb"),
  17697. name: "Side",
  17698. image: {
  17699. source: "./media/characters/sheila-feral-wolf/side.svg",
  17700. extra: 179 / 166,
  17701. bottom: 0.03
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(3 + 2 / 12, "feet"),
  17709. default: true
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17715. {
  17716. side: {
  17717. height: math.unit(1 + 9 / 12, "feet"),
  17718. weight: math.unit(38, "lb"),
  17719. name: "Side",
  17720. image: {
  17721. source: "./media/characters/michelle/side.svg",
  17722. extra: 147 / 136.7,
  17723. bottom: 0.03
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(1 + 9 / 12, "feet"),
  17731. default: true
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17737. {
  17738. front: {
  17739. height: math.unit(1.54, "feet"),
  17740. weight: math.unit(50, "lb"),
  17741. name: "Front",
  17742. image: {
  17743. source: "./media/characters/nino/front.svg"
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(1.54, "feet"),
  17751. default: true
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(1.49, "feet"),
  17760. weight: math.unit(45, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/viola/front.svg"
  17764. }
  17765. },
  17766. },
  17767. [
  17768. {
  17769. name: "Normal",
  17770. height: math.unit(1.49, "feet"),
  17771. default: true
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17777. {
  17778. front: {
  17779. height: math.unit(6 + 5 / 12, "feet"),
  17780. weight: math.unit(580, "lb"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/atlas/front.svg",
  17784. extra: 298.5 / 290,
  17785. bottom: 0.015
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(6 + 5 / 12, "feet"),
  17793. default: true
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17799. {
  17800. side: {
  17801. height: math.unit(15.6, "inches"),
  17802. weight: math.unit(10, "lb"),
  17803. name: "Side",
  17804. image: {
  17805. source: "./media/characters/davy/side.svg",
  17806. extra: 200 / 170,
  17807. bottom: 0.01
  17808. }
  17809. },
  17810. },
  17811. [
  17812. {
  17813. name: "Normal",
  17814. height: math.unit(15.6, "inches"),
  17815. default: true
  17816. },
  17817. ]
  17818. ))
  17819. characterMakers.push(() => makeCharacter(
  17820. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17821. {
  17822. side: {
  17823. height: math.unit(4 + 8 / 12, "feet"),
  17824. weight: math.unit(166, "lb"),
  17825. name: "Side",
  17826. image: {
  17827. source: "./media/characters/fiona/side.svg",
  17828. extra: 232 / 220,
  17829. bottom: 0.03
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Normal",
  17836. height: math.unit(4 + 8 / 12, "feet"),
  17837. default: true
  17838. },
  17839. ]
  17840. ))
  17841. characterMakers.push(() => makeCharacter(
  17842. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17843. {
  17844. front: {
  17845. height: math.unit(26, "inches"),
  17846. weight: math.unit(35, "lb"),
  17847. name: "Front",
  17848. image: {
  17849. source: "./media/characters/lyla/front.svg",
  17850. bottom: 0.1
  17851. }
  17852. },
  17853. },
  17854. [
  17855. {
  17856. name: "Normal",
  17857. height: math.unit(3, "feet"),
  17858. default: true
  17859. },
  17860. ]
  17861. ))
  17862. characterMakers.push(() => makeCharacter(
  17863. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17864. {
  17865. side: {
  17866. height: math.unit(1.8, "feet"),
  17867. weight: math.unit(44, "lb"),
  17868. name: "Side",
  17869. image: {
  17870. source: "./media/characters/perseus/side.svg",
  17871. bottom: 0.21
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Normal",
  17878. height: math.unit(1.8, "feet"),
  17879. default: true
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17885. {
  17886. side: {
  17887. height: math.unit(4 + 2 / 12, "feet"),
  17888. weight: math.unit(20, "lb"),
  17889. name: "Side",
  17890. image: {
  17891. source: "./media/characters/remus/side.svg"
  17892. }
  17893. },
  17894. },
  17895. [
  17896. {
  17897. name: "Normal",
  17898. height: math.unit(4 + 2 / 12, "feet"),
  17899. default: true
  17900. },
  17901. ]
  17902. ))
  17903. characterMakers.push(() => makeCharacter(
  17904. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17905. {
  17906. front: {
  17907. height: math.unit(4 + 11 / 12, "feet"),
  17908. weight: math.unit(114, "lb"),
  17909. name: "Front",
  17910. image: {
  17911. source: "./media/characters/raf/front.svg",
  17912. extra: 1504/1339,
  17913. bottom: 26/1530
  17914. }
  17915. },
  17916. side: {
  17917. height: math.unit(4 + 11 / 12, "feet"),
  17918. weight: math.unit(114, "lb"),
  17919. name: "Side",
  17920. image: {
  17921. source: "./media/characters/raf/side.svg",
  17922. extra: 1466/1316,
  17923. bottom: 29/1495
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Micro",
  17930. height: math.unit(2, "inches")
  17931. },
  17932. {
  17933. name: "Normal",
  17934. height: math.unit(4 + 11 / 12, "feet"),
  17935. default: true
  17936. },
  17937. {
  17938. name: "Macro",
  17939. height: math.unit(70, "feet")
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17945. {
  17946. front: {
  17947. height: math.unit(1.5, "meters"),
  17948. weight: math.unit(68, "kg"),
  17949. name: "Front",
  17950. image: {
  17951. source: "./media/characters/liam-einarr/front.svg",
  17952. extra: 2822 / 2666
  17953. }
  17954. },
  17955. back: {
  17956. height: math.unit(1.5, "meters"),
  17957. weight: math.unit(68, "kg"),
  17958. name: "Back",
  17959. image: {
  17960. source: "./media/characters/liam-einarr/back.svg",
  17961. extra: 2822 / 2666,
  17962. bottom: 0.015
  17963. }
  17964. },
  17965. },
  17966. [
  17967. {
  17968. name: "Normal",
  17969. height: math.unit(1.5, "meters"),
  17970. default: true
  17971. },
  17972. {
  17973. name: "Macro",
  17974. height: math.unit(150, "meters")
  17975. },
  17976. {
  17977. name: "Megamacro",
  17978. height: math.unit(35, "km")
  17979. },
  17980. ]
  17981. ))
  17982. characterMakers.push(() => makeCharacter(
  17983. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17984. {
  17985. front: {
  17986. height: math.unit(6, "feet"),
  17987. weight: math.unit(75, "kg"),
  17988. name: "Front",
  17989. image: {
  17990. source: "./media/characters/linda/front.svg",
  17991. extra: 930 / 874,
  17992. bottom: 0.004
  17993. }
  17994. },
  17995. },
  17996. [
  17997. {
  17998. name: "Normal",
  17999. height: math.unit(6, "feet"),
  18000. default: true
  18001. },
  18002. ]
  18003. ))
  18004. characterMakers.push(() => makeCharacter(
  18005. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18006. {
  18007. front: {
  18008. height: math.unit(6 + 8 / 12, "feet"),
  18009. weight: math.unit(220, "lb"),
  18010. name: "Front",
  18011. image: {
  18012. source: "./media/characters/caylex/front.svg",
  18013. extra: 821 / 772,
  18014. bottom: 0.07
  18015. }
  18016. },
  18017. back: {
  18018. height: math.unit(6 + 8 / 12, "feet"),
  18019. weight: math.unit(220, "lb"),
  18020. name: "Back",
  18021. image: {
  18022. source: "./media/characters/caylex/back.svg",
  18023. extra: 821 / 772,
  18024. bottom: 0.022
  18025. }
  18026. },
  18027. hand: {
  18028. height: math.unit(1.25, "feet"),
  18029. name: "Hand",
  18030. image: {
  18031. source: "./media/characters/caylex/hand.svg"
  18032. }
  18033. },
  18034. foot: {
  18035. height: math.unit(1.6, "feet"),
  18036. name: "Foot",
  18037. image: {
  18038. source: "./media/characters/caylex/foot.svg"
  18039. }
  18040. },
  18041. armored: {
  18042. height: math.unit(6 + 8 / 12, "feet"),
  18043. weight: math.unit(250, "lb"),
  18044. name: "Armored",
  18045. image: {
  18046. source: "./media/characters/caylex/armored.svg",
  18047. extra: 1420 / 1310,
  18048. bottom: 0.045
  18049. }
  18050. },
  18051. },
  18052. [
  18053. {
  18054. name: "Normal",
  18055. height: math.unit(6 + 8 / 12, "feet"),
  18056. default: true
  18057. },
  18058. {
  18059. name: "Normal+",
  18060. height: math.unit(12, "feet")
  18061. },
  18062. ]
  18063. ))
  18064. characterMakers.push(() => makeCharacter(
  18065. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18066. {
  18067. front: {
  18068. height: math.unit(7 + 6 / 12, "feet"),
  18069. weight: math.unit(288, "lb"),
  18070. name: "Front",
  18071. image: {
  18072. source: "./media/characters/alana/front.svg",
  18073. extra: 679 / 653,
  18074. bottom: 22.5 / 701
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(7 + 6 / 12, "feet")
  18082. },
  18083. {
  18084. name: "Large",
  18085. height: math.unit(50, "feet")
  18086. },
  18087. {
  18088. name: "Macro",
  18089. height: math.unit(100, "feet"),
  18090. default: true
  18091. },
  18092. {
  18093. name: "Macro+",
  18094. height: math.unit(200, "feet")
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(6 + 1 / 12, "feet"),
  18103. weight: math.unit(210, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/hasani/front.svg",
  18107. extra: 244 / 232,
  18108. bottom: 0.01
  18109. }
  18110. },
  18111. back: {
  18112. height: math.unit(6 + 1 / 12, "feet"),
  18113. weight: math.unit(210, "lb"),
  18114. name: "Back",
  18115. image: {
  18116. source: "./media/characters/hasani/back.svg",
  18117. extra: 244 / 232,
  18118. bottom: 0.01
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(6 + 1 / 12, "feet")
  18126. },
  18127. {
  18128. name: "Macro",
  18129. height: math.unit(175, "feet"),
  18130. default: true
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(1.82, "meters"),
  18139. weight: math.unit(140, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/nita/front.svg",
  18143. extra: 2473 / 2363,
  18144. bottom: 0.01
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(1.82, "m")
  18152. },
  18153. {
  18154. name: "Macro",
  18155. height: math.unit(300, "m")
  18156. },
  18157. {
  18158. name: "Mistake Canon",
  18159. height: math.unit(0.5, "miles"),
  18160. default: true
  18161. },
  18162. {
  18163. name: "Big Mistake",
  18164. height: math.unit(13, "miles")
  18165. },
  18166. {
  18167. name: "Playing God",
  18168. height: math.unit(2450, "miles")
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18174. {
  18175. front: {
  18176. height: math.unit(4, "feet"),
  18177. weight: math.unit(120, "lb"),
  18178. name: "Front",
  18179. image: {
  18180. source: "./media/characters/shiriko/front.svg",
  18181. extra: 970/934,
  18182. bottom: 5/975
  18183. }
  18184. },
  18185. },
  18186. [
  18187. {
  18188. name: "Normal",
  18189. height: math.unit(4, "feet"),
  18190. default: true
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18196. {
  18197. front: {
  18198. height: math.unit(6, "feet"),
  18199. name: "front",
  18200. image: {
  18201. source: "./media/characters/deja/front.svg",
  18202. extra: 926 / 840,
  18203. bottom: 0.07
  18204. }
  18205. },
  18206. },
  18207. [
  18208. {
  18209. name: "Planck Length",
  18210. height: math.unit(1.6e-35, "meters")
  18211. },
  18212. {
  18213. name: "Normal",
  18214. height: math.unit(30.48, "meters"),
  18215. default: true
  18216. },
  18217. {
  18218. name: "Universal",
  18219. height: math.unit(8.8e26, "meters")
  18220. },
  18221. ]
  18222. ))
  18223. characterMakers.push(() => makeCharacter(
  18224. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18225. {
  18226. side: {
  18227. height: math.unit(8, "feet"),
  18228. weight: math.unit(6300, "lb"),
  18229. name: "Side",
  18230. image: {
  18231. source: "./media/characters/anima/side.svg",
  18232. bottom: 0.035
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Normal",
  18239. height: math.unit(8, "feet"),
  18240. default: true
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18246. {
  18247. front: {
  18248. height: math.unit(8, "feet"),
  18249. weight: math.unit(350, "lb"),
  18250. name: "Front",
  18251. image: {
  18252. source: "./media/characters/bianca/front.svg",
  18253. extra: 234 / 225,
  18254. bottom: 0.03
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Normal",
  18261. height: math.unit(8, "feet"),
  18262. default: true
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18268. {
  18269. front: {
  18270. height: math.unit(11 + 5/12, "feet"),
  18271. weight: math.unit(1200, "lb"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/adinia/front.svg",
  18275. extra: 1767/1641,
  18276. bottom: 44/1811
  18277. },
  18278. extraAttributes: {
  18279. "energyIntake": {
  18280. name: "Energy Intake",
  18281. power: 3,
  18282. type: "energy",
  18283. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18284. },
  18285. }
  18286. },
  18287. back: {
  18288. height: math.unit(11 + 5/12, "feet"),
  18289. weight: math.unit(1200, "lb"),
  18290. name: "Back",
  18291. image: {
  18292. source: "./media/characters/adinia/back.svg",
  18293. extra: 1834/1684,
  18294. bottom: 14/1848
  18295. },
  18296. extraAttributes: {
  18297. "energyIntake": {
  18298. name: "Energy Intake",
  18299. power: 3,
  18300. type: "energy",
  18301. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18302. },
  18303. }
  18304. },
  18305. maw: {
  18306. height: math.unit(3.79, "feet"),
  18307. name: "Maw",
  18308. image: {
  18309. source: "./media/characters/adinia/maw.svg"
  18310. }
  18311. },
  18312. rump: {
  18313. height: math.unit(4.6, "feet"),
  18314. name: "Rump",
  18315. image: {
  18316. source: "./media/characters/adinia/rump.svg"
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(11 + 5 / 12, "feet"),
  18324. default: true
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18330. {
  18331. front: {
  18332. height: math.unit(3, "meters"),
  18333. weight: math.unit(200, "kg"),
  18334. name: "Front",
  18335. image: {
  18336. source: "./media/characters/lykasa/front.svg",
  18337. extra: 1076 / 976,
  18338. bottom: 0.06
  18339. }
  18340. },
  18341. },
  18342. [
  18343. {
  18344. name: "Normal",
  18345. height: math.unit(3, "meters")
  18346. },
  18347. {
  18348. name: "Kaiju",
  18349. height: math.unit(120, "meters"),
  18350. default: true
  18351. },
  18352. {
  18353. name: "Mega Kaiju",
  18354. height: math.unit(240, "km")
  18355. },
  18356. {
  18357. name: "Giga Kaiju",
  18358. height: math.unit(400, "megameters")
  18359. },
  18360. {
  18361. name: "Tera Kaiju",
  18362. height: math.unit(800, "gigameters")
  18363. },
  18364. {
  18365. name: "Kaiju Dragon Goddess",
  18366. height: math.unit(26, "zettaparsecs")
  18367. },
  18368. ]
  18369. ))
  18370. characterMakers.push(() => makeCharacter(
  18371. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18372. {
  18373. side: {
  18374. height: math.unit(283 / 124 * 6, "feet"),
  18375. weight: math.unit(35000, "lb"),
  18376. name: "Side",
  18377. image: {
  18378. source: "./media/characters/malfaren/side.svg",
  18379. extra: 1310/529,
  18380. bottom: 24/1334
  18381. }
  18382. },
  18383. front: {
  18384. height: math.unit(22.36, "feet"),
  18385. weight: math.unit(35000, "lb"),
  18386. name: "Front",
  18387. image: {
  18388. source: "./media/characters/malfaren/front.svg",
  18389. extra: 1237/1115,
  18390. bottom: 32/1269
  18391. }
  18392. },
  18393. maw: {
  18394. height: math.unit(6.9, "feet"),
  18395. name: "Maw",
  18396. image: {
  18397. source: "./media/characters/malfaren/maw.svg"
  18398. }
  18399. },
  18400. dick: {
  18401. height: math.unit(6.19, "feet"),
  18402. name: "Dick",
  18403. image: {
  18404. source: "./media/characters/malfaren/dick.svg"
  18405. }
  18406. },
  18407. eye: {
  18408. height: math.unit(0.69, "feet"),
  18409. name: "Eye",
  18410. image: {
  18411. source: "./media/characters/malfaren/eye.svg"
  18412. }
  18413. },
  18414. },
  18415. [
  18416. {
  18417. name: "Big",
  18418. height: math.unit(283 / 162 * 6, "feet"),
  18419. },
  18420. {
  18421. name: "Bigger",
  18422. height: math.unit(283 / 124 * 6, "feet")
  18423. },
  18424. {
  18425. name: "Massive",
  18426. height: math.unit(283 / 92 * 6, "feet"),
  18427. default: true
  18428. },
  18429. {
  18430. name: "👀💦",
  18431. height: math.unit(283 / 73 * 6, "feet"),
  18432. },
  18433. ]
  18434. ))
  18435. characterMakers.push(() => makeCharacter(
  18436. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18437. {
  18438. front: {
  18439. height: math.unit(1.7, "m"),
  18440. weight: math.unit(70, "kg"),
  18441. name: "Front",
  18442. image: {
  18443. source: "./media/characters/kernel/front.svg",
  18444. extra: 222 / 210,
  18445. bottom: 0.007
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Nano",
  18452. height: math.unit(17, "micrometers")
  18453. },
  18454. {
  18455. name: "Micro",
  18456. height: math.unit(1.7, "mm")
  18457. },
  18458. {
  18459. name: "Small",
  18460. height: math.unit(1.7, "cm")
  18461. },
  18462. {
  18463. name: "Normal",
  18464. height: math.unit(1.7, "m"),
  18465. default: true
  18466. },
  18467. ]
  18468. ))
  18469. characterMakers.push(() => makeCharacter(
  18470. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18471. {
  18472. front: {
  18473. height: math.unit(1.75, "meters"),
  18474. weight: math.unit(65, "kg"),
  18475. name: "Front",
  18476. image: {
  18477. source: "./media/characters/jayne-folest/front.svg",
  18478. extra: 2115 / 2007,
  18479. bottom: 0.02
  18480. }
  18481. },
  18482. back: {
  18483. height: math.unit(1.75, "meters"),
  18484. weight: math.unit(65, "kg"),
  18485. name: "Back",
  18486. image: {
  18487. source: "./media/characters/jayne-folest/back.svg",
  18488. extra: 2115 / 2007,
  18489. bottom: 0.005
  18490. }
  18491. },
  18492. frontClothed: {
  18493. height: math.unit(1.75, "meters"),
  18494. weight: math.unit(65, "kg"),
  18495. name: "Front (Clothed)",
  18496. image: {
  18497. source: "./media/characters/jayne-folest/front-clothed.svg",
  18498. extra: 2115 / 2007,
  18499. bottom: 0.035
  18500. }
  18501. },
  18502. hand: {
  18503. height: math.unit(1 / 1.260, "feet"),
  18504. name: "Hand",
  18505. image: {
  18506. source: "./media/characters/jayne-folest/hand.svg"
  18507. }
  18508. },
  18509. foot: {
  18510. height: math.unit(1 / 0.918, "feet"),
  18511. name: "Foot",
  18512. image: {
  18513. source: "./media/characters/jayne-folest/foot.svg"
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Micro",
  18520. height: math.unit(4, "cm")
  18521. },
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(1.75, "meters")
  18525. },
  18526. {
  18527. name: "Macro",
  18528. height: math.unit(47.5, "meters"),
  18529. default: true
  18530. },
  18531. ]
  18532. ))
  18533. characterMakers.push(() => makeCharacter(
  18534. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18535. {
  18536. front: {
  18537. height: math.unit(180, "cm"),
  18538. weight: math.unit(70, "kg"),
  18539. name: "Front",
  18540. image: {
  18541. source: "./media/characters/algier/front.svg",
  18542. extra: 596 / 572,
  18543. bottom: 0.04
  18544. }
  18545. },
  18546. back: {
  18547. height: math.unit(180, "cm"),
  18548. weight: math.unit(70, "kg"),
  18549. name: "Back",
  18550. image: {
  18551. source: "./media/characters/algier/back.svg",
  18552. extra: 596 / 572,
  18553. bottom: 0.025
  18554. }
  18555. },
  18556. frontdressed: {
  18557. height: math.unit(180, "cm"),
  18558. weight: math.unit(150, "kg"),
  18559. name: "Front-dressed",
  18560. image: {
  18561. source: "./media/characters/algier/front-dressed.svg",
  18562. extra: 596 / 572,
  18563. bottom: 0.038
  18564. }
  18565. },
  18566. },
  18567. [
  18568. {
  18569. name: "Micro",
  18570. height: math.unit(5, "cm")
  18571. },
  18572. {
  18573. name: "Normal",
  18574. height: math.unit(180, "cm"),
  18575. default: true
  18576. },
  18577. {
  18578. name: "Macro",
  18579. height: math.unit(64, "m")
  18580. },
  18581. ]
  18582. ))
  18583. characterMakers.push(() => makeCharacter(
  18584. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18585. {
  18586. upright: {
  18587. height: math.unit(7, "feet"),
  18588. weight: math.unit(300, "lb"),
  18589. name: "Upright",
  18590. image: {
  18591. source: "./media/characters/pretzel/upright.svg",
  18592. extra: 534 / 522,
  18593. bottom: 0.065
  18594. }
  18595. },
  18596. sprawling: {
  18597. height: math.unit(3.75, "feet"),
  18598. weight: math.unit(300, "lb"),
  18599. name: "Sprawling",
  18600. image: {
  18601. source: "./media/characters/pretzel/sprawling.svg",
  18602. extra: 314 / 281,
  18603. bottom: 0.1
  18604. }
  18605. },
  18606. tongue: {
  18607. height: math.unit(2, "feet"),
  18608. name: "Tongue",
  18609. image: {
  18610. source: "./media/characters/pretzel/tongue.svg"
  18611. }
  18612. },
  18613. },
  18614. [
  18615. {
  18616. name: "Normal",
  18617. height: math.unit(7, "feet"),
  18618. default: true
  18619. },
  18620. {
  18621. name: "Oversized",
  18622. height: math.unit(15, "feet")
  18623. },
  18624. {
  18625. name: "Huge",
  18626. height: math.unit(30, "feet")
  18627. },
  18628. {
  18629. name: "Macro",
  18630. height: math.unit(250, "feet")
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18636. {
  18637. sideFront: {
  18638. height: math.unit(5 + 2 / 12, "feet"),
  18639. weight: math.unit(120, "lb"),
  18640. name: "Front Side",
  18641. image: {
  18642. source: "./media/characters/roxi/side-front.svg",
  18643. extra: 2924 / 2717,
  18644. bottom: 0.08
  18645. }
  18646. },
  18647. sideBack: {
  18648. height: math.unit(5 + 2 / 12, "feet"),
  18649. weight: math.unit(120, "lb"),
  18650. name: "Back Side",
  18651. image: {
  18652. source: "./media/characters/roxi/side-back.svg",
  18653. extra: 2904 / 2693,
  18654. bottom: 0.06
  18655. }
  18656. },
  18657. front: {
  18658. height: math.unit(5 + 2 / 12, "feet"),
  18659. weight: math.unit(120, "lb"),
  18660. name: "Front",
  18661. image: {
  18662. source: "./media/characters/roxi/front.svg",
  18663. extra: 2028 / 1907,
  18664. bottom: 0.01
  18665. }
  18666. },
  18667. frontAlt: {
  18668. height: math.unit(5 + 2 / 12, "feet"),
  18669. weight: math.unit(120, "lb"),
  18670. name: "Front (Alt)",
  18671. image: {
  18672. source: "./media/characters/roxi/front-alt.svg",
  18673. extra: 1828 / 1798,
  18674. bottom: 0.01
  18675. }
  18676. },
  18677. sitting: {
  18678. height: math.unit(2.8, "feet"),
  18679. weight: math.unit(120, "lb"),
  18680. name: "Sitting",
  18681. image: {
  18682. source: "./media/characters/roxi/sitting.svg",
  18683. extra: 2660 / 2462,
  18684. bottom: 0.1
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(5 + 2 / 12, "feet"),
  18692. default: true
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18698. {
  18699. side: {
  18700. height: math.unit(55, "feet"),
  18701. weight: math.unit(153, "tons"),
  18702. name: "Side",
  18703. image: {
  18704. source: "./media/characters/shadow/side.svg",
  18705. extra: 701 / 628,
  18706. bottom: 0.02
  18707. }
  18708. },
  18709. flying: {
  18710. height: math.unit(145, "feet"),
  18711. weight: math.unit(153, "tons"),
  18712. name: "Flying",
  18713. image: {
  18714. source: "./media/characters/shadow/flying.svg"
  18715. }
  18716. },
  18717. },
  18718. [
  18719. {
  18720. name: "Normal",
  18721. height: math.unit(55, "feet"),
  18722. default: true
  18723. },
  18724. ]
  18725. ))
  18726. characterMakers.push(() => makeCharacter(
  18727. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18728. {
  18729. front: {
  18730. height: math.unit(6, "feet"),
  18731. weight: math.unit(200, "lb"),
  18732. name: "Front",
  18733. image: {
  18734. source: "./media/characters/marcie/front.svg",
  18735. extra: 960 / 876,
  18736. bottom: 58 / 1017.87
  18737. }
  18738. },
  18739. },
  18740. [
  18741. {
  18742. name: "Macro",
  18743. height: math.unit(1, "mile"),
  18744. default: true
  18745. },
  18746. ]
  18747. ))
  18748. characterMakers.push(() => makeCharacter(
  18749. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18750. {
  18751. front: {
  18752. height: math.unit(7, "feet"),
  18753. weight: math.unit(200, "lb"),
  18754. name: "Front",
  18755. image: {
  18756. source: "./media/characters/kachina/front.svg",
  18757. extra: 1290.68 / 1119,
  18758. bottom: 36.5 / 1327.18
  18759. }
  18760. },
  18761. },
  18762. [
  18763. {
  18764. name: "Normal",
  18765. height: math.unit(7, "feet"),
  18766. default: true
  18767. },
  18768. ]
  18769. ))
  18770. characterMakers.push(() => makeCharacter(
  18771. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18772. {
  18773. looking: {
  18774. height: math.unit(2, "meters"),
  18775. weight: math.unit(300, "kg"),
  18776. name: "Looking",
  18777. image: {
  18778. source: "./media/characters/kash/looking.svg",
  18779. extra: 474 / 344,
  18780. bottom: 0.03
  18781. }
  18782. },
  18783. side: {
  18784. height: math.unit(2, "meters"),
  18785. weight: math.unit(300, "kg"),
  18786. name: "Side",
  18787. image: {
  18788. source: "./media/characters/kash/side.svg",
  18789. extra: 302 / 251,
  18790. bottom: 0.03
  18791. }
  18792. },
  18793. front: {
  18794. height: math.unit(2, "meters"),
  18795. weight: math.unit(300, "kg"),
  18796. name: "Front",
  18797. image: {
  18798. source: "./media/characters/kash/front.svg",
  18799. extra: 495 / 360,
  18800. bottom: 0.015
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Normal",
  18807. height: math.unit(2, "meters"),
  18808. default: true
  18809. },
  18810. {
  18811. name: "Big",
  18812. height: math.unit(3, "meters")
  18813. },
  18814. {
  18815. name: "Large",
  18816. height: math.unit(5, "meters")
  18817. },
  18818. ]
  18819. ))
  18820. characterMakers.push(() => makeCharacter(
  18821. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18822. {
  18823. feeding: {
  18824. height: math.unit(6.7, "feet"),
  18825. weight: math.unit(350, "lb"),
  18826. name: "Feeding",
  18827. image: {
  18828. source: "./media/characters/lalim/feeding.svg",
  18829. }
  18830. },
  18831. },
  18832. [
  18833. {
  18834. name: "Normal",
  18835. height: math.unit(6.7, "feet"),
  18836. default: true
  18837. },
  18838. ]
  18839. ))
  18840. characterMakers.push(() => makeCharacter(
  18841. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18842. {
  18843. front: {
  18844. height: math.unit(9.5, "feet"),
  18845. weight: math.unit(600, "lb"),
  18846. name: "Front",
  18847. image: {
  18848. source: "./media/characters/de'vout/front.svg",
  18849. extra: 1443 / 1328,
  18850. bottom: 0.025
  18851. }
  18852. },
  18853. back: {
  18854. height: math.unit(9.5, "feet"),
  18855. weight: math.unit(600, "lb"),
  18856. name: "Back",
  18857. image: {
  18858. source: "./media/characters/de'vout/back.svg",
  18859. extra: 1443 / 1328
  18860. }
  18861. },
  18862. frontDressed: {
  18863. height: math.unit(9.5, "feet"),
  18864. weight: math.unit(600, "lb"),
  18865. name: "Front (Dressed",
  18866. image: {
  18867. source: "./media/characters/de'vout/front-dressed.svg",
  18868. extra: 1443 / 1328,
  18869. bottom: 0.025
  18870. }
  18871. },
  18872. backDressed: {
  18873. height: math.unit(9.5, "feet"),
  18874. weight: math.unit(600, "lb"),
  18875. name: "Back (Dressed",
  18876. image: {
  18877. source: "./media/characters/de'vout/back-dressed.svg",
  18878. extra: 1443 / 1328
  18879. }
  18880. },
  18881. },
  18882. [
  18883. {
  18884. name: "Normal",
  18885. height: math.unit(9.5, "feet"),
  18886. default: true
  18887. },
  18888. ]
  18889. ))
  18890. characterMakers.push(() => makeCharacter(
  18891. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18892. {
  18893. front: {
  18894. height: math.unit(8, "feet"),
  18895. weight: math.unit(225, "lb"),
  18896. name: "Front",
  18897. image: {
  18898. source: "./media/characters/talana/front.svg",
  18899. extra: 1410 / 1300,
  18900. bottom: 0.015
  18901. }
  18902. },
  18903. frontDressed: {
  18904. height: math.unit(8, "feet"),
  18905. weight: math.unit(225, "lb"),
  18906. name: "Front (Dressed",
  18907. image: {
  18908. source: "./media/characters/talana/front-dressed.svg",
  18909. extra: 1410 / 1300,
  18910. bottom: 0.015
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(8, "feet"),
  18918. default: true
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18924. {
  18925. side: {
  18926. height: math.unit(7.2, "feet"),
  18927. weight: math.unit(150, "lb"),
  18928. name: "Side",
  18929. image: {
  18930. source: "./media/characters/xeauvok/side.svg",
  18931. extra: 1975 / 1523,
  18932. bottom: 0.07
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(7.2, "feet"),
  18940. default: true
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18946. {
  18947. side: {
  18948. height: math.unit(4, "meters"),
  18949. weight: math.unit(2200, "kg"),
  18950. name: "Side",
  18951. image: {
  18952. source: "./media/characters/zara/side.svg",
  18953. extra: 765/744,
  18954. bottom: 156/921
  18955. }
  18956. },
  18957. },
  18958. [
  18959. {
  18960. name: "Normal",
  18961. height: math.unit(4, "meters"),
  18962. default: true
  18963. },
  18964. ]
  18965. ))
  18966. characterMakers.push(() => makeCharacter(
  18967. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18968. {
  18969. side: {
  18970. height: math.unit(6, "feet"),
  18971. weight: math.unit(150, "lb"),
  18972. name: "Side",
  18973. image: {
  18974. source: "./media/characters/richard-dragon/side.svg",
  18975. extra: 845 / 340,
  18976. bottom: 0.017
  18977. }
  18978. },
  18979. maw: {
  18980. height: math.unit(2.97, "feet"),
  18981. name: "Maw",
  18982. image: {
  18983. source: "./media/characters/richard-dragon/maw.svg"
  18984. }
  18985. },
  18986. },
  18987. [
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18992. {
  18993. front: {
  18994. height: math.unit(4, "feet"),
  18995. weight: math.unit(100, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/richard-smeargle/front.svg",
  18999. extra: 2952 / 2820,
  19000. bottom: 0.028
  19001. }
  19002. },
  19003. },
  19004. [
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(4, "feet"),
  19008. default: true
  19009. },
  19010. {
  19011. name: "Dynamax",
  19012. height: math.unit(20, "meters")
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19018. {
  19019. front: {
  19020. height: math.unit(6, "feet"),
  19021. weight: math.unit(110, "lb"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/klay/front.svg",
  19025. extra: 962 / 883,
  19026. bottom: 0.04
  19027. }
  19028. },
  19029. back: {
  19030. height: math.unit(6, "feet"),
  19031. weight: math.unit(110, "lb"),
  19032. name: "Back",
  19033. image: {
  19034. source: "./media/characters/klay/back.svg",
  19035. extra: 962 / 883
  19036. }
  19037. },
  19038. beans: {
  19039. height: math.unit(1.15, "feet"),
  19040. name: "Beans",
  19041. image: {
  19042. source: "./media/characters/klay/beans.svg"
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Micro",
  19049. height: math.unit(6, "inches")
  19050. },
  19051. {
  19052. name: "Mini",
  19053. height: math.unit(3, "feet")
  19054. },
  19055. {
  19056. name: "Normal",
  19057. height: math.unit(6, "feet"),
  19058. default: true
  19059. },
  19060. {
  19061. name: "Big",
  19062. height: math.unit(25, "feet")
  19063. },
  19064. {
  19065. name: "Macro",
  19066. height: math.unit(100, "feet")
  19067. },
  19068. {
  19069. name: "Megamacro",
  19070. height: math.unit(400, "feet")
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19076. {
  19077. front: {
  19078. height: math.unit(6, "feet"),
  19079. weight: math.unit(160, "lb"),
  19080. name: "Front",
  19081. image: {
  19082. source: "./media/characters/marcus/front.svg",
  19083. extra: 734 / 676,
  19084. bottom: 0.03
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Little",
  19091. height: math.unit(6, "feet")
  19092. },
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(110, "feet"),
  19096. default: true
  19097. },
  19098. {
  19099. name: "Macro",
  19100. height: math.unit(250, "feet")
  19101. },
  19102. {
  19103. name: "Megamacro",
  19104. height: math.unit(1000, "feet")
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19110. {
  19111. front: {
  19112. height: math.unit(7, "feet"),
  19113. weight: math.unit(275, "lb"),
  19114. name: "Front",
  19115. image: {
  19116. source: "./media/characters/claude-delroute/front.svg",
  19117. extra: 902/827,
  19118. bottom: 26/928
  19119. }
  19120. },
  19121. side: {
  19122. height: math.unit(7, "feet"),
  19123. weight: math.unit(275, "lb"),
  19124. name: "Side",
  19125. image: {
  19126. source: "./media/characters/claude-delroute/side.svg",
  19127. extra: 908/853,
  19128. bottom: 16/924
  19129. }
  19130. },
  19131. back: {
  19132. height: math.unit(7, "feet"),
  19133. weight: math.unit(275, "lb"),
  19134. name: "Back",
  19135. image: {
  19136. source: "./media/characters/claude-delroute/back.svg",
  19137. extra: 911/829,
  19138. bottom: 18/929
  19139. }
  19140. },
  19141. maw: {
  19142. height: math.unit(0.6407, "meters"),
  19143. name: "Maw",
  19144. image: {
  19145. source: "./media/characters/claude-delroute/maw.svg"
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(7, "feet"),
  19153. default: true
  19154. },
  19155. {
  19156. name: "Lorge",
  19157. height: math.unit(20, "feet")
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19163. {
  19164. front: {
  19165. height: math.unit(8 + 4 / 12, "feet"),
  19166. weight: math.unit(600, "lb"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/dragonien/front.svg",
  19170. extra: 100 / 94,
  19171. bottom: 3.3 / 103.3445
  19172. }
  19173. },
  19174. back: {
  19175. height: math.unit(8 + 4 / 12, "feet"),
  19176. weight: math.unit(600, "lb"),
  19177. name: "Back",
  19178. image: {
  19179. source: "./media/characters/dragonien/back.svg",
  19180. extra: 776 / 746,
  19181. bottom: 6.4 / 782.0616
  19182. }
  19183. },
  19184. foot: {
  19185. height: math.unit(1.54, "feet"),
  19186. name: "Foot",
  19187. image: {
  19188. source: "./media/characters/dragonien/foot.svg",
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(8 + 4 / 12, "feet"),
  19196. default: true
  19197. },
  19198. {
  19199. name: "Macro",
  19200. height: math.unit(200, "feet")
  19201. },
  19202. {
  19203. name: "Megamacro",
  19204. height: math.unit(1, "mile")
  19205. },
  19206. {
  19207. name: "Gigamacro",
  19208. height: math.unit(1000, "miles")
  19209. },
  19210. ]
  19211. ))
  19212. characterMakers.push(() => makeCharacter(
  19213. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19214. {
  19215. front: {
  19216. height: math.unit(5 + 2 / 12, "feet"),
  19217. weight: math.unit(110, "lb"),
  19218. name: "Front",
  19219. image: {
  19220. source: "./media/characters/desta/front.svg",
  19221. extra: 767 / 726,
  19222. bottom: 11.7 / 779
  19223. }
  19224. },
  19225. back: {
  19226. height: math.unit(5 + 2 / 12, "feet"),
  19227. weight: math.unit(110, "lb"),
  19228. name: "Back",
  19229. image: {
  19230. source: "./media/characters/desta/back.svg",
  19231. extra: 777 / 728,
  19232. bottom: 6 / 784
  19233. }
  19234. },
  19235. frontAlt: {
  19236. height: math.unit(5 + 2 / 12, "feet"),
  19237. weight: math.unit(110, "lb"),
  19238. name: "Front",
  19239. image: {
  19240. source: "./media/characters/desta/front-alt.svg",
  19241. extra: 1482 / 1417
  19242. }
  19243. },
  19244. side: {
  19245. height: math.unit(5 + 2 / 12, "feet"),
  19246. weight: math.unit(110, "lb"),
  19247. name: "Side",
  19248. image: {
  19249. source: "./media/characters/desta/side.svg",
  19250. extra: 2579 / 2491,
  19251. bottom: 0.053
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Micro",
  19258. height: math.unit(6, "inches")
  19259. },
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(5 + 2 / 12, "feet"),
  19263. default: true
  19264. },
  19265. {
  19266. name: "Macro",
  19267. height: math.unit(62, "feet")
  19268. },
  19269. {
  19270. name: "Megamacro",
  19271. height: math.unit(1800, "feet")
  19272. },
  19273. ]
  19274. ))
  19275. characterMakers.push(() => makeCharacter(
  19276. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19277. {
  19278. front: {
  19279. height: math.unit(10, "feet"),
  19280. weight: math.unit(700, "lb"),
  19281. name: "Front",
  19282. image: {
  19283. source: "./media/characters/storm-alystar/front.svg",
  19284. extra: 2112 / 1898,
  19285. bottom: 0.034
  19286. }
  19287. },
  19288. },
  19289. [
  19290. {
  19291. name: "Micro",
  19292. height: math.unit(3.5, "inches")
  19293. },
  19294. {
  19295. name: "Normal",
  19296. height: math.unit(10, "feet"),
  19297. default: true
  19298. },
  19299. {
  19300. name: "Macro",
  19301. height: math.unit(400, "feet")
  19302. },
  19303. {
  19304. name: "Deific",
  19305. height: math.unit(60, "miles")
  19306. },
  19307. ]
  19308. ))
  19309. characterMakers.push(() => makeCharacter(
  19310. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19311. {
  19312. front: {
  19313. height: math.unit(2.35, "meters"),
  19314. weight: math.unit(119, "kg"),
  19315. name: "Front",
  19316. image: {
  19317. source: "./media/characters/ilia/front.svg",
  19318. extra: 1285 / 1255,
  19319. bottom: 0.06
  19320. }
  19321. },
  19322. },
  19323. [
  19324. {
  19325. name: "Normal",
  19326. height: math.unit(2.35, "meters")
  19327. },
  19328. {
  19329. name: "Macro",
  19330. height: math.unit(140, "meters"),
  19331. default: true
  19332. },
  19333. {
  19334. name: "Megamacro",
  19335. height: math.unit(100, "miles")
  19336. },
  19337. ]
  19338. ))
  19339. characterMakers.push(() => makeCharacter(
  19340. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19341. {
  19342. front: {
  19343. height: math.unit(6 + 5 / 12, "feet"),
  19344. weight: math.unit(190, "lb"),
  19345. name: "Front",
  19346. image: {
  19347. source: "./media/characters/kingdead/front.svg",
  19348. extra: 1228 / 1177
  19349. }
  19350. },
  19351. },
  19352. [
  19353. {
  19354. name: "Micro",
  19355. height: math.unit(7, "inches")
  19356. },
  19357. {
  19358. name: "Normal",
  19359. height: math.unit(6 + 5 / 12, "feet")
  19360. },
  19361. {
  19362. name: "Macro",
  19363. height: math.unit(150, "feet"),
  19364. default: true
  19365. },
  19366. {
  19367. name: "Megamacro",
  19368. height: math.unit(200, "miles")
  19369. },
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19374. {
  19375. front: {
  19376. height: math.unit(8, "feet"),
  19377. weight: math.unit(600, "lb"),
  19378. name: "Front",
  19379. image: {
  19380. source: "./media/characters/kyrehx/front.svg",
  19381. extra: 1195 / 1095,
  19382. bottom: 0.034
  19383. }
  19384. },
  19385. },
  19386. [
  19387. {
  19388. name: "Micro",
  19389. height: math.unit(2, "inches")
  19390. },
  19391. {
  19392. name: "Normal",
  19393. height: math.unit(8, "feet"),
  19394. default: true
  19395. },
  19396. {
  19397. name: "Macro",
  19398. height: math.unit(255, "feet")
  19399. },
  19400. ]
  19401. ))
  19402. characterMakers.push(() => makeCharacter(
  19403. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19404. {
  19405. front: {
  19406. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19407. weight: math.unit(184, "lb"),
  19408. name: "Front",
  19409. image: {
  19410. source: "./media/characters/xang/front.svg",
  19411. extra: 845 / 755
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Normal",
  19418. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19419. default: true
  19420. },
  19421. {
  19422. name: "Macro",
  19423. height: math.unit(0.935 * 146, "feet")
  19424. },
  19425. {
  19426. name: "Megamacro",
  19427. height: math.unit(0.935 * 3, "miles")
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19433. {
  19434. frontDressed: {
  19435. height: math.unit(5 + 7 / 12, "feet"),
  19436. weight: math.unit(140, "lb"),
  19437. name: "Front (Dressed)",
  19438. image: {
  19439. source: "./media/characters/doc-weardno/front-dressed.svg",
  19440. extra: 263 / 234
  19441. }
  19442. },
  19443. backDressed: {
  19444. height: math.unit(5 + 7 / 12, "feet"),
  19445. weight: math.unit(140, "lb"),
  19446. name: "Back (Dressed)",
  19447. image: {
  19448. source: "./media/characters/doc-weardno/back-dressed.svg",
  19449. extra: 266 / 238
  19450. }
  19451. },
  19452. front: {
  19453. height: math.unit(5 + 7 / 12, "feet"),
  19454. weight: math.unit(140, "lb"),
  19455. name: "Front",
  19456. image: {
  19457. source: "./media/characters/doc-weardno/front.svg",
  19458. extra: 254 / 233
  19459. }
  19460. },
  19461. },
  19462. [
  19463. {
  19464. name: "Micro",
  19465. height: math.unit(3, "inches")
  19466. },
  19467. {
  19468. name: "Normal",
  19469. height: math.unit(5 + 7 / 12, "feet"),
  19470. default: true
  19471. },
  19472. {
  19473. name: "Macro",
  19474. height: math.unit(25, "feet")
  19475. },
  19476. {
  19477. name: "Megamacro",
  19478. height: math.unit(2, "miles")
  19479. },
  19480. ]
  19481. ))
  19482. characterMakers.push(() => makeCharacter(
  19483. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19484. {
  19485. front: {
  19486. height: math.unit(6 + 2 / 12, "feet"),
  19487. weight: math.unit(153, "lb"),
  19488. name: "Front",
  19489. image: {
  19490. source: "./media/characters/seth-whilst/front.svg",
  19491. bottom: 0.07
  19492. }
  19493. },
  19494. },
  19495. [
  19496. {
  19497. name: "Micro",
  19498. height: math.unit(5, "inches")
  19499. },
  19500. {
  19501. name: "Normal",
  19502. height: math.unit(6 + 2 / 12, "feet"),
  19503. default: true
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(3, "inches"),
  19512. weight: math.unit(8, "grams"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/pocket-jabari/front.svg",
  19516. extra: 1024 / 974,
  19517. bottom: 0.039
  19518. }
  19519. },
  19520. },
  19521. [
  19522. {
  19523. name: "Minimicro",
  19524. height: math.unit(8, "mm")
  19525. },
  19526. {
  19527. name: "Micro",
  19528. height: math.unit(3, "inches"),
  19529. default: true
  19530. },
  19531. {
  19532. name: "Normal",
  19533. height: math.unit(3, "feet")
  19534. },
  19535. ]
  19536. ))
  19537. characterMakers.push(() => makeCharacter(
  19538. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19539. {
  19540. frontDressed: {
  19541. height: math.unit(15, "feet"),
  19542. weight: math.unit(3280, "lb"),
  19543. name: "Front (Dressed)",
  19544. image: {
  19545. source: "./media/characters/sapphy/front-dressed.svg",
  19546. extra: 1951/1654,
  19547. bottom: 194/2145
  19548. },
  19549. form: "anthro",
  19550. default: true
  19551. },
  19552. backDressed: {
  19553. height: math.unit(15, "feet"),
  19554. weight: math.unit(3280, "lb"),
  19555. name: "Back (Dressed)",
  19556. image: {
  19557. source: "./media/characters/sapphy/back-dressed.svg",
  19558. extra: 2058/1918,
  19559. bottom: 125/2183
  19560. },
  19561. form: "anthro"
  19562. },
  19563. frontNude: {
  19564. height: math.unit(15, "feet"),
  19565. weight: math.unit(3280, "lb"),
  19566. name: "Front (Nude)",
  19567. image: {
  19568. source: "./media/characters/sapphy/front-nude.svg",
  19569. extra: 1951/1654,
  19570. bottom: 194/2145
  19571. },
  19572. form: "anthro"
  19573. },
  19574. backNude: {
  19575. height: math.unit(15, "feet"),
  19576. weight: math.unit(3280, "lb"),
  19577. name: "Back (Nude)",
  19578. image: {
  19579. source: "./media/characters/sapphy/back-nude.svg",
  19580. extra: 2058/1918,
  19581. bottom: 125/2183
  19582. },
  19583. form: "anthro"
  19584. },
  19585. full: {
  19586. height: math.unit(15, "feet"),
  19587. weight: math.unit(3280, "lb"),
  19588. name: "Full",
  19589. image: {
  19590. source: "./media/characters/sapphy/full.svg",
  19591. extra: 1396/1317,
  19592. bottom: 44/1440
  19593. },
  19594. form: "anthro"
  19595. },
  19596. dick: {
  19597. height: math.unit(3.8, "feet"),
  19598. name: "Dick",
  19599. image: {
  19600. source: "./media/characters/sapphy/dick.svg"
  19601. },
  19602. form: "anthro"
  19603. },
  19604. feral: {
  19605. height: math.unit(35, "feet"),
  19606. weight: math.unit(160, "tons"),
  19607. name: "Feral",
  19608. image: {
  19609. source: "./media/characters/sapphy/feral.svg",
  19610. extra: 1050/573,
  19611. bottom: 60/1110
  19612. },
  19613. form: "feral",
  19614. default: true
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(15, "feet"),
  19621. form: "anthro"
  19622. },
  19623. {
  19624. name: "Casual Macro",
  19625. height: math.unit(120, "feet"),
  19626. form: "anthro"
  19627. },
  19628. {
  19629. name: "Macro",
  19630. height: math.unit(2150, "feet"),
  19631. default: true,
  19632. form: "anthro"
  19633. },
  19634. {
  19635. name: "Megamacro",
  19636. height: math.unit(8, "miles"),
  19637. form: "anthro"
  19638. },
  19639. {
  19640. name: "Galaxy Mom",
  19641. height: math.unit(6, "megalightyears"),
  19642. form: "anthro"
  19643. },
  19644. {
  19645. name: "Normal",
  19646. height: math.unit(35, "feet"),
  19647. form: "feral",
  19648. default: true
  19649. },
  19650. {
  19651. name: "Macro",
  19652. height: math.unit(300, "feet"),
  19653. form: "feral"
  19654. },
  19655. {
  19656. name: "Galaxy Mom",
  19657. height: math.unit(10, "megalightyears"),
  19658. form: "feral"
  19659. },
  19660. ],
  19661. {
  19662. "anthro": {
  19663. name: "Anthro",
  19664. default: true
  19665. },
  19666. "feral": {
  19667. name: "Feral"
  19668. }
  19669. }
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19673. {
  19674. front: {
  19675. height: math.unit(6, "feet"),
  19676. weight: math.unit(170, "lb"),
  19677. name: "Front",
  19678. image: {
  19679. source: "./media/characters/kiro/front.svg",
  19680. extra: 1064 / 1012,
  19681. bottom: 0.052
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Micro",
  19688. height: math.unit(6, "inches")
  19689. },
  19690. {
  19691. name: "Normal",
  19692. height: math.unit(6, "feet"),
  19693. default: true
  19694. },
  19695. {
  19696. name: "Macro",
  19697. height: math.unit(72, "feet")
  19698. },
  19699. ]
  19700. ))
  19701. characterMakers.push(() => makeCharacter(
  19702. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19703. {
  19704. front: {
  19705. height: math.unit(5 + 9 / 12, "feet"),
  19706. weight: math.unit(175, "lb"),
  19707. name: "Front",
  19708. image: {
  19709. source: "./media/characters/irishfox/front.svg",
  19710. extra: 1912 / 1680,
  19711. bottom: 0.02
  19712. }
  19713. },
  19714. },
  19715. [
  19716. {
  19717. name: "Nano",
  19718. height: math.unit(1, "mm")
  19719. },
  19720. {
  19721. name: "Micro",
  19722. height: math.unit(2, "inches")
  19723. },
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(5 + 9 / 12, "feet"),
  19727. default: true
  19728. },
  19729. {
  19730. name: "Macro",
  19731. height: math.unit(45, "feet")
  19732. },
  19733. ]
  19734. ))
  19735. characterMakers.push(() => makeCharacter(
  19736. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19737. {
  19738. front: {
  19739. height: math.unit(6 + 1 / 12, "feet"),
  19740. weight: math.unit(75, "lb"),
  19741. name: "Front",
  19742. image: {
  19743. source: "./media/characters/aronai-sieyes/front.svg",
  19744. extra: 1532/1450,
  19745. bottom: 42/1574
  19746. }
  19747. },
  19748. side: {
  19749. height: math.unit(6 + 1 / 12, "feet"),
  19750. weight: math.unit(75, "lb"),
  19751. name: "Side",
  19752. image: {
  19753. source: "./media/characters/aronai-sieyes/side.svg",
  19754. extra: 1422/1365,
  19755. bottom: 148/1570
  19756. }
  19757. },
  19758. back: {
  19759. height: math.unit(6 + 1 / 12, "feet"),
  19760. weight: math.unit(75, "lb"),
  19761. name: "Back",
  19762. image: {
  19763. source: "./media/characters/aronai-sieyes/back.svg",
  19764. extra: 1526/1464,
  19765. bottom: 51/1577
  19766. }
  19767. },
  19768. dressed: {
  19769. height: math.unit(6 + 1 / 12, "feet"),
  19770. weight: math.unit(75, "lb"),
  19771. name: "Dressed",
  19772. image: {
  19773. source: "./media/characters/aronai-sieyes/dressed.svg",
  19774. extra: 1559/1483,
  19775. bottom: 39/1598
  19776. }
  19777. },
  19778. slit: {
  19779. height: math.unit(1.3, "feet"),
  19780. name: "Slit",
  19781. image: {
  19782. source: "./media/characters/aronai-sieyes/slit.svg"
  19783. }
  19784. },
  19785. slitSpread: {
  19786. height: math.unit(0.9, "feet"),
  19787. name: "Slit (Spread)",
  19788. image: {
  19789. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19790. }
  19791. },
  19792. rump: {
  19793. height: math.unit(1.3, "feet"),
  19794. name: "Rump",
  19795. image: {
  19796. source: "./media/characters/aronai-sieyes/rump.svg"
  19797. }
  19798. },
  19799. maw: {
  19800. height: math.unit(1.25, "feet"),
  19801. name: "Maw",
  19802. image: {
  19803. source: "./media/characters/aronai-sieyes/maw.svg"
  19804. }
  19805. },
  19806. feral: {
  19807. height: math.unit(18, "feet"),
  19808. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19809. name: "Feral",
  19810. image: {
  19811. source: "./media/characters/aronai-sieyes/feral.svg",
  19812. extra: 1530 / 1240,
  19813. bottom: 0.035
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Micro",
  19820. height: math.unit(2, "inches")
  19821. },
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(6 + 1 / 12, "feet"),
  19825. default: true
  19826. }
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(12, "feet"),
  19834. weight: math.unit(410, "kg"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/xuna/front.svg",
  19838. extra: 2184 / 1980
  19839. }
  19840. },
  19841. side: {
  19842. height: math.unit(12, "feet"),
  19843. weight: math.unit(410, "kg"),
  19844. name: "Side",
  19845. image: {
  19846. source: "./media/characters/xuna/side.svg",
  19847. extra: 2184 / 1980
  19848. }
  19849. },
  19850. back: {
  19851. height: math.unit(12, "feet"),
  19852. weight: math.unit(410, "kg"),
  19853. name: "Back",
  19854. image: {
  19855. source: "./media/characters/xuna/back.svg",
  19856. extra: 2184 / 1980
  19857. }
  19858. },
  19859. },
  19860. [
  19861. {
  19862. name: "Nano glow",
  19863. height: math.unit(10, "nm")
  19864. },
  19865. {
  19866. name: "Micro floof",
  19867. height: math.unit(0.3, "m")
  19868. },
  19869. {
  19870. name: "Huggable softy boi",
  19871. height: math.unit(3.6576, "m"),
  19872. default: true
  19873. },
  19874. {
  19875. name: "Admirable floof",
  19876. height: math.unit(80, "meters")
  19877. },
  19878. {
  19879. name: "Gentle macro",
  19880. height: math.unit(300, "meters")
  19881. },
  19882. {
  19883. name: "Very careful floof",
  19884. height: math.unit(3200, "meters")
  19885. },
  19886. {
  19887. name: "The mega floof",
  19888. height: math.unit(36000, "meters")
  19889. },
  19890. {
  19891. name: "Giga-fur-Wicker",
  19892. height: math.unit(4800000, "meters")
  19893. },
  19894. {
  19895. name: "Licky world",
  19896. height: math.unit(20000000, "meters")
  19897. },
  19898. {
  19899. name: "Floofy cyan sun",
  19900. height: math.unit(1500000000, "meters")
  19901. },
  19902. {
  19903. name: "Milky Wicker",
  19904. height: math.unit(1000000000000000000000, "meters")
  19905. },
  19906. {
  19907. name: "The observing Wicker",
  19908. height: math.unit(999999999999999999999999999, "meters")
  19909. },
  19910. ]
  19911. ))
  19912. characterMakers.push(() => makeCharacter(
  19913. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19914. {
  19915. front: {
  19916. height: math.unit(5 + 9 / 12, "feet"),
  19917. weight: math.unit(150, "lb"),
  19918. name: "Front",
  19919. image: {
  19920. source: "./media/characters/arokha-sieyes/front.svg",
  19921. extra: 1425 / 1284,
  19922. bottom: 0.05
  19923. }
  19924. },
  19925. },
  19926. [
  19927. {
  19928. name: "Normal",
  19929. height: math.unit(5 + 9 / 12, "feet")
  19930. },
  19931. {
  19932. name: "Macro",
  19933. height: math.unit(30, "meters"),
  19934. default: true
  19935. },
  19936. ]
  19937. ))
  19938. characterMakers.push(() => makeCharacter(
  19939. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19940. {
  19941. front: {
  19942. height: math.unit(6, "feet"),
  19943. weight: math.unit(180, "lb"),
  19944. name: "Front",
  19945. image: {
  19946. source: "./media/characters/arokh-sieyes/front.svg",
  19947. extra: 1830 / 1769,
  19948. bottom: 0.01
  19949. }
  19950. },
  19951. },
  19952. [
  19953. {
  19954. name: "Normal",
  19955. height: math.unit(6, "feet")
  19956. },
  19957. {
  19958. name: "Macro",
  19959. height: math.unit(30, "meters"),
  19960. default: true
  19961. },
  19962. ]
  19963. ))
  19964. characterMakers.push(() => makeCharacter(
  19965. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19966. {
  19967. side: {
  19968. height: math.unit(13 + 1 / 12, "feet"),
  19969. weight: math.unit(8.5, "tonnes"),
  19970. name: "Side",
  19971. image: {
  19972. source: "./media/characters/goldeneye/side.svg",
  19973. extra: 1182 / 778,
  19974. bottom: 0.067
  19975. }
  19976. },
  19977. paw: {
  19978. height: math.unit(3.4, "feet"),
  19979. name: "Paw",
  19980. image: {
  19981. source: "./media/characters/goldeneye/paw.svg"
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(13 + 1 / 12, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19995. {
  19996. front: {
  19997. height: math.unit(6 + 1 / 12, "feet"),
  19998. weight: math.unit(210, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/leonardo-lycheborne/front.svg",
  20002. extra: 776/723,
  20003. bottom: 34/810
  20004. }
  20005. },
  20006. side: {
  20007. height: math.unit(6 + 1 / 12, "feet"),
  20008. weight: math.unit(210, "lb"),
  20009. name: "Side",
  20010. image: {
  20011. source: "./media/characters/leonardo-lycheborne/side.svg",
  20012. extra: 780/728,
  20013. bottom: 12/792
  20014. }
  20015. },
  20016. back: {
  20017. height: math.unit(6 + 1 / 12, "feet"),
  20018. weight: math.unit(210, "lb"),
  20019. name: "Back",
  20020. image: {
  20021. source: "./media/characters/leonardo-lycheborne/back.svg",
  20022. extra: 775/721,
  20023. bottom: 17/792
  20024. }
  20025. },
  20026. hand: {
  20027. height: math.unit(1.08, "feet"),
  20028. name: "Hand",
  20029. image: {
  20030. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20031. }
  20032. },
  20033. foot: {
  20034. height: math.unit(1.32, "feet"),
  20035. name: "Foot",
  20036. image: {
  20037. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20038. }
  20039. },
  20040. maw: {
  20041. height: math.unit(1, "feet"),
  20042. name: "Maw",
  20043. image: {
  20044. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20045. }
  20046. },
  20047. were: {
  20048. height: math.unit(20, "feet"),
  20049. weight: math.unit(7800, "lb"),
  20050. name: "Were",
  20051. image: {
  20052. source: "./media/characters/leonardo-lycheborne/were.svg",
  20053. extra: 1224/1165,
  20054. bottom: 72/1296
  20055. }
  20056. },
  20057. feral: {
  20058. height: math.unit(7.5, "feet"),
  20059. weight: math.unit(600, "lb"),
  20060. name: "Feral",
  20061. image: {
  20062. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20063. extra: 797/702,
  20064. bottom: 139/936
  20065. }
  20066. },
  20067. taur: {
  20068. height: math.unit(11, "feet"),
  20069. weight: math.unit(3300, "lb"),
  20070. name: "Taur",
  20071. image: {
  20072. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20073. extra: 1271/1197,
  20074. bottom: 47/1318
  20075. }
  20076. },
  20077. barghest: {
  20078. height: math.unit(11, "feet"),
  20079. weight: math.unit(1300, "lb"),
  20080. name: "Barghest",
  20081. image: {
  20082. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20083. extra: 1291/1204,
  20084. bottom: 37/1328
  20085. }
  20086. },
  20087. dick: {
  20088. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20089. name: "Dick",
  20090. image: {
  20091. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20092. }
  20093. },
  20094. dickWere: {
  20095. height: math.unit((20) / 3.8, "feet"),
  20096. name: "Dick (Were)",
  20097. image: {
  20098. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20099. }
  20100. },
  20101. },
  20102. [
  20103. {
  20104. name: "Normal",
  20105. height: math.unit(6 + 1 / 12, "feet"),
  20106. default: true
  20107. },
  20108. ]
  20109. ))
  20110. characterMakers.push(() => makeCharacter(
  20111. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20112. {
  20113. front: {
  20114. height: math.unit(10, "feet"),
  20115. weight: math.unit(350, "lb"),
  20116. name: "Front",
  20117. image: {
  20118. source: "./media/characters/jet/front.svg",
  20119. extra: 2050 / 1980,
  20120. bottom: 0.013
  20121. }
  20122. },
  20123. back: {
  20124. height: math.unit(10, "feet"),
  20125. weight: math.unit(350, "lb"),
  20126. name: "Back",
  20127. image: {
  20128. source: "./media/characters/jet/back.svg",
  20129. extra: 2050 / 1980,
  20130. bottom: 0.013
  20131. }
  20132. },
  20133. },
  20134. [
  20135. {
  20136. name: "Micro",
  20137. height: math.unit(6, "inches")
  20138. },
  20139. {
  20140. name: "Normal",
  20141. height: math.unit(10, "feet"),
  20142. default: true
  20143. },
  20144. {
  20145. name: "Macro",
  20146. height: math.unit(100, "feet")
  20147. },
  20148. ]
  20149. ))
  20150. characterMakers.push(() => makeCharacter(
  20151. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20152. {
  20153. front: {
  20154. height: math.unit(15, "feet"),
  20155. weight: math.unit(2800, "lb"),
  20156. name: "Front",
  20157. image: {
  20158. source: "./media/characters/tanarath/front.svg",
  20159. extra: 2392 / 2220,
  20160. bottom: 0.03
  20161. }
  20162. },
  20163. back: {
  20164. height: math.unit(15, "feet"),
  20165. weight: math.unit(2800, "lb"),
  20166. name: "Back",
  20167. image: {
  20168. source: "./media/characters/tanarath/back.svg",
  20169. extra: 2392 / 2220,
  20170. bottom: 0.03
  20171. }
  20172. },
  20173. },
  20174. [
  20175. {
  20176. name: "Normal",
  20177. height: math.unit(15, "feet"),
  20178. default: true
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20184. {
  20185. front: {
  20186. height: math.unit(7 + 1 / 12, "feet"),
  20187. weight: math.unit(175, "lb"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/patty-cattybatty/front.svg",
  20191. extra: 908 / 874,
  20192. bottom: 0.025
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Micro",
  20199. height: math.unit(1, "inch")
  20200. },
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(7 + 1 / 12, "feet")
  20204. },
  20205. {
  20206. name: "Mini Macro",
  20207. height: math.unit(155, "feet")
  20208. },
  20209. {
  20210. name: "Macro",
  20211. height: math.unit(1077, "feet")
  20212. },
  20213. {
  20214. name: "Mega Macro",
  20215. height: math.unit(47650, "feet"),
  20216. default: true
  20217. },
  20218. {
  20219. name: "Giga Macro",
  20220. height: math.unit(440, "miles")
  20221. },
  20222. {
  20223. name: "Tera Macro",
  20224. height: math.unit(8700, "miles")
  20225. },
  20226. {
  20227. name: "Planetary Macro",
  20228. height: math.unit(32700, "miles")
  20229. },
  20230. {
  20231. name: "Solar Macro",
  20232. height: math.unit(550000, "miles")
  20233. },
  20234. {
  20235. name: "Celestial Macro",
  20236. height: math.unit(2.5, "AU")
  20237. },
  20238. ]
  20239. ))
  20240. characterMakers.push(() => makeCharacter(
  20241. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20242. {
  20243. front: {
  20244. height: math.unit(4 + 5 / 12, "feet"),
  20245. weight: math.unit(90, "lb"),
  20246. name: "Front",
  20247. image: {
  20248. source: "./media/characters/cappu/front.svg",
  20249. extra: 1247 / 1152,
  20250. bottom: 0.012
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Normal",
  20257. height: math.unit(4 + 5 / 12, "feet"),
  20258. default: true
  20259. },
  20260. ]
  20261. ))
  20262. characterMakers.push(() => makeCharacter(
  20263. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20264. {
  20265. frontDressed: {
  20266. height: math.unit(70, "cm"),
  20267. weight: math.unit(6, "kg"),
  20268. name: "Front (Dressed)",
  20269. image: {
  20270. source: "./media/characters/sebi/front-dressed.svg",
  20271. extra: 713.5 / 686.5,
  20272. bottom: 0.003
  20273. }
  20274. },
  20275. front: {
  20276. height: math.unit(70, "cm"),
  20277. weight: math.unit(5, "kg"),
  20278. name: "Front",
  20279. image: {
  20280. source: "./media/characters/sebi/front.svg",
  20281. extra: 713.5 / 686.5,
  20282. bottom: 0.003
  20283. }
  20284. }
  20285. },
  20286. [
  20287. {
  20288. name: "Normal",
  20289. height: math.unit(70, "cm"),
  20290. default: true
  20291. },
  20292. {
  20293. name: "Macro",
  20294. height: math.unit(8, "meters")
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20300. {
  20301. front: {
  20302. height: math.unit(6, "feet"),
  20303. weight: math.unit(150, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/typhek/front.svg",
  20307. extra: 1948 / 1929,
  20308. bottom: 0.025
  20309. }
  20310. },
  20311. side: {
  20312. height: math.unit(6, "feet"),
  20313. weight: math.unit(150, "lb"),
  20314. name: "Side",
  20315. image: {
  20316. source: "./media/characters/typhek/side.svg",
  20317. extra: 2034 / 2010,
  20318. bottom: 0.003
  20319. }
  20320. },
  20321. back: {
  20322. height: math.unit(6, "feet"),
  20323. weight: math.unit(150, "lb"),
  20324. name: "Back",
  20325. image: {
  20326. source: "./media/characters/typhek/back.svg",
  20327. extra: 2005 / 1978,
  20328. bottom: 0.004
  20329. }
  20330. },
  20331. palm: {
  20332. height: math.unit(1.2, "feet"),
  20333. name: "Palm",
  20334. image: {
  20335. source: "./media/characters/typhek/palm.svg"
  20336. }
  20337. },
  20338. fist: {
  20339. height: math.unit(1.1, "feet"),
  20340. name: "Fist",
  20341. image: {
  20342. source: "./media/characters/typhek/fist.svg"
  20343. }
  20344. },
  20345. foot: {
  20346. height: math.unit(1.57, "feet"),
  20347. name: "Foot",
  20348. image: {
  20349. source: "./media/characters/typhek/foot.svg"
  20350. }
  20351. },
  20352. sole: {
  20353. height: math.unit(2.05, "feet"),
  20354. name: "Sole",
  20355. image: {
  20356. source: "./media/characters/typhek/sole.svg"
  20357. }
  20358. },
  20359. },
  20360. [
  20361. {
  20362. name: "Macro",
  20363. height: math.unit(40, "stories"),
  20364. default: true
  20365. },
  20366. {
  20367. name: "Megamacro",
  20368. height: math.unit(1, "mile")
  20369. },
  20370. {
  20371. name: "Gigamacro",
  20372. height: math.unit(4000, "solarradii")
  20373. },
  20374. {
  20375. name: "Universal",
  20376. height: math.unit(1.1, "universes")
  20377. }
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20382. {
  20383. side: {
  20384. height: math.unit(5 + 7 / 12, "feet"),
  20385. weight: math.unit(150, "lb"),
  20386. name: "Side",
  20387. image: {
  20388. source: "./media/characters/kassy/side.svg",
  20389. extra: 1280 / 1225,
  20390. bottom: 0.002
  20391. }
  20392. },
  20393. front: {
  20394. height: math.unit(5 + 7 / 12, "feet"),
  20395. weight: math.unit(150, "lb"),
  20396. name: "Front",
  20397. image: {
  20398. source: "./media/characters/kassy/front.svg",
  20399. extra: 1280 / 1225,
  20400. bottom: 0.025
  20401. }
  20402. },
  20403. back: {
  20404. height: math.unit(5 + 7 / 12, "feet"),
  20405. weight: math.unit(150, "lb"),
  20406. name: "Back",
  20407. image: {
  20408. source: "./media/characters/kassy/back.svg",
  20409. extra: 1280 / 1225,
  20410. bottom: 0.002
  20411. }
  20412. },
  20413. foot: {
  20414. height: math.unit(1.266, "feet"),
  20415. name: "Foot",
  20416. image: {
  20417. source: "./media/characters/kassy/foot.svg"
  20418. }
  20419. },
  20420. },
  20421. [
  20422. {
  20423. name: "Normal",
  20424. height: math.unit(5 + 7 / 12, "feet")
  20425. },
  20426. {
  20427. name: "Macro",
  20428. height: math.unit(137, "feet"),
  20429. default: true
  20430. },
  20431. {
  20432. name: "Megamacro",
  20433. height: math.unit(1, "mile")
  20434. },
  20435. ]
  20436. ))
  20437. characterMakers.push(() => makeCharacter(
  20438. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20439. {
  20440. front: {
  20441. height: math.unit(6 + 1 / 12, "feet"),
  20442. weight: math.unit(200, "lb"),
  20443. name: "Front",
  20444. image: {
  20445. source: "./media/characters/neil/front.svg",
  20446. extra: 1326 / 1250,
  20447. bottom: 0.023
  20448. }
  20449. },
  20450. },
  20451. [
  20452. {
  20453. name: "Normal",
  20454. height: math.unit(6 + 1 / 12, "feet"),
  20455. default: true
  20456. },
  20457. {
  20458. name: "Macro",
  20459. height: math.unit(200, "feet")
  20460. },
  20461. ]
  20462. ))
  20463. characterMakers.push(() => makeCharacter(
  20464. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20465. {
  20466. front: {
  20467. height: math.unit(5 + 9 / 12, "feet"),
  20468. weight: math.unit(190, "lb"),
  20469. name: "Front",
  20470. image: {
  20471. source: "./media/characters/atticus/front.svg",
  20472. extra: 2934 / 2785,
  20473. bottom: 0.025
  20474. }
  20475. },
  20476. },
  20477. [
  20478. {
  20479. name: "Normal",
  20480. height: math.unit(5 + 9 / 12, "feet"),
  20481. default: true
  20482. },
  20483. {
  20484. name: "Macro",
  20485. height: math.unit(180, "feet")
  20486. },
  20487. ]
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20491. {
  20492. side: {
  20493. height: math.unit(9, "feet"),
  20494. weight: math.unit(650, "lb"),
  20495. name: "Side",
  20496. image: {
  20497. source: "./media/characters/milo/side.svg",
  20498. extra: 2644 / 2310,
  20499. bottom: 0.032
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(9, "feet"),
  20507. default: true
  20508. },
  20509. {
  20510. name: "Macro",
  20511. height: math.unit(300, "feet")
  20512. },
  20513. ]
  20514. ))
  20515. characterMakers.push(() => makeCharacter(
  20516. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20517. {
  20518. side: {
  20519. height: math.unit(8, "meters"),
  20520. weight: math.unit(90000, "kg"),
  20521. name: "Side",
  20522. image: {
  20523. source: "./media/characters/ijzer/side.svg",
  20524. extra: 2756 / 1600,
  20525. bottom: 0.01
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Small",
  20532. height: math.unit(3, "meters")
  20533. },
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(8, "meters"),
  20537. default: true
  20538. },
  20539. {
  20540. name: "Normal+",
  20541. height: math.unit(10, "meters")
  20542. },
  20543. {
  20544. name: "Bigger",
  20545. height: math.unit(24, "meters")
  20546. },
  20547. {
  20548. name: "Huge",
  20549. height: math.unit(80, "meters")
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20555. {
  20556. front: {
  20557. height: math.unit(6 + 2 / 12, "feet"),
  20558. weight: math.unit(153, "lb"),
  20559. name: "Front",
  20560. image: {
  20561. source: "./media/characters/luca-cervicum/front.svg",
  20562. extra: 370 / 327,
  20563. bottom: 0.015
  20564. }
  20565. },
  20566. back: {
  20567. height: math.unit(6 + 2 / 12, "feet"),
  20568. weight: math.unit(153, "lb"),
  20569. name: "Back",
  20570. image: {
  20571. source: "./media/characters/luca-cervicum/back.svg",
  20572. extra: 367 / 333,
  20573. bottom: 0.005
  20574. }
  20575. },
  20576. frontGear: {
  20577. height: math.unit(6 + 2 / 12, "feet"),
  20578. weight: math.unit(173, "lb"),
  20579. name: "Front (Gear)",
  20580. image: {
  20581. source: "./media/characters/luca-cervicum/front-gear.svg",
  20582. extra: 377 / 333,
  20583. bottom: 0.006
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(6 + 2 / 12, "feet"),
  20591. default: true
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20597. {
  20598. front: {
  20599. height: math.unit(6 + 1 / 12, "feet"),
  20600. weight: math.unit(304, "lb"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/oliver/front.svg",
  20604. extra: 157 / 143,
  20605. bottom: 0.08
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(6 + 1 / 12, "feet"),
  20613. default: true
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20619. {
  20620. front: {
  20621. height: math.unit(5 + 7 / 12, "feet"),
  20622. weight: math.unit(140, "lb"),
  20623. name: "Front",
  20624. image: {
  20625. source: "./media/characters/shane/front.svg",
  20626. extra: 304 / 289,
  20627. bottom: 0.005
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(5 + 7 / 12, "feet"),
  20635. default: true
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20641. {
  20642. front: {
  20643. height: math.unit(5 + 9 / 12, "feet"),
  20644. weight: math.unit(178, "lb"),
  20645. name: "Front",
  20646. image: {
  20647. source: "./media/characters/shin/front.svg",
  20648. extra: 159 / 151,
  20649. bottom: 0.015
  20650. }
  20651. },
  20652. },
  20653. [
  20654. {
  20655. name: "Normal",
  20656. height: math.unit(5 + 9 / 12, "feet"),
  20657. default: true
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20663. {
  20664. front: {
  20665. height: math.unit(5 + 10 / 12, "feet"),
  20666. weight: math.unit(168, "lb"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/xerxes/front.svg",
  20670. extra: 282 / 260,
  20671. bottom: 0.045
  20672. }
  20673. },
  20674. },
  20675. [
  20676. {
  20677. name: "Normal",
  20678. height: math.unit(5 + 10 / 12, "feet"),
  20679. default: true
  20680. },
  20681. ]
  20682. ))
  20683. characterMakers.push(() => makeCharacter(
  20684. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20685. {
  20686. front: {
  20687. height: math.unit(6 + 7 / 12, "feet"),
  20688. weight: math.unit(208, "lb"),
  20689. name: "Front",
  20690. image: {
  20691. source: "./media/characters/chaska/front.svg",
  20692. extra: 332 / 319,
  20693. bottom: 0.015
  20694. }
  20695. },
  20696. },
  20697. [
  20698. {
  20699. name: "Normal",
  20700. height: math.unit(6 + 7 / 12, "feet"),
  20701. default: true
  20702. },
  20703. ]
  20704. ))
  20705. characterMakers.push(() => makeCharacter(
  20706. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20707. {
  20708. front: {
  20709. height: math.unit(5 + 8 / 12, "feet"),
  20710. weight: math.unit(208, "lb"),
  20711. name: "Front",
  20712. image: {
  20713. source: "./media/characters/enuk/front.svg",
  20714. extra: 437 / 406,
  20715. bottom: 0.02
  20716. }
  20717. },
  20718. },
  20719. [
  20720. {
  20721. name: "Normal",
  20722. height: math.unit(5 + 8 / 12, "feet"),
  20723. default: true
  20724. },
  20725. ]
  20726. ))
  20727. characterMakers.push(() => makeCharacter(
  20728. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20729. {
  20730. front: {
  20731. height: math.unit(5 + 10 / 12, "feet"),
  20732. weight: math.unit(252, "lb"),
  20733. name: "Front",
  20734. image: {
  20735. source: "./media/characters/bruun/front.svg",
  20736. extra: 197 / 187,
  20737. bottom: 0.012
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(5 + 10 / 12, "feet"),
  20745. default: true
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20751. {
  20752. front: {
  20753. height: math.unit(6 + 10 / 12, "feet"),
  20754. weight: math.unit(255, "lb"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/alexeev/front.svg",
  20758. extra: 213 / 200,
  20759. bottom: 0.05
  20760. }
  20761. },
  20762. },
  20763. [
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(6 + 10 / 12, "feet"),
  20767. default: true
  20768. },
  20769. ]
  20770. ))
  20771. characterMakers.push(() => makeCharacter(
  20772. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20773. {
  20774. front: {
  20775. height: math.unit(2 + 8 / 12, "feet"),
  20776. weight: math.unit(22, "lb"),
  20777. name: "Front",
  20778. image: {
  20779. source: "./media/characters/evelyn/front.svg",
  20780. extra: 208 / 180
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Normal",
  20787. height: math.unit(2 + 8 / 12, "feet"),
  20788. default: true
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20794. {
  20795. front: {
  20796. height: math.unit(5 + 9 / 12, "feet"),
  20797. weight: math.unit(139, "lb"),
  20798. name: "Front",
  20799. image: {
  20800. source: "./media/characters/inca/front.svg",
  20801. extra: 294 / 291,
  20802. bottom: 0.03
  20803. }
  20804. },
  20805. },
  20806. [
  20807. {
  20808. name: "Normal",
  20809. height: math.unit(5 + 9 / 12, "feet"),
  20810. default: true
  20811. },
  20812. ]
  20813. ))
  20814. characterMakers.push(() => makeCharacter(
  20815. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20816. {
  20817. front: {
  20818. height: math.unit(6 + 3 / 12, "feet"),
  20819. weight: math.unit(185, "lb"),
  20820. name: "Front",
  20821. image: {
  20822. source: "./media/characters/mera/front.svg",
  20823. extra: 291 / 277,
  20824. bottom: 0.03
  20825. }
  20826. },
  20827. },
  20828. [
  20829. {
  20830. name: "Normal",
  20831. height: math.unit(6 + 3 / 12, "feet"),
  20832. default: true
  20833. },
  20834. ]
  20835. ))
  20836. characterMakers.push(() => makeCharacter(
  20837. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20838. {
  20839. front: {
  20840. height: math.unit(6 + 7 / 12, "feet"),
  20841. weight: math.unit(160, "lb"),
  20842. name: "Front",
  20843. image: {
  20844. source: "./media/characters/ceres/front.svg",
  20845. extra: 1023 / 950,
  20846. bottom: 0.027
  20847. }
  20848. },
  20849. back: {
  20850. height: math.unit(6 + 7 / 12, "feet"),
  20851. weight: math.unit(160, "lb"),
  20852. name: "Back",
  20853. image: {
  20854. source: "./media/characters/ceres/back.svg",
  20855. extra: 1023 / 950
  20856. }
  20857. },
  20858. },
  20859. [
  20860. {
  20861. name: "Normal",
  20862. height: math.unit(6 + 7 / 12, "feet"),
  20863. default: true
  20864. },
  20865. ]
  20866. ))
  20867. characterMakers.push(() => makeCharacter(
  20868. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20869. {
  20870. front: {
  20871. height: math.unit(5 + 10 / 12, "feet"),
  20872. weight: math.unit(150, "lb"),
  20873. name: "Front",
  20874. image: {
  20875. source: "./media/characters/kris/front.svg",
  20876. extra: 885 / 803,
  20877. bottom: 0.03
  20878. }
  20879. },
  20880. },
  20881. [
  20882. {
  20883. name: "Normal",
  20884. height: math.unit(5 + 10 / 12, "feet"),
  20885. default: true
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20891. {
  20892. front: {
  20893. height: math.unit(7, "feet"),
  20894. weight: math.unit(120, "kg"),
  20895. name: "Front",
  20896. image: {
  20897. source: "./media/characters/taluthus/front.svg",
  20898. extra: 903 / 833,
  20899. bottom: 0.015
  20900. }
  20901. },
  20902. },
  20903. [
  20904. {
  20905. name: "Normal",
  20906. height: math.unit(7, "feet"),
  20907. default: true
  20908. },
  20909. {
  20910. name: "Macro",
  20911. height: math.unit(300, "feet")
  20912. },
  20913. ]
  20914. ))
  20915. characterMakers.push(() => makeCharacter(
  20916. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20917. {
  20918. front: {
  20919. height: math.unit(5 + 9 / 12, "feet"),
  20920. weight: math.unit(145, "lb"),
  20921. name: "Front",
  20922. image: {
  20923. source: "./media/characters/dawn/front.svg",
  20924. extra: 2094 / 2016,
  20925. bottom: 0.025
  20926. }
  20927. },
  20928. back: {
  20929. height: math.unit(5 + 9 / 12, "feet"),
  20930. weight: math.unit(160, "lb"),
  20931. name: "Back",
  20932. image: {
  20933. source: "./media/characters/dawn/back.svg",
  20934. extra: 2112 / 2080,
  20935. bottom: 0.005
  20936. }
  20937. },
  20938. },
  20939. [
  20940. {
  20941. name: "Normal",
  20942. height: math.unit(6 + 7 / 12, "feet"),
  20943. default: true
  20944. },
  20945. ]
  20946. ))
  20947. characterMakers.push(() => makeCharacter(
  20948. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20949. {
  20950. anthro: {
  20951. height: math.unit(8 + 3 / 12, "feet"),
  20952. weight: math.unit(450, "lb"),
  20953. name: "Anthro",
  20954. image: {
  20955. source: "./media/characters/arador/anthro.svg",
  20956. extra: 1835 / 1718,
  20957. bottom: 0.025
  20958. }
  20959. },
  20960. feral: {
  20961. height: math.unit(4, "feet"),
  20962. weight: math.unit(200, "lb"),
  20963. name: "Feral",
  20964. image: {
  20965. source: "./media/characters/arador/feral.svg",
  20966. extra: 1683 / 1514,
  20967. bottom: 0.07
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Normal",
  20974. height: math.unit(8 + 3 / 12, "feet")
  20975. },
  20976. {
  20977. name: "Macro",
  20978. height: math.unit(82.5, "feet"),
  20979. default: true
  20980. },
  20981. ]
  20982. ))
  20983. characterMakers.push(() => makeCharacter(
  20984. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20985. {
  20986. front: {
  20987. height: math.unit(5 + 10 / 12, "feet"),
  20988. weight: math.unit(125, "lb"),
  20989. name: "Front",
  20990. image: {
  20991. source: "./media/characters/dharsi/front.svg",
  20992. extra: 716 / 630,
  20993. bottom: 0.035
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Nano",
  21000. height: math.unit(100, "nm")
  21001. },
  21002. {
  21003. name: "Micro",
  21004. height: math.unit(2, "inches")
  21005. },
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(5 + 10 / 12, "feet"),
  21009. default: true
  21010. },
  21011. {
  21012. name: "Macro",
  21013. height: math.unit(1000, "feet")
  21014. },
  21015. {
  21016. name: "Megamacro",
  21017. height: math.unit(10, "miles")
  21018. },
  21019. {
  21020. name: "Gigamacro",
  21021. height: math.unit(3000, "miles")
  21022. },
  21023. {
  21024. name: "Teramacro",
  21025. height: math.unit(500000, "miles")
  21026. },
  21027. {
  21028. name: "Teramacro+",
  21029. height: math.unit(30, "galaxies")
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21035. {
  21036. front: {
  21037. height: math.unit(6, "feet"),
  21038. weight: math.unit(150, "lb"),
  21039. name: "Front",
  21040. image: {
  21041. source: "./media/characters/deathy/front.svg",
  21042. extra: 1552 / 1463,
  21043. bottom: 0.025
  21044. }
  21045. },
  21046. side: {
  21047. height: math.unit(6, "feet"),
  21048. weight: math.unit(150, "lb"),
  21049. name: "Side",
  21050. image: {
  21051. source: "./media/characters/deathy/side.svg",
  21052. extra: 1604 / 1455,
  21053. bottom: 0.025
  21054. }
  21055. },
  21056. back: {
  21057. height: math.unit(6, "feet"),
  21058. weight: math.unit(150, "lb"),
  21059. name: "Back",
  21060. image: {
  21061. source: "./media/characters/deathy/back.svg",
  21062. extra: 1580 / 1463,
  21063. bottom: 0.005
  21064. }
  21065. },
  21066. },
  21067. [
  21068. {
  21069. name: "Micro",
  21070. height: math.unit(5, "millimeters")
  21071. },
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(6 + 5 / 12, "feet"),
  21075. default: true
  21076. },
  21077. ]
  21078. ))
  21079. characterMakers.push(() => makeCharacter(
  21080. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21081. {
  21082. front: {
  21083. height: math.unit(16, "feet"),
  21084. weight: math.unit(4000, "lb"),
  21085. name: "Front",
  21086. image: {
  21087. source: "./media/characters/juniper/front.svg",
  21088. bottom: 0.04
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Normal",
  21095. height: math.unit(16, "feet"),
  21096. default: true
  21097. },
  21098. ]
  21099. ))
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21102. {
  21103. front: {
  21104. height: math.unit(6, "feet"),
  21105. weight: math.unit(150, "lb"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/hipster/front.svg",
  21109. extra: 1312 / 1209,
  21110. bottom: 0.025
  21111. }
  21112. },
  21113. back: {
  21114. height: math.unit(6, "feet"),
  21115. weight: math.unit(150, "lb"),
  21116. name: "Back",
  21117. image: {
  21118. source: "./media/characters/hipster/back.svg",
  21119. extra: 1281 / 1196,
  21120. bottom: 0.01
  21121. }
  21122. },
  21123. },
  21124. [
  21125. {
  21126. name: "Micro",
  21127. height: math.unit(1, "mm")
  21128. },
  21129. {
  21130. name: "Normal",
  21131. height: math.unit(4, "inches"),
  21132. default: true
  21133. },
  21134. {
  21135. name: "Macro",
  21136. height: math.unit(500, "feet")
  21137. },
  21138. {
  21139. name: "Megamacro",
  21140. height: math.unit(1000, "miles")
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(6, "feet"),
  21149. weight: math.unit(150, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/tendirmuldr/front.svg",
  21153. extra: 1878 / 1772,
  21154. bottom: 0.015
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Megamacro",
  21161. height: math.unit(1500, "miles"),
  21162. default: true
  21163. },
  21164. ]
  21165. ))
  21166. characterMakers.push(() => makeCharacter(
  21167. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21168. {
  21169. front: {
  21170. height: math.unit(14, "feet"),
  21171. weight: math.unit(12000, "lb"),
  21172. name: "Front",
  21173. image: {
  21174. source: "./media/characters/mort/front.svg",
  21175. extra: 365 / 318,
  21176. bottom: 0.01
  21177. }
  21178. },
  21179. side: {
  21180. height: math.unit(14, "feet"),
  21181. weight: math.unit(12000, "lb"),
  21182. name: "Side",
  21183. image: {
  21184. source: "./media/characters/mort/side.svg",
  21185. extra: 365 / 318,
  21186. bottom: 0.052
  21187. },
  21188. default: true
  21189. },
  21190. back: {
  21191. height: math.unit(14, "feet"),
  21192. weight: math.unit(12000, "lb"),
  21193. name: "Back",
  21194. image: {
  21195. source: "./media/characters/mort/back.svg",
  21196. extra: 371 / 332,
  21197. bottom: 0.18
  21198. }
  21199. },
  21200. },
  21201. [
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(14, "feet"),
  21205. default: true
  21206. },
  21207. ]
  21208. ))
  21209. characterMakers.push(() => makeCharacter(
  21210. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21211. {
  21212. front: {
  21213. height: math.unit(8, "feet"),
  21214. weight: math.unit(1, "ton"),
  21215. name: "Front",
  21216. image: {
  21217. source: "./media/characters/lycoa/front.svg",
  21218. extra: 1836/1728,
  21219. bottom: 81/1917
  21220. }
  21221. },
  21222. back: {
  21223. height: math.unit(8, "feet"),
  21224. weight: math.unit(1, "ton"),
  21225. name: "Back",
  21226. image: {
  21227. source: "./media/characters/lycoa/back.svg",
  21228. extra: 1785/1720,
  21229. bottom: 91/1876
  21230. }
  21231. },
  21232. head: {
  21233. height: math.unit(1.6243, "feet"),
  21234. name: "Head",
  21235. image: {
  21236. source: "./media/characters/lycoa/head.svg",
  21237. extra: 1011/782,
  21238. bottom: 0/1011
  21239. }
  21240. },
  21241. tailmaw: {
  21242. height: math.unit(1.9, "feet"),
  21243. name: "Tailmaw",
  21244. image: {
  21245. source: "./media/characters/lycoa/tailmaw.svg"
  21246. }
  21247. },
  21248. tentacles: {
  21249. height: math.unit(2.1, "feet"),
  21250. name: "Tentacles",
  21251. image: {
  21252. source: "./media/characters/lycoa/tentacles.svg"
  21253. }
  21254. },
  21255. dick: {
  21256. height: math.unit(1.73, "feet"),
  21257. name: "Dick",
  21258. image: {
  21259. source: "./media/characters/lycoa/dick.svg"
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(8, "feet"),
  21267. default: true
  21268. },
  21269. {
  21270. name: "Macro",
  21271. height: math.unit(30, "feet")
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21277. {
  21278. front: {
  21279. height: math.unit(4 + 2 / 12, "feet"),
  21280. weight: math.unit(70, "lb"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/naldara/front.svg",
  21284. extra: 1664/1387,
  21285. bottom: 81/1745
  21286. },
  21287. form: "anthro",
  21288. default: true
  21289. },
  21290. naga: {
  21291. height: math.unit(20, "feet"),
  21292. weight: math.unit(15000, "kg"),
  21293. name: "Front",
  21294. image: {
  21295. source: "./media/characters/naldara/naga.svg",
  21296. extra: 1590/1396,
  21297. bottom: 285/1875
  21298. },
  21299. form: "naga",
  21300. default: true
  21301. },
  21302. },
  21303. [
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(4 + 2 / 12, "feet"),
  21307. form: "anthro",
  21308. default: true
  21309. },
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(20, "feet"),
  21313. form: "naga",
  21314. default: true
  21315. },
  21316. ],
  21317. {
  21318. "anthro": {
  21319. name: "Anthro",
  21320. default: true
  21321. },
  21322. "naga": {
  21323. name: "Naga"
  21324. }
  21325. }
  21326. ))
  21327. characterMakers.push(() => makeCharacter(
  21328. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21329. {
  21330. front: {
  21331. height: math.unit(13 + 7 / 12, "feet"),
  21332. weight: math.unit(1500, "lb"),
  21333. name: "Front",
  21334. image: {
  21335. source: "./media/characters/briar/front.svg",
  21336. extra: 1223/1157,
  21337. bottom: 123/1346
  21338. }
  21339. },
  21340. },
  21341. [
  21342. {
  21343. name: "Normal",
  21344. height: math.unit(13 + 7 / 12, "feet"),
  21345. default: true
  21346. },
  21347. ]
  21348. ))
  21349. characterMakers.push(() => makeCharacter(
  21350. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21351. {
  21352. side: {
  21353. height: math.unit(16, "feet"),
  21354. weight: math.unit(500, "lb"),
  21355. name: "Side",
  21356. image: {
  21357. source: "./media/characters/vanguard/side.svg",
  21358. extra: 1022/914,
  21359. bottom: 30/1052
  21360. }
  21361. },
  21362. sideAlt: {
  21363. height: math.unit(10, "feet"),
  21364. weight: math.unit(500, "lb"),
  21365. name: "Side (Alt)",
  21366. image: {
  21367. source: "./media/characters/vanguard/side-alt.svg",
  21368. extra: 502 / 425,
  21369. bottom: 0.087
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(17.71, "feet"),
  21377. default: true
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21383. {
  21384. front: {
  21385. height: math.unit(7.5, "feet"),
  21386. weight: math.unit(2, "lb"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/artemis/work-safe-front.svg",
  21390. extra: 1192 / 1075,
  21391. bottom: 0.07
  21392. },
  21393. form: "work-safe",
  21394. default: true
  21395. },
  21396. frontNsfw: {
  21397. height: math.unit(7.5, "feet"),
  21398. weight: math.unit(2, "lb"),
  21399. name: "Front",
  21400. image: {
  21401. source: "./media/characters/artemis/calibrating-front.svg",
  21402. extra: 1192 / 1075,
  21403. bottom: 0.07
  21404. },
  21405. form: "calibrating",
  21406. default: true
  21407. },
  21408. frontNsfwer: {
  21409. height: math.unit(7.5, "feet"),
  21410. weight: math.unit(2, "lb"),
  21411. name: "Front",
  21412. image: {
  21413. source: "./media/characters/artemis/oversize-load-front.svg",
  21414. extra: 1192 / 1075,
  21415. bottom: 0.07
  21416. },
  21417. form: "oversize-load",
  21418. default: true
  21419. },
  21420. side: {
  21421. height: math.unit(7.5, "feet"),
  21422. weight: math.unit(2, "lb"),
  21423. name: "Side",
  21424. image: {
  21425. source: "./media/characters/artemis/work-safe-side.svg",
  21426. extra: 1192 / 1075,
  21427. bottom: 0.07
  21428. },
  21429. form: "work-safe"
  21430. },
  21431. sideNsfw: {
  21432. height: math.unit(7.5, "feet"),
  21433. weight: math.unit(2, "lb"),
  21434. name: "Side",
  21435. image: {
  21436. source: "./media/characters/artemis/calibrating-side.svg",
  21437. extra: 1192 / 1075,
  21438. bottom: 0.07
  21439. },
  21440. form: "calibrating"
  21441. },
  21442. sideNsfwer: {
  21443. height: math.unit(7.5, "feet"),
  21444. weight: math.unit(2, "lb"),
  21445. name: "Side",
  21446. image: {
  21447. source: "./media/characters/artemis/oversize-load-side.svg",
  21448. extra: 1192 / 1075,
  21449. bottom: 0.07
  21450. },
  21451. form: "oversize-load"
  21452. },
  21453. maw: {
  21454. height: math.unit(1.1, "feet"),
  21455. name: "Maw",
  21456. image: {
  21457. source: "./media/characters/artemis/maw.svg"
  21458. },
  21459. form: "work-safe"
  21460. },
  21461. stomach: {
  21462. height: math.unit(0.95, "feet"),
  21463. name: "Stomach",
  21464. image: {
  21465. source: "./media/characters/artemis/stomach.svg"
  21466. },
  21467. form: "work-safe"
  21468. },
  21469. dickCanine: {
  21470. height: math.unit(1, "feet"),
  21471. name: "Dick (Canine)",
  21472. image: {
  21473. source: "./media/characters/artemis/dick-canine.svg"
  21474. },
  21475. form: "calibrating"
  21476. },
  21477. dickEquine: {
  21478. height: math.unit(0.85, "feet"),
  21479. name: "Dick (Equine)",
  21480. image: {
  21481. source: "./media/characters/artemis/dick-equine.svg"
  21482. },
  21483. form: "calibrating"
  21484. },
  21485. dickExotic: {
  21486. height: math.unit(0.85, "feet"),
  21487. name: "Dick (Exotic)",
  21488. image: {
  21489. source: "./media/characters/artemis/dick-exotic.svg"
  21490. },
  21491. form: "calibrating"
  21492. },
  21493. dickCanineBigger: {
  21494. height: math.unit(1 * 1.33, "feet"),
  21495. name: "Dick (Canine)",
  21496. image: {
  21497. source: "./media/characters/artemis/dick-canine.svg"
  21498. },
  21499. form: "oversize-load"
  21500. },
  21501. dickEquineBigger: {
  21502. height: math.unit(0.85 * 1.33, "feet"),
  21503. name: "Dick (Equine)",
  21504. image: {
  21505. source: "./media/characters/artemis/dick-equine.svg"
  21506. },
  21507. form: "oversize-load"
  21508. },
  21509. dickExoticBigger: {
  21510. height: math.unit(0.85 * 1.33, "feet"),
  21511. name: "Dick (Exotic)",
  21512. image: {
  21513. source: "./media/characters/artemis/dick-exotic.svg"
  21514. },
  21515. form: "oversize-load"
  21516. },
  21517. },
  21518. [
  21519. {
  21520. name: "Normal",
  21521. height: math.unit(7.5, "feet"),
  21522. form: "work-safe",
  21523. default: true
  21524. },
  21525. {
  21526. name: "Normal",
  21527. height: math.unit(7.5, "feet"),
  21528. form: "calibrating",
  21529. default: true
  21530. },
  21531. {
  21532. name: "Normal",
  21533. height: math.unit(7.5, "feet"),
  21534. form: "oversize-load",
  21535. default: true
  21536. },
  21537. {
  21538. name: "Enlarged",
  21539. height: math.unit(12, "feet"),
  21540. form: "work-safe",
  21541. },
  21542. {
  21543. name: "Enlarged",
  21544. height: math.unit(12, "feet"),
  21545. form: "calibrating",
  21546. },
  21547. {
  21548. name: "Enlarged",
  21549. height: math.unit(12, "feet"),
  21550. form: "oversize-load",
  21551. },
  21552. ],
  21553. {
  21554. "work-safe": {
  21555. name: "Work-Safe",
  21556. default: true
  21557. },
  21558. "calibrating": {
  21559. name: "Calibrating"
  21560. },
  21561. "oversize-load": {
  21562. name: "Oversize Load"
  21563. }
  21564. }
  21565. ))
  21566. characterMakers.push(() => makeCharacter(
  21567. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21568. {
  21569. front: {
  21570. height: math.unit(5 + 3 / 12, "feet"),
  21571. weight: math.unit(160, "lb"),
  21572. name: "Front",
  21573. image: {
  21574. source: "./media/characters/kira/front.svg",
  21575. extra: 906 / 786,
  21576. bottom: 0.01
  21577. }
  21578. },
  21579. back: {
  21580. height: math.unit(5 + 3 / 12, "feet"),
  21581. weight: math.unit(160, "lb"),
  21582. name: "Back",
  21583. image: {
  21584. source: "./media/characters/kira/back.svg",
  21585. extra: 882 / 757,
  21586. bottom: 0.005
  21587. }
  21588. },
  21589. frontDressed: {
  21590. height: math.unit(5 + 3 / 12, "feet"),
  21591. weight: math.unit(160, "lb"),
  21592. name: "Front (Dressed)",
  21593. image: {
  21594. source: "./media/characters/kira/front-dressed.svg",
  21595. extra: 906 / 786,
  21596. bottom: 0.01
  21597. }
  21598. },
  21599. beans: {
  21600. height: math.unit(0.92, "feet"),
  21601. name: "Beans",
  21602. image: {
  21603. source: "./media/characters/kira/beans.svg"
  21604. }
  21605. },
  21606. },
  21607. [
  21608. {
  21609. name: "Normal",
  21610. height: math.unit(5 + 3 / 12, "feet"),
  21611. default: true
  21612. },
  21613. ]
  21614. ))
  21615. characterMakers.push(() => makeCharacter(
  21616. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21617. {
  21618. front: {
  21619. height: math.unit(5 + 4 / 12, "feet"),
  21620. weight: math.unit(145, "lb"),
  21621. name: "Front",
  21622. image: {
  21623. source: "./media/characters/scramble/front.svg",
  21624. extra: 763 / 727,
  21625. bottom: 0.05
  21626. }
  21627. },
  21628. back: {
  21629. height: math.unit(5 + 4 / 12, "feet"),
  21630. weight: math.unit(145, "lb"),
  21631. name: "Back",
  21632. image: {
  21633. source: "./media/characters/scramble/back.svg",
  21634. extra: 826 / 737,
  21635. bottom: 0.002
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Normal",
  21642. height: math.unit(5 + 4 / 12, "feet"),
  21643. default: true
  21644. },
  21645. ]
  21646. ))
  21647. characterMakers.push(() => makeCharacter(
  21648. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21649. {
  21650. side: {
  21651. height: math.unit(6 + 2 / 12, "feet"),
  21652. weight: math.unit(190, "lb"),
  21653. name: "Side",
  21654. image: {
  21655. source: "./media/characters/biscuit/side.svg",
  21656. extra: 858 / 791,
  21657. bottom: 0.044
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Normal",
  21664. height: math.unit(6 + 2 / 12, "feet"),
  21665. default: true
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21671. {
  21672. front: {
  21673. height: math.unit(5 + 2 / 12, "feet"),
  21674. weight: math.unit(120, "lb"),
  21675. name: "Front",
  21676. image: {
  21677. source: "./media/characters/poffin/front.svg",
  21678. extra: 786 / 680,
  21679. bottom: 0.005
  21680. }
  21681. },
  21682. },
  21683. [
  21684. {
  21685. name: "Normal",
  21686. height: math.unit(5 + 2 / 12, "feet"),
  21687. default: true
  21688. },
  21689. ]
  21690. ))
  21691. characterMakers.push(() => makeCharacter(
  21692. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21693. {
  21694. front: {
  21695. height: math.unit(6 + 3 / 12, "feet"),
  21696. weight: math.unit(519, "lb"),
  21697. name: "Front",
  21698. image: {
  21699. source: "./media/characters/dhari/front.svg",
  21700. extra: 1048 / 946,
  21701. bottom: 0.015
  21702. }
  21703. },
  21704. back: {
  21705. height: math.unit(6 + 3 / 12, "feet"),
  21706. weight: math.unit(519, "lb"),
  21707. name: "Back",
  21708. image: {
  21709. source: "./media/characters/dhari/back.svg",
  21710. extra: 1048 / 931,
  21711. bottom: 0.005
  21712. }
  21713. },
  21714. frontDressed: {
  21715. height: math.unit(6 + 3 / 12, "feet"),
  21716. weight: math.unit(519, "lb"),
  21717. name: "Front (Dressed)",
  21718. image: {
  21719. source: "./media/characters/dhari/front-dressed.svg",
  21720. extra: 1713 / 1546,
  21721. bottom: 0.02
  21722. }
  21723. },
  21724. backDressed: {
  21725. height: math.unit(6 + 3 / 12, "feet"),
  21726. weight: math.unit(519, "lb"),
  21727. name: "Back (Dressed)",
  21728. image: {
  21729. source: "./media/characters/dhari/back-dressed.svg",
  21730. extra: 1699 / 1537,
  21731. bottom: 0.01
  21732. }
  21733. },
  21734. maw: {
  21735. height: math.unit(0.95, "feet"),
  21736. name: "Maw",
  21737. image: {
  21738. source: "./media/characters/dhari/maw.svg"
  21739. }
  21740. },
  21741. wereFront: {
  21742. height: math.unit(12 + 8 / 12, "feet"),
  21743. weight: math.unit(4000, "lb"),
  21744. name: "Front (Were)",
  21745. image: {
  21746. source: "./media/characters/dhari/were-front.svg",
  21747. extra: 1065 / 969,
  21748. bottom: 0.015
  21749. }
  21750. },
  21751. wereBack: {
  21752. height: math.unit(12 + 8 / 12, "feet"),
  21753. weight: math.unit(4000, "lb"),
  21754. name: "Back (Were)",
  21755. image: {
  21756. source: "./media/characters/dhari/were-back.svg",
  21757. extra: 1065 / 969,
  21758. bottom: 0.012
  21759. }
  21760. },
  21761. wereMaw: {
  21762. height: math.unit(0.625, "meters"),
  21763. name: "Maw (Were)",
  21764. image: {
  21765. source: "./media/characters/dhari/were-maw.svg"
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Normal",
  21772. height: math.unit(6 + 3 / 12, "feet"),
  21773. default: true
  21774. },
  21775. ]
  21776. ))
  21777. characterMakers.push(() => makeCharacter(
  21778. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21779. {
  21780. anthro: {
  21781. height: math.unit(5 + 7 / 12, "feet"),
  21782. weight: math.unit(175, "lb"),
  21783. name: "Anthro",
  21784. image: {
  21785. source: "./media/characters/rena-dyne/anthro.svg",
  21786. extra: 1849 / 1785,
  21787. bottom: 0.005
  21788. }
  21789. },
  21790. taur: {
  21791. height: math.unit(15 + 6 / 12, "feet"),
  21792. weight: math.unit(8000, "lb"),
  21793. name: "Taur",
  21794. image: {
  21795. source: "./media/characters/rena-dyne/taur.svg",
  21796. extra: 2315 / 2234,
  21797. bottom: 0.033
  21798. }
  21799. },
  21800. },
  21801. [
  21802. {
  21803. name: "Normal",
  21804. height: math.unit(5 + 7 / 12, "feet"),
  21805. default: true
  21806. },
  21807. ]
  21808. ))
  21809. characterMakers.push(() => makeCharacter(
  21810. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21811. {
  21812. front: {
  21813. height: math.unit(8, "feet"),
  21814. weight: math.unit(600, "lb"),
  21815. name: "Front",
  21816. image: {
  21817. source: "./media/characters/weremeep/front.svg",
  21818. extra: 967 / 862,
  21819. bottom: 0.01
  21820. }
  21821. },
  21822. },
  21823. [
  21824. {
  21825. name: "Normal",
  21826. height: math.unit(8, "feet"),
  21827. default: true
  21828. },
  21829. {
  21830. name: "Lorg",
  21831. height: math.unit(12, "feet")
  21832. },
  21833. {
  21834. name: "Oh Lawd She Comin'",
  21835. height: math.unit(20, "feet")
  21836. },
  21837. ]
  21838. ))
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21841. {
  21842. front: {
  21843. height: math.unit(4, "feet"),
  21844. weight: math.unit(90, "lb"),
  21845. name: "Front",
  21846. image: {
  21847. source: "./media/characters/reza/front.svg",
  21848. extra: 1183 / 1111,
  21849. bottom: 0.017
  21850. }
  21851. },
  21852. back: {
  21853. height: math.unit(4, "feet"),
  21854. weight: math.unit(90, "lb"),
  21855. name: "Back",
  21856. image: {
  21857. source: "./media/characters/reza/back.svg",
  21858. extra: 1183 / 1111,
  21859. bottom: 0.01
  21860. }
  21861. },
  21862. drake: {
  21863. height: math.unit(30, "feet"),
  21864. weight: math.unit(246960, "lb"),
  21865. name: "Drake",
  21866. image: {
  21867. source: "./media/characters/reza/drake.svg",
  21868. extra: 2350 / 2024,
  21869. bottom: 60.7 / 2403
  21870. }
  21871. },
  21872. },
  21873. [
  21874. {
  21875. name: "Normal",
  21876. height: math.unit(4, "feet"),
  21877. default: true
  21878. },
  21879. ]
  21880. ))
  21881. characterMakers.push(() => makeCharacter(
  21882. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21883. {
  21884. side: {
  21885. height: math.unit(15, "feet"),
  21886. weight: math.unit(14, "tons"),
  21887. name: "Side",
  21888. image: {
  21889. source: "./media/characters/athea/side.svg",
  21890. extra: 960 / 540,
  21891. bottom: 0.003
  21892. }
  21893. },
  21894. sitting: {
  21895. height: math.unit(6 * 2.85, "feet"),
  21896. weight: math.unit(14, "tons"),
  21897. name: "Sitting",
  21898. image: {
  21899. source: "./media/characters/athea/sitting.svg",
  21900. extra: 621 / 581,
  21901. bottom: 0.075
  21902. }
  21903. },
  21904. maw: {
  21905. height: math.unit(7.59498031496063, "feet"),
  21906. name: "Maw",
  21907. image: {
  21908. source: "./media/characters/athea/maw.svg"
  21909. }
  21910. },
  21911. },
  21912. [
  21913. {
  21914. name: "Lap Cat",
  21915. height: math.unit(2.5, "feet")
  21916. },
  21917. {
  21918. name: "Minimacro",
  21919. height: math.unit(15, "feet"),
  21920. default: true
  21921. },
  21922. {
  21923. name: "Macro",
  21924. height: math.unit(120, "feet")
  21925. },
  21926. {
  21927. name: "Macro+",
  21928. height: math.unit(640, "feet")
  21929. },
  21930. {
  21931. name: "Colossus",
  21932. height: math.unit(2.2, "miles")
  21933. },
  21934. ]
  21935. ))
  21936. characterMakers.push(() => makeCharacter(
  21937. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21938. {
  21939. front: {
  21940. height: math.unit(8 + 8 / 12, "feet"),
  21941. weight: math.unit(130, "kg"),
  21942. name: "Front",
  21943. image: {
  21944. source: "./media/characters/seroko/front.svg",
  21945. extra: 1385 / 1280,
  21946. bottom: 0.025
  21947. }
  21948. },
  21949. back: {
  21950. height: math.unit(8 + 8 / 12, "feet"),
  21951. weight: math.unit(130, "kg"),
  21952. name: "Back",
  21953. image: {
  21954. source: "./media/characters/seroko/back.svg",
  21955. extra: 1369 / 1238,
  21956. bottom: 0.018
  21957. }
  21958. },
  21959. frontDressed: {
  21960. height: math.unit(8 + 8 / 12, "feet"),
  21961. weight: math.unit(130, "kg"),
  21962. name: "Front (Dressed)",
  21963. image: {
  21964. source: "./media/characters/seroko/front-dressed.svg",
  21965. extra: 1366 / 1275,
  21966. bottom: 0.03
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(8 + 8 / 12, "feet"),
  21974. default: true
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(5.5, "feet"),
  21983. weight: math.unit(160, "lb"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/quatzi/front.svg",
  21987. extra: 2346 / 2242,
  21988. bottom: 0.015
  21989. }
  21990. },
  21991. },
  21992. [
  21993. {
  21994. name: "Normal",
  21995. height: math.unit(5.5, "feet"),
  21996. default: true
  21997. },
  21998. {
  21999. name: "Big",
  22000. height: math.unit(7.7, "feet")
  22001. },
  22002. ]
  22003. ))
  22004. characterMakers.push(() => makeCharacter(
  22005. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22006. {
  22007. front: {
  22008. height: math.unit(5 + 11 / 12, "feet"),
  22009. weight: math.unit(180, "lb"),
  22010. name: "Front",
  22011. image: {
  22012. source: "./media/characters/sen/front.svg",
  22013. extra: 1321 / 1254,
  22014. bottom: 0.015
  22015. }
  22016. },
  22017. side: {
  22018. height: math.unit(5 + 11 / 12, "feet"),
  22019. weight: math.unit(180, "lb"),
  22020. name: "Side",
  22021. image: {
  22022. source: "./media/characters/sen/side.svg",
  22023. extra: 1321 / 1254,
  22024. bottom: 0.007
  22025. }
  22026. },
  22027. back: {
  22028. height: math.unit(5 + 11 / 12, "feet"),
  22029. weight: math.unit(180, "lb"),
  22030. name: "Back",
  22031. image: {
  22032. source: "./media/characters/sen/back.svg",
  22033. extra: 1321 / 1254
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Normal",
  22040. height: math.unit(5 + 11 / 12, "feet"),
  22041. default: true
  22042. },
  22043. ]
  22044. ))
  22045. characterMakers.push(() => makeCharacter(
  22046. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22047. {
  22048. front: {
  22049. height: math.unit(166.6, "cm"),
  22050. weight: math.unit(66.6, "kg"),
  22051. name: "Front",
  22052. image: {
  22053. source: "./media/characters/fruity/front.svg",
  22054. extra: 1510 / 1386,
  22055. bottom: 0.04
  22056. }
  22057. },
  22058. back: {
  22059. height: math.unit(166.6, "cm"),
  22060. weight: math.unit(66.6, "lb"),
  22061. name: "Back",
  22062. image: {
  22063. source: "./media/characters/fruity/back.svg",
  22064. extra: 1563 / 1435,
  22065. bottom: 0.005
  22066. }
  22067. },
  22068. },
  22069. [
  22070. {
  22071. name: "Normal",
  22072. height: math.unit(166.6, "cm"),
  22073. default: true
  22074. },
  22075. {
  22076. name: "Demonic",
  22077. height: math.unit(166.6, "feet")
  22078. },
  22079. ]
  22080. ))
  22081. characterMakers.push(() => makeCharacter(
  22082. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22083. {
  22084. side: {
  22085. height: math.unit(10, "feet"),
  22086. weight: math.unit(500, "lb"),
  22087. name: "Side",
  22088. image: {
  22089. source: "./media/characters/zost/side.svg",
  22090. extra: 2870/2533,
  22091. bottom: 252/3122
  22092. }
  22093. },
  22094. mawFront: {
  22095. height: math.unit(1.08, "meters"),
  22096. name: "Maw (Front)",
  22097. image: {
  22098. source: "./media/characters/zost/maw-front.svg"
  22099. }
  22100. },
  22101. mawSide: {
  22102. height: math.unit(2.66, "feet"),
  22103. name: "Maw (Side)",
  22104. image: {
  22105. source: "./media/characters/zost/maw-side.svg"
  22106. }
  22107. },
  22108. wingspan: {
  22109. height: math.unit(7.4, "feet"),
  22110. name: "Wingspan",
  22111. image: {
  22112. source: "./media/characters/zost/wingspan.svg"
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Normal",
  22119. height: math.unit(10, "feet"),
  22120. default: true
  22121. },
  22122. ]
  22123. ))
  22124. characterMakers.push(() => makeCharacter(
  22125. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22126. {
  22127. front: {
  22128. height: math.unit(5 + 4 / 12, "feet"),
  22129. weight: math.unit(120, "lb"),
  22130. name: "Front",
  22131. image: {
  22132. source: "./media/characters/luci/front.svg",
  22133. extra: 1985 / 1884,
  22134. bottom: 0.04
  22135. }
  22136. },
  22137. back: {
  22138. height: math.unit(5 + 4 / 12, "feet"),
  22139. weight: math.unit(120, "lb"),
  22140. name: "Back",
  22141. image: {
  22142. source: "./media/characters/luci/back.svg",
  22143. extra: 1892 / 1791,
  22144. bottom: 0.002
  22145. }
  22146. },
  22147. },
  22148. [
  22149. {
  22150. name: "Normal",
  22151. height: math.unit(5 + 4 / 12, "feet"),
  22152. default: true
  22153. },
  22154. ]
  22155. ))
  22156. characterMakers.push(() => makeCharacter(
  22157. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22158. {
  22159. front: {
  22160. height: math.unit(1500, "feet"),
  22161. weight: math.unit(3.8e6, "tons"),
  22162. name: "Front",
  22163. image: {
  22164. source: "./media/characters/2th/front.svg",
  22165. extra: 3489 / 3350,
  22166. bottom: 0.1
  22167. }
  22168. },
  22169. foot: {
  22170. height: math.unit(461, "feet"),
  22171. name: "Foot",
  22172. image: {
  22173. source: "./media/characters/2th/foot.svg"
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "\"Micro\"",
  22180. height: math.unit(15 + 7 / 12, "feet")
  22181. },
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(1500, "feet"),
  22185. default: true
  22186. },
  22187. {
  22188. name: "Macro",
  22189. height: math.unit(5000, "feet")
  22190. },
  22191. {
  22192. name: "Megamacro",
  22193. height: math.unit(15, "miles")
  22194. },
  22195. {
  22196. name: "Gigamacro",
  22197. height: math.unit(4000, "miles")
  22198. },
  22199. {
  22200. name: "Galactic",
  22201. height: math.unit(50, "AU")
  22202. },
  22203. ]
  22204. ))
  22205. characterMakers.push(() => makeCharacter(
  22206. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22207. {
  22208. front: {
  22209. height: math.unit(5 + 6 / 12, "feet"),
  22210. weight: math.unit(220, "lb"),
  22211. name: "Front",
  22212. image: {
  22213. source: "./media/characters/amethyst/front.svg",
  22214. extra: 2078 / 2040,
  22215. bottom: 0.045
  22216. }
  22217. },
  22218. back: {
  22219. height: math.unit(5 + 6 / 12, "feet"),
  22220. weight: math.unit(220, "lb"),
  22221. name: "Back",
  22222. image: {
  22223. source: "./media/characters/amethyst/back.svg",
  22224. extra: 2021 / 1989,
  22225. bottom: 0.02
  22226. }
  22227. },
  22228. },
  22229. [
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(5 + 6 / 12, "feet"),
  22233. default: true
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22239. {
  22240. front: {
  22241. height: math.unit(4 + 11 / 12, "feet"),
  22242. weight: math.unit(120, "lb"),
  22243. name: "Front",
  22244. image: {
  22245. source: "./media/characters/yumi-akiyama/front.svg",
  22246. extra: 1327 / 1235,
  22247. bottom: 0.02
  22248. }
  22249. },
  22250. back: {
  22251. height: math.unit(4 + 11 / 12, "feet"),
  22252. weight: math.unit(120, "lb"),
  22253. name: "Back",
  22254. image: {
  22255. source: "./media/characters/yumi-akiyama/back.svg",
  22256. extra: 1287 / 1245,
  22257. bottom: 0.002
  22258. }
  22259. },
  22260. },
  22261. [
  22262. {
  22263. name: "Galactic",
  22264. height: math.unit(50, "galaxies"),
  22265. default: true
  22266. },
  22267. {
  22268. name: "Universal",
  22269. height: math.unit(100, "universes")
  22270. },
  22271. ]
  22272. ))
  22273. characterMakers.push(() => makeCharacter(
  22274. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22275. {
  22276. front: {
  22277. height: math.unit(8, "feet"),
  22278. weight: math.unit(500, "lb"),
  22279. name: "Front",
  22280. image: {
  22281. source: "./media/characters/rifter-yrmori/front.svg",
  22282. extra: 1180 / 1125,
  22283. bottom: 0.02
  22284. }
  22285. },
  22286. back: {
  22287. height: math.unit(8, "feet"),
  22288. weight: math.unit(500, "lb"),
  22289. name: "Back",
  22290. image: {
  22291. source: "./media/characters/rifter-yrmori/back.svg",
  22292. extra: 1190 / 1145,
  22293. bottom: 0.001
  22294. }
  22295. },
  22296. wings: {
  22297. height: math.unit(7.75, "feet"),
  22298. weight: math.unit(500, "lb"),
  22299. name: "Wings",
  22300. image: {
  22301. source: "./media/characters/rifter-yrmori/wings.svg",
  22302. extra: 1357 / 1285
  22303. }
  22304. },
  22305. maw: {
  22306. height: math.unit(0.8, "feet"),
  22307. name: "Maw",
  22308. image: {
  22309. source: "./media/characters/rifter-yrmori/maw.svg"
  22310. }
  22311. },
  22312. mawfront: {
  22313. height: math.unit(1.45, "feet"),
  22314. name: "Maw (Front)",
  22315. image: {
  22316. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22317. }
  22318. },
  22319. },
  22320. [
  22321. {
  22322. name: "Normal",
  22323. height: math.unit(8, "feet"),
  22324. default: true
  22325. },
  22326. {
  22327. name: "Macro",
  22328. height: math.unit(42, "meters")
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22334. {
  22335. were: {
  22336. height: math.unit(25 + 6 / 12, "feet"),
  22337. weight: math.unit(10000, "lb"),
  22338. name: "Were",
  22339. image: {
  22340. source: "./media/characters/tahajin/were.svg",
  22341. extra: 801 / 770,
  22342. bottom: 0.042
  22343. }
  22344. },
  22345. aquatic: {
  22346. height: math.unit(6 + 4 / 12, "feet"),
  22347. weight: math.unit(160, "lb"),
  22348. name: "Aquatic",
  22349. image: {
  22350. source: "./media/characters/tahajin/aquatic.svg",
  22351. extra: 572 / 542,
  22352. bottom: 0.04
  22353. }
  22354. },
  22355. chow: {
  22356. height: math.unit(8 + 11 / 12, "feet"),
  22357. weight: math.unit(450, "lb"),
  22358. name: "Chow",
  22359. image: {
  22360. source: "./media/characters/tahajin/chow.svg",
  22361. extra: 660 / 640,
  22362. bottom: 0.015
  22363. }
  22364. },
  22365. demiNaga: {
  22366. height: math.unit(6 + 8 / 12, "feet"),
  22367. weight: math.unit(300, "lb"),
  22368. name: "Demi Naga",
  22369. image: {
  22370. source: "./media/characters/tahajin/demi-naga.svg",
  22371. extra: 643 / 615,
  22372. bottom: 0.1
  22373. }
  22374. },
  22375. data: {
  22376. height: math.unit(5, "inches"),
  22377. weight: math.unit(0.1, "lb"),
  22378. name: "Data",
  22379. image: {
  22380. source: "./media/characters/tahajin/data.svg"
  22381. }
  22382. },
  22383. fluu: {
  22384. height: math.unit(5 + 7 / 12, "feet"),
  22385. weight: math.unit(140, "lb"),
  22386. name: "Fluu",
  22387. image: {
  22388. source: "./media/characters/tahajin/fluu.svg",
  22389. extra: 628 / 592,
  22390. bottom: 0.02
  22391. }
  22392. },
  22393. starWarrior: {
  22394. height: math.unit(4 + 5 / 12, "feet"),
  22395. weight: math.unit(50, "lb"),
  22396. name: "Star Warrior",
  22397. image: {
  22398. source: "./media/characters/tahajin/star-warrior.svg"
  22399. }
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Normal",
  22405. height: math.unit(25 + 6 / 12, "feet"),
  22406. default: true
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22412. {
  22413. front: {
  22414. height: math.unit(8, "feet"),
  22415. weight: math.unit(350, "lb"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/gabira/front.svg",
  22419. extra: 608 / 580,
  22420. bottom: 0.03
  22421. }
  22422. },
  22423. back: {
  22424. height: math.unit(8, "feet"),
  22425. weight: math.unit(350, "lb"),
  22426. name: "Back",
  22427. image: {
  22428. source: "./media/characters/gabira/back.svg",
  22429. extra: 608 / 580,
  22430. bottom: 0.03
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Normal",
  22437. height: math.unit(8, "feet"),
  22438. default: true
  22439. },
  22440. ]
  22441. ))
  22442. characterMakers.push(() => makeCharacter(
  22443. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22444. {
  22445. front: {
  22446. height: math.unit(5 + 3 / 12, "feet"),
  22447. weight: math.unit(137, "lb"),
  22448. name: "Front",
  22449. image: {
  22450. source: "./media/characters/sasha-katraine/front.svg",
  22451. extra: 1745/1694,
  22452. bottom: 37/1782
  22453. }
  22454. },
  22455. back: {
  22456. height: math.unit(5 + 3 / 12, "feet"),
  22457. weight: math.unit(137, "lb"),
  22458. name: "Back",
  22459. image: {
  22460. source: "./media/characters/sasha-katraine/back.svg",
  22461. extra: 1776/1699,
  22462. bottom: 26/1802
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Micro",
  22469. height: math.unit(5, "inches")
  22470. },
  22471. {
  22472. name: "Normal",
  22473. height: math.unit(5 + 3 / 12, "feet"),
  22474. default: true
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22480. {
  22481. side: {
  22482. height: math.unit(4, "inches"),
  22483. weight: math.unit(200, "grams"),
  22484. name: "Side",
  22485. image: {
  22486. source: "./media/characters/der/side.svg",
  22487. extra: 719 / 400,
  22488. bottom: 30.6 / 749.9187
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Micro",
  22495. height: math.unit(4, "inches"),
  22496. default: true
  22497. },
  22498. ]
  22499. ))
  22500. characterMakers.push(() => makeCharacter(
  22501. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22502. {
  22503. side: {
  22504. height: math.unit(30, "meters"),
  22505. weight: math.unit(700, "tonnes"),
  22506. name: "Side",
  22507. image: {
  22508. source: "./media/characters/fixerdragon/side.svg",
  22509. extra: (1293.0514 - 116.03) / 1106.86,
  22510. bottom: 116.03 / 1293.0514
  22511. }
  22512. },
  22513. },
  22514. [
  22515. {
  22516. name: "Planck",
  22517. height: math.unit(1.6e-35, "meters")
  22518. },
  22519. {
  22520. name: "Micro",
  22521. height: math.unit(0.4, "meters")
  22522. },
  22523. {
  22524. name: "Normal",
  22525. height: math.unit(30, "meters"),
  22526. default: true
  22527. },
  22528. {
  22529. name: "Megamacro",
  22530. height: math.unit(1.2, "megameters")
  22531. },
  22532. {
  22533. name: "Teramacro",
  22534. height: math.unit(130, "terameters")
  22535. },
  22536. {
  22537. name: "Yottamacro",
  22538. height: math.unit(6200, "yottameters")
  22539. },
  22540. ]
  22541. ));
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22544. {
  22545. front: {
  22546. height: math.unit(8, "feet"),
  22547. weight: math.unit(250, "lb"),
  22548. name: "Front",
  22549. image: {
  22550. source: "./media/characters/kite/front.svg",
  22551. extra: 2796 / 2659,
  22552. bottom: 0.002
  22553. }
  22554. },
  22555. },
  22556. [
  22557. {
  22558. name: "Normal",
  22559. height: math.unit(8, "feet"),
  22560. default: true
  22561. },
  22562. {
  22563. name: "Macro",
  22564. height: math.unit(360, "feet")
  22565. },
  22566. {
  22567. name: "Megamacro",
  22568. height: math.unit(1500, "feet")
  22569. },
  22570. ]
  22571. ))
  22572. characterMakers.push(() => makeCharacter(
  22573. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22574. {
  22575. front: {
  22576. height: math.unit(5 + 11/12, "feet"),
  22577. weight: math.unit(170, "lb"),
  22578. name: "Front",
  22579. image: {
  22580. source: "./media/characters/poojawa-vynar/front.svg",
  22581. extra: 1735/1585,
  22582. bottom: 96/1831
  22583. }
  22584. },
  22585. back: {
  22586. height: math.unit(5 + 11/12, "feet"),
  22587. weight: math.unit(170, "lb"),
  22588. name: "Back",
  22589. image: {
  22590. source: "./media/characters/poojawa-vynar/back.svg",
  22591. extra: 1749/1607,
  22592. bottom: 28/1777
  22593. }
  22594. },
  22595. male: {
  22596. height: math.unit(5 + 11/12, "feet"),
  22597. weight: math.unit(170, "lb"),
  22598. name: "Male",
  22599. image: {
  22600. source: "./media/characters/poojawa-vynar/male.svg",
  22601. extra: 1855/1713,
  22602. bottom: 63/1918
  22603. }
  22604. },
  22605. taur: {
  22606. height: math.unit(5 + 11/12, "feet"),
  22607. weight: math.unit(170, "lb"),
  22608. name: "Taur",
  22609. image: {
  22610. source: "./media/characters/poojawa-vynar/taur.svg",
  22611. extra: 1151/1059,
  22612. bottom: 356/1507
  22613. }
  22614. },
  22615. frontDressed: {
  22616. height: math.unit(5 + 11/12, "feet"),
  22617. weight: math.unit(170, "lb"),
  22618. name: "Front (Dressed)",
  22619. image: {
  22620. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22621. extra: 1735/1585,
  22622. bottom: 96/1831
  22623. }
  22624. },
  22625. backDressed: {
  22626. height: math.unit(5 + 11/12, "feet"),
  22627. weight: math.unit(170, "lb"),
  22628. name: "Back (Dressed)",
  22629. image: {
  22630. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22631. extra: 1749/1607,
  22632. bottom: 28/1777
  22633. }
  22634. },
  22635. maleDressed: {
  22636. height: math.unit(5 + 11/12, "feet"),
  22637. weight: math.unit(170, "lb"),
  22638. name: "Male (Dressed)",
  22639. image: {
  22640. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22641. extra: 1855/1713,
  22642. bottom: 63/1918
  22643. }
  22644. },
  22645. taurDressed: {
  22646. height: math.unit(5 + 11/12, "feet"),
  22647. weight: math.unit(170, "lb"),
  22648. name: "Taur (Dressed)",
  22649. image: {
  22650. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22651. extra: 1151/1059,
  22652. bottom: 356/1507
  22653. }
  22654. },
  22655. maw: {
  22656. height: math.unit(1.46, "feet"),
  22657. name: "Maw",
  22658. image: {
  22659. source: "./media/characters/poojawa-vynar/maw.svg"
  22660. }
  22661. },
  22662. head: {
  22663. height: math.unit(2.34, "feet"),
  22664. name: "Head",
  22665. image: {
  22666. source: "./media/characters/poojawa-vynar/head.svg"
  22667. }
  22668. },
  22669. paw: {
  22670. height: math.unit(1.61, "feet"),
  22671. name: "Paw",
  22672. image: {
  22673. source: "./media/characters/poojawa-vynar/paw.svg"
  22674. }
  22675. },
  22676. pawToering: {
  22677. height: math.unit(1.72, "feet"),
  22678. name: "Paw (Toering)",
  22679. image: {
  22680. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22681. }
  22682. },
  22683. toering: {
  22684. height: math.unit(2.9, "inches"),
  22685. name: "Toering",
  22686. image: {
  22687. source: "./media/characters/poojawa-vynar/toering.svg"
  22688. }
  22689. },
  22690. shaft: {
  22691. height: math.unit(0.625, "feet"),
  22692. name: "Shaft",
  22693. image: {
  22694. source: "./media/characters/poojawa-vynar/shaft.svg"
  22695. }
  22696. },
  22697. spade: {
  22698. height: math.unit(0.42, "feet"),
  22699. name: "Spade",
  22700. image: {
  22701. source: "./media/characters/poojawa-vynar/spade.svg"
  22702. }
  22703. },
  22704. },
  22705. [
  22706. {
  22707. name: "Shortstack",
  22708. height: math.unit(4, "feet")
  22709. },
  22710. {
  22711. name: "Normal",
  22712. height: math.unit(5 + 11 / 12, "feet"),
  22713. default: true
  22714. },
  22715. {
  22716. name: "Tauric",
  22717. height: math.unit(4, "meters")
  22718. },
  22719. ]
  22720. ))
  22721. characterMakers.push(() => makeCharacter(
  22722. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22723. {
  22724. front: {
  22725. height: math.unit(293, "meters"),
  22726. weight: math.unit(70400, "tons"),
  22727. name: "Front",
  22728. image: {
  22729. source: "./media/characters/violette/front.svg",
  22730. extra: 1227 / 1180,
  22731. bottom: 0.005
  22732. }
  22733. },
  22734. back: {
  22735. height: math.unit(293, "meters"),
  22736. weight: math.unit(70400, "tons"),
  22737. name: "Back",
  22738. image: {
  22739. source: "./media/characters/violette/back.svg",
  22740. extra: 1227 / 1180,
  22741. bottom: 0.005
  22742. }
  22743. },
  22744. },
  22745. [
  22746. {
  22747. name: "Macro",
  22748. height: math.unit(293, "meters"),
  22749. default: true
  22750. },
  22751. ]
  22752. ))
  22753. characterMakers.push(() => makeCharacter(
  22754. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22755. {
  22756. front: {
  22757. height: math.unit(1050, "feet"),
  22758. weight: math.unit(200000, "tons"),
  22759. name: "Front",
  22760. image: {
  22761. source: "./media/characters/alessandra/front.svg",
  22762. extra: 960 / 912,
  22763. bottom: 0.06
  22764. }
  22765. },
  22766. },
  22767. [
  22768. {
  22769. name: "Macro",
  22770. height: math.unit(1050, "feet")
  22771. },
  22772. {
  22773. name: "Macro+",
  22774. height: math.unit(900, "meters"),
  22775. default: true
  22776. },
  22777. ]
  22778. ))
  22779. characterMakers.push(() => makeCharacter(
  22780. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22781. {
  22782. front: {
  22783. height: math.unit(5, "feet"),
  22784. weight: math.unit(187, "lb"),
  22785. name: "Front",
  22786. image: {
  22787. source: "./media/characters/person/front.svg",
  22788. extra: 3087 / 2945,
  22789. bottom: 91 / 3181
  22790. }
  22791. },
  22792. },
  22793. [
  22794. {
  22795. name: "Micro",
  22796. height: math.unit(3, "inches")
  22797. },
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(5, "feet"),
  22801. default: true
  22802. },
  22803. {
  22804. name: "Macro",
  22805. height: math.unit(90, "feet")
  22806. },
  22807. {
  22808. name: "Max Size",
  22809. height: math.unit(280, "feet")
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22815. {
  22816. front: {
  22817. height: math.unit(4.5, "meters"),
  22818. weight: math.unit(3200, "lb"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/ty/front.svg",
  22822. extra: 1038 / 960,
  22823. bottom: 31.156 / 1068
  22824. }
  22825. },
  22826. back: {
  22827. height: math.unit(4.5, "meters"),
  22828. weight: math.unit(3200, "lb"),
  22829. name: "Back",
  22830. image: {
  22831. source: "./media/characters/ty/back.svg",
  22832. extra: 1044 / 966,
  22833. bottom: 7.48 / 1049
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Normal",
  22840. height: math.unit(4.5, "meters"),
  22841. default: true
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22847. {
  22848. front: {
  22849. height: math.unit(5 + 4 / 12, "feet"),
  22850. weight: math.unit(115, "lb"),
  22851. name: "Front",
  22852. image: {
  22853. source: "./media/characters/rocky/front.svg",
  22854. extra: 1012 / 975,
  22855. bottom: 54 / 1066
  22856. }
  22857. },
  22858. },
  22859. [
  22860. {
  22861. name: "Normal",
  22862. height: math.unit(5 + 4 / 12, "feet"),
  22863. default: true
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22869. {
  22870. upright: {
  22871. height: math.unit(6, "meters"),
  22872. weight: math.unit(4000, "kg"),
  22873. name: "Upright",
  22874. image: {
  22875. source: "./media/characters/ruin/upright.svg",
  22876. extra: 668 / 661,
  22877. bottom: 42 / 799.8396
  22878. }
  22879. },
  22880. },
  22881. [
  22882. {
  22883. name: "Normal",
  22884. height: math.unit(6, "meters"),
  22885. default: true
  22886. },
  22887. ]
  22888. ))
  22889. characterMakers.push(() => makeCharacter(
  22890. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22891. {
  22892. front: {
  22893. height: math.unit(5, "feet"),
  22894. weight: math.unit(106, "lb"),
  22895. name: "Front",
  22896. image: {
  22897. source: "./media/characters/robin/front.svg",
  22898. extra: 862 / 799,
  22899. bottom: 42.4 / 914.8856
  22900. }
  22901. },
  22902. },
  22903. [
  22904. {
  22905. name: "Normal",
  22906. height: math.unit(5, "feet"),
  22907. default: true
  22908. },
  22909. ]
  22910. ))
  22911. characterMakers.push(() => makeCharacter(
  22912. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22913. {
  22914. side: {
  22915. height: math.unit(3, "feet"),
  22916. weight: math.unit(225, "lb"),
  22917. name: "Side",
  22918. image: {
  22919. source: "./media/characters/saian/side.svg",
  22920. extra: 566 / 356,
  22921. bottom: 79.7 / 643
  22922. }
  22923. },
  22924. maw: {
  22925. height: math.unit(2.85, "feet"),
  22926. name: "Maw",
  22927. image: {
  22928. source: "./media/characters/saian/maw.svg"
  22929. }
  22930. },
  22931. },
  22932. [
  22933. {
  22934. name: "Normal",
  22935. height: math.unit(3, "feet"),
  22936. default: true
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22942. {
  22943. side: {
  22944. height: math.unit(8, "feet"),
  22945. weight: math.unit(300, "lb"),
  22946. name: "Side",
  22947. image: {
  22948. source: "./media/characters/equus-silvermane/side.svg",
  22949. extra: 2176 / 2050,
  22950. bottom: 65.7 / 2245
  22951. }
  22952. },
  22953. front: {
  22954. height: math.unit(8, "feet"),
  22955. weight: math.unit(300, "lb"),
  22956. name: "Front",
  22957. image: {
  22958. source: "./media/characters/equus-silvermane/front.svg",
  22959. extra: 4633 / 4400,
  22960. bottom: 71.3 / 4706.915
  22961. }
  22962. },
  22963. sideStepping: {
  22964. height: math.unit(8, "feet"),
  22965. weight: math.unit(300, "lb"),
  22966. name: "Side (Stepping)",
  22967. image: {
  22968. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22969. extra: 1968 / 1860,
  22970. bottom: 16.4 / 1989
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Normal",
  22977. height: math.unit(8, "feet")
  22978. },
  22979. {
  22980. name: "Minimacro",
  22981. height: math.unit(75, "feet"),
  22982. default: true
  22983. },
  22984. {
  22985. name: "Macro",
  22986. height: math.unit(150, "feet")
  22987. },
  22988. {
  22989. name: "Macro+",
  22990. height: math.unit(1000, "feet")
  22991. },
  22992. {
  22993. name: "Megamacro",
  22994. height: math.unit(1, "mile")
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23000. {
  23001. side: {
  23002. height: math.unit(20, "feet"),
  23003. weight: math.unit(30000, "kg"),
  23004. name: "Side",
  23005. image: {
  23006. source: "./media/characters/windar/side.svg",
  23007. extra: 1491 / 1248,
  23008. bottom: 82.56 / 1568
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Normal",
  23015. height: math.unit(20, "feet"),
  23016. default: true
  23017. },
  23018. ]
  23019. ))
  23020. characterMakers.push(() => makeCharacter(
  23021. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23022. {
  23023. side: {
  23024. height: math.unit(15.66, "feet"),
  23025. weight: math.unit(150, "lb"),
  23026. name: "Side",
  23027. image: {
  23028. source: "./media/characters/melody/side.svg",
  23029. extra: 1097 / 944,
  23030. bottom: 11.8 / 1109
  23031. }
  23032. },
  23033. sideOutfit: {
  23034. height: math.unit(15.66, "feet"),
  23035. weight: math.unit(150, "lb"),
  23036. name: "Side (Outfit)",
  23037. image: {
  23038. source: "./media/characters/melody/side-outfit.svg",
  23039. extra: 1097 / 944,
  23040. bottom: 11.8 / 1109
  23041. }
  23042. },
  23043. },
  23044. [
  23045. {
  23046. name: "Normal",
  23047. height: math.unit(15.66, "feet"),
  23048. default: true
  23049. },
  23050. ]
  23051. ))
  23052. characterMakers.push(() => makeCharacter(
  23053. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23054. {
  23055. armoredFront: {
  23056. height: math.unit(8, "feet"),
  23057. weight: math.unit(325, "lb"),
  23058. name: "Front",
  23059. image: {
  23060. source: "./media/characters/windera/armored-front.svg",
  23061. extra: 1830/1598,
  23062. bottom: 151/1981
  23063. },
  23064. form: "armored",
  23065. default: true
  23066. },
  23067. macroFront: {
  23068. height: math.unit(70, "feet"),
  23069. weight: math.unit(315453, "lb"),
  23070. name: "Front",
  23071. image: {
  23072. source: "./media/characters/windera/macro-front.svg",
  23073. extra: 963/883,
  23074. bottom: 23/986
  23075. },
  23076. form: "macro",
  23077. default: true
  23078. },
  23079. },
  23080. [
  23081. {
  23082. name: "Normal",
  23083. height: math.unit(8, "feet"),
  23084. default: true,
  23085. form: "armored"
  23086. },
  23087. {
  23088. name: "Normal",
  23089. height: math.unit(70, "feet"),
  23090. default: true,
  23091. form: "macro"
  23092. },
  23093. ],
  23094. {
  23095. "armored": {
  23096. name: "Armored",
  23097. default: true
  23098. },
  23099. "macro": {
  23100. name: "Macro",
  23101. },
  23102. }
  23103. ))
  23104. characterMakers.push(() => makeCharacter(
  23105. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23106. {
  23107. front: {
  23108. height: math.unit(28.75, "feet"),
  23109. weight: math.unit(2000, "kg"),
  23110. name: "Front",
  23111. image: {
  23112. source: "./media/characters/sonear/front.svg",
  23113. extra: 1041.1 / 964.9,
  23114. bottom: 53.7 / 1096.6
  23115. }
  23116. },
  23117. },
  23118. [
  23119. {
  23120. name: "Normal",
  23121. height: math.unit(28.75, "feet"),
  23122. default: true
  23123. },
  23124. ]
  23125. ))
  23126. characterMakers.push(() => makeCharacter(
  23127. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23128. {
  23129. side: {
  23130. height: math.unit(25.5, "feet"),
  23131. weight: math.unit(23000, "kg"),
  23132. name: "Side",
  23133. image: {
  23134. source: "./media/characters/kanara/side.svg"
  23135. }
  23136. },
  23137. },
  23138. [
  23139. {
  23140. name: "Normal",
  23141. height: math.unit(25.5, "feet"),
  23142. default: true
  23143. },
  23144. ]
  23145. ))
  23146. characterMakers.push(() => makeCharacter(
  23147. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23148. {
  23149. side: {
  23150. height: math.unit(10, "feet"),
  23151. weight: math.unit(1000, "kg"),
  23152. name: "Side",
  23153. image: {
  23154. source: "./media/characters/ereus/side.svg",
  23155. extra: 1157 / 959,
  23156. bottom: 153 / 1312.5
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Normal",
  23163. height: math.unit(10, "feet"),
  23164. default: true
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23170. {
  23171. side: {
  23172. height: math.unit(4.5, "feet"),
  23173. weight: math.unit(500, "lb"),
  23174. name: "Side",
  23175. image: {
  23176. source: "./media/characters/e-ter/side.svg",
  23177. extra: 1550 / 1248,
  23178. bottom: 146 / 1694
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Normal",
  23185. height: math.unit(4.5, "feet"),
  23186. default: true
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23192. {
  23193. side: {
  23194. height: math.unit(9.7, "feet"),
  23195. weight: math.unit(4000, "kg"),
  23196. name: "Side",
  23197. image: {
  23198. source: "./media/characters/yamie/side.svg"
  23199. }
  23200. },
  23201. },
  23202. [
  23203. {
  23204. name: "Normal",
  23205. height: math.unit(9.7, "feet"),
  23206. default: true
  23207. },
  23208. ]
  23209. ))
  23210. characterMakers.push(() => makeCharacter(
  23211. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23212. {
  23213. front: {
  23214. height: math.unit(50, "feet"),
  23215. weight: math.unit(50000, "kg"),
  23216. name: "Front",
  23217. image: {
  23218. source: "./media/characters/anders/front.svg",
  23219. extra: 570 / 539,
  23220. bottom: 14.7 / 586.7
  23221. }
  23222. },
  23223. },
  23224. [
  23225. {
  23226. name: "Large",
  23227. height: math.unit(50, "feet")
  23228. },
  23229. {
  23230. name: "Macro",
  23231. height: math.unit(2000, "feet"),
  23232. default: true
  23233. },
  23234. {
  23235. name: "Megamacro",
  23236. height: math.unit(12, "miles")
  23237. },
  23238. ]
  23239. ))
  23240. characterMakers.push(() => makeCharacter(
  23241. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23242. {
  23243. front: {
  23244. height: math.unit(7 + 2 / 12, "feet"),
  23245. weight: math.unit(300, "lb"),
  23246. name: "Front",
  23247. image: {
  23248. source: "./media/characters/reban/front.svg",
  23249. extra: 1287/1212,
  23250. bottom: 148/1435
  23251. }
  23252. },
  23253. head: {
  23254. height: math.unit(1.95, "feet"),
  23255. name: "Head",
  23256. image: {
  23257. source: "./media/characters/reban/head.svg"
  23258. }
  23259. },
  23260. maw: {
  23261. height: math.unit(0.95, "feet"),
  23262. name: "Maw",
  23263. image: {
  23264. source: "./media/characters/reban/maw.svg"
  23265. }
  23266. },
  23267. foot: {
  23268. height: math.unit(1.65, "feet"),
  23269. name: "Foot",
  23270. image: {
  23271. source: "./media/characters/reban/foot.svg"
  23272. }
  23273. },
  23274. dick: {
  23275. height: math.unit(7 / 5, "feet"),
  23276. name: "Dick",
  23277. image: {
  23278. source: "./media/characters/reban/dick.svg"
  23279. }
  23280. },
  23281. },
  23282. [
  23283. {
  23284. name: "Natural Height",
  23285. height: math.unit(7 + 2 / 12, "feet")
  23286. },
  23287. {
  23288. name: "Macro",
  23289. height: math.unit(500, "feet"),
  23290. default: true
  23291. },
  23292. {
  23293. name: "Canon Height",
  23294. height: math.unit(50, "AU")
  23295. },
  23296. ]
  23297. ))
  23298. characterMakers.push(() => makeCharacter(
  23299. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23300. {
  23301. front: {
  23302. height: math.unit(6, "feet"),
  23303. weight: math.unit(150, "lb"),
  23304. name: "Front",
  23305. image: {
  23306. source: "./media/characters/terrance-keayes/front.svg",
  23307. extra: 1.005,
  23308. bottom: 151 / 1615
  23309. }
  23310. },
  23311. side: {
  23312. height: math.unit(6, "feet"),
  23313. weight: math.unit(150, "lb"),
  23314. name: "Side",
  23315. image: {
  23316. source: "./media/characters/terrance-keayes/side.svg",
  23317. extra: 1.005,
  23318. bottom: 129.4 / 1544
  23319. }
  23320. },
  23321. back: {
  23322. height: math.unit(6, "feet"),
  23323. weight: math.unit(150, "lb"),
  23324. name: "Back",
  23325. image: {
  23326. source: "./media/characters/terrance-keayes/back.svg",
  23327. extra: 1.005,
  23328. bottom: 58.4 / 1557.3
  23329. }
  23330. },
  23331. dick: {
  23332. height: math.unit(6 * 0.208, "feet"),
  23333. name: "Dick",
  23334. image: {
  23335. source: "./media/characters/terrance-keayes/dick.svg"
  23336. }
  23337. },
  23338. },
  23339. [
  23340. {
  23341. name: "Canon Height",
  23342. height: math.unit(35, "miles"),
  23343. default: true
  23344. },
  23345. ]
  23346. ))
  23347. characterMakers.push(() => makeCharacter(
  23348. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23349. {
  23350. front: {
  23351. height: math.unit(6, "feet"),
  23352. weight: math.unit(150, "lb"),
  23353. name: "Front",
  23354. image: {
  23355. source: "./media/characters/ofelia/front.svg",
  23356. extra: 1130/1117,
  23357. bottom: 91/1221
  23358. }
  23359. },
  23360. back: {
  23361. height: math.unit(6, "feet"),
  23362. weight: math.unit(150, "lb"),
  23363. name: "Back",
  23364. image: {
  23365. source: "./media/characters/ofelia/back.svg",
  23366. extra: 1172/1159,
  23367. bottom: 28/1200
  23368. }
  23369. },
  23370. maw: {
  23371. height: math.unit(1, "feet"),
  23372. name: "Maw",
  23373. image: {
  23374. source: "./media/characters/ofelia/maw.svg"
  23375. }
  23376. },
  23377. foot: {
  23378. height: math.unit(1.949, "feet"),
  23379. name: "Foot",
  23380. image: {
  23381. source: "./media/characters/ofelia/foot.svg"
  23382. }
  23383. },
  23384. },
  23385. [
  23386. {
  23387. name: "Canon Height",
  23388. height: math.unit(2000, "miles"),
  23389. default: true
  23390. },
  23391. ]
  23392. ))
  23393. characterMakers.push(() => makeCharacter(
  23394. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23395. {
  23396. front: {
  23397. height: math.unit(6, "feet"),
  23398. weight: math.unit(150, "lb"),
  23399. name: "Front",
  23400. image: {
  23401. source: "./media/characters/samuel/front.svg",
  23402. extra: 265 / 258,
  23403. bottom: 2 / 266.1566
  23404. }
  23405. },
  23406. },
  23407. [
  23408. {
  23409. name: "Macro",
  23410. height: math.unit(100, "feet"),
  23411. default: true
  23412. },
  23413. {
  23414. name: "Full Size",
  23415. height: math.unit(1000, "miles")
  23416. },
  23417. ]
  23418. ))
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23421. {
  23422. front: {
  23423. height: math.unit(6, "feet"),
  23424. weight: math.unit(300, "lb"),
  23425. name: "Front",
  23426. image: {
  23427. source: "./media/characters/beishir-kiel/front.svg",
  23428. extra: 569 / 547,
  23429. bottom: 41.9 / 609
  23430. }
  23431. },
  23432. maw: {
  23433. height: math.unit(6 * 0.202, "feet"),
  23434. name: "Maw",
  23435. image: {
  23436. source: "./media/characters/beishir-kiel/maw.svg"
  23437. }
  23438. },
  23439. },
  23440. [
  23441. {
  23442. name: "Macro",
  23443. height: math.unit(300, "feet"),
  23444. default: true
  23445. },
  23446. ]
  23447. ))
  23448. characterMakers.push(() => makeCharacter(
  23449. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23450. {
  23451. front: {
  23452. height: math.unit(5 + 7/12, "feet"),
  23453. weight: math.unit(120, "lb"),
  23454. name: "Front",
  23455. image: {
  23456. source: "./media/characters/logan-grey/front.svg",
  23457. extra: 1836/1738,
  23458. bottom: 108/1944
  23459. }
  23460. },
  23461. back: {
  23462. height: math.unit(5 + 7/12, "feet"),
  23463. weight: math.unit(120, "lb"),
  23464. name: "Back",
  23465. image: {
  23466. source: "./media/characters/logan-grey/back.svg",
  23467. extra: 1880/1794,
  23468. bottom: 24/1904
  23469. }
  23470. },
  23471. frontSfw: {
  23472. height: math.unit(5 + 7/12, "feet"),
  23473. weight: math.unit(120, "lb"),
  23474. name: "Front (SFW)",
  23475. image: {
  23476. source: "./media/characters/logan-grey/front-sfw.svg",
  23477. extra: 1836/1738,
  23478. bottom: 108/1944
  23479. }
  23480. },
  23481. backSfw: {
  23482. height: math.unit(5 + 7/12, "feet"),
  23483. weight: math.unit(120, "lb"),
  23484. name: "Back (SFW)",
  23485. image: {
  23486. source: "./media/characters/logan-grey/back-sfw.svg",
  23487. extra: 1880/1794,
  23488. bottom: 24/1904
  23489. }
  23490. },
  23491. hands: {
  23492. height: math.unit(0.84, "feet"),
  23493. name: "Hands",
  23494. image: {
  23495. source: "./media/characters/logan-grey/hands.svg"
  23496. }
  23497. },
  23498. paws: {
  23499. height: math.unit(0.72, "feet"),
  23500. name: "Paws",
  23501. image: {
  23502. source: "./media/characters/logan-grey/paws.svg"
  23503. }
  23504. },
  23505. cock: {
  23506. height: math.unit(1.45, "feet"),
  23507. name: "Cock",
  23508. image: {
  23509. source: "./media/characters/logan-grey/cock.svg"
  23510. }
  23511. },
  23512. cockAlt: {
  23513. height: math.unit(1.437, "feet"),
  23514. name: "Cock (alt)",
  23515. image: {
  23516. source: "./media/characters/logan-grey/cock-alt.svg"
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Normal",
  23523. height: math.unit(5 + 8 / 12, "feet")
  23524. },
  23525. {
  23526. name: "The 500 Foot Femboy",
  23527. height: math.unit(500, "feet"),
  23528. default: true
  23529. },
  23530. {
  23531. name: "Megmacro",
  23532. height: math.unit(20, "miles")
  23533. },
  23534. ]
  23535. ))
  23536. characterMakers.push(() => makeCharacter(
  23537. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23538. {
  23539. front: {
  23540. height: math.unit(8 + 2 / 12, "feet"),
  23541. weight: math.unit(275, "lb"),
  23542. name: "Front",
  23543. image: {
  23544. source: "./media/characters/draganta/front.svg",
  23545. extra: 1177 / 1135,
  23546. bottom: 33.46 / 1212.1
  23547. }
  23548. },
  23549. },
  23550. [
  23551. {
  23552. name: "Normal",
  23553. height: math.unit(8 + 6 / 12, "feet"),
  23554. default: true
  23555. },
  23556. {
  23557. name: "Macro",
  23558. height: math.unit(150, "feet")
  23559. },
  23560. {
  23561. name: "Megamacro",
  23562. height: math.unit(1000, "miles")
  23563. },
  23564. ]
  23565. ))
  23566. characterMakers.push(() => makeCharacter(
  23567. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23568. {
  23569. front: {
  23570. height: math.unit(1.72, "m"),
  23571. weight: math.unit(80, "lb"),
  23572. name: "Front",
  23573. image: {
  23574. source: "./media/characters/voski/front.svg",
  23575. extra: 2076.22 / 2022.4,
  23576. bottom: 102.7 / 2177.3866
  23577. }
  23578. },
  23579. frontFlaccid: {
  23580. height: math.unit(1.72, "m"),
  23581. weight: math.unit(80, "lb"),
  23582. name: "Front (Flaccid)",
  23583. image: {
  23584. source: "./media/characters/voski/front-flaccid.svg",
  23585. extra: 2076.22 / 2022.4,
  23586. bottom: 102.7 / 2177.3866
  23587. }
  23588. },
  23589. frontErect: {
  23590. height: math.unit(1.72, "m"),
  23591. weight: math.unit(80, "lb"),
  23592. name: "Front (Erect)",
  23593. image: {
  23594. source: "./media/characters/voski/front-erect.svg",
  23595. extra: 2076.22 / 2022.4,
  23596. bottom: 102.7 / 2177.3866
  23597. }
  23598. },
  23599. back: {
  23600. height: math.unit(1.72, "m"),
  23601. weight: math.unit(80, "lb"),
  23602. name: "Back",
  23603. image: {
  23604. source: "./media/characters/voski/back.svg",
  23605. extra: 2104 / 2051,
  23606. bottom: 10.45 / 2113.63
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(1.72, "m")
  23614. },
  23615. {
  23616. name: "Macro",
  23617. height: math.unit(55, "m"),
  23618. default: true
  23619. },
  23620. {
  23621. name: "Macro+",
  23622. height: math.unit(300, "m")
  23623. },
  23624. {
  23625. name: "Macro++",
  23626. height: math.unit(700, "m")
  23627. },
  23628. {
  23629. name: "Macro+++",
  23630. height: math.unit(4500, "m")
  23631. },
  23632. {
  23633. name: "Macro++++",
  23634. height: math.unit(45, "km")
  23635. },
  23636. {
  23637. name: "Macro+++++",
  23638. height: math.unit(1220, "km")
  23639. },
  23640. ]
  23641. ))
  23642. characterMakers.push(() => makeCharacter(
  23643. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23644. {
  23645. front: {
  23646. height: math.unit(2.3, "m"),
  23647. weight: math.unit(304, "kg"),
  23648. name: "Front",
  23649. image: {
  23650. source: "./media/characters/icowom-lee/front.svg",
  23651. extra: 985 / 955,
  23652. bottom: 25.4 / 1012
  23653. }
  23654. },
  23655. fronttentacles: {
  23656. height: math.unit(2.3, "m"),
  23657. weight: math.unit(304, "kg"),
  23658. name: "Front-tentacles",
  23659. image: {
  23660. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23661. extra: 985 / 955,
  23662. bottom: 25.4 / 1012
  23663. }
  23664. },
  23665. back: {
  23666. height: math.unit(2.3, "m"),
  23667. weight: math.unit(304, "kg"),
  23668. name: "Back",
  23669. image: {
  23670. source: "./media/characters/icowom-lee/back.svg",
  23671. extra: 975 / 954,
  23672. bottom: 9.5 / 985
  23673. }
  23674. },
  23675. backtentacles: {
  23676. height: math.unit(2.3, "m"),
  23677. weight: math.unit(304, "kg"),
  23678. name: "Back-tentacles",
  23679. image: {
  23680. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23681. extra: 975 / 954,
  23682. bottom: 9.5 / 985
  23683. }
  23684. },
  23685. frontDressed: {
  23686. height: math.unit(2.3, "m"),
  23687. weight: math.unit(304, "kg"),
  23688. name: "Front (Dressed)",
  23689. image: {
  23690. source: "./media/characters/icowom-lee/front-dressed.svg",
  23691. extra: 3076 / 2933,
  23692. bottom: 51.4 / 3125.1889
  23693. }
  23694. },
  23695. rump: {
  23696. height: math.unit(0.776, "meters"),
  23697. name: "Rump",
  23698. image: {
  23699. source: "./media/characters/icowom-lee/rump.svg"
  23700. }
  23701. },
  23702. genitals: {
  23703. height: math.unit(0.78, "meters"),
  23704. name: "Genitals",
  23705. image: {
  23706. source: "./media/characters/icowom-lee/genitals.svg"
  23707. }
  23708. },
  23709. },
  23710. [
  23711. {
  23712. name: "Normal",
  23713. height: math.unit(2.3, "meters"),
  23714. default: true
  23715. },
  23716. {
  23717. name: "Macro",
  23718. height: math.unit(94, "meters"),
  23719. default: true
  23720. },
  23721. ]
  23722. ))
  23723. characterMakers.push(() => makeCharacter(
  23724. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23725. {
  23726. front: {
  23727. height: math.unit(22, "meters"),
  23728. weight: math.unit(21000, "kg"),
  23729. name: "Front",
  23730. image: {
  23731. source: "./media/characters/shock-diamond/front.svg",
  23732. extra: 2204 / 2053,
  23733. bottom: 65 / 2239.47
  23734. }
  23735. },
  23736. frontNude: {
  23737. height: math.unit(22, "meters"),
  23738. weight: math.unit(21000, "kg"),
  23739. name: "Front (Nude)",
  23740. image: {
  23741. source: "./media/characters/shock-diamond/front-nude.svg",
  23742. extra: 2514 / 2285,
  23743. bottom: 13 / 2527.56
  23744. }
  23745. },
  23746. },
  23747. [
  23748. {
  23749. name: "Normal",
  23750. height: math.unit(3, "meters")
  23751. },
  23752. {
  23753. name: "Macro",
  23754. height: math.unit(22, "meters"),
  23755. default: true
  23756. },
  23757. ]
  23758. ))
  23759. characterMakers.push(() => makeCharacter(
  23760. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23761. {
  23762. front: {
  23763. height: math.unit(5 + 4 / 12, "feet"),
  23764. weight: math.unit(120, "lb"),
  23765. name: "Front",
  23766. image: {
  23767. source: "./media/characters/rory/front.svg",
  23768. extra: 1318/1241,
  23769. bottom: 42/1360
  23770. }
  23771. },
  23772. back: {
  23773. height: math.unit(5 + 4 / 12, "feet"),
  23774. weight: math.unit(120, "lb"),
  23775. name: "Back",
  23776. image: {
  23777. source: "./media/characters/rory/back.svg",
  23778. extra: 1318/1241,
  23779. bottom: 42/1360
  23780. }
  23781. },
  23782. butt: {
  23783. height: math.unit(1.74, "feet"),
  23784. name: "Butt",
  23785. image: {
  23786. source: "./media/characters/rory/butt.svg"
  23787. }
  23788. },
  23789. dick: {
  23790. height: math.unit(1.02, "feet"),
  23791. name: "Dick",
  23792. image: {
  23793. source: "./media/characters/rory/dick.svg"
  23794. }
  23795. },
  23796. paws: {
  23797. height: math.unit(1, "feet"),
  23798. name: "Paws",
  23799. image: {
  23800. source: "./media/characters/rory/paws.svg"
  23801. }
  23802. },
  23803. frontAlt: {
  23804. height: math.unit(5 + 4 / 12, "feet"),
  23805. weight: math.unit(120, "lb"),
  23806. name: "Front (Alt)",
  23807. image: {
  23808. source: "./media/characters/rory/front-alt.svg",
  23809. extra: 589 / 556,
  23810. bottom: 45.7 / 635.76
  23811. }
  23812. },
  23813. frontAltNude: {
  23814. height: math.unit(5 + 4 / 12, "feet"),
  23815. weight: math.unit(120, "lb"),
  23816. name: "Front (Alt, Nude)",
  23817. image: {
  23818. source: "./media/characters/rory/front-alt-nude.svg",
  23819. extra: 589 / 556,
  23820. bottom: 45.7 / 635.76
  23821. }
  23822. },
  23823. side: {
  23824. height: math.unit(5 + 4 / 12, "feet"),
  23825. weight: math.unit(120, "lb"),
  23826. name: "Side",
  23827. image: {
  23828. source: "./media/characters/rory/side.svg",
  23829. extra: 597 / 564,
  23830. bottom: 55 / 653
  23831. }
  23832. },
  23833. backAlt: {
  23834. height: math.unit(5 + 4 / 12, "feet"),
  23835. weight: math.unit(120, "lb"),
  23836. name: "Back (Alt)",
  23837. image: {
  23838. source: "./media/characters/rory/back-alt.svg",
  23839. extra: 620 / 585,
  23840. bottom: 8.86 / 630.43
  23841. }
  23842. },
  23843. dickAlt: {
  23844. height: math.unit(0.86, "feet"),
  23845. name: "Dick (Alt)",
  23846. image: {
  23847. source: "./media/characters/rory/dick-alt.svg"
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Normal",
  23854. height: math.unit(5 + 4 / 12, "feet"),
  23855. default: true
  23856. },
  23857. {
  23858. name: "Macro",
  23859. height: math.unit(100, "feet")
  23860. },
  23861. {
  23862. name: "Macro+",
  23863. height: math.unit(140, "feet")
  23864. },
  23865. {
  23866. name: "Macro++",
  23867. height: math.unit(300, "feet")
  23868. },
  23869. ]
  23870. ))
  23871. characterMakers.push(() => makeCharacter(
  23872. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23873. {
  23874. front: {
  23875. height: math.unit(5 + 9 / 12, "feet"),
  23876. weight: math.unit(190, "lb"),
  23877. name: "Front",
  23878. image: {
  23879. source: "./media/characters/sprisk/front.svg",
  23880. extra: 1225 / 1180,
  23881. bottom: 42.7 / 1266.4
  23882. }
  23883. },
  23884. frontNsfw: {
  23885. height: math.unit(5 + 9 / 12, "feet"),
  23886. weight: math.unit(190, "lb"),
  23887. name: "Front (NSFW)",
  23888. image: {
  23889. source: "./media/characters/sprisk/front-nsfw.svg",
  23890. extra: 1225 / 1180,
  23891. bottom: 42.7 / 1266.4
  23892. }
  23893. },
  23894. back: {
  23895. height: math.unit(5 + 9 / 12, "feet"),
  23896. weight: math.unit(190, "lb"),
  23897. name: "Back",
  23898. image: {
  23899. source: "./media/characters/sprisk/back.svg",
  23900. extra: 1247 / 1200,
  23901. bottom: 5.6 / 1253.04
  23902. }
  23903. },
  23904. },
  23905. [
  23906. {
  23907. name: "Tiny",
  23908. height: math.unit(2, "inches")
  23909. },
  23910. {
  23911. name: "Normal",
  23912. height: math.unit(5 + 9 / 12, "feet"),
  23913. default: true
  23914. },
  23915. {
  23916. name: "Mini Macro",
  23917. height: math.unit(18, "feet")
  23918. },
  23919. {
  23920. name: "Macro",
  23921. height: math.unit(100, "feet")
  23922. },
  23923. {
  23924. name: "MACRO",
  23925. height: math.unit(50, "miles")
  23926. },
  23927. {
  23928. name: "M A C R O",
  23929. height: math.unit(300, "miles")
  23930. },
  23931. ]
  23932. ))
  23933. characterMakers.push(() => makeCharacter(
  23934. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23935. {
  23936. side: {
  23937. height: math.unit(15.6, "meters"),
  23938. weight: math.unit(700000, "kg"),
  23939. name: "Side",
  23940. image: {
  23941. source: "./media/characters/bunsen/side.svg",
  23942. extra: 1644 / 358
  23943. }
  23944. },
  23945. foot: {
  23946. height: math.unit(1.611 * 1644 / 358, "meter"),
  23947. name: "Foot",
  23948. image: {
  23949. source: "./media/characters/bunsen/foot.svg"
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Small",
  23956. height: math.unit(10, "feet")
  23957. },
  23958. {
  23959. name: "Normal",
  23960. height: math.unit(15.6, "meters"),
  23961. default: true
  23962. },
  23963. ]
  23964. ))
  23965. characterMakers.push(() => makeCharacter(
  23966. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23967. {
  23968. front: {
  23969. height: math.unit(4 + 11 / 12, "feet"),
  23970. weight: math.unit(140, "lb"),
  23971. name: "Front",
  23972. image: {
  23973. source: "./media/characters/sesh/front.svg",
  23974. extra: 3420 / 3231,
  23975. bottom: 72 / 3949.5
  23976. }
  23977. },
  23978. },
  23979. [
  23980. {
  23981. name: "Normal",
  23982. height: math.unit(4 + 11 / 12, "feet")
  23983. },
  23984. {
  23985. name: "Grown",
  23986. height: math.unit(15, "feet"),
  23987. default: true
  23988. },
  23989. {
  23990. name: "Macro",
  23991. height: math.unit(1500, "feet")
  23992. },
  23993. {
  23994. name: "Megamacro",
  23995. height: math.unit(30, "miles")
  23996. },
  23997. {
  23998. name: "Continental",
  23999. height: math.unit(3000, "miles")
  24000. },
  24001. {
  24002. name: "Gravity Mass",
  24003. height: math.unit(300000, "miles")
  24004. },
  24005. {
  24006. name: "Planet Buster",
  24007. height: math.unit(30000000, "miles")
  24008. },
  24009. {
  24010. name: "Big",
  24011. height: math.unit(3000000000, "miles")
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24017. {
  24018. front: {
  24019. height: math.unit(9, "feet"),
  24020. weight: math.unit(350, "lb"),
  24021. name: "Front",
  24022. image: {
  24023. source: "./media/characters/pepper/front.svg",
  24024. extra: 1448 / 1312,
  24025. bottom: 9.4 / 1457.88
  24026. }
  24027. },
  24028. back: {
  24029. height: math.unit(9, "feet"),
  24030. weight: math.unit(350, "lb"),
  24031. name: "Back",
  24032. image: {
  24033. source: "./media/characters/pepper/back.svg",
  24034. extra: 1423 / 1300,
  24035. bottom: 4.6 / 1429
  24036. }
  24037. },
  24038. maw: {
  24039. height: math.unit(0.932, "feet"),
  24040. name: "Maw",
  24041. image: {
  24042. source: "./media/characters/pepper/maw.svg"
  24043. }
  24044. },
  24045. },
  24046. [
  24047. {
  24048. name: "Normal",
  24049. height: math.unit(9, "feet"),
  24050. default: true
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24056. {
  24057. front: {
  24058. height: math.unit(6, "feet"),
  24059. weight: math.unit(150, "lb"),
  24060. name: "Front",
  24061. image: {
  24062. source: "./media/characters/maelstrom/front.svg",
  24063. extra: 2100 / 1883,
  24064. bottom: 94 / 2196.7
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "Less Kaiju",
  24071. height: math.unit(200, "feet")
  24072. },
  24073. {
  24074. name: "Kaiju",
  24075. height: math.unit(400, "feet"),
  24076. default: true
  24077. },
  24078. {
  24079. name: "Kaiju-er",
  24080. height: math.unit(600, "feet")
  24081. },
  24082. ]
  24083. ))
  24084. characterMakers.push(() => makeCharacter(
  24085. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24086. {
  24087. front: {
  24088. height: math.unit(6 + 5 / 12, "feet"),
  24089. weight: math.unit(180, "lb"),
  24090. name: "Front",
  24091. image: {
  24092. source: "./media/characters/lexir/front.svg",
  24093. extra: 180 / 172,
  24094. bottom: 12 / 192
  24095. }
  24096. },
  24097. back: {
  24098. height: math.unit(6 + 5 / 12, "feet"),
  24099. weight: math.unit(180, "lb"),
  24100. name: "Back",
  24101. image: {
  24102. source: "./media/characters/lexir/back.svg",
  24103. extra: 1273/1201,
  24104. bottom: 39/1312
  24105. }
  24106. },
  24107. },
  24108. [
  24109. {
  24110. name: "Very Smal",
  24111. height: math.unit(1, "nm")
  24112. },
  24113. {
  24114. name: "Normal",
  24115. height: math.unit(6 + 5 / 12, "feet"),
  24116. default: true
  24117. },
  24118. {
  24119. name: "Macro",
  24120. height: math.unit(1, "mile")
  24121. },
  24122. {
  24123. name: "Megamacro",
  24124. height: math.unit(50, "miles")
  24125. },
  24126. ]
  24127. ))
  24128. characterMakers.push(() => makeCharacter(
  24129. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24130. {
  24131. front: {
  24132. height: math.unit(1.5, "meters"),
  24133. weight: math.unit(100, "lb"),
  24134. name: "Front",
  24135. image: {
  24136. source: "./media/characters/maksio/front.svg",
  24137. extra: 1549 / 1531,
  24138. bottom: 123.7 / 1674.5429
  24139. }
  24140. },
  24141. back: {
  24142. height: math.unit(1.5, "meters"),
  24143. weight: math.unit(100, "lb"),
  24144. name: "Back",
  24145. image: {
  24146. source: "./media/characters/maksio/back.svg",
  24147. extra: 1541 / 1509,
  24148. bottom: 97 / 1639
  24149. }
  24150. },
  24151. hand: {
  24152. height: math.unit(0.621, "feet"),
  24153. name: "Hand",
  24154. image: {
  24155. source: "./media/characters/maksio/hand.svg"
  24156. }
  24157. },
  24158. foot: {
  24159. height: math.unit(1.611, "feet"),
  24160. name: "Foot",
  24161. image: {
  24162. source: "./media/characters/maksio/foot.svg"
  24163. }
  24164. },
  24165. },
  24166. [
  24167. {
  24168. name: "Shrunken",
  24169. height: math.unit(10, "cm")
  24170. },
  24171. {
  24172. name: "Normal",
  24173. height: math.unit(150, "cm"),
  24174. default: true
  24175. },
  24176. ]
  24177. ))
  24178. characterMakers.push(() => makeCharacter(
  24179. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24180. {
  24181. front: {
  24182. height: math.unit(100, "feet"),
  24183. name: "Front",
  24184. image: {
  24185. source: "./media/characters/erza-bear/front.svg",
  24186. extra: 2449 / 2390,
  24187. bottom: 46 / 2494
  24188. }
  24189. },
  24190. back: {
  24191. height: math.unit(100, "feet"),
  24192. name: "Back",
  24193. image: {
  24194. source: "./media/characters/erza-bear/back.svg",
  24195. extra: 2489 / 2430,
  24196. bottom: 85.4 / 2480
  24197. }
  24198. },
  24199. tail: {
  24200. height: math.unit(42, "feet"),
  24201. name: "Tail",
  24202. image: {
  24203. source: "./media/characters/erza-bear/tail.svg"
  24204. }
  24205. },
  24206. tongue: {
  24207. height: math.unit(8, "feet"),
  24208. name: "Tongue",
  24209. image: {
  24210. source: "./media/characters/erza-bear/tongue.svg"
  24211. }
  24212. },
  24213. dick: {
  24214. height: math.unit(10.5, "feet"),
  24215. name: "Dick",
  24216. image: {
  24217. source: "./media/characters/erza-bear/dick.svg"
  24218. }
  24219. },
  24220. dickVertical: {
  24221. height: math.unit(16.9, "feet"),
  24222. name: "Dick (Vertical)",
  24223. image: {
  24224. source: "./media/characters/erza-bear/dick-vertical.svg"
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Macro",
  24231. height: math.unit(100, "feet"),
  24232. default: true
  24233. },
  24234. ]
  24235. ))
  24236. characterMakers.push(() => makeCharacter(
  24237. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24238. {
  24239. front: {
  24240. height: math.unit(172, "cm"),
  24241. weight: math.unit(73, "kg"),
  24242. name: "Front",
  24243. image: {
  24244. source: "./media/characters/violet-flor/front.svg",
  24245. extra: 1530 / 1442,
  24246. bottom: 61.9 / 1588.8
  24247. }
  24248. },
  24249. back: {
  24250. height: math.unit(180, "cm"),
  24251. weight: math.unit(73, "kg"),
  24252. name: "Back",
  24253. image: {
  24254. source: "./media/characters/violet-flor/back.svg",
  24255. extra: 1692 / 1630,
  24256. bottom: 20 / 1712
  24257. }
  24258. },
  24259. },
  24260. [
  24261. {
  24262. name: "Normal",
  24263. height: math.unit(172, "cm"),
  24264. default: true
  24265. },
  24266. ]
  24267. ))
  24268. characterMakers.push(() => makeCharacter(
  24269. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24270. {
  24271. front: {
  24272. height: math.unit(6, "feet"),
  24273. weight: math.unit(220, "lb"),
  24274. name: "Front",
  24275. image: {
  24276. source: "./media/characters/lynn-rhea/front.svg",
  24277. extra: 310 / 273
  24278. }
  24279. },
  24280. back: {
  24281. height: math.unit(6, "feet"),
  24282. weight: math.unit(220, "lb"),
  24283. name: "Back",
  24284. image: {
  24285. source: "./media/characters/lynn-rhea/back.svg",
  24286. extra: 310 / 273
  24287. }
  24288. },
  24289. dicks: {
  24290. height: math.unit(0.9, "feet"),
  24291. name: "Dicks",
  24292. image: {
  24293. source: "./media/characters/lynn-rhea/dicks.svg"
  24294. }
  24295. },
  24296. slit: {
  24297. height: math.unit(0.4, "feet"),
  24298. name: "Slit",
  24299. image: {
  24300. source: "./media/characters/lynn-rhea/slit.svg"
  24301. }
  24302. },
  24303. },
  24304. [
  24305. {
  24306. name: "Micro",
  24307. height: math.unit(1, "inch")
  24308. },
  24309. {
  24310. name: "Macro",
  24311. height: math.unit(60, "feet"),
  24312. default: true
  24313. },
  24314. {
  24315. name: "Megamacro",
  24316. height: math.unit(2, "miles")
  24317. },
  24318. {
  24319. name: "Gigamacro",
  24320. height: math.unit(3, "earths")
  24321. },
  24322. {
  24323. name: "Galactic",
  24324. height: math.unit(0.8, "galaxies")
  24325. },
  24326. ]
  24327. ))
  24328. characterMakers.push(() => makeCharacter(
  24329. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24330. {
  24331. front: {
  24332. height: math.unit(1600, "feet"),
  24333. weight: math.unit(85758785169, "kg"),
  24334. name: "Front",
  24335. image: {
  24336. source: "./media/characters/valathos/front.svg",
  24337. extra: 1451 / 1339
  24338. }
  24339. },
  24340. },
  24341. [
  24342. {
  24343. name: "Macro",
  24344. height: math.unit(1600, "feet"),
  24345. default: true
  24346. },
  24347. ]
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24351. {
  24352. front: {
  24353. height: math.unit(7 + 5 / 12, "feet"),
  24354. weight: math.unit(300, "lb"),
  24355. name: "Front",
  24356. image: {
  24357. source: "./media/characters/azula/front.svg",
  24358. extra: 3208 / 2880,
  24359. bottom: 80.2 / 3277
  24360. }
  24361. },
  24362. back: {
  24363. height: math.unit(7 + 5 / 12, "feet"),
  24364. weight: math.unit(300, "lb"),
  24365. name: "Back",
  24366. image: {
  24367. source: "./media/characters/azula/back.svg",
  24368. extra: 3169 / 2822,
  24369. bottom: 150.6 / 3321
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(7 + 5 / 12, "feet"),
  24377. default: true
  24378. },
  24379. {
  24380. name: "Big",
  24381. height: math.unit(20, "feet")
  24382. },
  24383. ]
  24384. ))
  24385. characterMakers.push(() => makeCharacter(
  24386. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24387. {
  24388. front: {
  24389. height: math.unit(5 + 1 / 12, "feet"),
  24390. weight: math.unit(110, "lb"),
  24391. name: "Front",
  24392. image: {
  24393. source: "./media/characters/rupert/front.svg",
  24394. extra: 1549 / 1495,
  24395. bottom: 54.2 / 1604.4
  24396. }
  24397. },
  24398. },
  24399. [
  24400. {
  24401. name: "Normal",
  24402. height: math.unit(5 + 1 / 12, "feet"),
  24403. default: true
  24404. },
  24405. ]
  24406. ))
  24407. characterMakers.push(() => makeCharacter(
  24408. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24409. {
  24410. front: {
  24411. height: math.unit(8 + 4 / 12, "feet"),
  24412. weight: math.unit(350, "lb"),
  24413. name: "Front",
  24414. image: {
  24415. source: "./media/characters/sheera-castellar/front.svg",
  24416. extra: 1957 / 1894,
  24417. bottom: 26.97 / 1975.017
  24418. }
  24419. },
  24420. side: {
  24421. height: math.unit(8 + 4 / 12, "feet"),
  24422. weight: math.unit(350, "lb"),
  24423. name: "Side",
  24424. image: {
  24425. source: "./media/characters/sheera-castellar/side.svg",
  24426. extra: 1957 / 1894
  24427. }
  24428. },
  24429. back: {
  24430. height: math.unit(8 + 4 / 12, "feet"),
  24431. weight: math.unit(350, "lb"),
  24432. name: "Back",
  24433. image: {
  24434. source: "./media/characters/sheera-castellar/back.svg",
  24435. extra: 1957 / 1894
  24436. }
  24437. },
  24438. angled: {
  24439. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24440. weight: math.unit(350, "lb"),
  24441. name: "Angled",
  24442. image: {
  24443. source: "./media/characters/sheera-castellar/angled.svg",
  24444. extra: 1807 / 1707,
  24445. bottom: 68 / 1875
  24446. }
  24447. },
  24448. genitals: {
  24449. height: math.unit(2.2, "feet"),
  24450. name: "Genitals",
  24451. image: {
  24452. source: "./media/characters/sheera-castellar/genitals.svg"
  24453. }
  24454. },
  24455. taur: {
  24456. height: math.unit(10 + 6/12, "feet"),
  24457. name: "Taur",
  24458. image: {
  24459. source: "./media/characters/sheera-castellar/taur.svg",
  24460. extra: 2017/1909,
  24461. bottom: 185/2202
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Normal",
  24468. height: math.unit(8 + 4 / 12, "feet")
  24469. },
  24470. {
  24471. name: "Macro",
  24472. height: math.unit(150, "feet"),
  24473. default: true
  24474. },
  24475. {
  24476. name: "Macro+",
  24477. height: math.unit(800, "feet")
  24478. },
  24479. ]
  24480. ))
  24481. characterMakers.push(() => makeCharacter(
  24482. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24483. {
  24484. front: {
  24485. height: math.unit(6, "feet"),
  24486. weight: math.unit(150, "lb"),
  24487. name: "Front",
  24488. image: {
  24489. source: "./media/characters/jaipur/front.svg",
  24490. extra: 3860 / 3731,
  24491. bottom: 287 / 4140
  24492. }
  24493. },
  24494. back: {
  24495. height: math.unit(6, "feet"),
  24496. weight: math.unit(150, "lb"),
  24497. name: "Back",
  24498. image: {
  24499. source: "./media/characters/jaipur/back.svg",
  24500. extra: 1637/1561,
  24501. bottom: 154/1791
  24502. }
  24503. },
  24504. },
  24505. [
  24506. {
  24507. name: "Normal",
  24508. height: math.unit(1.85, "meters"),
  24509. default: true
  24510. },
  24511. {
  24512. name: "Macro",
  24513. height: math.unit(150, "meters")
  24514. },
  24515. {
  24516. name: "Macro+",
  24517. height: math.unit(0.5, "miles")
  24518. },
  24519. {
  24520. name: "Macro++",
  24521. height: math.unit(2.5, "miles")
  24522. },
  24523. {
  24524. name: "Macro+++",
  24525. height: math.unit(12, "miles")
  24526. },
  24527. {
  24528. name: "Macro++++",
  24529. height: math.unit(120, "miles")
  24530. },
  24531. {
  24532. name: "Macro+++++",
  24533. height: math.unit(1200, "miles")
  24534. },
  24535. ]
  24536. ))
  24537. characterMakers.push(() => makeCharacter(
  24538. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24539. {
  24540. front: {
  24541. height: math.unit(6, "feet"),
  24542. weight: math.unit(150, "lb"),
  24543. name: "Front",
  24544. image: {
  24545. source: "./media/characters/sheila-wolf/front.svg",
  24546. extra: 1931 / 1808,
  24547. bottom: 29.5 / 1960
  24548. }
  24549. },
  24550. dick: {
  24551. height: math.unit(1.464, "feet"),
  24552. name: "Dick",
  24553. image: {
  24554. source: "./media/characters/sheila-wolf/dick.svg"
  24555. }
  24556. },
  24557. muzzle: {
  24558. height: math.unit(0.513, "feet"),
  24559. name: "Muzzle",
  24560. image: {
  24561. source: "./media/characters/sheila-wolf/muzzle.svg"
  24562. }
  24563. },
  24564. },
  24565. [
  24566. {
  24567. name: "Macro",
  24568. height: math.unit(70, "feet"),
  24569. default: true
  24570. },
  24571. ]
  24572. ))
  24573. characterMakers.push(() => makeCharacter(
  24574. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24575. {
  24576. front: {
  24577. height: math.unit(32, "meters"),
  24578. weight: math.unit(300000, "kg"),
  24579. name: "Front",
  24580. image: {
  24581. source: "./media/characters/almor/front.svg",
  24582. extra: 1408 / 1322,
  24583. bottom: 94.6 / 1506.5
  24584. }
  24585. },
  24586. },
  24587. [
  24588. {
  24589. name: "Macro",
  24590. height: math.unit(32, "meters"),
  24591. default: true
  24592. },
  24593. ]
  24594. ))
  24595. characterMakers.push(() => makeCharacter(
  24596. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24597. {
  24598. front: {
  24599. height: math.unit(7, "feet"),
  24600. weight: math.unit(200, "lb"),
  24601. name: "Front",
  24602. image: {
  24603. source: "./media/characters/silver/front.svg",
  24604. extra: 472.1 / 450.5,
  24605. bottom: 26.5 / 499.424
  24606. }
  24607. },
  24608. },
  24609. [
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(7, "feet"),
  24613. default: true
  24614. },
  24615. {
  24616. name: "Macro",
  24617. height: math.unit(800, "feet")
  24618. },
  24619. {
  24620. name: "Megamacro",
  24621. height: math.unit(250, "miles")
  24622. },
  24623. ]
  24624. ))
  24625. characterMakers.push(() => makeCharacter(
  24626. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24627. {
  24628. front: {
  24629. height: math.unit(6, "feet"),
  24630. weight: math.unit(150, "lb"),
  24631. name: "Front",
  24632. image: {
  24633. source: "./media/characters/pliskin/front.svg",
  24634. extra: 1469 / 1359,
  24635. bottom: 70 / 1540
  24636. }
  24637. },
  24638. },
  24639. [
  24640. {
  24641. name: "Micro",
  24642. height: math.unit(3, "inches")
  24643. },
  24644. {
  24645. name: "Normal",
  24646. height: math.unit(5 + 11 / 12, "feet"),
  24647. default: true
  24648. },
  24649. {
  24650. name: "Macro",
  24651. height: math.unit(120, "feet")
  24652. },
  24653. ]
  24654. ))
  24655. characterMakers.push(() => makeCharacter(
  24656. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24657. {
  24658. front: {
  24659. height: math.unit(6, "feet"),
  24660. weight: math.unit(150, "lb"),
  24661. name: "Front",
  24662. image: {
  24663. source: "./media/characters/sammy/front.svg",
  24664. extra: 1193 / 1089,
  24665. bottom: 30.5 / 1226
  24666. }
  24667. },
  24668. },
  24669. [
  24670. {
  24671. name: "Macro",
  24672. height: math.unit(1700, "feet"),
  24673. default: true
  24674. },
  24675. {
  24676. name: "Examacro",
  24677. height: math.unit(2.5e9, "lightyears")
  24678. },
  24679. ]
  24680. ))
  24681. characterMakers.push(() => makeCharacter(
  24682. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24683. {
  24684. front: {
  24685. height: math.unit(21, "meters"),
  24686. weight: math.unit(12, "tonnes"),
  24687. name: "Front",
  24688. image: {
  24689. source: "./media/characters/kuru/front.svg",
  24690. extra: 4301 / 3785,
  24691. bottom: 371.3 / 4691
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Macro",
  24698. height: math.unit(21, "meters"),
  24699. default: true
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24705. {
  24706. front: {
  24707. height: math.unit(23, "meters"),
  24708. weight: math.unit(12.2, "tonnes"),
  24709. name: "Front",
  24710. image: {
  24711. source: "./media/characters/rakka/front.svg",
  24712. extra: 4670 / 4169,
  24713. bottom: 301 / 4968.7
  24714. }
  24715. },
  24716. },
  24717. [
  24718. {
  24719. name: "Macro",
  24720. height: math.unit(23, "meters"),
  24721. default: true
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24727. {
  24728. front: {
  24729. height: math.unit(6, "feet"),
  24730. weight: math.unit(150, "lb"),
  24731. name: "Front",
  24732. image: {
  24733. source: "./media/characters/rhys-feline/front.svg",
  24734. extra: 2488 / 2308,
  24735. bottom: 35.67 / 2519.19
  24736. }
  24737. },
  24738. },
  24739. [
  24740. {
  24741. name: "Really Small",
  24742. height: math.unit(1, "nm")
  24743. },
  24744. {
  24745. name: "Micro",
  24746. height: math.unit(4, "inches")
  24747. },
  24748. {
  24749. name: "Normal",
  24750. height: math.unit(4 + 10 / 12, "feet"),
  24751. default: true
  24752. },
  24753. {
  24754. name: "Macro",
  24755. height: math.unit(100, "feet")
  24756. },
  24757. {
  24758. name: "Megamacto",
  24759. height: math.unit(50, "miles")
  24760. },
  24761. ]
  24762. ))
  24763. characterMakers.push(() => makeCharacter(
  24764. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24765. {
  24766. side: {
  24767. height: math.unit(30, "feet"),
  24768. weight: math.unit(35000, "kg"),
  24769. name: "Side",
  24770. image: {
  24771. source: "./media/characters/alydar/side.svg",
  24772. extra: 234 / 222,
  24773. bottom: 6.5 / 241
  24774. }
  24775. },
  24776. front: {
  24777. height: math.unit(30, "feet"),
  24778. weight: math.unit(35000, "kg"),
  24779. name: "Front",
  24780. image: {
  24781. source: "./media/characters/alydar/front.svg",
  24782. extra: 223.37 / 210.2,
  24783. bottom: 22.3 / 246.76
  24784. }
  24785. },
  24786. top: {
  24787. height: math.unit(64.54, "feet"),
  24788. weight: math.unit(35000, "kg"),
  24789. name: "Top",
  24790. image: {
  24791. source: "./media/characters/alydar/top.svg"
  24792. }
  24793. },
  24794. anthro: {
  24795. height: math.unit(30, "feet"),
  24796. weight: math.unit(9000, "kg"),
  24797. name: "Anthro",
  24798. image: {
  24799. source: "./media/characters/alydar/anthro.svg",
  24800. extra: 432 / 421,
  24801. bottom: 7.18 / 440
  24802. }
  24803. },
  24804. maw: {
  24805. height: math.unit(11.693, "feet"),
  24806. name: "Maw",
  24807. image: {
  24808. source: "./media/characters/alydar/maw.svg"
  24809. }
  24810. },
  24811. head: {
  24812. height: math.unit(11.693, "feet"),
  24813. name: "Head",
  24814. image: {
  24815. source: "./media/characters/alydar/head.svg"
  24816. }
  24817. },
  24818. headAlt: {
  24819. height: math.unit(12.861, "feet"),
  24820. name: "Head (Alt)",
  24821. image: {
  24822. source: "./media/characters/alydar/head-alt.svg"
  24823. }
  24824. },
  24825. wing: {
  24826. height: math.unit(20.712, "feet"),
  24827. name: "Wing",
  24828. image: {
  24829. source: "./media/characters/alydar/wing.svg"
  24830. }
  24831. },
  24832. wingFeather: {
  24833. height: math.unit(9.662, "feet"),
  24834. name: "Wing Feather",
  24835. image: {
  24836. source: "./media/characters/alydar/wing-feather.svg"
  24837. }
  24838. },
  24839. countourFeather: {
  24840. height: math.unit(4.154, "feet"),
  24841. name: "Contour Feather",
  24842. image: {
  24843. source: "./media/characters/alydar/contour-feather.svg"
  24844. }
  24845. },
  24846. },
  24847. [
  24848. {
  24849. name: "Diplomatic",
  24850. height: math.unit(13, "feet"),
  24851. default: true
  24852. },
  24853. {
  24854. name: "Small",
  24855. height: math.unit(30, "feet")
  24856. },
  24857. {
  24858. name: "Normal",
  24859. height: math.unit(95, "feet"),
  24860. default: true
  24861. },
  24862. {
  24863. name: "Large",
  24864. height: math.unit(285, "feet")
  24865. },
  24866. {
  24867. name: "Incomprehensible",
  24868. height: math.unit(450, "megameters")
  24869. },
  24870. ]
  24871. ))
  24872. characterMakers.push(() => makeCharacter(
  24873. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24874. {
  24875. side: {
  24876. height: math.unit(11, "feet"),
  24877. weight: math.unit(1750, "kg"),
  24878. name: "Side",
  24879. image: {
  24880. source: "./media/characters/selicia/side.svg",
  24881. extra: 440 / 396,
  24882. bottom: 24.8 / 465.979
  24883. }
  24884. },
  24885. maw: {
  24886. height: math.unit(4.665, "feet"),
  24887. name: "Maw",
  24888. image: {
  24889. source: "./media/characters/selicia/maw.svg"
  24890. }
  24891. },
  24892. },
  24893. [
  24894. {
  24895. name: "Normal",
  24896. height: math.unit(11, "feet"),
  24897. default: true
  24898. },
  24899. ]
  24900. ))
  24901. characterMakers.push(() => makeCharacter(
  24902. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24903. {
  24904. side: {
  24905. height: math.unit(2 + 6 / 12, "feet"),
  24906. weight: math.unit(30, "lb"),
  24907. name: "Side",
  24908. image: {
  24909. source: "./media/characters/layla/side.svg",
  24910. extra: 244 / 188,
  24911. bottom: 18.2 / 262.1
  24912. }
  24913. },
  24914. back: {
  24915. height: math.unit(2 + 6 / 12, "feet"),
  24916. weight: math.unit(30, "lb"),
  24917. name: "Back",
  24918. image: {
  24919. source: "./media/characters/layla/back.svg",
  24920. extra: 308 / 241.5,
  24921. bottom: 8.9 / 316.8
  24922. }
  24923. },
  24924. cumming: {
  24925. height: math.unit(2 + 6 / 12, "feet"),
  24926. weight: math.unit(30, "lb"),
  24927. name: "Cumming",
  24928. image: {
  24929. source: "./media/characters/layla/cumming.svg",
  24930. extra: 342 / 279,
  24931. bottom: 595 / 938
  24932. }
  24933. },
  24934. dickFlaccid: {
  24935. height: math.unit(2.595, "feet"),
  24936. name: "Flaccid Genitals",
  24937. image: {
  24938. source: "./media/characters/layla/dick-flaccid.svg"
  24939. }
  24940. },
  24941. dickErect: {
  24942. height: math.unit(2.359, "feet"),
  24943. name: "Erect Genitals",
  24944. image: {
  24945. source: "./media/characters/layla/dick-erect.svg"
  24946. }
  24947. },
  24948. dragon: {
  24949. height: math.unit(40, "feet"),
  24950. name: "Dragon",
  24951. image: {
  24952. source: "./media/characters/layla/dragon.svg",
  24953. extra: 610/535,
  24954. bottom: 367/977
  24955. }
  24956. },
  24957. taur: {
  24958. height: math.unit(30, "feet"),
  24959. name: "Taur",
  24960. image: {
  24961. source: "./media/characters/layla/taur.svg",
  24962. extra: 1268/1199,
  24963. bottom: 112/1380
  24964. }
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Micro",
  24970. height: math.unit(1, "inch")
  24971. },
  24972. {
  24973. name: "Small",
  24974. height: math.unit(1, "foot")
  24975. },
  24976. {
  24977. name: "Normal",
  24978. height: math.unit(2 + 6 / 12, "feet"),
  24979. default: true
  24980. },
  24981. {
  24982. name: "Macro",
  24983. height: math.unit(200, "feet")
  24984. },
  24985. {
  24986. name: "Megamacro",
  24987. height: math.unit(1000, "miles")
  24988. },
  24989. {
  24990. name: "Planetary",
  24991. height: math.unit(8000, "miles")
  24992. },
  24993. {
  24994. name: "True Layla",
  24995. height: math.unit(200000 * 7, "multiverses")
  24996. },
  24997. ]
  24998. ))
  24999. characterMakers.push(() => makeCharacter(
  25000. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25001. {
  25002. back: {
  25003. height: math.unit(10.5, "feet"),
  25004. weight: math.unit(800, "lb"),
  25005. name: "Back",
  25006. image: {
  25007. source: "./media/characters/knox/back.svg",
  25008. extra: 1486 / 1089,
  25009. bottom: 107 / 1601.4
  25010. }
  25011. },
  25012. side: {
  25013. height: math.unit(10.5, "feet"),
  25014. weight: math.unit(800, "lb"),
  25015. name: "Side",
  25016. image: {
  25017. source: "./media/characters/knox/side.svg",
  25018. extra: 244 / 218,
  25019. bottom: 14 / 260
  25020. }
  25021. },
  25022. },
  25023. [
  25024. {
  25025. name: "Compact",
  25026. height: math.unit(10.5, "feet"),
  25027. default: true
  25028. },
  25029. {
  25030. name: "Dynamax",
  25031. height: math.unit(210, "feet")
  25032. },
  25033. {
  25034. name: "Full Macro",
  25035. height: math.unit(850, "feet")
  25036. },
  25037. ]
  25038. ))
  25039. characterMakers.push(() => makeCharacter(
  25040. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25041. {
  25042. front: {
  25043. height: math.unit(28, "feet"),
  25044. weight: math.unit(10500, "lb"),
  25045. name: "Front",
  25046. image: {
  25047. source: "./media/characters/kayda/front.svg",
  25048. extra: 1536 / 1428,
  25049. bottom: 68.7 / 1603
  25050. }
  25051. },
  25052. back: {
  25053. height: math.unit(28, "feet"),
  25054. weight: math.unit(10500, "lb"),
  25055. name: "Back",
  25056. image: {
  25057. source: "./media/characters/kayda/back.svg",
  25058. extra: 1557 / 1464,
  25059. bottom: 39.5 / 1597.49
  25060. }
  25061. },
  25062. dick: {
  25063. height: math.unit(3.858, "feet"),
  25064. name: "Dick",
  25065. image: {
  25066. source: "./media/characters/kayda/dick.svg"
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Macro",
  25073. height: math.unit(28, "feet"),
  25074. default: true
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25080. {
  25081. front: {
  25082. height: math.unit(10 + 11 / 12, "feet"),
  25083. weight: math.unit(1400, "lb"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/brian/front.svg",
  25087. extra: 737 / 692,
  25088. bottom: 55.4 / 785
  25089. }
  25090. },
  25091. },
  25092. [
  25093. {
  25094. name: "Normal",
  25095. height: math.unit(10 + 11 / 12, "feet"),
  25096. default: true
  25097. },
  25098. ]
  25099. ))
  25100. characterMakers.push(() => makeCharacter(
  25101. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25102. {
  25103. front: {
  25104. height: math.unit(5 + 8 / 12, "feet"),
  25105. weight: math.unit(140, "lb"),
  25106. name: "Front",
  25107. image: {
  25108. source: "./media/characters/khemri/front.svg",
  25109. extra: 4780 / 4059,
  25110. bottom: 80.1 / 4859.25
  25111. }
  25112. },
  25113. },
  25114. [
  25115. {
  25116. name: "Micro",
  25117. height: math.unit(6, "inches")
  25118. },
  25119. {
  25120. name: "Normal",
  25121. height: math.unit(5 + 8 / 12, "feet"),
  25122. default: true
  25123. },
  25124. ]
  25125. ))
  25126. characterMakers.push(() => makeCharacter(
  25127. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25128. {
  25129. front: {
  25130. height: math.unit(13, "feet"),
  25131. weight: math.unit(1700, "lb"),
  25132. name: "Front",
  25133. image: {
  25134. source: "./media/characters/felix-braveheart/front.svg",
  25135. extra: 1222 / 1157,
  25136. bottom: 53.2 / 1280
  25137. }
  25138. },
  25139. back: {
  25140. height: math.unit(13, "feet"),
  25141. weight: math.unit(1700, "lb"),
  25142. name: "Back",
  25143. image: {
  25144. source: "./media/characters/felix-braveheart/back.svg",
  25145. extra: 1277 / 1203,
  25146. bottom: 50.2 / 1327
  25147. }
  25148. },
  25149. feral: {
  25150. height: math.unit(6, "feet"),
  25151. weight: math.unit(400, "lb"),
  25152. name: "Feral",
  25153. image: {
  25154. source: "./media/characters/felix-braveheart/feral.svg",
  25155. extra: 682 / 625,
  25156. bottom: 6.9 / 688
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(13, "feet"),
  25164. default: true
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25170. {
  25171. side: {
  25172. height: math.unit(5 + 11 / 12, "feet"),
  25173. weight: math.unit(1400, "lb"),
  25174. name: "Side",
  25175. image: {
  25176. source: "./media/characters/shadow-blade/side.svg",
  25177. extra: 1726 / 1267,
  25178. bottom: 58.4 / 1785
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(5 + 11 / 12, "feet"),
  25186. default: true
  25187. },
  25188. ]
  25189. ))
  25190. characterMakers.push(() => makeCharacter(
  25191. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25192. {
  25193. front: {
  25194. height: math.unit(1 + 6 / 12, "feet"),
  25195. weight: math.unit(25, "lb"),
  25196. name: "Front",
  25197. image: {
  25198. source: "./media/characters/karla-halldor/front.svg",
  25199. extra: 1459 / 1383,
  25200. bottom: 12 / 1472
  25201. }
  25202. },
  25203. },
  25204. [
  25205. {
  25206. name: "Normal",
  25207. height: math.unit(1 + 6 / 12, "feet"),
  25208. default: true
  25209. },
  25210. ]
  25211. ))
  25212. characterMakers.push(() => makeCharacter(
  25213. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25214. {
  25215. front: {
  25216. height: math.unit(6 + 2 / 12, "feet"),
  25217. weight: math.unit(160, "lb"),
  25218. name: "Front",
  25219. image: {
  25220. source: "./media/characters/ariam/front.svg",
  25221. extra: 1073/976,
  25222. bottom: 52/1125
  25223. }
  25224. },
  25225. back: {
  25226. height: math.unit(6 + 2/12, "feet"),
  25227. weight: math.unit(160, "lb"),
  25228. name: "Back",
  25229. image: {
  25230. source: "./media/characters/ariam/back.svg",
  25231. extra: 1103/1023,
  25232. bottom: 9/1112
  25233. }
  25234. },
  25235. dressed: {
  25236. height: math.unit(6 + 2/12, "feet"),
  25237. weight: math.unit(160, "lb"),
  25238. name: "Dressed",
  25239. image: {
  25240. source: "./media/characters/ariam/dressed.svg",
  25241. extra: 1099/1009,
  25242. bottom: 25/1124
  25243. }
  25244. },
  25245. squatting: {
  25246. height: math.unit(4.1, "feet"),
  25247. weight: math.unit(160, "lb"),
  25248. name: "Squatting",
  25249. image: {
  25250. source: "./media/characters/ariam/squatting.svg",
  25251. extra: 2617 / 2112,
  25252. bottom: 61.2 / 2681,
  25253. }
  25254. },
  25255. },
  25256. [
  25257. {
  25258. name: "Normal",
  25259. height: math.unit(6 + 2 / 12, "feet"),
  25260. default: true
  25261. },
  25262. {
  25263. name: "Normal+",
  25264. height: math.unit(4, "meters")
  25265. },
  25266. {
  25267. name: "Macro",
  25268. height: math.unit(50, "meters")
  25269. },
  25270. {
  25271. name: "Macro+",
  25272. height: math.unit(100, "meters")
  25273. },
  25274. {
  25275. name: "Megamacro",
  25276. height: math.unit(20, "km")
  25277. },
  25278. {
  25279. name: "Caretaker",
  25280. height: math.unit(444, "megameters")
  25281. },
  25282. ]
  25283. ))
  25284. characterMakers.push(() => makeCharacter(
  25285. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25286. {
  25287. front: {
  25288. height: math.unit(1.67, "meters"),
  25289. weight: math.unit(140, "lb"),
  25290. name: "Front",
  25291. image: {
  25292. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25293. extra: 438 / 410,
  25294. bottom: 0.75 / 439
  25295. }
  25296. },
  25297. },
  25298. [
  25299. {
  25300. name: "Shrunken",
  25301. height: math.unit(7.6, "cm")
  25302. },
  25303. {
  25304. name: "Human Scale",
  25305. height: math.unit(1.67, "meters")
  25306. },
  25307. {
  25308. name: "Wolxi Scale",
  25309. height: math.unit(36.7, "meters"),
  25310. default: true
  25311. },
  25312. ]
  25313. ))
  25314. characterMakers.push(() => makeCharacter(
  25315. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25316. {
  25317. front: {
  25318. height: math.unit(1.73, "meters"),
  25319. weight: math.unit(240, "lb"),
  25320. name: "Front",
  25321. image: {
  25322. source: "./media/characters/izue-two-mothers/front.svg",
  25323. extra: 469 / 437,
  25324. bottom: 1.24 / 470.6
  25325. }
  25326. },
  25327. },
  25328. [
  25329. {
  25330. name: "Shrunken",
  25331. height: math.unit(7.86, "cm")
  25332. },
  25333. {
  25334. name: "Human Scale",
  25335. height: math.unit(1.73, "meters")
  25336. },
  25337. {
  25338. name: "Wolxi Scale",
  25339. height: math.unit(38, "meters"),
  25340. default: true
  25341. },
  25342. ]
  25343. ))
  25344. characterMakers.push(() => makeCharacter(
  25345. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25346. {
  25347. front: {
  25348. height: math.unit(1.55, "meters"),
  25349. weight: math.unit(120, "lb"),
  25350. name: "Front",
  25351. image: {
  25352. source: "./media/characters/teeku-love-shack/front.svg",
  25353. extra: 387 / 362,
  25354. bottom: 1.51 / 388
  25355. }
  25356. },
  25357. },
  25358. [
  25359. {
  25360. name: "Shrunken",
  25361. height: math.unit(7, "cm")
  25362. },
  25363. {
  25364. name: "Human Scale",
  25365. height: math.unit(1.55, "meters")
  25366. },
  25367. {
  25368. name: "Wolxi Scale",
  25369. height: math.unit(34.1, "meters"),
  25370. default: true
  25371. },
  25372. ]
  25373. ))
  25374. characterMakers.push(() => makeCharacter(
  25375. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25376. {
  25377. front: {
  25378. height: math.unit(1.83, "meters"),
  25379. weight: math.unit(135, "lb"),
  25380. name: "Front",
  25381. image: {
  25382. source: "./media/characters/dejma-the-red/front.svg",
  25383. extra: 480 / 458,
  25384. bottom: 1.8 / 482
  25385. }
  25386. },
  25387. },
  25388. [
  25389. {
  25390. name: "Shrunken",
  25391. height: math.unit(8.3, "cm")
  25392. },
  25393. {
  25394. name: "Human Scale",
  25395. height: math.unit(1.83, "meters")
  25396. },
  25397. {
  25398. name: "Wolxi Scale",
  25399. height: math.unit(40, "meters"),
  25400. default: true
  25401. },
  25402. ]
  25403. ))
  25404. characterMakers.push(() => makeCharacter(
  25405. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25406. {
  25407. front: {
  25408. height: math.unit(1.78, "meters"),
  25409. weight: math.unit(65, "kg"),
  25410. name: "Front",
  25411. image: {
  25412. source: "./media/characters/aki/front.svg",
  25413. extra: 452 / 415
  25414. }
  25415. },
  25416. frontNsfw: {
  25417. height: math.unit(1.78, "meters"),
  25418. weight: math.unit(65, "kg"),
  25419. name: "Front (NSFW)",
  25420. image: {
  25421. source: "./media/characters/aki/front-nsfw.svg",
  25422. extra: 452 / 415
  25423. }
  25424. },
  25425. back: {
  25426. height: math.unit(1.78, "meters"),
  25427. weight: math.unit(65, "kg"),
  25428. name: "Back",
  25429. image: {
  25430. source: "./media/characters/aki/back.svg",
  25431. extra: 452 / 415
  25432. }
  25433. },
  25434. rump: {
  25435. height: math.unit(2.05, "feet"),
  25436. name: "Rump",
  25437. image: {
  25438. source: "./media/characters/aki/rump.svg"
  25439. }
  25440. },
  25441. dick: {
  25442. height: math.unit(0.95, "feet"),
  25443. name: "Dick",
  25444. image: {
  25445. source: "./media/characters/aki/dick.svg"
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Micro",
  25452. height: math.unit(15, "cm")
  25453. },
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(178, "cm"),
  25457. default: true
  25458. },
  25459. {
  25460. name: "Macro",
  25461. height: math.unit(214, "m")
  25462. },
  25463. {
  25464. name: "Macro+",
  25465. height: math.unit(534, "m")
  25466. },
  25467. ]
  25468. ))
  25469. characterMakers.push(() => makeCharacter(
  25470. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25471. {
  25472. front: {
  25473. height: math.unit(5 + 5 / 12, "feet"),
  25474. weight: math.unit(120, "lb"),
  25475. name: "Front",
  25476. image: {
  25477. source: "./media/characters/ari/front.svg",
  25478. extra: 1550/1471,
  25479. bottom: 39/1589
  25480. }
  25481. },
  25482. },
  25483. [
  25484. {
  25485. name: "Normal",
  25486. height: math.unit(5 + 5 / 12, "feet")
  25487. },
  25488. {
  25489. name: "Macro",
  25490. height: math.unit(100, "feet"),
  25491. default: true
  25492. },
  25493. {
  25494. name: "Megamacro",
  25495. height: math.unit(100, "miles")
  25496. },
  25497. {
  25498. name: "Gigamacro",
  25499. height: math.unit(80000, "miles")
  25500. },
  25501. ]
  25502. ))
  25503. characterMakers.push(() => makeCharacter(
  25504. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25505. {
  25506. side: {
  25507. height: math.unit(9, "feet"),
  25508. weight: math.unit(400, "kg"),
  25509. name: "Side",
  25510. image: {
  25511. source: "./media/characters/bolt/side.svg",
  25512. extra: 1126 / 896,
  25513. bottom: 60 / 1187.3,
  25514. }
  25515. },
  25516. },
  25517. [
  25518. {
  25519. name: "Micro",
  25520. height: math.unit(5, "inches")
  25521. },
  25522. {
  25523. name: "Normal",
  25524. height: math.unit(9, "feet"),
  25525. default: true
  25526. },
  25527. {
  25528. name: "Macro",
  25529. height: math.unit(700, "feet")
  25530. },
  25531. {
  25532. name: "Max Size",
  25533. height: math.unit(1.52e22, "yottameters")
  25534. },
  25535. ]
  25536. ))
  25537. characterMakers.push(() => makeCharacter(
  25538. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25539. {
  25540. front: {
  25541. height: math.unit(4.3, "meters"),
  25542. weight: math.unit(3, "tons"),
  25543. name: "Front",
  25544. image: {
  25545. source: "./media/characters/draekon-sylviar/front.svg",
  25546. extra: 2072/1512,
  25547. bottom: 74/2146
  25548. }
  25549. },
  25550. back: {
  25551. height: math.unit(4.3, "meters"),
  25552. weight: math.unit(3, "tons"),
  25553. name: "Back",
  25554. image: {
  25555. source: "./media/characters/draekon-sylviar/back.svg",
  25556. extra: 1639/1483,
  25557. bottom: 41/1680
  25558. }
  25559. },
  25560. feral: {
  25561. height: math.unit(1.15, "meters"),
  25562. weight: math.unit(3, "tons"),
  25563. name: "Feral",
  25564. image: {
  25565. source: "./media/characters/draekon-sylviar/feral.svg",
  25566. extra: 1033/395,
  25567. bottom: 130/1163
  25568. }
  25569. },
  25570. maw: {
  25571. height: math.unit(1.3, "meters"),
  25572. name: "Maw",
  25573. image: {
  25574. source: "./media/characters/draekon-sylviar/maw.svg"
  25575. }
  25576. },
  25577. mawSeparated: {
  25578. height: math.unit(1.53, "meters"),
  25579. name: "Separated Maw",
  25580. image: {
  25581. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25582. }
  25583. },
  25584. tail: {
  25585. height: math.unit(1.15, "meters"),
  25586. name: "Tail",
  25587. image: {
  25588. source: "./media/characters/draekon-sylviar/tail.svg"
  25589. }
  25590. },
  25591. tailDick: {
  25592. height: math.unit(1.15, "meters"),
  25593. name: "Tail (Dick)",
  25594. image: {
  25595. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25596. }
  25597. },
  25598. tailDickSeparated: {
  25599. height: math.unit(1.19, "meters"),
  25600. name: "Tail (Separated Dick)",
  25601. image: {
  25602. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25603. }
  25604. },
  25605. slit: {
  25606. height: math.unit(1, "meters"),
  25607. name: "Slit",
  25608. image: {
  25609. source: "./media/characters/draekon-sylviar/slit.svg"
  25610. }
  25611. },
  25612. dick: {
  25613. height: math.unit(1.15, "meters"),
  25614. name: "Dick",
  25615. image: {
  25616. source: "./media/characters/draekon-sylviar/dick.svg"
  25617. }
  25618. },
  25619. dickSeparated: {
  25620. height: math.unit(1.1, "meters"),
  25621. name: "Separated Dick",
  25622. image: {
  25623. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25624. }
  25625. },
  25626. sheath: {
  25627. height: math.unit(1.15, "meters"),
  25628. name: "Sheath",
  25629. image: {
  25630. source: "./media/characters/draekon-sylviar/sheath.svg"
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Small",
  25637. height: math.unit(4.53 / 2, "meters"),
  25638. default: true
  25639. },
  25640. {
  25641. name: "Normal",
  25642. height: math.unit(4.53, "meters"),
  25643. default: true
  25644. },
  25645. {
  25646. name: "Large",
  25647. height: math.unit(4.53 * 2, "meters"),
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25653. {
  25654. front: {
  25655. height: math.unit(6 + 2 / 12, "feet"),
  25656. weight: math.unit(180, "lb"),
  25657. name: "Front",
  25658. image: {
  25659. source: "./media/characters/brawler/front.svg",
  25660. extra: 3301 / 3027,
  25661. bottom: 138 / 3439
  25662. }
  25663. },
  25664. },
  25665. [
  25666. {
  25667. name: "Normal",
  25668. height: math.unit(6 + 2 / 12, "feet"),
  25669. default: true
  25670. },
  25671. ]
  25672. ))
  25673. characterMakers.push(() => makeCharacter(
  25674. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25675. {
  25676. front: {
  25677. height: math.unit(11, "feet"),
  25678. weight: math.unit(1000, "lb"),
  25679. name: "Front",
  25680. image: {
  25681. source: "./media/characters/alex/front.svg",
  25682. bottom: 44.5 / 620
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Micro",
  25689. height: math.unit(5, "inches")
  25690. },
  25691. {
  25692. name: "Normal",
  25693. height: math.unit(11, "feet"),
  25694. default: true
  25695. },
  25696. {
  25697. name: "Macro",
  25698. height: math.unit(9.5e9, "feet")
  25699. },
  25700. {
  25701. name: "Max Size",
  25702. height: math.unit(1.4e283, "yottameters")
  25703. },
  25704. ]
  25705. ))
  25706. characterMakers.push(() => makeCharacter(
  25707. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25708. {
  25709. female: {
  25710. height: math.unit(29.9, "m"),
  25711. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25712. name: "Female",
  25713. image: {
  25714. source: "./media/characters/zenari/female.svg",
  25715. extra: 3281.6 / 3217,
  25716. bottom: 72.2 / 3353
  25717. }
  25718. },
  25719. male: {
  25720. height: math.unit(27.7, "m"),
  25721. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25722. name: "Male",
  25723. image: {
  25724. source: "./media/characters/zenari/male.svg",
  25725. extra: 3008 / 2991,
  25726. bottom: 54.6 / 3069
  25727. }
  25728. },
  25729. },
  25730. [
  25731. {
  25732. name: "Macro",
  25733. height: math.unit(29.7, "meters"),
  25734. default: true
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25740. {
  25741. female: {
  25742. height: math.unit(23.8, "m"),
  25743. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25744. name: "Female",
  25745. image: {
  25746. source: "./media/characters/mactarian/female.svg",
  25747. extra: 2662 / 2569,
  25748. bottom: 73 / 2736
  25749. }
  25750. },
  25751. male: {
  25752. height: math.unit(23.8, "m"),
  25753. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25754. name: "Male",
  25755. image: {
  25756. source: "./media/characters/mactarian/male.svg",
  25757. extra: 2673 / 2600,
  25758. bottom: 76 / 2750
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Macro",
  25765. height: math.unit(23.8, "meters"),
  25766. default: true
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25772. {
  25773. female: {
  25774. height: math.unit(19.3, "m"),
  25775. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25776. name: "Female",
  25777. image: {
  25778. source: "./media/characters/umok/female.svg",
  25779. extra: 2186 / 2078,
  25780. bottom: 87 / 2277
  25781. }
  25782. },
  25783. male: {
  25784. height: math.unit(19.5, "m"),
  25785. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25786. name: "Male",
  25787. image: {
  25788. source: "./media/characters/umok/male.svg",
  25789. extra: 2233 / 2140,
  25790. bottom: 24.4 / 2258
  25791. }
  25792. },
  25793. },
  25794. [
  25795. {
  25796. name: "Macro",
  25797. height: math.unit(19.3, "meters"),
  25798. default: true
  25799. },
  25800. ]
  25801. ))
  25802. characterMakers.push(() => makeCharacter(
  25803. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25804. {
  25805. female: {
  25806. height: math.unit(26.15, "m"),
  25807. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25808. name: "Female",
  25809. image: {
  25810. source: "./media/characters/joraxian/female.svg",
  25811. extra: 2912 / 2824,
  25812. bottom: 36 / 2956
  25813. }
  25814. },
  25815. male: {
  25816. height: math.unit(25.4, "m"),
  25817. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25818. name: "Male",
  25819. image: {
  25820. source: "./media/characters/joraxian/male.svg",
  25821. extra: 2877 / 2721,
  25822. bottom: 82 / 2967
  25823. }
  25824. },
  25825. },
  25826. [
  25827. {
  25828. name: "Macro",
  25829. height: math.unit(26.15, "meters"),
  25830. default: true
  25831. },
  25832. ]
  25833. ))
  25834. characterMakers.push(() => makeCharacter(
  25835. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25836. {
  25837. female: {
  25838. height: math.unit(21.6, "m"),
  25839. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25840. name: "Female",
  25841. image: {
  25842. source: "./media/characters/sthara/female.svg",
  25843. extra: 2516 / 2347,
  25844. bottom: 21.5 / 2537
  25845. }
  25846. },
  25847. male: {
  25848. height: math.unit(24, "m"),
  25849. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25850. name: "Male",
  25851. image: {
  25852. source: "./media/characters/sthara/male.svg",
  25853. extra: 2732 / 2607,
  25854. bottom: 23 / 2732
  25855. }
  25856. },
  25857. },
  25858. [
  25859. {
  25860. name: "Macro",
  25861. height: math.unit(21.6, "meters"),
  25862. default: true
  25863. },
  25864. ]
  25865. ))
  25866. characterMakers.push(() => makeCharacter(
  25867. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25868. {
  25869. front: {
  25870. height: math.unit(6 + 4 / 12, "feet"),
  25871. weight: math.unit(175, "lb"),
  25872. name: "Front",
  25873. image: {
  25874. source: "./media/characters/luka-bryzant/front.svg",
  25875. extra: 311 / 289,
  25876. bottom: 4 / 315
  25877. }
  25878. },
  25879. back: {
  25880. height: math.unit(6 + 4 / 12, "feet"),
  25881. weight: math.unit(175, "lb"),
  25882. name: "Back",
  25883. image: {
  25884. source: "./media/characters/luka-bryzant/back.svg",
  25885. extra: 311 / 289,
  25886. bottom: 3.8 / 313.7
  25887. }
  25888. },
  25889. },
  25890. [
  25891. {
  25892. name: "Micro",
  25893. height: math.unit(10, "inches")
  25894. },
  25895. {
  25896. name: "Normal",
  25897. height: math.unit(6 + 4 / 12, "feet"),
  25898. default: true
  25899. },
  25900. {
  25901. name: "Large",
  25902. height: math.unit(12, "feet")
  25903. },
  25904. ]
  25905. ))
  25906. characterMakers.push(() => makeCharacter(
  25907. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25908. {
  25909. front: {
  25910. height: math.unit(5 + 7 / 12, "feet"),
  25911. weight: math.unit(185, "lb"),
  25912. name: "Front",
  25913. image: {
  25914. source: "./media/characters/aman-aquila/front.svg",
  25915. extra: 1013 / 976,
  25916. bottom: 45.6 / 1057
  25917. }
  25918. },
  25919. side: {
  25920. height: math.unit(5 + 7 / 12, "feet"),
  25921. weight: math.unit(185, "lb"),
  25922. name: "Side",
  25923. image: {
  25924. source: "./media/characters/aman-aquila/side.svg",
  25925. extra: 1054 / 1011,
  25926. bottom: 15 / 1070
  25927. }
  25928. },
  25929. back: {
  25930. height: math.unit(5 + 7 / 12, "feet"),
  25931. weight: math.unit(185, "lb"),
  25932. name: "Back",
  25933. image: {
  25934. source: "./media/characters/aman-aquila/back.svg",
  25935. extra: 1026 / 970,
  25936. bottom: 12 / 1039
  25937. }
  25938. },
  25939. head: {
  25940. height: math.unit(1.211, "feet"),
  25941. name: "Head",
  25942. image: {
  25943. source: "./media/characters/aman-aquila/head.svg",
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Minimicro",
  25950. height: math.unit(0.057, "inches")
  25951. },
  25952. {
  25953. name: "Micro",
  25954. height: math.unit(7, "inches")
  25955. },
  25956. {
  25957. name: "Mini",
  25958. height: math.unit(3 + 7 / 12, "feet")
  25959. },
  25960. {
  25961. name: "Normal",
  25962. height: math.unit(5 + 7 / 12, "feet"),
  25963. default: true
  25964. },
  25965. {
  25966. name: "Macro",
  25967. height: math.unit(157 + 7 / 12, "feet")
  25968. },
  25969. {
  25970. name: "Megamacro",
  25971. height: math.unit(1557 + 7 / 12, "feet")
  25972. },
  25973. {
  25974. name: "Gigamacro",
  25975. height: math.unit(15557 + 7 / 12, "feet")
  25976. },
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25981. {
  25982. front: {
  25983. height: math.unit(3 + 2 / 12, "inches"),
  25984. weight: math.unit(0.3, "ounces"),
  25985. name: "Front",
  25986. image: {
  25987. source: "./media/characters/hiphae/front.svg",
  25988. extra: 1931 / 1683,
  25989. bottom: 24 / 1955
  25990. }
  25991. },
  25992. },
  25993. [
  25994. {
  25995. name: "Normal",
  25996. height: math.unit(3 + 1 / 2, "inches"),
  25997. default: true
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26003. {
  26004. front: {
  26005. height: math.unit(5 + 10 / 12, "feet"),
  26006. weight: math.unit(165, "lb"),
  26007. name: "Front",
  26008. image: {
  26009. source: "./media/characters/nicky/front.svg",
  26010. extra: 3144 / 2886,
  26011. bottom: 45.6 / 3192
  26012. }
  26013. },
  26014. back: {
  26015. height: math.unit(5 + 10 / 12, "feet"),
  26016. weight: math.unit(165, "lb"),
  26017. name: "Back",
  26018. image: {
  26019. source: "./media/characters/nicky/back.svg",
  26020. extra: 3055 / 2804,
  26021. bottom: 28.4 / 3087
  26022. }
  26023. },
  26024. frontclothed: {
  26025. height: math.unit(5 + 10 / 12, "feet"),
  26026. weight: math.unit(165, "lb"),
  26027. name: "Front-clothed",
  26028. image: {
  26029. source: "./media/characters/nicky/front-clothed.svg",
  26030. extra: 3184.9 / 2926.9,
  26031. bottom: 86.5 / 3239.9
  26032. }
  26033. },
  26034. foot: {
  26035. height: math.unit(1.16, "feet"),
  26036. name: "Foot",
  26037. image: {
  26038. source: "./media/characters/nicky/foot.svg"
  26039. }
  26040. },
  26041. feet: {
  26042. height: math.unit(1.34, "feet"),
  26043. name: "Feet",
  26044. image: {
  26045. source: "./media/characters/nicky/feet.svg"
  26046. }
  26047. },
  26048. maw: {
  26049. height: math.unit(0.9, "feet"),
  26050. name: "Maw",
  26051. image: {
  26052. source: "./media/characters/nicky/maw.svg"
  26053. }
  26054. },
  26055. },
  26056. [
  26057. {
  26058. name: "Normal",
  26059. height: math.unit(5 + 10 / 12, "feet"),
  26060. default: true
  26061. },
  26062. {
  26063. name: "Macro",
  26064. height: math.unit(60, "feet")
  26065. },
  26066. {
  26067. name: "Megamacro",
  26068. height: math.unit(1, "mile")
  26069. },
  26070. ]
  26071. ))
  26072. characterMakers.push(() => makeCharacter(
  26073. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26074. {
  26075. side: {
  26076. height: math.unit(10, "feet"),
  26077. weight: math.unit(600, "lb"),
  26078. name: "Side",
  26079. image: {
  26080. source: "./media/characters/blair/side.svg",
  26081. bottom: 16.6 / 475,
  26082. extra: 458 / 431
  26083. }
  26084. },
  26085. },
  26086. [
  26087. {
  26088. name: "Micro",
  26089. height: math.unit(8, "inches")
  26090. },
  26091. {
  26092. name: "Normal",
  26093. height: math.unit(10, "feet"),
  26094. default: true
  26095. },
  26096. {
  26097. name: "Macro",
  26098. height: math.unit(180, "feet")
  26099. },
  26100. ]
  26101. ))
  26102. characterMakers.push(() => makeCharacter(
  26103. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26104. {
  26105. front: {
  26106. height: math.unit(5 + 4 / 12, "feet"),
  26107. weight: math.unit(125, "lb"),
  26108. name: "Front",
  26109. image: {
  26110. source: "./media/characters/fisher/front.svg",
  26111. extra: 444 / 390,
  26112. bottom: 2 / 444.8
  26113. }
  26114. },
  26115. },
  26116. [
  26117. {
  26118. name: "Micro",
  26119. height: math.unit(4, "inches")
  26120. },
  26121. {
  26122. name: "Normal",
  26123. height: math.unit(5 + 4 / 12, "feet"),
  26124. default: true
  26125. },
  26126. {
  26127. name: "Macro",
  26128. height: math.unit(100, "feet")
  26129. },
  26130. ]
  26131. ))
  26132. characterMakers.push(() => makeCharacter(
  26133. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26134. {
  26135. front: {
  26136. height: math.unit(6.71, "feet"),
  26137. weight: math.unit(200, "lb"),
  26138. preyCapacity: math.unit(1000000, "people"),
  26139. name: "Front",
  26140. image: {
  26141. source: "./media/characters/gliss/front.svg",
  26142. extra: 2347 / 2231,
  26143. bottom: 113 / 2462
  26144. }
  26145. },
  26146. hammerspaceSize: {
  26147. height: math.unit(6.71 * 717, "feet"),
  26148. weight: math.unit(200, "lb"),
  26149. preyCapacity: math.unit(1000000, "people"),
  26150. name: "Hammerspace Size",
  26151. image: {
  26152. source: "./media/characters/gliss/front.svg",
  26153. extra: 2347 / 2231,
  26154. bottom: 113 / 2462
  26155. }
  26156. },
  26157. },
  26158. [
  26159. {
  26160. name: "Normal",
  26161. height: math.unit(6.71, "feet"),
  26162. default: true
  26163. },
  26164. ]
  26165. ))
  26166. characterMakers.push(() => makeCharacter(
  26167. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26168. {
  26169. side: {
  26170. height: math.unit(1.44, "m"),
  26171. weight: math.unit(80, "kg"),
  26172. name: "Side",
  26173. image: {
  26174. source: "./media/characters/dune-anderson/side.svg",
  26175. bottom: 49 / 1426
  26176. }
  26177. },
  26178. },
  26179. [
  26180. {
  26181. name: "Wolf-sized",
  26182. height: math.unit(1.44, "meters")
  26183. },
  26184. {
  26185. name: "Normal",
  26186. height: math.unit(5.05, "meters"),
  26187. default: true
  26188. },
  26189. {
  26190. name: "Big",
  26191. height: math.unit(14.4, "meters")
  26192. },
  26193. {
  26194. name: "Huge",
  26195. height: math.unit(144, "meters")
  26196. },
  26197. ]
  26198. ))
  26199. characterMakers.push(() => makeCharacter(
  26200. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26201. {
  26202. front: {
  26203. height: math.unit(7, "feet"),
  26204. weight: math.unit(425, "lb"),
  26205. name: "Front",
  26206. image: {
  26207. source: "./media/characters/hind/front.svg",
  26208. extra: 2091 / 1860,
  26209. bottom: 129 / 2220
  26210. }
  26211. },
  26212. back: {
  26213. height: math.unit(7, "feet"),
  26214. weight: math.unit(425, "lb"),
  26215. name: "Back",
  26216. image: {
  26217. source: "./media/characters/hind/back.svg",
  26218. extra: 2091 / 1860,
  26219. bottom: 24.6 / 2309
  26220. }
  26221. },
  26222. tail: {
  26223. height: math.unit(2.8, "feet"),
  26224. name: "Tail",
  26225. image: {
  26226. source: "./media/characters/hind/tail.svg"
  26227. }
  26228. },
  26229. head: {
  26230. height: math.unit(2.55, "feet"),
  26231. name: "Head",
  26232. image: {
  26233. source: "./media/characters/hind/head.svg"
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "XS",
  26240. height: math.unit(0.7, "feet")
  26241. },
  26242. {
  26243. name: "Normal",
  26244. height: math.unit(7, "feet"),
  26245. default: true
  26246. },
  26247. {
  26248. name: "XL",
  26249. height: math.unit(70, "feet")
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26255. {
  26256. front: {
  26257. height: math.unit(2.1, "meters"),
  26258. weight: math.unit(150, "lb"),
  26259. name: "Front",
  26260. image: {
  26261. source: "./media/characters/tharquench-sizestealer/front.svg",
  26262. extra: 1605/1470,
  26263. bottom: 36/1641
  26264. }
  26265. },
  26266. frontAlt: {
  26267. height: math.unit(2.1, "meters"),
  26268. weight: math.unit(150, "lb"),
  26269. name: "Front (Alt)",
  26270. image: {
  26271. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26272. extra: 2318 / 2063,
  26273. bottom: 93.4 / 2410
  26274. }
  26275. },
  26276. },
  26277. [
  26278. {
  26279. name: "Nano",
  26280. height: math.unit(1, "mm")
  26281. },
  26282. {
  26283. name: "Micro",
  26284. height: math.unit(1, "cm")
  26285. },
  26286. {
  26287. name: "Normal",
  26288. height: math.unit(2.1, "meters"),
  26289. default: true
  26290. },
  26291. ]
  26292. ))
  26293. characterMakers.push(() => makeCharacter(
  26294. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26295. {
  26296. front: {
  26297. height: math.unit(7 + 5 / 12, "feet"),
  26298. weight: math.unit(357, "lb"),
  26299. name: "Front",
  26300. image: {
  26301. source: "./media/characters/solex-draconov/front.svg",
  26302. extra: 1993 / 1865,
  26303. bottom: 117 / 2111
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Natural Height",
  26310. height: math.unit(7 + 5 / 12, "feet"),
  26311. default: true
  26312. },
  26313. {
  26314. name: "Macro",
  26315. height: math.unit(350, "feet")
  26316. },
  26317. {
  26318. name: "Macro+",
  26319. height: math.unit(1000, "feet")
  26320. },
  26321. {
  26322. name: "Megamacro",
  26323. height: math.unit(20, "km")
  26324. },
  26325. {
  26326. name: "Megamacro+",
  26327. height: math.unit(1000, "km")
  26328. },
  26329. {
  26330. name: "Gigamacro",
  26331. height: math.unit(2.5, "Gm")
  26332. },
  26333. {
  26334. name: "Teramacro",
  26335. height: math.unit(15, "Tm")
  26336. },
  26337. {
  26338. name: "Galactic",
  26339. height: math.unit(30, "Zm")
  26340. },
  26341. {
  26342. name: "Universal",
  26343. height: math.unit(21000, "Ym")
  26344. },
  26345. {
  26346. name: "Omniversal",
  26347. height: math.unit(9.861e50, "Ym")
  26348. },
  26349. {
  26350. name: "Existential",
  26351. height: math.unit(1e300, "meters")
  26352. },
  26353. ]
  26354. ))
  26355. characterMakers.push(() => makeCharacter(
  26356. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26357. {
  26358. side: {
  26359. height: math.unit(25, "feet"),
  26360. weight: math.unit(90000, "lb"),
  26361. name: "Side",
  26362. image: {
  26363. source: "./media/characters/mandarax/side.svg",
  26364. extra: 614 / 332,
  26365. bottom: 55 / 630
  26366. }
  26367. },
  26368. lounging: {
  26369. height: math.unit(15.4, "feet"),
  26370. weight: math.unit(90000, "lb"),
  26371. name: "Lounging",
  26372. image: {
  26373. source: "./media/characters/mandarax/lounging.svg",
  26374. extra: 817/609,
  26375. bottom: 685/1502
  26376. }
  26377. },
  26378. head: {
  26379. height: math.unit(11.4, "feet"),
  26380. name: "Head",
  26381. image: {
  26382. source: "./media/characters/mandarax/head.svg"
  26383. }
  26384. },
  26385. belly: {
  26386. height: math.unit(33, "feet"),
  26387. name: "Belly",
  26388. preyCapacity: math.unit(500, "people"),
  26389. image: {
  26390. source: "./media/characters/mandarax/belly.svg"
  26391. }
  26392. },
  26393. dick: {
  26394. height: math.unit(8.46, "feet"),
  26395. name: "Dick",
  26396. image: {
  26397. source: "./media/characters/mandarax/dick.svg"
  26398. }
  26399. },
  26400. top: {
  26401. height: math.unit(28, "meters"),
  26402. name: "Top",
  26403. image: {
  26404. source: "./media/characters/mandarax/top.svg"
  26405. }
  26406. },
  26407. },
  26408. [
  26409. {
  26410. name: "Normal",
  26411. height: math.unit(25, "feet"),
  26412. default: true
  26413. },
  26414. ]
  26415. ))
  26416. characterMakers.push(() => makeCharacter(
  26417. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26418. {
  26419. front: {
  26420. height: math.unit(5, "feet"),
  26421. weight: math.unit(90, "lb"),
  26422. name: "Front",
  26423. image: {
  26424. source: "./media/characters/pixil/front.svg",
  26425. extra: 2000 / 1618,
  26426. bottom: 12.3 / 2011
  26427. }
  26428. },
  26429. },
  26430. [
  26431. {
  26432. name: "Normal",
  26433. height: math.unit(5, "feet"),
  26434. default: true
  26435. },
  26436. {
  26437. name: "Megamacro",
  26438. height: math.unit(10, "miles"),
  26439. },
  26440. ]
  26441. ))
  26442. characterMakers.push(() => makeCharacter(
  26443. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26444. {
  26445. front: {
  26446. height: math.unit(7 + 2 / 12, "feet"),
  26447. weight: math.unit(200, "lb"),
  26448. name: "Front",
  26449. image: {
  26450. source: "./media/characters/angel/front.svg",
  26451. extra: 1830 / 1737,
  26452. bottom: 22.6 / 1854,
  26453. }
  26454. },
  26455. },
  26456. [
  26457. {
  26458. name: "Normal",
  26459. height: math.unit(7 + 2 / 12, "feet"),
  26460. default: true
  26461. },
  26462. {
  26463. name: "Macro",
  26464. height: math.unit(1000, "feet")
  26465. },
  26466. {
  26467. name: "Megamacro",
  26468. height: math.unit(2, "miles")
  26469. },
  26470. {
  26471. name: "Gigamacro",
  26472. height: math.unit(20, "earths")
  26473. },
  26474. ]
  26475. ))
  26476. characterMakers.push(() => makeCharacter(
  26477. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26478. {
  26479. front: {
  26480. height: math.unit(5, "feet"),
  26481. weight: math.unit(180, "lb"),
  26482. name: "Front",
  26483. image: {
  26484. source: "./media/characters/mekana/front.svg",
  26485. extra: 1671 / 1605,
  26486. bottom: 3.5 / 1691
  26487. }
  26488. },
  26489. side: {
  26490. height: math.unit(5, "feet"),
  26491. weight: math.unit(180, "lb"),
  26492. name: "Side",
  26493. image: {
  26494. source: "./media/characters/mekana/side.svg",
  26495. extra: 1671 / 1605,
  26496. bottom: 3.5 / 1691
  26497. }
  26498. },
  26499. back: {
  26500. height: math.unit(5, "feet"),
  26501. weight: math.unit(180, "lb"),
  26502. name: "Back",
  26503. image: {
  26504. source: "./media/characters/mekana/back.svg",
  26505. extra: 1671 / 1605,
  26506. bottom: 3.5 / 1691
  26507. }
  26508. },
  26509. },
  26510. [
  26511. {
  26512. name: "Normal",
  26513. height: math.unit(5, "feet"),
  26514. default: true
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26520. {
  26521. front: {
  26522. height: math.unit(4 + 6 / 12, "feet"),
  26523. weight: math.unit(80, "lb"),
  26524. name: "Front",
  26525. image: {
  26526. source: "./media/characters/pixie/front.svg",
  26527. extra: 1924 / 1825,
  26528. bottom: 22.4 / 1946
  26529. }
  26530. },
  26531. },
  26532. [
  26533. {
  26534. name: "Normal",
  26535. height: math.unit(4 + 6 / 12, "feet"),
  26536. default: true
  26537. },
  26538. {
  26539. name: "Macro",
  26540. height: math.unit(40, "feet")
  26541. },
  26542. ]
  26543. ))
  26544. characterMakers.push(() => makeCharacter(
  26545. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26546. {
  26547. front: {
  26548. height: math.unit(2.1, "meters"),
  26549. weight: math.unit(200, "lb"),
  26550. name: "Front",
  26551. image: {
  26552. source: "./media/characters/the-lascivious/front.svg",
  26553. extra: 1 / 0.893,
  26554. bottom: 3.5 / 573.7
  26555. }
  26556. },
  26557. },
  26558. [
  26559. {
  26560. name: "Human Scale",
  26561. height: math.unit(2.1, "meters")
  26562. },
  26563. {
  26564. name: "Wolxi Scale",
  26565. height: math.unit(46.2, "m"),
  26566. default: true
  26567. },
  26568. {
  26569. name: "Boinker of Buildings",
  26570. height: math.unit(10, "km")
  26571. },
  26572. {
  26573. name: "Shagger of Skyscrapers",
  26574. height: math.unit(40, "km")
  26575. },
  26576. {
  26577. name: "Banger of Boroughs",
  26578. height: math.unit(4000, "km")
  26579. },
  26580. {
  26581. name: "Screwer of States",
  26582. height: math.unit(100000, "km")
  26583. },
  26584. {
  26585. name: "Pounder of Planets",
  26586. height: math.unit(2000000, "km")
  26587. },
  26588. ]
  26589. ))
  26590. characterMakers.push(() => makeCharacter(
  26591. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26592. {
  26593. front: {
  26594. height: math.unit(6, "feet"),
  26595. weight: math.unit(150, "lb"),
  26596. name: "Front",
  26597. image: {
  26598. source: "./media/characters/aj/front.svg",
  26599. extra: 2039 / 1562,
  26600. bottom: 40 / 2079
  26601. }
  26602. },
  26603. },
  26604. [
  26605. {
  26606. name: "Normal",
  26607. height: math.unit(11 + 6 / 12, "feet"),
  26608. default: true
  26609. },
  26610. {
  26611. name: "Megamacro",
  26612. height: math.unit(60, "megameters")
  26613. },
  26614. ]
  26615. ))
  26616. characterMakers.push(() => makeCharacter(
  26617. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26618. {
  26619. side: {
  26620. height: math.unit(31 + 8 / 12, "feet"),
  26621. weight: math.unit(75000, "kg"),
  26622. name: "Side",
  26623. image: {
  26624. source: "./media/characters/koros/side.svg",
  26625. extra: 1442 / 1297,
  26626. bottom: 122.7 / 1562
  26627. }
  26628. },
  26629. dicksKingsCrown: {
  26630. height: math.unit(6, "feet"),
  26631. name: "Dicks (King's Crown)",
  26632. image: {
  26633. source: "./media/characters/koros/dicks-kings-crown.svg"
  26634. }
  26635. },
  26636. dicksTailSet: {
  26637. height: math.unit(3, "feet"),
  26638. name: "Dicks (Tail Set)",
  26639. image: {
  26640. source: "./media/characters/koros/dicks-tail-set.svg"
  26641. }
  26642. },
  26643. dickCumming: {
  26644. height: math.unit(7.98, "feet"),
  26645. name: "Dick (Cumming)",
  26646. image: {
  26647. source: "./media/characters/koros/dick-cumming.svg"
  26648. }
  26649. },
  26650. dicksBack: {
  26651. height: math.unit(5.9, "feet"),
  26652. name: "Dicks (Back)",
  26653. image: {
  26654. source: "./media/characters/koros/dicks-back.svg"
  26655. }
  26656. },
  26657. dicksFront: {
  26658. height: math.unit(3.72, "feet"),
  26659. name: "Dicks (Front)",
  26660. image: {
  26661. source: "./media/characters/koros/dicks-front.svg"
  26662. }
  26663. },
  26664. dicksPeeking: {
  26665. height: math.unit(3.0, "feet"),
  26666. name: "Dicks (Peeking)",
  26667. image: {
  26668. source: "./media/characters/koros/dicks-peeking.svg"
  26669. }
  26670. },
  26671. eye: {
  26672. height: math.unit(1.7, "feet"),
  26673. name: "Eye",
  26674. image: {
  26675. source: "./media/characters/koros/eye.svg"
  26676. }
  26677. },
  26678. headFront: {
  26679. height: math.unit(11.69, "feet"),
  26680. name: "Head (Front)",
  26681. image: {
  26682. source: "./media/characters/koros/head-front.svg"
  26683. }
  26684. },
  26685. headSide: {
  26686. height: math.unit(14, "feet"),
  26687. name: "Head (Side)",
  26688. image: {
  26689. source: "./media/characters/koros/head-side.svg"
  26690. }
  26691. },
  26692. leg: {
  26693. height: math.unit(17, "feet"),
  26694. name: "Leg",
  26695. image: {
  26696. source: "./media/characters/koros/leg.svg"
  26697. }
  26698. },
  26699. mawSide: {
  26700. height: math.unit(12.8, "feet"),
  26701. name: "Maw (Side)",
  26702. image: {
  26703. source: "./media/characters/koros/maw-side.svg"
  26704. }
  26705. },
  26706. mawSpitting: {
  26707. height: math.unit(17, "feet"),
  26708. name: "Maw (Spitting)",
  26709. image: {
  26710. source: "./media/characters/koros/maw-spitting.svg"
  26711. }
  26712. },
  26713. slit: {
  26714. height: math.unit(2.8, "feet"),
  26715. name: "Slit",
  26716. image: {
  26717. source: "./media/characters/koros/slit.svg"
  26718. }
  26719. },
  26720. stomach: {
  26721. height: math.unit(6.8, "feet"),
  26722. preyCapacity: math.unit(20, "people"),
  26723. name: "Stomach",
  26724. image: {
  26725. source: "./media/characters/koros/stomach.svg"
  26726. }
  26727. },
  26728. wingspanBottom: {
  26729. height: math.unit(114, "feet"),
  26730. name: "Wingspan (Bottom)",
  26731. image: {
  26732. source: "./media/characters/koros/wingspan-bottom.svg"
  26733. }
  26734. },
  26735. wingspanTop: {
  26736. height: math.unit(104, "feet"),
  26737. name: "Wingspan (Top)",
  26738. image: {
  26739. source: "./media/characters/koros/wingspan-top.svg"
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(31 + 8 / 12, "feet"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(18 + 5 / 12, "feet"),
  26756. weight: math.unit(3750, "kg"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/vexx/front.svg",
  26760. extra: 426 / 396,
  26761. bottom: 31.5 / 458
  26762. }
  26763. },
  26764. maw: {
  26765. height: math.unit(6, "feet"),
  26766. name: "Maw",
  26767. image: {
  26768. source: "./media/characters/vexx/maw.svg"
  26769. }
  26770. },
  26771. },
  26772. [
  26773. {
  26774. name: "Normal",
  26775. height: math.unit(18 + 5 / 12, "feet"),
  26776. default: true
  26777. },
  26778. ]
  26779. ))
  26780. characterMakers.push(() => makeCharacter(
  26781. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26782. {
  26783. front: {
  26784. height: math.unit(17 + 6 / 12, "feet"),
  26785. weight: math.unit(150, "lb"),
  26786. name: "Front",
  26787. image: {
  26788. source: "./media/characters/baadra/front.svg",
  26789. extra: 1694/1553,
  26790. bottom: 179/1873
  26791. }
  26792. },
  26793. frontAlt: {
  26794. height: math.unit(17 + 6 / 12, "feet"),
  26795. weight: math.unit(150, "lb"),
  26796. name: "Front (Alt)",
  26797. image: {
  26798. source: "./media/characters/baadra/front-alt.svg",
  26799. extra: 3137 / 2890,
  26800. bottom: 168.4 / 3305
  26801. }
  26802. },
  26803. back: {
  26804. height: math.unit(17 + 6 / 12, "feet"),
  26805. weight: math.unit(150, "lb"),
  26806. name: "Back",
  26807. image: {
  26808. source: "./media/characters/baadra/back.svg",
  26809. extra: 3142 / 2890,
  26810. bottom: 220 / 3371
  26811. }
  26812. },
  26813. head: {
  26814. height: math.unit(5.45, "feet"),
  26815. name: "Head",
  26816. image: {
  26817. source: "./media/characters/baadra/head.svg"
  26818. }
  26819. },
  26820. headAngry: {
  26821. height: math.unit(4.95, "feet"),
  26822. name: "Head (Angry)",
  26823. image: {
  26824. source: "./media/characters/baadra/head-angry.svg"
  26825. }
  26826. },
  26827. headOpen: {
  26828. height: math.unit(6, "feet"),
  26829. name: "Head (Open)",
  26830. image: {
  26831. source: "./media/characters/baadra/head-open.svg"
  26832. }
  26833. },
  26834. },
  26835. [
  26836. {
  26837. name: "Normal",
  26838. height: math.unit(17 + 6 / 12, "feet"),
  26839. default: true
  26840. },
  26841. ]
  26842. ))
  26843. characterMakers.push(() => makeCharacter(
  26844. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26845. {
  26846. front: {
  26847. height: math.unit(7 + 3 / 12, "feet"),
  26848. weight: math.unit(180, "lb"),
  26849. name: "Front",
  26850. image: {
  26851. source: "./media/characters/juri/front.svg",
  26852. extra: 1401 / 1237,
  26853. bottom: 18.5 / 1418
  26854. }
  26855. },
  26856. side: {
  26857. height: math.unit(7 + 3 / 12, "feet"),
  26858. weight: math.unit(180, "lb"),
  26859. name: "Side",
  26860. image: {
  26861. source: "./media/characters/juri/side.svg",
  26862. extra: 1424 / 1242,
  26863. bottom: 18.5 / 1447
  26864. }
  26865. },
  26866. sitting: {
  26867. height: math.unit(6, "feet"),
  26868. weight: math.unit(180, "lb"),
  26869. name: "Sitting",
  26870. image: {
  26871. source: "./media/characters/juri/sitting.svg",
  26872. extra: 1270 / 1143,
  26873. bottom: 100 / 1343
  26874. }
  26875. },
  26876. back: {
  26877. height: math.unit(7 + 3 / 12, "feet"),
  26878. weight: math.unit(180, "lb"),
  26879. name: "Back",
  26880. image: {
  26881. source: "./media/characters/juri/back.svg",
  26882. extra: 1377 / 1240,
  26883. bottom: 23.7 / 1405
  26884. }
  26885. },
  26886. maw: {
  26887. height: math.unit(2.8, "feet"),
  26888. name: "Maw",
  26889. image: {
  26890. source: "./media/characters/juri/maw.svg"
  26891. }
  26892. },
  26893. stomach: {
  26894. height: math.unit(0.89, "feet"),
  26895. preyCapacity: math.unit(4, "liters"),
  26896. name: "Stomach",
  26897. image: {
  26898. source: "./media/characters/juri/stomach.svg"
  26899. }
  26900. },
  26901. },
  26902. [
  26903. {
  26904. name: "Normal",
  26905. height: math.unit(7 + 3 / 12, "feet"),
  26906. default: true
  26907. },
  26908. ]
  26909. ))
  26910. characterMakers.push(() => makeCharacter(
  26911. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26912. {
  26913. fox: {
  26914. height: math.unit(5 + 6 / 12, "feet"),
  26915. weight: math.unit(140, "lb"),
  26916. name: "Fox",
  26917. image: {
  26918. source: "./media/characters/maxene-sita/fox.svg",
  26919. extra: 146 / 138,
  26920. bottom: 2.1 / 148.19
  26921. }
  26922. },
  26923. foxLaying: {
  26924. height: math.unit(1.70, "feet"),
  26925. weight: math.unit(140, "lb"),
  26926. name: "Fox (Laying)",
  26927. image: {
  26928. source: "./media/characters/maxene-sita/fox-laying.svg",
  26929. extra: 910 / 572,
  26930. bottom: 71 / 981
  26931. }
  26932. },
  26933. kitsune: {
  26934. height: math.unit(10, "feet"),
  26935. weight: math.unit(800, "lb"),
  26936. name: "Kitsune",
  26937. image: {
  26938. source: "./media/characters/maxene-sita/kitsune.svg",
  26939. extra: 185 / 176,
  26940. bottom: 4.7 / 189.9
  26941. }
  26942. },
  26943. hellhound: {
  26944. height: math.unit(10, "feet"),
  26945. weight: math.unit(700, "lb"),
  26946. name: "Hellhound",
  26947. image: {
  26948. source: "./media/characters/maxene-sita/hellhound.svg",
  26949. extra: 1600 / 1545,
  26950. bottom: 81 / 1681
  26951. }
  26952. },
  26953. },
  26954. [
  26955. {
  26956. name: "Normal",
  26957. height: math.unit(5 + 6 / 12, "feet"),
  26958. default: true
  26959. },
  26960. ]
  26961. ))
  26962. characterMakers.push(() => makeCharacter(
  26963. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26964. {
  26965. front: {
  26966. height: math.unit(3 + 4 / 12, "feet"),
  26967. weight: math.unit(70, "lb"),
  26968. name: "Front",
  26969. image: {
  26970. source: "./media/characters/maia/front.svg",
  26971. extra: 227 / 219.5,
  26972. bottom: 40 / 267
  26973. }
  26974. },
  26975. back: {
  26976. height: math.unit(3 + 4 / 12, "feet"),
  26977. weight: math.unit(70, "lb"),
  26978. name: "Back",
  26979. image: {
  26980. source: "./media/characters/maia/back.svg",
  26981. extra: 237 / 225
  26982. }
  26983. },
  26984. },
  26985. [
  26986. {
  26987. name: "Normal",
  26988. height: math.unit(3 + 4 / 12, "feet"),
  26989. default: true
  26990. },
  26991. ]
  26992. ))
  26993. characterMakers.push(() => makeCharacter(
  26994. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26995. {
  26996. front: {
  26997. height: math.unit(5 + 10 / 12, "feet"),
  26998. weight: math.unit(197, "lb"),
  26999. name: "Front",
  27000. image: {
  27001. source: "./media/characters/jabaro/front.svg",
  27002. extra: 225 / 216,
  27003. bottom: 5.06 / 230
  27004. }
  27005. },
  27006. back: {
  27007. height: math.unit(5 + 10 / 12, "feet"),
  27008. weight: math.unit(197, "lb"),
  27009. name: "Back",
  27010. image: {
  27011. source: "./media/characters/jabaro/back.svg",
  27012. extra: 225 / 219,
  27013. bottom: 1.9 / 227
  27014. }
  27015. },
  27016. },
  27017. [
  27018. {
  27019. name: "Normal",
  27020. height: math.unit(5 + 10 / 12, "feet"),
  27021. default: true
  27022. },
  27023. ]
  27024. ))
  27025. characterMakers.push(() => makeCharacter(
  27026. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27027. {
  27028. front: {
  27029. height: math.unit(5 + 8 / 12, "feet"),
  27030. weight: math.unit(139, "lb"),
  27031. name: "Front",
  27032. image: {
  27033. source: "./media/characters/risa/front.svg",
  27034. extra: 270 / 260,
  27035. bottom: 11.2 / 282
  27036. }
  27037. },
  27038. back: {
  27039. height: math.unit(5 + 8 / 12, "feet"),
  27040. weight: math.unit(139, "lb"),
  27041. name: "Back",
  27042. image: {
  27043. source: "./media/characters/risa/back.svg",
  27044. extra: 264 / 255,
  27045. bottom: 4 / 268
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Normal",
  27052. height: math.unit(5 + 8 / 12, "feet"),
  27053. default: true
  27054. },
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27059. {
  27060. front: {
  27061. height: math.unit(2 + 11 / 12, "feet"),
  27062. weight: math.unit(30, "lb"),
  27063. name: "Front",
  27064. image: {
  27065. source: "./media/characters/weatley/front.svg",
  27066. bottom: 10.7 / 414,
  27067. extra: 403.5 / 362
  27068. }
  27069. },
  27070. back: {
  27071. height: math.unit(2 + 11 / 12, "feet"),
  27072. weight: math.unit(30, "lb"),
  27073. name: "Back",
  27074. image: {
  27075. source: "./media/characters/weatley/back.svg",
  27076. bottom: 10.7 / 414,
  27077. extra: 403.5 / 362
  27078. }
  27079. },
  27080. },
  27081. [
  27082. {
  27083. name: "Normal",
  27084. height: math.unit(2 + 11 / 12, "feet"),
  27085. default: true
  27086. },
  27087. ]
  27088. ))
  27089. characterMakers.push(() => makeCharacter(
  27090. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27091. {
  27092. front: {
  27093. height: math.unit(5 + 2 / 12, "feet"),
  27094. weight: math.unit(50, "kg"),
  27095. name: "Front",
  27096. image: {
  27097. source: "./media/characters/mercury-crescent/front.svg",
  27098. extra: 1088 / 1033,
  27099. bottom: 18.9 / 1109
  27100. }
  27101. },
  27102. },
  27103. [
  27104. {
  27105. name: "Normal",
  27106. height: math.unit(5 + 2 / 12, "feet"),
  27107. default: true
  27108. },
  27109. ]
  27110. ))
  27111. characterMakers.push(() => makeCharacter(
  27112. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27113. {
  27114. front: {
  27115. height: math.unit(2, "feet"),
  27116. weight: math.unit(15, "kg"),
  27117. name: "Front",
  27118. image: {
  27119. source: "./media/characters/diamond-jones/front.svg",
  27120. extra: 727/723,
  27121. bottom: 46/773
  27122. }
  27123. },
  27124. },
  27125. [
  27126. {
  27127. name: "Normal",
  27128. height: math.unit(2, "feet"),
  27129. default: true
  27130. },
  27131. ]
  27132. ))
  27133. characterMakers.push(() => makeCharacter(
  27134. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27135. {
  27136. front: {
  27137. height: math.unit(3, "feet"),
  27138. weight: math.unit(30, "kg"),
  27139. name: "Front",
  27140. image: {
  27141. source: "./media/characters/sweet-bit/front.svg",
  27142. extra: 675 / 567,
  27143. bottom: 27.7 / 703
  27144. }
  27145. },
  27146. },
  27147. [
  27148. {
  27149. name: "Normal",
  27150. height: math.unit(3, "feet"),
  27151. default: true
  27152. },
  27153. ]
  27154. ))
  27155. characterMakers.push(() => makeCharacter(
  27156. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27157. {
  27158. side: {
  27159. height: math.unit(9.178, "feet"),
  27160. weight: math.unit(500, "lb"),
  27161. name: "Side",
  27162. image: {
  27163. source: "./media/characters/umbrazen/side.svg",
  27164. extra: 1730 / 1473,
  27165. bottom: 34.6 / 1765
  27166. }
  27167. },
  27168. },
  27169. [
  27170. {
  27171. name: "Normal",
  27172. height: math.unit(9.178, "feet"),
  27173. default: true
  27174. },
  27175. ]
  27176. ))
  27177. characterMakers.push(() => makeCharacter(
  27178. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27179. {
  27180. front: {
  27181. height: math.unit(10, "feet"),
  27182. weight: math.unit(750, "lb"),
  27183. name: "Front",
  27184. image: {
  27185. source: "./media/characters/arlist/front.svg",
  27186. extra: 961 / 778,
  27187. bottom: 6.2 / 986
  27188. }
  27189. },
  27190. },
  27191. [
  27192. {
  27193. name: "Normal",
  27194. height: math.unit(10, "feet"),
  27195. default: true
  27196. },
  27197. ]
  27198. ))
  27199. characterMakers.push(() => makeCharacter(
  27200. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27201. {
  27202. front: {
  27203. height: math.unit(5 + 1 / 12, "feet"),
  27204. weight: math.unit(110, "lb"),
  27205. name: "Front",
  27206. image: {
  27207. source: "./media/characters/aradel/front.svg",
  27208. extra: 324 / 303,
  27209. bottom: 3.6 / 329.4
  27210. }
  27211. },
  27212. },
  27213. [
  27214. {
  27215. name: "Normal",
  27216. height: math.unit(5 + 1 / 12, "feet"),
  27217. default: true
  27218. },
  27219. ]
  27220. ))
  27221. characterMakers.push(() => makeCharacter(
  27222. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27223. {
  27224. dressed: {
  27225. height: math.unit(3 + 8 / 12, "feet"),
  27226. weight: math.unit(50, "lb"),
  27227. name: "Dressed",
  27228. image: {
  27229. source: "./media/characters/serryn/dressed.svg",
  27230. extra: 1792 / 1656,
  27231. bottom: 43.5 / 1840
  27232. }
  27233. },
  27234. nude: {
  27235. height: math.unit(3 + 8 / 12, "feet"),
  27236. weight: math.unit(50, "lb"),
  27237. name: "Nude",
  27238. image: {
  27239. source: "./media/characters/serryn/nude.svg",
  27240. extra: 1792 / 1656,
  27241. bottom: 43.5 / 1840
  27242. }
  27243. },
  27244. },
  27245. [
  27246. {
  27247. name: "Normal",
  27248. height: math.unit(3 + 8 / 12, "feet"),
  27249. default: true
  27250. },
  27251. ]
  27252. ))
  27253. characterMakers.push(() => makeCharacter(
  27254. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27255. {
  27256. front: {
  27257. height: math.unit(7 + 10 / 12, "feet"),
  27258. weight: math.unit(255, "lb"),
  27259. name: "Front",
  27260. image: {
  27261. source: "./media/characters/xavier-thyme/front.svg",
  27262. extra: 3733 / 3642,
  27263. bottom: 131 / 3869
  27264. }
  27265. },
  27266. frontRaven: {
  27267. height: math.unit(7 + 10 / 12, "feet"),
  27268. weight: math.unit(255, "lb"),
  27269. name: "Front (Raven)",
  27270. image: {
  27271. source: "./media/characters/xavier-thyme/front-raven.svg",
  27272. extra: 4385 / 3642,
  27273. bottom: 131 / 4517
  27274. }
  27275. },
  27276. },
  27277. [
  27278. {
  27279. name: "Normal",
  27280. height: math.unit(7 + 10 / 12, "feet"),
  27281. default: true
  27282. },
  27283. ]
  27284. ))
  27285. characterMakers.push(() => makeCharacter(
  27286. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27287. {
  27288. front: {
  27289. height: math.unit(1.6, "m"),
  27290. weight: math.unit(50, "kg"),
  27291. name: "Front",
  27292. image: {
  27293. source: "./media/characters/kiki/front.svg",
  27294. extra: 4682 / 3610,
  27295. bottom: 115 / 4777
  27296. }
  27297. },
  27298. },
  27299. [
  27300. {
  27301. name: "Normal",
  27302. height: math.unit(1.6, "meters"),
  27303. default: true
  27304. },
  27305. ]
  27306. ))
  27307. characterMakers.push(() => makeCharacter(
  27308. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27309. {
  27310. front: {
  27311. height: math.unit(50, "m"),
  27312. weight: math.unit(500, "tonnes"),
  27313. name: "Front",
  27314. image: {
  27315. source: "./media/characters/ryoko/front.svg",
  27316. extra: 4632 / 3926,
  27317. bottom: 193 / 4823
  27318. }
  27319. },
  27320. },
  27321. [
  27322. {
  27323. name: "Normal",
  27324. height: math.unit(50, "meters"),
  27325. default: true
  27326. },
  27327. ]
  27328. ))
  27329. characterMakers.push(() => makeCharacter(
  27330. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27331. {
  27332. front: {
  27333. height: math.unit(30, "m"),
  27334. weight: math.unit(22, "tonnes"),
  27335. name: "Front",
  27336. image: {
  27337. source: "./media/characters/elio/front.svg",
  27338. extra: 4582 / 3720,
  27339. bottom: 236 / 4828
  27340. }
  27341. },
  27342. },
  27343. [
  27344. {
  27345. name: "Normal",
  27346. height: math.unit(30, "meters"),
  27347. default: true
  27348. },
  27349. ]
  27350. ))
  27351. characterMakers.push(() => makeCharacter(
  27352. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27353. {
  27354. front: {
  27355. height: math.unit(6 + 3 / 12, "feet"),
  27356. weight: math.unit(120, "lb"),
  27357. name: "Front",
  27358. image: {
  27359. source: "./media/characters/azura/front.svg",
  27360. extra: 1149 / 1135,
  27361. bottom: 45 / 1194
  27362. }
  27363. },
  27364. frontClothed: {
  27365. height: math.unit(6 + 3 / 12, "feet"),
  27366. weight: math.unit(120, "lb"),
  27367. name: "Front (Clothed)",
  27368. image: {
  27369. source: "./media/characters/azura/front-clothed.svg",
  27370. extra: 1149 / 1135,
  27371. bottom: 45 / 1194
  27372. }
  27373. },
  27374. },
  27375. [
  27376. {
  27377. name: "Normal",
  27378. height: math.unit(6 + 3 / 12, "feet"),
  27379. default: true
  27380. },
  27381. {
  27382. name: "Macro",
  27383. height: math.unit(20 + 6 / 12, "feet")
  27384. },
  27385. {
  27386. name: "Megamacro",
  27387. height: math.unit(12, "miles")
  27388. },
  27389. {
  27390. name: "Gigamacro",
  27391. height: math.unit(10000, "miles")
  27392. },
  27393. {
  27394. name: "Teramacro",
  27395. height: math.unit(900000, "miles")
  27396. },
  27397. ]
  27398. ))
  27399. characterMakers.push(() => makeCharacter(
  27400. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27401. {
  27402. front: {
  27403. height: math.unit(12, "feet"),
  27404. weight: math.unit(1, "ton"),
  27405. capacity: math.unit(660000, "gallons"),
  27406. name: "Front",
  27407. image: {
  27408. source: "./media/characters/zeus/front.svg",
  27409. extra: 5005 / 4717,
  27410. bottom: 363 / 5388
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Normal",
  27417. height: math.unit(12, "feet")
  27418. },
  27419. {
  27420. name: "Preferred Size",
  27421. height: math.unit(0.5, "miles"),
  27422. default: true
  27423. },
  27424. {
  27425. name: "Giga Horse",
  27426. height: math.unit(300, "miles")
  27427. },
  27428. {
  27429. name: "Riding Planets",
  27430. height: math.unit(30, "megameters")
  27431. },
  27432. {
  27433. name: "Cosmic Giant",
  27434. height: math.unit(3, "zettameters")
  27435. },
  27436. {
  27437. name: "Breeding God",
  27438. height: math.unit(9.92e22, "yottameters")
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27444. {
  27445. side: {
  27446. height: math.unit(9, "feet"),
  27447. weight: math.unit(1500, "kg"),
  27448. name: "Side",
  27449. image: {
  27450. source: "./media/characters/fang/side.svg",
  27451. extra: 924 / 866,
  27452. bottom: 47.5 / 972.3
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(9, "feet"),
  27460. default: true
  27461. },
  27462. {
  27463. name: "Macro",
  27464. height: math.unit(75 + 6 / 12, "feet")
  27465. },
  27466. {
  27467. name: "Teramacro",
  27468. height: math.unit(50000, "miles")
  27469. },
  27470. ]
  27471. ))
  27472. characterMakers.push(() => makeCharacter(
  27473. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27474. {
  27475. front: {
  27476. height: math.unit(10, "feet"),
  27477. weight: math.unit(2, "tons"),
  27478. name: "Front",
  27479. image: {
  27480. source: "./media/characters/rekhit/front.svg",
  27481. extra: 2796 / 2590,
  27482. bottom: 225 / 3022
  27483. }
  27484. },
  27485. },
  27486. [
  27487. {
  27488. name: "Normal",
  27489. height: math.unit(10, "feet"),
  27490. default: true
  27491. },
  27492. {
  27493. name: "Macro",
  27494. height: math.unit(500, "feet")
  27495. },
  27496. ]
  27497. ))
  27498. characterMakers.push(() => makeCharacter(
  27499. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27500. {
  27501. front: {
  27502. height: math.unit(7 + 6.451 / 12, "feet"),
  27503. weight: math.unit(310, "lb"),
  27504. name: "Front",
  27505. image: {
  27506. source: "./media/characters/dahlia-verrick/front.svg",
  27507. extra: 1488 / 1365,
  27508. bottom: 6.2 / 1495
  27509. }
  27510. },
  27511. back: {
  27512. height: math.unit(7 + 6.451 / 12, "feet"),
  27513. weight: math.unit(310, "lb"),
  27514. name: "Back",
  27515. image: {
  27516. source: "./media/characters/dahlia-verrick/back.svg",
  27517. extra: 1472 / 1351,
  27518. bottom: 5.28 / 1477
  27519. }
  27520. },
  27521. frontBusiness: {
  27522. height: math.unit(7 + 6.451 / 12, "feet"),
  27523. weight: math.unit(200, "lb"),
  27524. name: "Front (Business)",
  27525. image: {
  27526. source: "./media/characters/dahlia-verrick/front-business.svg",
  27527. extra: 1478 / 1381,
  27528. bottom: 5.5 / 1484
  27529. }
  27530. },
  27531. frontCasual: {
  27532. height: math.unit(7 + 6.451 / 12, "feet"),
  27533. weight: math.unit(200, "lb"),
  27534. name: "Front (Casual)",
  27535. image: {
  27536. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27537. extra: 1478 / 1381,
  27538. bottom: 5.5 / 1484
  27539. }
  27540. },
  27541. },
  27542. [
  27543. {
  27544. name: "Travel-Sized",
  27545. height: math.unit(7.45, "inches")
  27546. },
  27547. {
  27548. name: "Normal",
  27549. height: math.unit(7 + 6.451 / 12, "feet"),
  27550. default: true
  27551. },
  27552. {
  27553. name: "Hitting the Town",
  27554. height: math.unit(37 + 8 / 12, "feet")
  27555. },
  27556. {
  27557. name: "Stomp in the Suburbs",
  27558. height: math.unit(964 + 9.728 / 12, "feet")
  27559. },
  27560. {
  27561. name: "Sit on the City",
  27562. height: math.unit(61747 + 10.592 / 12, "feet")
  27563. },
  27564. {
  27565. name: "Glomp the Globe",
  27566. height: math.unit(252919327 + 4.832 / 12, "feet")
  27567. },
  27568. ]
  27569. ))
  27570. characterMakers.push(() => makeCharacter(
  27571. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27572. {
  27573. front: {
  27574. height: math.unit(6 + 4 / 12, "feet"),
  27575. weight: math.unit(320, "lb"),
  27576. name: "Front",
  27577. image: {
  27578. source: "./media/characters/balina-mahigan/front.svg",
  27579. extra: 447 / 428,
  27580. bottom: 18 / 466
  27581. }
  27582. },
  27583. back: {
  27584. height: math.unit(6 + 4 / 12, "feet"),
  27585. weight: math.unit(320, "lb"),
  27586. name: "Back",
  27587. image: {
  27588. source: "./media/characters/balina-mahigan/back.svg",
  27589. extra: 445 / 428,
  27590. bottom: 4.07 / 448
  27591. }
  27592. },
  27593. arm: {
  27594. height: math.unit(1.88, "feet"),
  27595. name: "Arm",
  27596. image: {
  27597. source: "./media/characters/balina-mahigan/arm.svg"
  27598. }
  27599. },
  27600. backPort: {
  27601. height: math.unit(0.685, "feet"),
  27602. name: "Back Port",
  27603. image: {
  27604. source: "./media/characters/balina-mahigan/back-port.svg"
  27605. }
  27606. },
  27607. hoofpaw: {
  27608. height: math.unit(1.41, "feet"),
  27609. name: "Hoofpaw",
  27610. image: {
  27611. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27612. }
  27613. },
  27614. leftHandBack: {
  27615. height: math.unit(0.938, "feet"),
  27616. name: "Left Hand (Back)",
  27617. image: {
  27618. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27619. }
  27620. },
  27621. leftHandFront: {
  27622. height: math.unit(0.938, "feet"),
  27623. name: "Left Hand (Front)",
  27624. image: {
  27625. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27626. }
  27627. },
  27628. rightHandBack: {
  27629. height: math.unit(0.95, "feet"),
  27630. name: "Right Hand (Back)",
  27631. image: {
  27632. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27633. }
  27634. },
  27635. rightHandFront: {
  27636. height: math.unit(0.95, "feet"),
  27637. name: "Right Hand (Front)",
  27638. image: {
  27639. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27640. }
  27641. },
  27642. },
  27643. [
  27644. {
  27645. name: "Normal",
  27646. height: math.unit(6 + 4 / 12, "feet"),
  27647. default: true
  27648. },
  27649. ]
  27650. ))
  27651. characterMakers.push(() => makeCharacter(
  27652. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27653. {
  27654. front: {
  27655. height: math.unit(6, "feet"),
  27656. weight: math.unit(320, "lb"),
  27657. name: "Front",
  27658. image: {
  27659. source: "./media/characters/balina-mejeri/front.svg",
  27660. extra: 517 / 488,
  27661. bottom: 44.2 / 561
  27662. }
  27663. },
  27664. },
  27665. [
  27666. {
  27667. name: "Normal",
  27668. height: math.unit(6 + 4 / 12, "feet")
  27669. },
  27670. {
  27671. name: "Business",
  27672. height: math.unit(155, "feet"),
  27673. default: true
  27674. },
  27675. ]
  27676. ))
  27677. characterMakers.push(() => makeCharacter(
  27678. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27679. {
  27680. kneeling: {
  27681. height: math.unit(6 + 4 / 12, "feet"),
  27682. weight: math.unit(300 * 20, "lb"),
  27683. name: "Kneeling",
  27684. image: {
  27685. source: "./media/characters/balbarian/kneeling.svg",
  27686. extra: 922 / 862,
  27687. bottom: 42.4 / 965
  27688. }
  27689. },
  27690. },
  27691. [
  27692. {
  27693. name: "Normal",
  27694. height: math.unit(6 + 4 / 12, "feet")
  27695. },
  27696. {
  27697. name: "Treasured",
  27698. height: math.unit(18 + 9 / 12, "feet"),
  27699. default: true
  27700. },
  27701. {
  27702. name: "Macro",
  27703. height: math.unit(900, "feet")
  27704. },
  27705. ]
  27706. ))
  27707. characterMakers.push(() => makeCharacter(
  27708. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27709. {
  27710. front: {
  27711. height: math.unit(6 + 4 / 12, "feet"),
  27712. weight: math.unit(325, "lb"),
  27713. name: "Front",
  27714. image: {
  27715. source: "./media/characters/balina-amarini/front.svg",
  27716. extra: 415 / 403,
  27717. bottom: 19 / 433.4
  27718. }
  27719. },
  27720. back: {
  27721. height: math.unit(6 + 4 / 12, "feet"),
  27722. weight: math.unit(325, "lb"),
  27723. name: "Back",
  27724. image: {
  27725. source: "./media/characters/balina-amarini/back.svg",
  27726. extra: 415 / 403,
  27727. bottom: 13.5 / 432
  27728. }
  27729. },
  27730. overdrive: {
  27731. height: math.unit(6 + 4 / 12, "feet"),
  27732. weight: math.unit(400, "lb"),
  27733. name: "Overdrive",
  27734. image: {
  27735. source: "./media/characters/balina-amarini/overdrive.svg",
  27736. extra: 269 / 259,
  27737. bottom: 12 / 282
  27738. }
  27739. },
  27740. },
  27741. [
  27742. {
  27743. name: "Boom",
  27744. height: math.unit(9 + 10 / 12, "feet"),
  27745. default: true
  27746. },
  27747. {
  27748. name: "Macro",
  27749. height: math.unit(280, "feet")
  27750. },
  27751. ]
  27752. ))
  27753. characterMakers.push(() => makeCharacter(
  27754. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27755. {
  27756. goddess: {
  27757. height: math.unit(600, "feet"),
  27758. weight: math.unit(2000000, "tons"),
  27759. name: "Goddess",
  27760. image: {
  27761. source: "./media/characters/lady-kubwa/goddess.svg",
  27762. extra: 1240.5 / 1223,
  27763. bottom: 22 / 1263
  27764. }
  27765. },
  27766. goddesser: {
  27767. height: math.unit(900, "feet"),
  27768. weight: math.unit(20000000, "lb"),
  27769. name: "Goddess-er",
  27770. image: {
  27771. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27772. extra: 899 / 888,
  27773. bottom: 12.6 / 912
  27774. }
  27775. },
  27776. },
  27777. [
  27778. {
  27779. name: "Macro",
  27780. height: math.unit(600, "feet"),
  27781. default: true
  27782. },
  27783. {
  27784. name: "Megamacro",
  27785. height: math.unit(250, "miles")
  27786. },
  27787. ]
  27788. ))
  27789. characterMakers.push(() => makeCharacter(
  27790. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27791. {
  27792. front: {
  27793. height: math.unit(7 + 7 / 12, "feet"),
  27794. weight: math.unit(250, "lb"),
  27795. name: "Front",
  27796. image: {
  27797. source: "./media/characters/tala-grovehorn/front.svg",
  27798. extra: 2636 / 2525,
  27799. bottom: 147 / 2781
  27800. }
  27801. },
  27802. back: {
  27803. height: math.unit(7 + 7 / 12, "feet"),
  27804. weight: math.unit(250, "lb"),
  27805. name: "Back",
  27806. image: {
  27807. source: "./media/characters/tala-grovehorn/back.svg",
  27808. extra: 2635 / 2539,
  27809. bottom: 100 / 2732.8
  27810. }
  27811. },
  27812. mouth: {
  27813. height: math.unit(1.15, "feet"),
  27814. name: "Mouth",
  27815. image: {
  27816. source: "./media/characters/tala-grovehorn/mouth.svg"
  27817. }
  27818. },
  27819. dick: {
  27820. height: math.unit(2.36, "feet"),
  27821. name: "Dick",
  27822. image: {
  27823. source: "./media/characters/tala-grovehorn/dick.svg"
  27824. }
  27825. },
  27826. slit: {
  27827. height: math.unit(0.61, "feet"),
  27828. name: "Slit",
  27829. image: {
  27830. source: "./media/characters/tala-grovehorn/slit.svg"
  27831. }
  27832. },
  27833. },
  27834. [
  27835. ]
  27836. ))
  27837. characterMakers.push(() => makeCharacter(
  27838. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27839. {
  27840. front: {
  27841. height: math.unit(7 + 7 / 12, "feet"),
  27842. weight: math.unit(225, "lb"),
  27843. name: "Front",
  27844. image: {
  27845. source: "./media/characters/epona/front.svg",
  27846. extra: 2445 / 2290,
  27847. bottom: 251 / 2696
  27848. }
  27849. },
  27850. back: {
  27851. height: math.unit(7 + 7 / 12, "feet"),
  27852. weight: math.unit(225, "lb"),
  27853. name: "Back",
  27854. image: {
  27855. source: "./media/characters/epona/back.svg",
  27856. extra: 2546 / 2408,
  27857. bottom: 44 / 2589
  27858. }
  27859. },
  27860. genitals: {
  27861. height: math.unit(1.5, "feet"),
  27862. name: "Genitals",
  27863. image: {
  27864. source: "./media/characters/epona/genitals.svg"
  27865. }
  27866. },
  27867. },
  27868. [
  27869. {
  27870. name: "Normal",
  27871. height: math.unit(7 + 7 / 12, "feet"),
  27872. default: true
  27873. },
  27874. ]
  27875. ))
  27876. characterMakers.push(() => makeCharacter(
  27877. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27878. {
  27879. front: {
  27880. height: math.unit(7, "feet"),
  27881. weight: math.unit(518, "lb"),
  27882. name: "Front",
  27883. image: {
  27884. source: "./media/characters/avia-bloodbourn/front.svg",
  27885. extra: 1466 / 1350,
  27886. bottom: 65 / 1527
  27887. }
  27888. },
  27889. },
  27890. [
  27891. ]
  27892. ))
  27893. characterMakers.push(() => makeCharacter(
  27894. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27895. {
  27896. front: {
  27897. height: math.unit(9.35, "feet"),
  27898. weight: math.unit(600, "lb"),
  27899. name: "Front",
  27900. image: {
  27901. source: "./media/characters/amera/front.svg",
  27902. extra: 891 / 818,
  27903. bottom: 30 / 922.7
  27904. }
  27905. },
  27906. back: {
  27907. height: math.unit(9.35, "feet"),
  27908. weight: math.unit(600, "lb"),
  27909. name: "Back",
  27910. image: {
  27911. source: "./media/characters/amera/back.svg",
  27912. extra: 876 / 824,
  27913. bottom: 6.8 / 884
  27914. }
  27915. },
  27916. dick: {
  27917. height: math.unit(2.14, "feet"),
  27918. name: "Dick",
  27919. image: {
  27920. source: "./media/characters/amera/dick.svg"
  27921. }
  27922. },
  27923. },
  27924. [
  27925. {
  27926. name: "Normal",
  27927. height: math.unit(9.35, "feet"),
  27928. default: true
  27929. },
  27930. ]
  27931. ))
  27932. characterMakers.push(() => makeCharacter(
  27933. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27934. {
  27935. kneeling: {
  27936. height: math.unit(3 + 4 / 12, "feet"),
  27937. weight: math.unit(90, "lb"),
  27938. name: "Kneeling",
  27939. image: {
  27940. source: "./media/characters/rosewen/kneeling.svg",
  27941. extra: 1835 / 1571,
  27942. bottom: 27.7 / 1862
  27943. }
  27944. },
  27945. },
  27946. [
  27947. {
  27948. name: "Normal",
  27949. height: math.unit(3 + 4 / 12, "feet"),
  27950. default: true
  27951. },
  27952. ]
  27953. ))
  27954. characterMakers.push(() => makeCharacter(
  27955. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27956. {
  27957. front: {
  27958. height: math.unit(5 + 10 / 12, "feet"),
  27959. weight: math.unit(200, "lb"),
  27960. name: "Front",
  27961. image: {
  27962. source: "./media/characters/sabah/front.svg",
  27963. extra: 849 / 763,
  27964. bottom: 33.9 / 881
  27965. }
  27966. },
  27967. },
  27968. [
  27969. {
  27970. name: "Normal",
  27971. height: math.unit(5 + 10 / 12, "feet"),
  27972. default: true
  27973. },
  27974. ]
  27975. ))
  27976. characterMakers.push(() => makeCharacter(
  27977. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27978. {
  27979. front: {
  27980. height: math.unit(3 + 5 / 12, "feet"),
  27981. weight: math.unit(40, "kg"),
  27982. name: "Front",
  27983. image: {
  27984. source: "./media/characters/purple-flame/front.svg",
  27985. extra: 1577 / 1412,
  27986. bottom: 97 / 1694
  27987. }
  27988. },
  27989. frontDressed: {
  27990. height: math.unit(3 + 5 / 12, "feet"),
  27991. weight: math.unit(40, "kg"),
  27992. name: "Front (Dressed)",
  27993. image: {
  27994. source: "./media/characters/purple-flame/front-dressed.svg",
  27995. extra: 1577 / 1412,
  27996. bottom: 97 / 1694
  27997. }
  27998. },
  27999. headphones: {
  28000. height: math.unit(0.85, "feet"),
  28001. name: "Headphones",
  28002. image: {
  28003. source: "./media/characters/purple-flame/headphones.svg"
  28004. }
  28005. },
  28006. },
  28007. [
  28008. {
  28009. name: "Really Small",
  28010. height: math.unit(5, "cm")
  28011. },
  28012. {
  28013. name: "Micro",
  28014. height: math.unit(1 + 5 / 12, "feet")
  28015. },
  28016. {
  28017. name: "Normal",
  28018. height: math.unit(3 + 5 / 12, "feet"),
  28019. default: true
  28020. },
  28021. {
  28022. name: "Minimacro",
  28023. height: math.unit(125, "feet")
  28024. },
  28025. {
  28026. name: "Macro",
  28027. height: math.unit(0.5, "miles")
  28028. },
  28029. {
  28030. name: "Megamacro",
  28031. height: math.unit(50, "miles")
  28032. },
  28033. {
  28034. name: "Gigantic",
  28035. height: math.unit(750, "miles")
  28036. },
  28037. {
  28038. name: "Planetary",
  28039. height: math.unit(15000, "miles")
  28040. },
  28041. ]
  28042. ))
  28043. characterMakers.push(() => makeCharacter(
  28044. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28045. {
  28046. front: {
  28047. height: math.unit(14, "feet"),
  28048. weight: math.unit(959, "lb"),
  28049. name: "Front",
  28050. image: {
  28051. source: "./media/characters/arsenal/front.svg",
  28052. extra: 2357 / 2157,
  28053. bottom: 93 / 2458
  28054. }
  28055. },
  28056. },
  28057. [
  28058. {
  28059. name: "Normal",
  28060. height: math.unit(14, "feet"),
  28061. default: true
  28062. },
  28063. ]
  28064. ))
  28065. characterMakers.push(() => makeCharacter(
  28066. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28067. {
  28068. front: {
  28069. height: math.unit(6, "feet"),
  28070. weight: math.unit(150, "lb"),
  28071. name: "Front",
  28072. image: {
  28073. source: "./media/characters/adira/front.svg",
  28074. extra: 1078 / 1029,
  28075. bottom: 87 / 1166
  28076. }
  28077. },
  28078. },
  28079. [
  28080. {
  28081. name: "Micro",
  28082. height: math.unit(4, "inches"),
  28083. default: true
  28084. },
  28085. {
  28086. name: "Macro",
  28087. height: math.unit(50, "feet")
  28088. },
  28089. ]
  28090. ))
  28091. characterMakers.push(() => makeCharacter(
  28092. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28093. {
  28094. front: {
  28095. height: math.unit(16, "feet"),
  28096. weight: math.unit(1000, "lb"),
  28097. name: "Front",
  28098. image: {
  28099. source: "./media/characters/grim/front.svg",
  28100. extra: 622 / 614,
  28101. bottom: 18.1 / 642
  28102. }
  28103. },
  28104. back: {
  28105. height: math.unit(16, "feet"),
  28106. weight: math.unit(1000, "lb"),
  28107. name: "Back",
  28108. image: {
  28109. source: "./media/characters/grim/back.svg",
  28110. extra: 610.6 / 602,
  28111. bottom: 40.8 / 652
  28112. }
  28113. },
  28114. hunched: {
  28115. height: math.unit(9.75, "feet"),
  28116. weight: math.unit(1000, "lb"),
  28117. name: "Hunched",
  28118. image: {
  28119. source: "./media/characters/grim/hunched.svg",
  28120. extra: 304 / 297,
  28121. bottom: 35.4 / 394
  28122. }
  28123. },
  28124. },
  28125. [
  28126. {
  28127. name: "Normal",
  28128. height: math.unit(16, "feet"),
  28129. default: true
  28130. },
  28131. ]
  28132. ))
  28133. characterMakers.push(() => makeCharacter(
  28134. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28135. {
  28136. front: {
  28137. height: math.unit(2.3, "meters"),
  28138. weight: math.unit(300, "lb"),
  28139. name: "Front",
  28140. image: {
  28141. source: "./media/characters/sinja/front-sfw.svg",
  28142. extra: 1393 / 1294,
  28143. bottom: 70 / 1463
  28144. }
  28145. },
  28146. frontNsfw: {
  28147. height: math.unit(2.3, "meters"),
  28148. weight: math.unit(300, "lb"),
  28149. name: "Front (NSFW)",
  28150. image: {
  28151. source: "./media/characters/sinja/front-nsfw.svg",
  28152. extra: 1393 / 1294,
  28153. bottom: 70 / 1463
  28154. }
  28155. },
  28156. back: {
  28157. height: math.unit(2.3, "meters"),
  28158. weight: math.unit(300, "lb"),
  28159. name: "Back",
  28160. image: {
  28161. source: "./media/characters/sinja/back.svg",
  28162. extra: 1393 / 1294,
  28163. bottom: 70 / 1463
  28164. }
  28165. },
  28166. head: {
  28167. height: math.unit(1.771, "feet"),
  28168. name: "Head",
  28169. image: {
  28170. source: "./media/characters/sinja/head.svg"
  28171. }
  28172. },
  28173. slit: {
  28174. height: math.unit(0.8, "feet"),
  28175. name: "Slit",
  28176. image: {
  28177. source: "./media/characters/sinja/slit.svg"
  28178. }
  28179. },
  28180. },
  28181. [
  28182. {
  28183. name: "Normal",
  28184. height: math.unit(2.3, "meters")
  28185. },
  28186. {
  28187. name: "Macro",
  28188. height: math.unit(91, "meters"),
  28189. default: true
  28190. },
  28191. {
  28192. name: "Megamacro",
  28193. height: math.unit(91440, "meters")
  28194. },
  28195. {
  28196. name: "Gigamacro",
  28197. height: math.unit(60960000, "meters")
  28198. },
  28199. {
  28200. name: "Teramacro",
  28201. height: math.unit(9144000000, "meters")
  28202. },
  28203. ]
  28204. ))
  28205. characterMakers.push(() => makeCharacter(
  28206. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28207. {
  28208. front: {
  28209. height: math.unit(1.7, "meters"),
  28210. weight: math.unit(130, "lb"),
  28211. name: "Front",
  28212. image: {
  28213. source: "./media/characters/kyu/front.svg",
  28214. extra: 415 / 395,
  28215. bottom: 5 / 420
  28216. }
  28217. },
  28218. head: {
  28219. height: math.unit(1.75, "feet"),
  28220. name: "Head",
  28221. image: {
  28222. source: "./media/characters/kyu/head.svg"
  28223. }
  28224. },
  28225. foot: {
  28226. height: math.unit(0.81, "feet"),
  28227. name: "Foot",
  28228. image: {
  28229. source: "./media/characters/kyu/foot.svg"
  28230. }
  28231. },
  28232. },
  28233. [
  28234. {
  28235. name: "Normal",
  28236. height: math.unit(1.7, "meters")
  28237. },
  28238. {
  28239. name: "Macro",
  28240. height: math.unit(131, "feet"),
  28241. default: true
  28242. },
  28243. {
  28244. name: "Megamacro",
  28245. height: math.unit(91440, "meters")
  28246. },
  28247. {
  28248. name: "Gigamacro",
  28249. height: math.unit(60960000, "meters")
  28250. },
  28251. {
  28252. name: "Teramacro",
  28253. height: math.unit(9144000000, "meters")
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28259. {
  28260. front: {
  28261. height: math.unit(7 + 1 / 12, "feet"),
  28262. weight: math.unit(250, "lb"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/joey/front.svg",
  28266. extra: 1791 / 1537,
  28267. bottom: 28 / 1816
  28268. }
  28269. },
  28270. },
  28271. [
  28272. {
  28273. name: "Micro",
  28274. height: math.unit(3, "inches")
  28275. },
  28276. {
  28277. name: "Normal",
  28278. height: math.unit(7 + 1 / 12, "feet"),
  28279. default: true
  28280. },
  28281. ]
  28282. ))
  28283. characterMakers.push(() => makeCharacter(
  28284. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28285. {
  28286. front: {
  28287. height: math.unit(165, "cm"),
  28288. weight: math.unit(140, "lb"),
  28289. name: "Front",
  28290. image: {
  28291. source: "./media/characters/sam-evans/front.svg",
  28292. extra: 3417 / 3230,
  28293. bottom: 41.3 / 3417
  28294. }
  28295. },
  28296. frontSixTails: {
  28297. height: math.unit(165, "cm"),
  28298. weight: math.unit(140, "lb"),
  28299. name: "Front-six-tails",
  28300. image: {
  28301. source: "./media/characters/sam-evans/front-six-tails.svg",
  28302. extra: 3417 / 3230,
  28303. bottom: 41.3 / 3417
  28304. }
  28305. },
  28306. back: {
  28307. height: math.unit(165, "cm"),
  28308. weight: math.unit(140, "lb"),
  28309. name: "Back",
  28310. image: {
  28311. source: "./media/characters/sam-evans/back.svg",
  28312. extra: 3227 / 3032,
  28313. bottom: 6.8 / 3234
  28314. }
  28315. },
  28316. face: {
  28317. height: math.unit(0.68, "feet"),
  28318. name: "Face",
  28319. image: {
  28320. source: "./media/characters/sam-evans/face.svg"
  28321. }
  28322. },
  28323. },
  28324. [
  28325. {
  28326. name: "Normal",
  28327. height: math.unit(165, "cm"),
  28328. default: true
  28329. },
  28330. {
  28331. name: "Macro",
  28332. height: math.unit(100, "meters")
  28333. },
  28334. {
  28335. name: "Macro+",
  28336. height: math.unit(800, "meters")
  28337. },
  28338. {
  28339. name: "Macro++",
  28340. height: math.unit(3, "km")
  28341. },
  28342. {
  28343. name: "Macro+++",
  28344. height: math.unit(30, "km")
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(10, "feet"),
  28353. weight: math.unit(750, "lb"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/juliet-a/front.svg",
  28357. extra: 1766 / 1720,
  28358. bottom: 43 / 1809
  28359. }
  28360. },
  28361. back: {
  28362. height: math.unit(10, "feet"),
  28363. weight: math.unit(750, "lb"),
  28364. name: "Back",
  28365. image: {
  28366. source: "./media/characters/juliet-a/back.svg",
  28367. extra: 1781 / 1734,
  28368. bottom: 35 / 1810,
  28369. }
  28370. },
  28371. },
  28372. [
  28373. {
  28374. name: "Normal",
  28375. height: math.unit(10, "feet"),
  28376. default: true
  28377. },
  28378. {
  28379. name: "Dragon Form",
  28380. height: math.unit(250, "feet")
  28381. },
  28382. {
  28383. name: "Macro",
  28384. height: math.unit(1000, "feet")
  28385. },
  28386. {
  28387. name: "Megamacro",
  28388. height: math.unit(10000, "feet")
  28389. }
  28390. ]
  28391. ))
  28392. characterMakers.push(() => makeCharacter(
  28393. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28394. {
  28395. regular: {
  28396. height: math.unit(7 + 3 / 12, "feet"),
  28397. weight: math.unit(260, "lb"),
  28398. name: "Regular",
  28399. image: {
  28400. source: "./media/characters/wild/regular.svg",
  28401. extra: 97.45 / 92,
  28402. bottom: 6.8 / 104.3
  28403. }
  28404. },
  28405. biggums: {
  28406. height: math.unit(8 + 6 / 12, "feet"),
  28407. weight: math.unit(425, "lb"),
  28408. name: "Biggums",
  28409. image: {
  28410. source: "./media/characters/wild/biggums.svg",
  28411. extra: 97.45 / 92,
  28412. bottom: 7.5 / 132.34
  28413. }
  28414. },
  28415. mawRegular: {
  28416. height: math.unit(1.24, "feet"),
  28417. name: "Maw (Regular)",
  28418. image: {
  28419. source: "./media/characters/wild/maw.svg"
  28420. }
  28421. },
  28422. mawBiggums: {
  28423. height: math.unit(1.47, "feet"),
  28424. name: "Maw (Biggums)",
  28425. image: {
  28426. source: "./media/characters/wild/maw.svg"
  28427. }
  28428. },
  28429. },
  28430. [
  28431. {
  28432. name: "Normal",
  28433. height: math.unit(7 + 3 / 12, "feet"),
  28434. default: true
  28435. },
  28436. ]
  28437. ))
  28438. characterMakers.push(() => makeCharacter(
  28439. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28440. {
  28441. front: {
  28442. height: math.unit(2.5, "meters"),
  28443. weight: math.unit(200, "kg"),
  28444. name: "Front",
  28445. image: {
  28446. source: "./media/characters/vidar/front.svg",
  28447. extra: 2994 / 2795,
  28448. bottom: 56 / 3061
  28449. }
  28450. },
  28451. back: {
  28452. height: math.unit(2.5, "meters"),
  28453. weight: math.unit(200, "kg"),
  28454. name: "Back",
  28455. image: {
  28456. source: "./media/characters/vidar/back.svg",
  28457. extra: 3131 / 2928,
  28458. bottom: 13.5 / 3141.5
  28459. }
  28460. },
  28461. feral: {
  28462. height: math.unit(2.5, "meters"),
  28463. weight: math.unit(2000, "kg"),
  28464. name: "Feral",
  28465. image: {
  28466. source: "./media/characters/vidar/feral.svg",
  28467. extra: 2790 / 1765,
  28468. bottom: 6 / 2796
  28469. }
  28470. },
  28471. },
  28472. [
  28473. {
  28474. name: "Normal",
  28475. height: math.unit(2.5, "meters"),
  28476. default: true
  28477. },
  28478. {
  28479. name: "Macro",
  28480. height: math.unit(100, "meters")
  28481. },
  28482. ]
  28483. ))
  28484. characterMakers.push(() => makeCharacter(
  28485. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28486. {
  28487. front: {
  28488. height: math.unit(5 + 9 / 12, "feet"),
  28489. weight: math.unit(120, "lb"),
  28490. name: "Front",
  28491. image: {
  28492. source: "./media/characters/ash/front.svg",
  28493. extra: 2189 / 1961,
  28494. bottom: 5.2 / 2194
  28495. }
  28496. },
  28497. },
  28498. [
  28499. {
  28500. name: "Normal",
  28501. height: math.unit(5 + 9 / 12, "feet"),
  28502. default: true
  28503. },
  28504. ]
  28505. ))
  28506. characterMakers.push(() => makeCharacter(
  28507. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28508. {
  28509. front: {
  28510. height: math.unit(9, "feet"),
  28511. weight: math.unit(10000, "lb"),
  28512. name: "Front",
  28513. image: {
  28514. source: "./media/characters/gygabite/front.svg",
  28515. bottom: 31.7 / 537.8,
  28516. extra: 505 / 370
  28517. }
  28518. },
  28519. },
  28520. [
  28521. {
  28522. name: "Normal",
  28523. height: math.unit(9, "feet"),
  28524. default: true
  28525. },
  28526. ]
  28527. ))
  28528. characterMakers.push(() => makeCharacter(
  28529. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28530. {
  28531. front: {
  28532. height: math.unit(12, "feet"),
  28533. weight: math.unit(4000, "lb"),
  28534. name: "Front",
  28535. image: {
  28536. source: "./media/characters/p0tat0/front.svg",
  28537. extra: 1065 / 921,
  28538. bottom: 55.7 / 1121.25
  28539. }
  28540. },
  28541. },
  28542. [
  28543. {
  28544. name: "Normal",
  28545. height: math.unit(12, "feet"),
  28546. default: true
  28547. },
  28548. ]
  28549. ))
  28550. characterMakers.push(() => makeCharacter(
  28551. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28552. {
  28553. side: {
  28554. height: math.unit(6.5, "feet"),
  28555. weight: math.unit(800, "lb"),
  28556. name: "Side",
  28557. image: {
  28558. source: "./media/characters/dusk/side.svg",
  28559. extra: 615 / 373,
  28560. bottom: 53 / 664
  28561. }
  28562. },
  28563. sitting: {
  28564. height: math.unit(7, "feet"),
  28565. weight: math.unit(800, "lb"),
  28566. name: "Sitting",
  28567. image: {
  28568. source: "./media/characters/dusk/sitting.svg",
  28569. extra: 753 / 425,
  28570. bottom: 33 / 774
  28571. }
  28572. },
  28573. head: {
  28574. height: math.unit(6.1, "feet"),
  28575. name: "Head",
  28576. image: {
  28577. source: "./media/characters/dusk/head.svg"
  28578. }
  28579. },
  28580. },
  28581. [
  28582. {
  28583. name: "Normal",
  28584. height: math.unit(7, "feet"),
  28585. default: true
  28586. },
  28587. ]
  28588. ))
  28589. characterMakers.push(() => makeCharacter(
  28590. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28591. {
  28592. front: {
  28593. height: math.unit(15, "feet"),
  28594. weight: math.unit(7000, "lb"),
  28595. name: "Front",
  28596. image: {
  28597. source: "./media/characters/jay-direwolf/front.svg",
  28598. extra: 1810 / 1732,
  28599. bottom: 66 / 1892
  28600. }
  28601. },
  28602. },
  28603. [
  28604. {
  28605. name: "Normal",
  28606. height: math.unit(15, "feet"),
  28607. default: true
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28613. {
  28614. front: {
  28615. height: math.unit(4 + 9 / 12, "feet"),
  28616. weight: math.unit(130, "lb"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/anchovie/front.svg",
  28620. extra: 382 / 350,
  28621. bottom: 25 / 409
  28622. }
  28623. },
  28624. back: {
  28625. height: math.unit(4 + 9 / 12, "feet"),
  28626. weight: math.unit(130, "lb"),
  28627. name: "Back",
  28628. image: {
  28629. source: "./media/characters/anchovie/back.svg",
  28630. extra: 385 / 352,
  28631. bottom: 16.6 / 402
  28632. }
  28633. },
  28634. frontDressed: {
  28635. height: math.unit(4 + 9 / 12, "feet"),
  28636. weight: math.unit(130, "lb"),
  28637. name: "Front (Dressed)",
  28638. image: {
  28639. source: "./media/characters/anchovie/front-dressed.svg",
  28640. extra: 382 / 350,
  28641. bottom: 25 / 409
  28642. }
  28643. },
  28644. backDressed: {
  28645. height: math.unit(4 + 9 / 12, "feet"),
  28646. weight: math.unit(130, "lb"),
  28647. name: "Back (Dressed)",
  28648. image: {
  28649. source: "./media/characters/anchovie/back-dressed.svg",
  28650. extra: 385 / 352,
  28651. bottom: 16.6 / 402
  28652. }
  28653. },
  28654. },
  28655. [
  28656. {
  28657. name: "Micro",
  28658. height: math.unit(6.4, "inches")
  28659. },
  28660. {
  28661. name: "Normal",
  28662. height: math.unit(4 + 9 / 12, "feet"),
  28663. default: true
  28664. },
  28665. ]
  28666. ))
  28667. characterMakers.push(() => makeCharacter(
  28668. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28669. {
  28670. front: {
  28671. height: math.unit(2, "meters"),
  28672. weight: math.unit(180, "lb"),
  28673. name: "Front",
  28674. image: {
  28675. source: "./media/characters/acidrenamon/front.svg",
  28676. extra: 987 / 890,
  28677. bottom: 22.8 / 1009
  28678. }
  28679. },
  28680. back: {
  28681. height: math.unit(2, "meters"),
  28682. weight: math.unit(180, "lb"),
  28683. name: "Back",
  28684. image: {
  28685. source: "./media/characters/acidrenamon/back.svg",
  28686. extra: 983 / 891,
  28687. bottom: 8.4 / 992
  28688. }
  28689. },
  28690. head: {
  28691. height: math.unit(1.92, "feet"),
  28692. name: "Head",
  28693. image: {
  28694. source: "./media/characters/acidrenamon/head.svg"
  28695. }
  28696. },
  28697. rump: {
  28698. height: math.unit(1.72, "feet"),
  28699. name: "Rump",
  28700. image: {
  28701. source: "./media/characters/acidrenamon/rump.svg"
  28702. }
  28703. },
  28704. tail: {
  28705. height: math.unit(4.2, "feet"),
  28706. name: "Tail",
  28707. image: {
  28708. source: "./media/characters/acidrenamon/tail.svg"
  28709. }
  28710. },
  28711. },
  28712. [
  28713. {
  28714. name: "Normal",
  28715. height: math.unit(2, "meters"),
  28716. default: true
  28717. },
  28718. {
  28719. name: "Minimacro",
  28720. height: math.unit(7, "meters")
  28721. },
  28722. {
  28723. name: "Macro",
  28724. height: math.unit(200, "meters")
  28725. },
  28726. {
  28727. name: "Gigamacro",
  28728. height: math.unit(0.2, "earths")
  28729. },
  28730. ]
  28731. ))
  28732. characterMakers.push(() => makeCharacter(
  28733. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28734. {
  28735. front: {
  28736. height: math.unit(152, "feet"),
  28737. name: "Front",
  28738. image: {
  28739. source: "./media/characters/kenzie-lee/front.svg",
  28740. extra: 1869/1774,
  28741. bottom: 128/1997
  28742. }
  28743. },
  28744. side: {
  28745. height: math.unit(86, "feet"),
  28746. name: "Side",
  28747. image: {
  28748. source: "./media/characters/kenzie-lee/side.svg",
  28749. extra: 930/815,
  28750. bottom: 177/1107
  28751. }
  28752. },
  28753. paw: {
  28754. height: math.unit(15, "feet"),
  28755. name: "Paw",
  28756. image: {
  28757. source: "./media/characters/kenzie-lee/paw.svg"
  28758. }
  28759. },
  28760. },
  28761. [
  28762. {
  28763. name: "Kenzie Flea",
  28764. height: math.unit(2, "mm"),
  28765. default: true
  28766. },
  28767. {
  28768. name: "Micro",
  28769. height: math.unit(2, "inches")
  28770. },
  28771. {
  28772. name: "Normal",
  28773. height: math.unit(152, "feet")
  28774. },
  28775. {
  28776. name: "Megamacro",
  28777. height: math.unit(7, "miles")
  28778. },
  28779. {
  28780. name: "Gigamacro",
  28781. height: math.unit(8000, "miles")
  28782. },
  28783. ]
  28784. ))
  28785. characterMakers.push(() => makeCharacter(
  28786. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28787. {
  28788. front: {
  28789. height: math.unit(6, "feet"),
  28790. name: "Front",
  28791. image: {
  28792. source: "./media/characters/withers/front.svg",
  28793. extra: 1935/1760,
  28794. bottom: 72/2007
  28795. }
  28796. },
  28797. back: {
  28798. height: math.unit(6, "feet"),
  28799. name: "Back",
  28800. image: {
  28801. source: "./media/characters/withers/back.svg",
  28802. extra: 1944/1792,
  28803. bottom: 12/1956
  28804. }
  28805. },
  28806. dressed: {
  28807. height: math.unit(6, "feet"),
  28808. name: "Dressed",
  28809. image: {
  28810. source: "./media/characters/withers/dressed.svg",
  28811. extra: 1937/1765,
  28812. bottom: 73/2010
  28813. }
  28814. },
  28815. phase1: {
  28816. height: math.unit(1.1, "feet"),
  28817. name: "Phase 1",
  28818. image: {
  28819. source: "./media/characters/withers/phase-1.svg",
  28820. extra: 1885/1232,
  28821. bottom: 0/1885
  28822. }
  28823. },
  28824. phase2: {
  28825. height: math.unit(1.05, "feet"),
  28826. name: "Phase 2",
  28827. image: {
  28828. source: "./media/characters/withers/phase-2.svg",
  28829. extra: 1792/1090,
  28830. bottom: 0/1792
  28831. }
  28832. },
  28833. partyWipe: {
  28834. height: math.unit(1.1, "feet"),
  28835. name: "Party Wipe",
  28836. image: {
  28837. source: "./media/characters/withers/party-wipe.svg",
  28838. extra: 1864/1207,
  28839. bottom: 0/1864
  28840. }
  28841. },
  28842. },
  28843. [
  28844. {
  28845. name: "Macro",
  28846. height: math.unit(167, "feet"),
  28847. default: true
  28848. },
  28849. {
  28850. name: "Megamacro",
  28851. height: math.unit(15, "miles")
  28852. }
  28853. ]
  28854. ))
  28855. characterMakers.push(() => makeCharacter(
  28856. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28857. {
  28858. front: {
  28859. height: math.unit(6 + 7 / 12, "feet"),
  28860. weight: math.unit(250, "lb"),
  28861. name: "Front",
  28862. image: {
  28863. source: "./media/characters/nemoskii/front.svg",
  28864. extra: 2270 / 1734,
  28865. bottom: 86 / 2354
  28866. }
  28867. },
  28868. back: {
  28869. height: math.unit(6 + 7 / 12, "feet"),
  28870. weight: math.unit(250, "lb"),
  28871. name: "Back",
  28872. image: {
  28873. source: "./media/characters/nemoskii/back.svg",
  28874. extra: 1845 / 1788,
  28875. bottom: 10.5 / 1852
  28876. }
  28877. },
  28878. head: {
  28879. height: math.unit(1.31, "feet"),
  28880. name: "Head",
  28881. image: {
  28882. source: "./media/characters/nemoskii/head.svg"
  28883. }
  28884. },
  28885. },
  28886. [
  28887. {
  28888. name: "Micro",
  28889. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28890. },
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(6 + 7 / 12, "feet"),
  28894. default: true
  28895. },
  28896. {
  28897. name: "Macro",
  28898. height: math.unit((6 + 7 / 12) * 150, "feet")
  28899. },
  28900. {
  28901. name: "Macro+",
  28902. height: math.unit((6 + 7 / 12) * 500, "feet")
  28903. },
  28904. {
  28905. name: "Megamacro",
  28906. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28907. },
  28908. ]
  28909. ))
  28910. characterMakers.push(() => makeCharacter(
  28911. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28912. {
  28913. front: {
  28914. height: math.unit(1, "mile"),
  28915. weight: math.unit(265261.9, "lb"),
  28916. name: "Front",
  28917. image: {
  28918. source: "./media/characters/shui/front.svg",
  28919. extra: 1633 / 1564,
  28920. bottom: 91.5 / 1726
  28921. }
  28922. },
  28923. },
  28924. [
  28925. {
  28926. name: "Macro",
  28927. height: math.unit(1, "mile"),
  28928. default: true
  28929. },
  28930. ]
  28931. ))
  28932. characterMakers.push(() => makeCharacter(
  28933. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28934. {
  28935. front: {
  28936. height: math.unit(12 + 6 / 12, "feet"),
  28937. weight: math.unit(1342, "lb"),
  28938. name: "Front",
  28939. image: {
  28940. source: "./media/characters/arokh-takakura/front.svg",
  28941. extra: 1089 / 1043,
  28942. bottom: 77.4 / 1176.7
  28943. }
  28944. },
  28945. back: {
  28946. height: math.unit(12 + 6 / 12, "feet"),
  28947. weight: math.unit(1342, "lb"),
  28948. name: "Back",
  28949. image: {
  28950. source: "./media/characters/arokh-takakura/back.svg",
  28951. extra: 1046 / 1019,
  28952. bottom: 102 / 1150
  28953. }
  28954. },
  28955. },
  28956. [
  28957. {
  28958. name: "Big",
  28959. height: math.unit(12 + 6 / 12, "feet"),
  28960. default: true
  28961. },
  28962. ]
  28963. ))
  28964. characterMakers.push(() => makeCharacter(
  28965. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28966. {
  28967. front: {
  28968. height: math.unit(5 + 6 / 12, "feet"),
  28969. weight: math.unit(150, "lb"),
  28970. name: "Front",
  28971. image: {
  28972. source: "./media/characters/theo/front.svg",
  28973. extra: 1184 / 1131,
  28974. bottom: 7.4 / 1191
  28975. }
  28976. },
  28977. },
  28978. [
  28979. {
  28980. name: "Micro",
  28981. height: math.unit(5, "inches")
  28982. },
  28983. {
  28984. name: "Normal",
  28985. height: math.unit(5 + 6 / 12, "feet"),
  28986. default: true
  28987. },
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28992. {
  28993. front: {
  28994. height: math.unit(5 + 9 / 12, "feet"),
  28995. weight: math.unit(130, "lb"),
  28996. name: "Front",
  28997. image: {
  28998. source: "./media/characters/cecelia-swift/front.svg",
  28999. extra: 502 / 484,
  29000. bottom: 23 / 523
  29001. }
  29002. },
  29003. back: {
  29004. height: math.unit(5 + 9 / 12, "feet"),
  29005. weight: math.unit(130, "lb"),
  29006. name: "Back",
  29007. image: {
  29008. source: "./media/characters/cecelia-swift/back.svg",
  29009. extra: 499 / 485,
  29010. bottom: 12 / 511
  29011. }
  29012. },
  29013. head: {
  29014. height: math.unit(0.90, "feet"),
  29015. name: "Head",
  29016. image: {
  29017. source: "./media/characters/cecelia-swift/head.svg"
  29018. }
  29019. },
  29020. rump: {
  29021. height: math.unit(1.75, "feet"),
  29022. name: "Rump",
  29023. image: {
  29024. source: "./media/characters/cecelia-swift/rump.svg"
  29025. }
  29026. },
  29027. },
  29028. [
  29029. {
  29030. name: "Normal",
  29031. height: math.unit(5 + 9 / 12, "feet"),
  29032. default: true
  29033. },
  29034. {
  29035. name: "Big",
  29036. height: math.unit(50, "feet")
  29037. },
  29038. {
  29039. name: "Macro",
  29040. height: math.unit(100, "feet")
  29041. },
  29042. {
  29043. name: "Macro+",
  29044. height: math.unit(500, "feet")
  29045. },
  29046. {
  29047. name: "Macro++",
  29048. height: math.unit(1000, "feet")
  29049. },
  29050. ]
  29051. ))
  29052. characterMakers.push(() => makeCharacter(
  29053. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29054. {
  29055. front: {
  29056. height: math.unit(6, "feet"),
  29057. weight: math.unit(150, "lb"),
  29058. name: "Front",
  29059. image: {
  29060. source: "./media/characters/kaunan/front.svg",
  29061. extra: 2890 / 2523,
  29062. bottom: 49 / 2939
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Macro",
  29069. height: math.unit(150, "feet"),
  29070. default: true
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(175, "cm"),
  29079. weight: math.unit(60, "kg"),
  29080. name: "Front",
  29081. image: {
  29082. source: "./media/characters/fei/front.svg",
  29083. extra: 1873/1723,
  29084. bottom: 53/1926
  29085. }
  29086. },
  29087. },
  29088. [
  29089. {
  29090. name: "Mortal",
  29091. height: math.unit(175, "cm")
  29092. },
  29093. {
  29094. name: "Normal",
  29095. height: math.unit(3500, "m"),
  29096. default: true
  29097. },
  29098. {
  29099. name: "Stroll",
  29100. height: math.unit(17.5, "km")
  29101. },
  29102. {
  29103. name: "Showoff",
  29104. height: math.unit(175, "km")
  29105. },
  29106. ]
  29107. ))
  29108. characterMakers.push(() => makeCharacter(
  29109. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29110. {
  29111. front: {
  29112. height: math.unit(7, "feet"),
  29113. weight: math.unit(1000, "kg"),
  29114. name: "Front",
  29115. image: {
  29116. source: "./media/characters/edrax/front.svg",
  29117. extra: 2838 / 2550,
  29118. bottom: 130 / 2968
  29119. }
  29120. },
  29121. },
  29122. [
  29123. {
  29124. name: "Small",
  29125. height: math.unit(7, "feet")
  29126. },
  29127. {
  29128. name: "Normal",
  29129. height: math.unit(1500, "meters")
  29130. },
  29131. {
  29132. name: "Mega",
  29133. height: math.unit(12000000, "km"),
  29134. default: true
  29135. },
  29136. {
  29137. name: "Megamacro",
  29138. height: math.unit(10600000, "lightyears")
  29139. },
  29140. {
  29141. name: "Hypermacro",
  29142. height: math.unit(256, "yottameters")
  29143. },
  29144. ]
  29145. ))
  29146. characterMakers.push(() => makeCharacter(
  29147. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29148. {
  29149. front: {
  29150. height: math.unit(10, "feet"),
  29151. weight: math.unit(750, "lb"),
  29152. name: "Front",
  29153. image: {
  29154. source: "./media/characters/clove/front.svg",
  29155. extra: 1918/1751,
  29156. bottom: 52/1970
  29157. }
  29158. },
  29159. back: {
  29160. height: math.unit(10, "feet"),
  29161. weight: math.unit(750, "lb"),
  29162. name: "Back",
  29163. image: {
  29164. source: "./media/characters/clove/back.svg",
  29165. extra: 1912/1747,
  29166. bottom: 50/1962
  29167. }
  29168. },
  29169. },
  29170. [
  29171. {
  29172. name: "Normal",
  29173. height: math.unit(10, "feet"),
  29174. default: true
  29175. },
  29176. ]
  29177. ))
  29178. characterMakers.push(() => makeCharacter(
  29179. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29180. {
  29181. front: {
  29182. height: math.unit(4, "feet"),
  29183. weight: math.unit(50, "lb"),
  29184. name: "Front",
  29185. image: {
  29186. source: "./media/characters/alex-rabbit/front.svg",
  29187. extra: 507 / 458,
  29188. bottom: 18.5 / 527
  29189. }
  29190. },
  29191. back: {
  29192. height: math.unit(4, "feet"),
  29193. weight: math.unit(50, "lb"),
  29194. name: "Back",
  29195. image: {
  29196. source: "./media/characters/alex-rabbit/back.svg",
  29197. extra: 502 / 460,
  29198. bottom: 18.9 / 521
  29199. }
  29200. },
  29201. },
  29202. [
  29203. {
  29204. name: "Normal",
  29205. height: math.unit(4, "feet"),
  29206. default: true
  29207. },
  29208. ]
  29209. ))
  29210. characterMakers.push(() => makeCharacter(
  29211. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29212. {
  29213. front: {
  29214. height: math.unit(1 + 3 / 12, "feet"),
  29215. weight: math.unit(80, "lb"),
  29216. name: "Front",
  29217. image: {
  29218. source: "./media/characters/zander-rose/front.svg",
  29219. extra: 916 / 797,
  29220. bottom: 17 / 933
  29221. }
  29222. },
  29223. back: {
  29224. height: math.unit(1 + 3 / 12, "feet"),
  29225. weight: math.unit(80, "lb"),
  29226. name: "Back",
  29227. image: {
  29228. source: "./media/characters/zander-rose/back.svg",
  29229. extra: 903 / 779,
  29230. bottom: 31 / 934
  29231. }
  29232. },
  29233. },
  29234. [
  29235. {
  29236. name: "Normal",
  29237. height: math.unit(1 + 3 / 12, "feet"),
  29238. default: true
  29239. },
  29240. ]
  29241. ))
  29242. characterMakers.push(() => makeCharacter(
  29243. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29244. {
  29245. anthro: {
  29246. height: math.unit(6, "feet"),
  29247. weight: math.unit(150, "lb"),
  29248. name: "Anthro",
  29249. image: {
  29250. source: "./media/characters/razz/anthro.svg",
  29251. extra: 1437 / 1343,
  29252. bottom: 48 / 1485
  29253. }
  29254. },
  29255. feral: {
  29256. height: math.unit(6, "feet"),
  29257. weight: math.unit(150, "lb"),
  29258. name: "Feral",
  29259. image: {
  29260. source: "./media/characters/razz/feral.svg",
  29261. extra: 2569 / 1385,
  29262. bottom: 95 / 2664
  29263. }
  29264. },
  29265. },
  29266. [
  29267. {
  29268. name: "Normal",
  29269. height: math.unit(6, "feet"),
  29270. default: true
  29271. },
  29272. ]
  29273. ))
  29274. characterMakers.push(() => makeCharacter(
  29275. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29276. {
  29277. front: {
  29278. height: math.unit(9 + 4 / 12, "feet"),
  29279. weight: math.unit(500, "lb"),
  29280. name: "Front",
  29281. image: {
  29282. source: "./media/characters/morrigan/front.svg",
  29283. extra: 2707 / 2579,
  29284. bottom: 156 / 2863
  29285. }
  29286. },
  29287. },
  29288. [
  29289. {
  29290. name: "Normal",
  29291. height: math.unit(9 + 4 / 12, "feet"),
  29292. default: true
  29293. },
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29298. {
  29299. front: {
  29300. height: math.unit(5, "stories"),
  29301. weight: math.unit(4000, "lb"),
  29302. name: "Front",
  29303. image: {
  29304. source: "./media/characters/jenene/front.svg",
  29305. extra: 1780 / 1710,
  29306. bottom: 57 / 1837
  29307. }
  29308. },
  29309. },
  29310. [
  29311. {
  29312. name: "Normal",
  29313. height: math.unit(5, "stories"),
  29314. default: true
  29315. },
  29316. ]
  29317. ))
  29318. characterMakers.push(() => makeCharacter(
  29319. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29320. {
  29321. taurSfw: {
  29322. height: math.unit(10, "meters"),
  29323. weight: math.unit(17500, "kg"),
  29324. name: "Taur",
  29325. image: {
  29326. source: "./media/characters/faey/taur-sfw.svg",
  29327. extra: 1200 / 968,
  29328. bottom: 41 / 1241
  29329. }
  29330. },
  29331. chestmaw: {
  29332. height: math.unit(2.01, "meters"),
  29333. name: "Chestmaw",
  29334. image: {
  29335. source: "./media/characters/faey/chestmaw.svg"
  29336. }
  29337. },
  29338. foot: {
  29339. height: math.unit(2.43, "meters"),
  29340. name: "Foot",
  29341. image: {
  29342. source: "./media/characters/faey/foot.svg"
  29343. }
  29344. },
  29345. jaws: {
  29346. height: math.unit(1.66, "meters"),
  29347. name: "Jaws",
  29348. image: {
  29349. source: "./media/characters/faey/jaws.svg"
  29350. }
  29351. },
  29352. tongues: {
  29353. height: math.unit(2.01, "meters"),
  29354. name: "Tongues",
  29355. image: {
  29356. source: "./media/characters/faey/tongues.svg"
  29357. }
  29358. },
  29359. },
  29360. [
  29361. {
  29362. name: "Small",
  29363. height: math.unit(10, "meters"),
  29364. default: true
  29365. },
  29366. {
  29367. name: "Big",
  29368. height: math.unit(500000, "km")
  29369. },
  29370. ]
  29371. ))
  29372. characterMakers.push(() => makeCharacter(
  29373. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29374. {
  29375. front: {
  29376. height: math.unit(7, "feet"),
  29377. weight: math.unit(275, "lb"),
  29378. name: "Front",
  29379. image: {
  29380. source: "./media/characters/roku/front.svg",
  29381. extra: 903 / 878,
  29382. bottom: 37 / 940
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "Normal",
  29389. height: math.unit(7, "feet"),
  29390. default: true
  29391. },
  29392. {
  29393. name: "Macro",
  29394. height: math.unit(500, "feet")
  29395. },
  29396. {
  29397. name: "Megamacro",
  29398. height: math.unit(200, "miles")
  29399. },
  29400. ]
  29401. ))
  29402. characterMakers.push(() => makeCharacter(
  29403. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29404. {
  29405. front: {
  29406. height: math.unit(6 + 2 / 12, "feet"),
  29407. weight: math.unit(150, "lb"),
  29408. name: "Front",
  29409. image: {
  29410. source: "./media/characters/lira/front.svg",
  29411. extra: 1727 / 1605,
  29412. bottom: 26 / 1753
  29413. }
  29414. },
  29415. back: {
  29416. height: math.unit(6 + 2 / 12, "feet"),
  29417. weight: math.unit(150, "lb"),
  29418. name: "Back",
  29419. image: {
  29420. source: "./media/characters/lira/back.svg",
  29421. extra: 1713/1621,
  29422. bottom: 20/1733
  29423. }
  29424. },
  29425. hand: {
  29426. height: math.unit(0.75, "feet"),
  29427. name: "Hand",
  29428. image: {
  29429. source: "./media/characters/lira/hand.svg"
  29430. }
  29431. },
  29432. maw: {
  29433. height: math.unit(0.65, "feet"),
  29434. name: "Maw",
  29435. image: {
  29436. source: "./media/characters/lira/maw.svg"
  29437. }
  29438. },
  29439. pawDigi: {
  29440. height: math.unit(1.6, "feet"),
  29441. name: "Paw Digi",
  29442. image: {
  29443. source: "./media/characters/lira/paw-digi.svg"
  29444. }
  29445. },
  29446. pawPlanti: {
  29447. height: math.unit(1.4, "feet"),
  29448. name: "Paw Planti",
  29449. image: {
  29450. source: "./media/characters/lira/paw-planti.svg"
  29451. }
  29452. },
  29453. },
  29454. [
  29455. {
  29456. name: "Normal",
  29457. height: math.unit(6 + 2 / 12, "feet"),
  29458. default: true
  29459. },
  29460. {
  29461. name: "Macro",
  29462. height: math.unit(100, "feet")
  29463. },
  29464. {
  29465. name: "Macro²",
  29466. height: math.unit(1600, "feet")
  29467. },
  29468. {
  29469. name: "Planetary",
  29470. height: math.unit(20, "earths")
  29471. },
  29472. ]
  29473. ))
  29474. characterMakers.push(() => makeCharacter(
  29475. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29476. {
  29477. front: {
  29478. height: math.unit(6, "feet"),
  29479. weight: math.unit(150, "lb"),
  29480. name: "Front",
  29481. image: {
  29482. source: "./media/characters/hadjet/front.svg",
  29483. extra: 1480 / 1346,
  29484. bottom: 26 / 1506
  29485. }
  29486. },
  29487. frontNsfw: {
  29488. height: math.unit(6, "feet"),
  29489. weight: math.unit(150, "lb"),
  29490. name: "Front (NSFW)",
  29491. image: {
  29492. source: "./media/characters/hadjet/front-nsfw.svg",
  29493. extra: 1440 / 1358,
  29494. bottom: 52 / 1492
  29495. }
  29496. },
  29497. },
  29498. [
  29499. {
  29500. name: "Macro",
  29501. height: math.unit(10, "stories"),
  29502. default: true
  29503. },
  29504. {
  29505. name: "Megamacro",
  29506. height: math.unit(1.5, "miles")
  29507. },
  29508. {
  29509. name: "Megamacro+",
  29510. height: math.unit(5, "miles")
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29516. {
  29517. side: {
  29518. height: math.unit(106, "feet"),
  29519. weight: math.unit(500, "tonnes"),
  29520. name: "Side",
  29521. image: {
  29522. source: "./media/characters/kodran/side.svg",
  29523. extra: 553 / 480,
  29524. bottom: 33 / 586
  29525. }
  29526. },
  29527. front: {
  29528. height: math.unit(132, "feet"),
  29529. weight: math.unit(500, "tonnes"),
  29530. name: "Front",
  29531. image: {
  29532. source: "./media/characters/kodran/front.svg",
  29533. extra: 667 / 643,
  29534. bottom: 42 / 709
  29535. }
  29536. },
  29537. flying: {
  29538. height: math.unit(350, "feet"),
  29539. weight: math.unit(500, "tonnes"),
  29540. name: "Flying",
  29541. image: {
  29542. source: "./media/characters/kodran/flying.svg"
  29543. }
  29544. },
  29545. foot: {
  29546. height: math.unit(33, "feet"),
  29547. name: "Foot",
  29548. image: {
  29549. source: "./media/characters/kodran/foot.svg"
  29550. }
  29551. },
  29552. footFront: {
  29553. height: math.unit(19, "feet"),
  29554. name: "Foot (Front)",
  29555. image: {
  29556. source: "./media/characters/kodran/foot-front.svg",
  29557. extra: 261 / 261,
  29558. bottom: 91 / 352
  29559. }
  29560. },
  29561. headFront: {
  29562. height: math.unit(53, "feet"),
  29563. name: "Head (Front)",
  29564. image: {
  29565. source: "./media/characters/kodran/head-front.svg"
  29566. }
  29567. },
  29568. headSide: {
  29569. height: math.unit(65, "feet"),
  29570. name: "Head (Side)",
  29571. image: {
  29572. source: "./media/characters/kodran/head-side.svg"
  29573. }
  29574. },
  29575. throat: {
  29576. height: math.unit(79, "feet"),
  29577. name: "Throat",
  29578. image: {
  29579. source: "./media/characters/kodran/throat.svg"
  29580. }
  29581. },
  29582. },
  29583. [
  29584. {
  29585. name: "Large",
  29586. height: math.unit(106, "feet"),
  29587. default: true
  29588. },
  29589. ]
  29590. ))
  29591. characterMakers.push(() => makeCharacter(
  29592. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29593. {
  29594. side: {
  29595. height: math.unit(11, "feet"),
  29596. weight: math.unit(150, "lb"),
  29597. name: "Side",
  29598. image: {
  29599. source: "./media/characters/pyxaron/side.svg",
  29600. extra: 305 / 195,
  29601. bottom: 17 / 322
  29602. }
  29603. },
  29604. },
  29605. [
  29606. {
  29607. name: "Normal",
  29608. height: math.unit(11, "feet"),
  29609. default: true
  29610. },
  29611. ]
  29612. ))
  29613. characterMakers.push(() => makeCharacter(
  29614. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29615. {
  29616. front: {
  29617. height: math.unit(6, "feet"),
  29618. weight: math.unit(150, "lb"),
  29619. name: "Front",
  29620. image: {
  29621. source: "./media/characters/meep/front.svg",
  29622. extra: 88 / 80,
  29623. bottom: 6 / 94
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Fun Sized",
  29630. height: math.unit(2, "inches"),
  29631. default: true
  29632. },
  29633. {
  29634. name: "Friend Sized",
  29635. height: math.unit(8, "inches")
  29636. },
  29637. ]
  29638. ))
  29639. characterMakers.push(() => makeCharacter(
  29640. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29641. {
  29642. front: {
  29643. height: math.unit(15, "feet"),
  29644. weight: math.unit(2500, "lb"),
  29645. name: "Front",
  29646. image: {
  29647. source: "./media/characters/holly-rabbit/front.svg",
  29648. extra: 1433 / 1233,
  29649. bottom: 125 / 1558
  29650. }
  29651. },
  29652. dick: {
  29653. height: math.unit(4.6, "feet"),
  29654. name: "Dick",
  29655. image: {
  29656. source: "./media/characters/holly-rabbit/dick.svg"
  29657. }
  29658. },
  29659. },
  29660. [
  29661. {
  29662. name: "Normal",
  29663. height: math.unit(15, "feet"),
  29664. default: true
  29665. },
  29666. {
  29667. name: "Macro",
  29668. height: math.unit(250, "feet")
  29669. },
  29670. {
  29671. name: "Macro+",
  29672. height: math.unit(2500, "feet")
  29673. },
  29674. ]
  29675. ))
  29676. characterMakers.push(() => makeCharacter(
  29677. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29678. {
  29679. front: {
  29680. height: math.unit(3.02, "meters"),
  29681. weight: math.unit(500, "kg"),
  29682. name: "Front",
  29683. image: {
  29684. source: "./media/characters/drena/front.svg",
  29685. extra: 282 / 243,
  29686. bottom: 8 / 290
  29687. }
  29688. },
  29689. side: {
  29690. height: math.unit(3.02, "meters"),
  29691. weight: math.unit(500, "kg"),
  29692. name: "Side",
  29693. image: {
  29694. source: "./media/characters/drena/side.svg",
  29695. extra: 280 / 245,
  29696. bottom: 10 / 290
  29697. }
  29698. },
  29699. back: {
  29700. height: math.unit(3.02, "meters"),
  29701. weight: math.unit(500, "kg"),
  29702. name: "Back",
  29703. image: {
  29704. source: "./media/characters/drena/back.svg",
  29705. extra: 278 / 243,
  29706. bottom: 2 / 280
  29707. }
  29708. },
  29709. foot: {
  29710. height: math.unit(0.75, "meters"),
  29711. name: "Foot",
  29712. image: {
  29713. source: "./media/characters/drena/foot.svg"
  29714. }
  29715. },
  29716. maw: {
  29717. height: math.unit(0.82, "meters"),
  29718. name: "Maw",
  29719. image: {
  29720. source: "./media/characters/drena/maw.svg"
  29721. }
  29722. },
  29723. eating: {
  29724. height: math.unit(0.75, "meters"),
  29725. name: "Eating",
  29726. image: {
  29727. source: "./media/characters/drena/eating.svg"
  29728. }
  29729. },
  29730. rump: {
  29731. height: math.unit(0.93, "meters"),
  29732. name: "Rump",
  29733. image: {
  29734. source: "./media/characters/drena/rump.svg"
  29735. }
  29736. },
  29737. },
  29738. [
  29739. {
  29740. name: "Normal",
  29741. height: math.unit(3.02, "meters"),
  29742. default: true
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29748. {
  29749. front: {
  29750. height: math.unit(6 + 4 / 12, "feet"),
  29751. weight: math.unit(250, "lb"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/remmyzilla/front.svg",
  29755. extra: 4033 / 3588,
  29756. bottom: 123 / 4156
  29757. }
  29758. },
  29759. back: {
  29760. height: math.unit(6 + 4 / 12, "feet"),
  29761. weight: math.unit(250, "lb"),
  29762. name: "Back",
  29763. image: {
  29764. source: "./media/characters/remmyzilla/back.svg",
  29765. extra: 2687 / 2555,
  29766. bottom: 48 / 2735
  29767. }
  29768. },
  29769. paw: {
  29770. height: math.unit(1.73, "feet"),
  29771. name: "Paw",
  29772. image: {
  29773. source: "./media/characters/remmyzilla/paw.svg"
  29774. },
  29775. extraAttributes: {
  29776. "toeSize": {
  29777. name: "Toe Size",
  29778. power: 2,
  29779. type: "area",
  29780. base: math.unit(0.0035, "m^2")
  29781. },
  29782. "padSize": {
  29783. name: "Pad Size",
  29784. power: 2,
  29785. type: "area",
  29786. base: math.unit(0.015, "m^2")
  29787. },
  29788. "pawsize": {
  29789. name: "Paw Size",
  29790. power: 2,
  29791. type: "area",
  29792. base: math.unit(0.072, "m^2")
  29793. },
  29794. }
  29795. },
  29796. maw: {
  29797. height: math.unit(1.73, "feet"),
  29798. name: "Maw",
  29799. image: {
  29800. source: "./media/characters/remmyzilla/maw.svg"
  29801. }
  29802. },
  29803. },
  29804. [
  29805. {
  29806. name: "Normal",
  29807. height: math.unit(6 + 4 / 12, "feet")
  29808. },
  29809. {
  29810. name: "Minimacro",
  29811. height: math.unit(12 + 8 / 12, "feet")
  29812. },
  29813. {
  29814. name: "Normal",
  29815. height: math.unit(640, "feet"),
  29816. default: true
  29817. },
  29818. {
  29819. name: "Megamacro",
  29820. height: math.unit(6400, "feet")
  29821. },
  29822. {
  29823. name: "Gigamacro",
  29824. height: math.unit(64000, "miles")
  29825. },
  29826. ]
  29827. ))
  29828. characterMakers.push(() => makeCharacter(
  29829. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29830. {
  29831. front: {
  29832. height: math.unit(2.5, "meters"),
  29833. weight: math.unit(300, "lb"),
  29834. name: "Front",
  29835. image: {
  29836. source: "./media/characters/lawrence/front.svg",
  29837. extra: 357 / 335,
  29838. bottom: 30 / 387
  29839. }
  29840. },
  29841. back: {
  29842. height: math.unit(2.5, "meters"),
  29843. weight: math.unit(300, "lb"),
  29844. name: "Back",
  29845. image: {
  29846. source: "./media/characters/lawrence/back.svg",
  29847. extra: 357 / 338,
  29848. bottom: 16 / 373
  29849. }
  29850. },
  29851. head: {
  29852. height: math.unit(0.9, "meter"),
  29853. name: "Head",
  29854. image: {
  29855. source: "./media/characters/lawrence/head.svg"
  29856. }
  29857. },
  29858. maw: {
  29859. height: math.unit(0.7, "meter"),
  29860. name: "Maw",
  29861. image: {
  29862. source: "./media/characters/lawrence/maw.svg"
  29863. }
  29864. },
  29865. footBottom: {
  29866. height: math.unit(0.5, "meter"),
  29867. name: "Foot (Bottom)",
  29868. image: {
  29869. source: "./media/characters/lawrence/foot-bottom.svg"
  29870. }
  29871. },
  29872. footTop: {
  29873. height: math.unit(0.5, "meter"),
  29874. name: "Foot (Top)",
  29875. image: {
  29876. source: "./media/characters/lawrence/foot-top.svg"
  29877. }
  29878. },
  29879. },
  29880. [
  29881. {
  29882. name: "Normal",
  29883. height: math.unit(2.5, "meters"),
  29884. default: true
  29885. },
  29886. {
  29887. name: "Macro",
  29888. height: math.unit(95, "meters")
  29889. },
  29890. {
  29891. name: "Megamacro",
  29892. height: math.unit(150, "km")
  29893. },
  29894. ]
  29895. ))
  29896. characterMakers.push(() => makeCharacter(
  29897. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29898. {
  29899. front: {
  29900. height: math.unit(4.2, "meters"),
  29901. name: "Front",
  29902. image: {
  29903. source: "./media/characters/sydney/front.svg",
  29904. extra: 1323 / 1277,
  29905. bottom: 111 / 1434
  29906. }
  29907. },
  29908. },
  29909. [
  29910. {
  29911. name: "Normal",
  29912. height: math.unit(4.2, "meters"),
  29913. default: true
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29919. {
  29920. back: {
  29921. height: math.unit(201, "feet"),
  29922. name: "Back",
  29923. image: {
  29924. source: "./media/characters/jessica/back.svg",
  29925. extra: 273 / 259,
  29926. bottom: 7 / 280
  29927. }
  29928. },
  29929. },
  29930. [
  29931. {
  29932. name: "Normal",
  29933. height: math.unit(201, "feet"),
  29934. default: true
  29935. },
  29936. {
  29937. name: "Megamacro",
  29938. height: math.unit(8, "miles")
  29939. },
  29940. ]
  29941. ))
  29942. characterMakers.push(() => makeCharacter(
  29943. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29944. {
  29945. side: {
  29946. height: math.unit(5.6, "m"),
  29947. weight: math.unit(8000, "kg"),
  29948. name: "Side",
  29949. image: {
  29950. source: "./media/characters/victoria/side.svg",
  29951. extra: 1542/1229,
  29952. bottom: 124/1666
  29953. }
  29954. },
  29955. maw: {
  29956. height: math.unit(7.14, "feet"),
  29957. name: "Maw",
  29958. image: {
  29959. source: "./media/characters/victoria/maw.svg"
  29960. }
  29961. },
  29962. },
  29963. [
  29964. {
  29965. name: "Normal",
  29966. height: math.unit(5.6, "m"),
  29967. default: true
  29968. },
  29969. ]
  29970. ))
  29971. characterMakers.push(() => makeCharacter(
  29972. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29973. {
  29974. front: {
  29975. height: math.unit(5 + 6 / 12, "feet"),
  29976. name: "Front",
  29977. image: {
  29978. source: "./media/characters/cat/front.svg",
  29979. extra: 1449/1295,
  29980. bottom: 34/1483
  29981. },
  29982. form: "cat",
  29983. default: true
  29984. },
  29985. back: {
  29986. height: math.unit(5 + 6 / 12, "feet"),
  29987. name: "Back",
  29988. image: {
  29989. source: "./media/characters/cat/back.svg",
  29990. extra: 1466/1301,
  29991. bottom: 19/1485
  29992. },
  29993. form: "cat"
  29994. },
  29995. taur: {
  29996. height: math.unit(7, "feet"),
  29997. name: "Taur",
  29998. image: {
  29999. source: "./media/characters/cat/taur.svg",
  30000. extra: 1389/1233,
  30001. bottom: 83/1472
  30002. },
  30003. form: "taur",
  30004. default: true
  30005. },
  30006. lucarioFront: {
  30007. height: math.unit(4, "feet"),
  30008. name: "Lucario (Front)",
  30009. image: {
  30010. source: "./media/characters/cat/lucario-front.svg",
  30011. extra: 1149/1019,
  30012. bottom: 84/1233
  30013. },
  30014. form: "lucario",
  30015. default: true
  30016. },
  30017. lucarioBack: {
  30018. height: math.unit(4, "feet"),
  30019. name: "Lucario (Back)",
  30020. image: {
  30021. source: "./media/characters/cat/lucario-back.svg",
  30022. extra: 1190/1059,
  30023. bottom: 33/1223
  30024. },
  30025. form: "lucario"
  30026. },
  30027. megaLucario: {
  30028. height: math.unit(4, "feet"),
  30029. name: "Mega Lucario",
  30030. image: {
  30031. source: "./media/characters/cat/mega-lucario.svg",
  30032. extra: 1515 / 1319,
  30033. bottom: 63 / 1578
  30034. },
  30035. form: "lucario"
  30036. },
  30037. nickit: {
  30038. height: math.unit(2, "feet"),
  30039. name: "Nickit",
  30040. image: {
  30041. source: "./media/characters/cat/nickit.svg",
  30042. extra: 1980 / 1585,
  30043. bottom: 102 / 2082
  30044. },
  30045. form: "nickit",
  30046. default: true
  30047. },
  30048. lopunnyFront: {
  30049. height: math.unit(5, "feet"),
  30050. name: "Lopunny (Front)",
  30051. image: {
  30052. source: "./media/characters/cat/lopunny-front.svg",
  30053. extra: 1782 / 1469,
  30054. bottom: 38 / 1820
  30055. },
  30056. form: "lopunny",
  30057. default: true
  30058. },
  30059. lopunnyBack: {
  30060. height: math.unit(5, "feet"),
  30061. name: "Lopunny (Back)",
  30062. image: {
  30063. source: "./media/characters/cat/lopunny-back.svg",
  30064. extra: 1660 / 1490,
  30065. bottom: 25 / 1685
  30066. },
  30067. form: "lopunny"
  30068. },
  30069. },
  30070. [
  30071. {
  30072. name: "Really small",
  30073. height: math.unit(1, "nm")
  30074. },
  30075. {
  30076. name: "Micro",
  30077. height: math.unit(5, "inches")
  30078. },
  30079. {
  30080. name: "Normal",
  30081. height: math.unit(5 + 6 / 12, "feet"),
  30082. default: true
  30083. },
  30084. {
  30085. name: "Macro",
  30086. height: math.unit(50, "feet")
  30087. },
  30088. {
  30089. name: "Macro+",
  30090. height: math.unit(150, "feet")
  30091. },
  30092. {
  30093. name: "Megamacro",
  30094. height: math.unit(100, "miles")
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30100. {
  30101. front: {
  30102. height: math.unit(63.4, "meters"),
  30103. weight: math.unit(3.28349e+6, "kilograms"),
  30104. name: "Front",
  30105. image: {
  30106. source: "./media/characters/kirina-violet/front.svg",
  30107. extra: 2812 / 2725,
  30108. bottom: 0 / 2812
  30109. }
  30110. },
  30111. back: {
  30112. height: math.unit(63.4, "meters"),
  30113. weight: math.unit(3.28349e+6, "kilograms"),
  30114. name: "Back",
  30115. image: {
  30116. source: "./media/characters/kirina-violet/back.svg",
  30117. extra: 2812 / 2725,
  30118. bottom: 0 / 2812
  30119. }
  30120. },
  30121. mouth: {
  30122. height: math.unit(4.35, "meters"),
  30123. name: "Mouth",
  30124. image: {
  30125. source: "./media/characters/kirina-violet/mouth.svg"
  30126. }
  30127. },
  30128. paw: {
  30129. height: math.unit(5.6, "meters"),
  30130. name: "Paw",
  30131. image: {
  30132. source: "./media/characters/kirina-violet/paw.svg"
  30133. }
  30134. },
  30135. tail: {
  30136. height: math.unit(18, "meters"),
  30137. name: "Tail",
  30138. image: {
  30139. source: "./media/characters/kirina-violet/tail.svg"
  30140. }
  30141. },
  30142. },
  30143. [
  30144. {
  30145. name: "Macro",
  30146. height: math.unit(63.4, "meters"),
  30147. default: true
  30148. },
  30149. ]
  30150. ))
  30151. characterMakers.push(() => makeCharacter(
  30152. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30153. {
  30154. front: {
  30155. height: math.unit(75, "feet"),
  30156. name: "Front",
  30157. image: {
  30158. source: "./media/characters/cat-gigachu/front.svg",
  30159. extra: 1239/1027,
  30160. bottom: 32/1271
  30161. }
  30162. },
  30163. back: {
  30164. height: math.unit(75, "feet"),
  30165. name: "Back",
  30166. image: {
  30167. source: "./media/characters/cat-gigachu/back.svg",
  30168. extra: 1229/1030,
  30169. bottom: 9/1238
  30170. }
  30171. },
  30172. },
  30173. [
  30174. {
  30175. name: "Dynamax",
  30176. height: math.unit(75, "feet"),
  30177. default: true
  30178. },
  30179. ]
  30180. ))
  30181. characterMakers.push(() => makeCharacter(
  30182. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30183. {
  30184. front: {
  30185. height: math.unit(6, "feet"),
  30186. weight: math.unit(150, "lb"),
  30187. name: "Front",
  30188. image: {
  30189. source: "./media/characters/sfaiyan/front.svg",
  30190. extra: 999 / 978,
  30191. bottom: 5 / 1004
  30192. }
  30193. },
  30194. },
  30195. [
  30196. {
  30197. name: "Normal",
  30198. height: math.unit(1.82, "meters")
  30199. },
  30200. {
  30201. name: "Giant",
  30202. height: math.unit(2.27, "km"),
  30203. default: true
  30204. },
  30205. ]
  30206. ))
  30207. characterMakers.push(() => makeCharacter(
  30208. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30209. {
  30210. front: {
  30211. height: math.unit(179, "cm"),
  30212. weight: math.unit(100, "kg"),
  30213. name: "Front",
  30214. image: {
  30215. source: "./media/characters/raunehkeli/front.svg",
  30216. extra: 1934 / 1926,
  30217. bottom: 0 / 1934
  30218. }
  30219. },
  30220. },
  30221. [
  30222. {
  30223. name: "Normal",
  30224. height: math.unit(179, "cm")
  30225. },
  30226. {
  30227. name: "Maximum",
  30228. height: math.unit(575, "meters"),
  30229. default: true
  30230. },
  30231. ]
  30232. ))
  30233. characterMakers.push(() => makeCharacter(
  30234. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30235. {
  30236. front: {
  30237. height: math.unit(6, "feet"),
  30238. weight: math.unit(150, "lb"),
  30239. name: "Front",
  30240. image: {
  30241. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30242. extra: 2625 / 2518,
  30243. bottom: 60 / 2685
  30244. }
  30245. },
  30246. },
  30247. [
  30248. {
  30249. name: "Normal",
  30250. height: math.unit(6 + 2 / 12, "feet")
  30251. },
  30252. {
  30253. name: "Macro",
  30254. height: math.unit(1180, "feet"),
  30255. default: true
  30256. },
  30257. ]
  30258. ))
  30259. characterMakers.push(() => makeCharacter(
  30260. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30261. {
  30262. front: {
  30263. height: math.unit(5 + 6 / 12, "feet"),
  30264. weight: math.unit(108, "lb"),
  30265. name: "Front",
  30266. image: {
  30267. source: "./media/characters/lilith-zott/front.svg",
  30268. extra: 2510 / 2238,
  30269. bottom: 100 / 2610
  30270. }
  30271. },
  30272. frontDressed: {
  30273. height: math.unit(5 + 6 / 12, "feet"),
  30274. weight: math.unit(108, "lb"),
  30275. name: "Front (Dressed)",
  30276. image: {
  30277. source: "./media/characters/lilith-zott/front-dressed.svg",
  30278. extra: 2510 / 2238,
  30279. bottom: 100 / 2610
  30280. }
  30281. },
  30282. },
  30283. [
  30284. {
  30285. name: "Normal",
  30286. height: math.unit(5 + 6 / 12, "feet")
  30287. },
  30288. {
  30289. name: "Macro",
  30290. height: math.unit(1030, "feet"),
  30291. default: true
  30292. },
  30293. ]
  30294. ))
  30295. characterMakers.push(() => makeCharacter(
  30296. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30297. {
  30298. front: {
  30299. height: math.unit(6, "feet"),
  30300. weight: math.unit(150, "lb"),
  30301. name: "Front",
  30302. image: {
  30303. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30304. extra: 2567 / 2435,
  30305. bottom: 39 / 2606
  30306. }
  30307. },
  30308. frontSuper: {
  30309. height: math.unit(6, "feet"),
  30310. name: "Front (Super)",
  30311. image: {
  30312. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30313. extra: 2567 / 2435,
  30314. bottom: 39 / 2606
  30315. }
  30316. },
  30317. },
  30318. [
  30319. {
  30320. name: "Normal",
  30321. height: math.unit(5 + 10 / 12, "feet")
  30322. },
  30323. {
  30324. name: "Macro",
  30325. height: math.unit(1100, "feet"),
  30326. default: true
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30332. {
  30333. front: {
  30334. height: math.unit(100, "miles"),
  30335. name: "Front",
  30336. image: {
  30337. source: "./media/characters/sona/front.svg",
  30338. extra: 2433 / 2201,
  30339. bottom: 53 / 2486
  30340. }
  30341. },
  30342. foot: {
  30343. height: math.unit(16.1, "miles"),
  30344. name: "Foot",
  30345. image: {
  30346. source: "./media/characters/sona/foot.svg"
  30347. }
  30348. },
  30349. },
  30350. [
  30351. {
  30352. name: "Macro",
  30353. height: math.unit(100, "miles"),
  30354. default: true
  30355. },
  30356. ]
  30357. ))
  30358. characterMakers.push(() => makeCharacter(
  30359. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30360. {
  30361. front: {
  30362. height: math.unit(6, "feet"),
  30363. weight: math.unit(150, "lb"),
  30364. name: "Front",
  30365. image: {
  30366. source: "./media/characters/bailey/front.svg",
  30367. extra: 1778 / 1724,
  30368. bottom: 30 / 1808
  30369. }
  30370. },
  30371. },
  30372. [
  30373. {
  30374. name: "Micro",
  30375. height: math.unit(4, "inches")
  30376. },
  30377. {
  30378. name: "Normal",
  30379. height: math.unit(5 + 5 / 12, "feet"),
  30380. default: true
  30381. },
  30382. {
  30383. name: "Macro",
  30384. height: math.unit(250, "feet")
  30385. },
  30386. {
  30387. name: "Megamacro",
  30388. height: math.unit(100, "miles")
  30389. },
  30390. ]
  30391. ))
  30392. characterMakers.push(() => makeCharacter(
  30393. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30394. {
  30395. front: {
  30396. height: math.unit(5 + 2 / 12, "feet"),
  30397. weight: math.unit(120, "lb"),
  30398. name: "Front",
  30399. image: {
  30400. source: "./media/characters/snaps/front.svg",
  30401. extra: 2370 / 2177,
  30402. bottom: 48 / 2418
  30403. }
  30404. },
  30405. back: {
  30406. height: math.unit(5 + 2 / 12, "feet"),
  30407. weight: math.unit(120, "lb"),
  30408. name: "Back",
  30409. image: {
  30410. source: "./media/characters/snaps/back.svg",
  30411. extra: 2408 / 2258,
  30412. bottom: 15 / 2423
  30413. }
  30414. },
  30415. },
  30416. [
  30417. {
  30418. name: "Micro",
  30419. height: math.unit(9, "inches")
  30420. },
  30421. {
  30422. name: "Normal",
  30423. height: math.unit(5 + 2 / 12, "feet"),
  30424. default: true
  30425. },
  30426. {
  30427. name: "Mini Macro",
  30428. height: math.unit(10, "feet")
  30429. },
  30430. ]
  30431. ))
  30432. characterMakers.push(() => makeCharacter(
  30433. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30434. {
  30435. front: {
  30436. height: math.unit(1.8, "meters"),
  30437. weight: math.unit(85, "kg"),
  30438. name: "Front",
  30439. image: {
  30440. source: "./media/characters/azteck/front.svg",
  30441. extra: 2815 / 2625,
  30442. bottom: 89 / 2904
  30443. }
  30444. },
  30445. back: {
  30446. height: math.unit(1.8, "meters"),
  30447. weight: math.unit(85, "kg"),
  30448. name: "Back",
  30449. image: {
  30450. source: "./media/characters/azteck/back.svg",
  30451. extra: 2856 / 2648,
  30452. bottom: 85 / 2941
  30453. }
  30454. },
  30455. frontDressed: {
  30456. height: math.unit(1.8, "meters"),
  30457. weight: math.unit(85, "kg"),
  30458. name: "Front (Dressed)",
  30459. image: {
  30460. source: "./media/characters/azteck/front-dressed.svg",
  30461. extra: 2147 / 2003,
  30462. bottom: 68 / 2215
  30463. }
  30464. },
  30465. head: {
  30466. height: math.unit(0.47, "meters"),
  30467. weight: math.unit(85, "kg"),
  30468. name: "Head",
  30469. image: {
  30470. source: "./media/characters/azteck/head.svg"
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Bite sized",
  30477. height: math.unit(16, "cm")
  30478. },
  30479. {
  30480. name: "Normal",
  30481. height: math.unit(1.8, "meters"),
  30482. default: true
  30483. },
  30484. ]
  30485. ))
  30486. characterMakers.push(() => makeCharacter(
  30487. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30488. {
  30489. front: {
  30490. height: math.unit(6, "feet"),
  30491. weight: math.unit(150, "lb"),
  30492. name: "Front",
  30493. image: {
  30494. source: "./media/characters/pidge/front.svg",
  30495. extra: 1936/1820,
  30496. bottom: 0/1936
  30497. }
  30498. },
  30499. back: {
  30500. height: math.unit(6, "feet"),
  30501. weight: math.unit(150, "lb"),
  30502. name: "Back",
  30503. image: {
  30504. source: "./media/characters/pidge/back.svg",
  30505. extra: 1938/1843,
  30506. bottom: 0/1938
  30507. }
  30508. },
  30509. casual: {
  30510. height: math.unit(6, "feet"),
  30511. weight: math.unit(150, "lb"),
  30512. name: "Casual",
  30513. image: {
  30514. source: "./media/characters/pidge/casual.svg",
  30515. extra: 1936/1820,
  30516. bottom: 0/1936
  30517. }
  30518. },
  30519. tech: {
  30520. height: math.unit(6, "feet"),
  30521. weight: math.unit(150, "lb"),
  30522. name: "Tech",
  30523. image: {
  30524. source: "./media/characters/pidge/tech.svg",
  30525. extra: 1802/1682,
  30526. bottom: 0/1802
  30527. }
  30528. },
  30529. head: {
  30530. height: math.unit(1.61, "feet"),
  30531. name: "Head",
  30532. image: {
  30533. source: "./media/characters/pidge/head.svg"
  30534. }
  30535. },
  30536. collar: {
  30537. height: math.unit(0.82, "feet"),
  30538. name: "Collar",
  30539. image: {
  30540. source: "./media/characters/pidge/collar.svg"
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Macro",
  30547. height: math.unit(2, "mile"),
  30548. default: true
  30549. },
  30550. {
  30551. name: "PUPPY",
  30552. height: math.unit(20, "miles")
  30553. },
  30554. ]
  30555. ))
  30556. characterMakers.push(() => makeCharacter(
  30557. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30558. {
  30559. front: {
  30560. height: math.unit(6, "feet"),
  30561. weight: math.unit(150, "lb"),
  30562. name: "Front",
  30563. image: {
  30564. source: "./media/characters/en/front.svg",
  30565. extra: 1697 / 1563,
  30566. bottom: 103 / 1800
  30567. }
  30568. },
  30569. back: {
  30570. height: math.unit(6, "feet"),
  30571. weight: math.unit(150, "lb"),
  30572. name: "Back",
  30573. image: {
  30574. source: "./media/characters/en/back.svg",
  30575. extra: 1700 / 1570,
  30576. bottom: 51 / 1751
  30577. }
  30578. },
  30579. frontDressed: {
  30580. height: math.unit(6, "feet"),
  30581. weight: math.unit(150, "lb"),
  30582. name: "Front (Dressed)",
  30583. image: {
  30584. source: "./media/characters/en/front-dressed.svg",
  30585. extra: 1697 / 1563,
  30586. bottom: 103 / 1800
  30587. }
  30588. },
  30589. backDressed: {
  30590. height: math.unit(6, "feet"),
  30591. weight: math.unit(150, "lb"),
  30592. name: "Back (Dressed)",
  30593. image: {
  30594. source: "./media/characters/en/back-dressed.svg",
  30595. extra: 1700 / 1570,
  30596. bottom: 51 / 1751
  30597. }
  30598. },
  30599. },
  30600. [
  30601. {
  30602. name: "Macro",
  30603. height: math.unit(210, "feet"),
  30604. default: true
  30605. },
  30606. ]
  30607. ))
  30608. characterMakers.push(() => makeCharacter(
  30609. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30610. {
  30611. front: {
  30612. height: math.unit(6, "feet"),
  30613. weight: math.unit(150, "lb"),
  30614. name: "Front",
  30615. image: {
  30616. source: "./media/characters/haze-orris/front.svg",
  30617. extra: 3975 / 3525,
  30618. bottom: 137 / 4112
  30619. }
  30620. },
  30621. },
  30622. [
  30623. {
  30624. name: "Micro",
  30625. height: math.unit(150, "mm"),
  30626. default: true
  30627. },
  30628. ]
  30629. ))
  30630. characterMakers.push(() => makeCharacter(
  30631. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30632. {
  30633. front: {
  30634. height: math.unit(6, "feet"),
  30635. weight: math.unit(150, "lb"),
  30636. name: "Front",
  30637. image: {
  30638. source: "./media/characters/casselene-yaro/front.svg",
  30639. extra: 4721 / 4541,
  30640. bottom: 82 / 4803
  30641. }
  30642. },
  30643. back: {
  30644. height: math.unit(6, "feet"),
  30645. weight: math.unit(150, "lb"),
  30646. name: "Back",
  30647. image: {
  30648. source: "./media/characters/casselene-yaro/back.svg",
  30649. extra: 4569 / 4377,
  30650. bottom: 69 / 4638
  30651. }
  30652. },
  30653. dressed: {
  30654. height: math.unit(6, "feet"),
  30655. weight: math.unit(150, "lb"),
  30656. name: "Dressed",
  30657. image: {
  30658. source: "./media/characters/casselene-yaro/dressed.svg",
  30659. extra: 4721 / 4541,
  30660. bottom: 82 / 4803
  30661. }
  30662. },
  30663. maw: {
  30664. height: math.unit(1, "feet"),
  30665. name: "Maw",
  30666. image: {
  30667. source: "./media/characters/casselene-yaro/maw.svg"
  30668. }
  30669. },
  30670. },
  30671. [
  30672. {
  30673. name: "Macro",
  30674. height: math.unit(190, "feet"),
  30675. default: true
  30676. },
  30677. ]
  30678. ))
  30679. characterMakers.push(() => makeCharacter(
  30680. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30681. {
  30682. front: {
  30683. height: math.unit(10, "feet"),
  30684. weight: math.unit(15015, "lb"),
  30685. name: "Front",
  30686. image: {
  30687. source: "./media/characters/platine/front.svg",
  30688. extra: 1428/1353,
  30689. bottom: 31/1459
  30690. }
  30691. },
  30692. },
  30693. [
  30694. {
  30695. name: "Normal",
  30696. height: math.unit(10, "feet"),
  30697. default: true
  30698. },
  30699. {
  30700. name: "Macro",
  30701. height: math.unit(100, "feet")
  30702. },
  30703. {
  30704. name: "Megamacro",
  30705. height: math.unit(1000, "feet")
  30706. },
  30707. ]
  30708. ))
  30709. characterMakers.push(() => makeCharacter(
  30710. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30711. {
  30712. front: {
  30713. height: math.unit(15 + 5 / 12, "feet"),
  30714. weight: math.unit(4600, "lb"),
  30715. name: "Front",
  30716. image: {
  30717. source: "./media/characters/neapolitan-ananassa/front.svg",
  30718. extra: 2903 / 2736,
  30719. bottom: 0 / 2903
  30720. }
  30721. },
  30722. side: {
  30723. height: math.unit(15 + 5 / 12, "feet"),
  30724. weight: math.unit(4600, "lb"),
  30725. name: "Side",
  30726. image: {
  30727. source: "./media/characters/neapolitan-ananassa/side.svg",
  30728. extra: 2925 / 2719,
  30729. bottom: 0 / 2925
  30730. }
  30731. },
  30732. back: {
  30733. height: math.unit(15 + 5 / 12, "feet"),
  30734. weight: math.unit(4600, "lb"),
  30735. name: "Back",
  30736. image: {
  30737. source: "./media/characters/neapolitan-ananassa/back.svg",
  30738. extra: 2903 / 2736,
  30739. bottom: 0 / 2903
  30740. }
  30741. },
  30742. },
  30743. [
  30744. {
  30745. name: "Normal",
  30746. height: math.unit(15 + 5 / 12, "feet"),
  30747. default: true
  30748. },
  30749. {
  30750. name: "Post-Millenium",
  30751. height: math.unit(35 + 5 / 12, "feet")
  30752. },
  30753. {
  30754. name: "Post-Era",
  30755. height: math.unit(450 + 5 / 12, "feet")
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30761. {
  30762. front: {
  30763. height: math.unit(300, "meters"),
  30764. weight: math.unit(125000, "tonnes"),
  30765. name: "Front",
  30766. image: {
  30767. source: "./media/characters/pazuzu/front.svg",
  30768. extra: 877 / 794,
  30769. bottom: 47 / 924
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Macro",
  30776. height: math.unit(300, "meters"),
  30777. default: true
  30778. },
  30779. ]
  30780. ))
  30781. characterMakers.push(() => makeCharacter(
  30782. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30783. {
  30784. side: {
  30785. height: math.unit(10 + 7 / 12, "feet"),
  30786. weight: math.unit(2.5, "tons"),
  30787. name: "Side",
  30788. image: {
  30789. source: "./media/characters/aasha/side.svg",
  30790. extra: 1345 / 1245,
  30791. bottom: 111 / 1456
  30792. }
  30793. },
  30794. back: {
  30795. height: math.unit(10 + 7 / 12, "feet"),
  30796. weight: math.unit(2.5, "tons"),
  30797. name: "Back",
  30798. image: {
  30799. source: "./media/characters/aasha/back.svg",
  30800. extra: 1133 / 1057,
  30801. bottom: 257 / 1390
  30802. }
  30803. },
  30804. },
  30805. [
  30806. {
  30807. name: "Normal",
  30808. height: math.unit(10 + 7 / 12, "feet"),
  30809. default: true
  30810. },
  30811. ]
  30812. ))
  30813. characterMakers.push(() => makeCharacter(
  30814. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30815. {
  30816. front: {
  30817. height: math.unit(6 + 3 / 12, "feet"),
  30818. name: "Front",
  30819. image: {
  30820. source: "./media/characters/nevan/front.svg",
  30821. extra: 704 / 704,
  30822. bottom: 28 / 732
  30823. }
  30824. },
  30825. back: {
  30826. height: math.unit(6 + 3 / 12, "feet"),
  30827. name: "Back",
  30828. image: {
  30829. source: "./media/characters/nevan/back.svg",
  30830. extra: 714 / 714,
  30831. bottom: 21 / 735
  30832. }
  30833. },
  30834. frontFlaccid: {
  30835. height: math.unit(6 + 3 / 12, "feet"),
  30836. name: "Front (Flaccid)",
  30837. image: {
  30838. source: "./media/characters/nevan/front-flaccid.svg",
  30839. extra: 704 / 704,
  30840. bottom: 28 / 732
  30841. }
  30842. },
  30843. frontErect: {
  30844. height: math.unit(6 + 3 / 12, "feet"),
  30845. name: "Front (Erect)",
  30846. image: {
  30847. source: "./media/characters/nevan/front-erect.svg",
  30848. extra: 704 / 704,
  30849. bottom: 28 / 732
  30850. }
  30851. },
  30852. backFlaccid: {
  30853. height: math.unit(6 + 3 / 12, "feet"),
  30854. name: "Back (Flaccid)",
  30855. image: {
  30856. source: "./media/characters/nevan/back-flaccid.svg",
  30857. extra: 714 / 714,
  30858. bottom: 21 / 735
  30859. }
  30860. },
  30861. },
  30862. [
  30863. {
  30864. name: "Normal",
  30865. height: math.unit(6 + 3 / 12, "feet"),
  30866. default: true
  30867. },
  30868. ]
  30869. ))
  30870. characterMakers.push(() => makeCharacter(
  30871. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30872. {
  30873. front: {
  30874. height: math.unit(4, "feet"),
  30875. name: "Front",
  30876. image: {
  30877. source: "./media/characters/arhan/front.svg",
  30878. extra: 3368 / 3133,
  30879. bottom: 0 / 3368
  30880. }
  30881. },
  30882. side: {
  30883. height: math.unit(4, "feet"),
  30884. name: "Side",
  30885. image: {
  30886. source: "./media/characters/arhan/side.svg",
  30887. extra: 3347 / 3105,
  30888. bottom: 0 / 3347
  30889. }
  30890. },
  30891. tongue: {
  30892. height: math.unit(1.42, "feet"),
  30893. name: "Tongue",
  30894. image: {
  30895. source: "./media/characters/arhan/tongue.svg"
  30896. }
  30897. },
  30898. head: {
  30899. height: math.unit(0.85, "feet"),
  30900. name: "Head",
  30901. image: {
  30902. source: "./media/characters/arhan/head.svg"
  30903. }
  30904. },
  30905. },
  30906. [
  30907. {
  30908. name: "Normal",
  30909. height: math.unit(4, "feet"),
  30910. default: true
  30911. },
  30912. ]
  30913. ))
  30914. characterMakers.push(() => makeCharacter(
  30915. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30916. {
  30917. front: {
  30918. height: math.unit(5 + 7.5 / 12, "feet"),
  30919. weight: math.unit(120, "lb"),
  30920. name: "Front",
  30921. image: {
  30922. source: "./media/characters/digi-duncan/front.svg",
  30923. extra: 330 / 326,
  30924. bottom: 16 / 346
  30925. }
  30926. },
  30927. side: {
  30928. height: math.unit(5 + 7.5 / 12, "feet"),
  30929. weight: math.unit(120, "lb"),
  30930. name: "Side",
  30931. image: {
  30932. source: "./media/characters/digi-duncan/side.svg",
  30933. extra: 341 / 337,
  30934. bottom: 1 / 342
  30935. }
  30936. },
  30937. back: {
  30938. height: math.unit(5 + 7.5 / 12, "feet"),
  30939. weight: math.unit(120, "lb"),
  30940. name: "Back",
  30941. image: {
  30942. source: "./media/characters/digi-duncan/back.svg",
  30943. extra: 330 / 326,
  30944. bottom: 12 / 342
  30945. }
  30946. },
  30947. },
  30948. [
  30949. {
  30950. name: "Speck",
  30951. height: math.unit(0.25, "mm")
  30952. },
  30953. {
  30954. name: "Micro",
  30955. height: math.unit(5, "mm")
  30956. },
  30957. {
  30958. name: "Tiny",
  30959. height: math.unit(0.5, "inches"),
  30960. default: true
  30961. },
  30962. {
  30963. name: "Human",
  30964. height: math.unit(5 + 7.5 / 12, "feet")
  30965. },
  30966. {
  30967. name: "Minigiant",
  30968. height: math.unit(8 + 5.25, "feet")
  30969. },
  30970. {
  30971. name: "Giant",
  30972. height: math.unit(2000, "feet")
  30973. },
  30974. {
  30975. name: "Mega",
  30976. height: math.unit(371.1, "miles")
  30977. },
  30978. ]
  30979. ))
  30980. characterMakers.push(() => makeCharacter(
  30981. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30982. {
  30983. front: {
  30984. height: math.unit(2, "meters"),
  30985. weight: math.unit(350, "kg"),
  30986. name: "Front",
  30987. image: {
  30988. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30989. extra: 898 / 838,
  30990. bottom: 9 / 907
  30991. }
  30992. },
  30993. },
  30994. [
  30995. {
  30996. name: "Micro",
  30997. height: math.unit(8, "meters")
  30998. },
  30999. {
  31000. name: "Normal",
  31001. height: math.unit(50, "meters"),
  31002. default: true
  31003. },
  31004. {
  31005. name: "Macro",
  31006. height: math.unit(500, "meters")
  31007. },
  31008. ]
  31009. ))
  31010. characterMakers.push(() => makeCharacter(
  31011. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31012. {
  31013. front: {
  31014. height: math.unit(6 + 6 / 12, "feet"),
  31015. name: "Front",
  31016. image: {
  31017. source: "./media/characters/khardesh/front.svg",
  31018. extra: 1788/1596,
  31019. bottom: 66/1854
  31020. }
  31021. },
  31022. back: {
  31023. height: math.unit(6 + 6 / 12, "feet"),
  31024. name: "Back",
  31025. image: {
  31026. source: "./media/characters/khardesh/back.svg",
  31027. extra: 1781/1584,
  31028. bottom: 68/1849
  31029. }
  31030. },
  31031. },
  31032. [
  31033. {
  31034. name: "Normal",
  31035. height: math.unit(6 + 6 / 12, "feet"),
  31036. default: true
  31037. },
  31038. {
  31039. name: "Normal+",
  31040. height: math.unit(4, "meters")
  31041. },
  31042. {
  31043. name: "Macro",
  31044. height: math.unit(50, "meters")
  31045. },
  31046. {
  31047. name: "Macro+",
  31048. height: math.unit(100, "meters")
  31049. },
  31050. {
  31051. name: "Megamacro",
  31052. height: math.unit(20, "km")
  31053. },
  31054. ]
  31055. ))
  31056. characterMakers.push(() => makeCharacter(
  31057. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31058. {
  31059. front: {
  31060. height: math.unit(6, "feet"),
  31061. weight: math.unit(150, "lb"),
  31062. name: "Front",
  31063. image: {
  31064. source: "./media/characters/kosho/front.svg",
  31065. extra: 1847 / 1847,
  31066. bottom: 86 / 1933
  31067. }
  31068. },
  31069. },
  31070. [
  31071. {
  31072. name: "Second-stage micro",
  31073. height: math.unit(0.5, "inches")
  31074. },
  31075. {
  31076. name: "First-stage micro",
  31077. height: math.unit(6, "inches")
  31078. },
  31079. {
  31080. name: "Normal",
  31081. height: math.unit(6, "feet"),
  31082. default: true
  31083. },
  31084. {
  31085. name: "First-stage macro",
  31086. height: math.unit(72, "feet")
  31087. },
  31088. {
  31089. name: "Second-stage macro",
  31090. height: math.unit(864, "feet")
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31096. {
  31097. normal: {
  31098. height: math.unit(4 + 6 / 12, "feet"),
  31099. name: "Normal",
  31100. image: {
  31101. source: "./media/characters/hydra/normal.svg",
  31102. extra: 2833 / 2634,
  31103. bottom: 68 / 2901
  31104. }
  31105. },
  31106. smol: {
  31107. height: math.unit(0.705, "inches"),
  31108. name: "Smol",
  31109. image: {
  31110. source: "./media/characters/hydra/smol.svg",
  31111. extra: 2715 / 2540,
  31112. bottom: 0 / 2715
  31113. }
  31114. },
  31115. },
  31116. [
  31117. {
  31118. name: "Normal",
  31119. height: math.unit(4 + 6 / 12, "feet"),
  31120. default: true
  31121. }
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31126. {
  31127. front: {
  31128. height: math.unit(0.6, "cm"),
  31129. name: "Front",
  31130. image: {
  31131. source: "./media/characters/daz/front.svg",
  31132. extra: 1682 / 1164,
  31133. bottom: 42 / 1724
  31134. }
  31135. },
  31136. },
  31137. [
  31138. {
  31139. name: "Normal",
  31140. height: math.unit(0.6, "cm"),
  31141. default: true
  31142. },
  31143. ]
  31144. ))
  31145. characterMakers.push(() => makeCharacter(
  31146. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31147. {
  31148. front: {
  31149. height: math.unit(6, "feet"),
  31150. weight: math.unit(235, "lb"),
  31151. name: "Front",
  31152. image: {
  31153. source: "./media/characters/theo-pangolin/front.svg",
  31154. extra: 1996 / 1969,
  31155. bottom: 115 / 2111
  31156. }
  31157. },
  31158. back: {
  31159. height: math.unit(6, "feet"),
  31160. weight: math.unit(235, "lb"),
  31161. name: "Back",
  31162. image: {
  31163. source: "./media/characters/theo-pangolin/back.svg",
  31164. extra: 1979 / 1979,
  31165. bottom: 40 / 2019
  31166. }
  31167. },
  31168. feral: {
  31169. height: math.unit(2, "feet"),
  31170. weight: math.unit(30, "lb"),
  31171. name: "Feral",
  31172. image: {
  31173. source: "./media/characters/theo-pangolin/feral.svg",
  31174. extra: 803 / 791,
  31175. bottom: 181 / 984
  31176. }
  31177. },
  31178. footFive: {
  31179. height: math.unit(1.43, "feet"),
  31180. name: "Foot (Five Toes)",
  31181. image: {
  31182. source: "./media/characters/theo-pangolin/foot-five.svg"
  31183. }
  31184. },
  31185. footFour: {
  31186. height: math.unit(1.43, "feet"),
  31187. name: "Foot (Four Toes)",
  31188. image: {
  31189. source: "./media/characters/theo-pangolin/foot-four.svg"
  31190. }
  31191. },
  31192. handFour: {
  31193. height: math.unit(0.81, "feet"),
  31194. name: "Hand (Four Fingers)",
  31195. image: {
  31196. source: "./media/characters/theo-pangolin/hand-four.svg"
  31197. }
  31198. },
  31199. handThree: {
  31200. height: math.unit(0.81, "feet"),
  31201. name: "Hand (Three Fingers)",
  31202. image: {
  31203. source: "./media/characters/theo-pangolin/hand-three.svg"
  31204. }
  31205. },
  31206. headFront: {
  31207. height: math.unit(1.37, "feet"),
  31208. name: "Head (Front)",
  31209. image: {
  31210. source: "./media/characters/theo-pangolin/head-front.svg"
  31211. }
  31212. },
  31213. headSide: {
  31214. height: math.unit(1.43, "feet"),
  31215. name: "Head (Side)",
  31216. image: {
  31217. source: "./media/characters/theo-pangolin/head-side.svg"
  31218. }
  31219. },
  31220. tongue: {
  31221. height: math.unit(2.29, "feet"),
  31222. name: "Tongue",
  31223. image: {
  31224. source: "./media/characters/theo-pangolin/tongue.svg"
  31225. }
  31226. },
  31227. },
  31228. [
  31229. {
  31230. name: "Normal",
  31231. height: math.unit(6, "feet")
  31232. },
  31233. {
  31234. name: "Macro",
  31235. height: math.unit(400, "feet"),
  31236. default: true
  31237. },
  31238. ]
  31239. ))
  31240. characterMakers.push(() => makeCharacter(
  31241. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31242. {
  31243. front: {
  31244. height: math.unit(6, "inches"),
  31245. weight: math.unit(0.036, "kg"),
  31246. name: "Front",
  31247. image: {
  31248. source: "./media/characters/renée/front.svg",
  31249. extra: 900 / 886,
  31250. bottom: 8 / 908
  31251. }
  31252. },
  31253. },
  31254. [
  31255. {
  31256. name: "Nano",
  31257. height: math.unit(1, "nm")
  31258. },
  31259. {
  31260. name: "Micro",
  31261. height: math.unit(1, "mm")
  31262. },
  31263. {
  31264. name: "Normal",
  31265. height: math.unit(6, "inches")
  31266. },
  31267. {
  31268. name: "Macro",
  31269. height: math.unit(2000, "feet"),
  31270. default: true
  31271. },
  31272. {
  31273. name: "Megamacro",
  31274. height: math.unit(2, "km")
  31275. },
  31276. {
  31277. name: "Gigamacro",
  31278. height: math.unit(2000, "km")
  31279. },
  31280. {
  31281. name: "Teramacro",
  31282. height: math.unit(250000, "km")
  31283. },
  31284. ]
  31285. ))
  31286. characterMakers.push(() => makeCharacter(
  31287. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31288. {
  31289. front: {
  31290. height: math.unit(4, "meters"),
  31291. weight: math.unit(150, "kg"),
  31292. name: "Front",
  31293. image: {
  31294. source: "./media/characters/caledvwlch/front.svg",
  31295. extra: 1760 / 1551,
  31296. bottom: 28 / 1788
  31297. }
  31298. },
  31299. side: {
  31300. height: math.unit(4, "meters"),
  31301. weight: math.unit(150, "kg"),
  31302. name: "Side",
  31303. image: {
  31304. source: "./media/characters/caledvwlch/side.svg",
  31305. extra: 1605 / 1536,
  31306. bottom: 31 / 1636
  31307. }
  31308. },
  31309. back: {
  31310. height: math.unit(4, "meters"),
  31311. weight: math.unit(150, "kg"),
  31312. name: "Back",
  31313. image: {
  31314. source: "./media/characters/caledvwlch/back.svg",
  31315. extra: 1635 / 1565,
  31316. bottom: 27 / 1662
  31317. }
  31318. },
  31319. },
  31320. [
  31321. {
  31322. name: "\"Incognito\"",
  31323. height: math.unit(4, "meters")
  31324. },
  31325. {
  31326. name: "Small rampage",
  31327. height: math.unit(600, "meters")
  31328. },
  31329. {
  31330. name: "Mega",
  31331. height: math.unit(30, "km")
  31332. },
  31333. {
  31334. name: "Home-size",
  31335. height: math.unit(50, "km"),
  31336. default: true
  31337. },
  31338. {
  31339. name: "Giga",
  31340. height: math.unit(300, "km")
  31341. },
  31342. {
  31343. name: "Lounging",
  31344. height: math.unit(11000, "km")
  31345. },
  31346. {
  31347. name: "Planet snacking",
  31348. height: math.unit(2000000, "km")
  31349. },
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31354. {
  31355. front: {
  31356. height: math.unit(6, "feet"),
  31357. weight: math.unit(215, "lb"),
  31358. name: "Front",
  31359. image: {
  31360. source: "./media/characters/sapphire-svell/front.svg",
  31361. extra: 495 / 455,
  31362. bottom: 20 / 515
  31363. }
  31364. },
  31365. back: {
  31366. height: math.unit(6, "feet"),
  31367. weight: math.unit(216, "lb"),
  31368. name: "Back",
  31369. image: {
  31370. source: "./media/characters/sapphire-svell/back.svg",
  31371. extra: 497 / 477,
  31372. bottom: 7 / 504
  31373. }
  31374. },
  31375. maw: {
  31376. height: math.unit(1.57, "feet"),
  31377. name: "Maw",
  31378. image: {
  31379. source: "./media/characters/sapphire-svell/maw.svg"
  31380. }
  31381. },
  31382. foot: {
  31383. height: math.unit(1.07, "feet"),
  31384. name: "Foot",
  31385. image: {
  31386. source: "./media/characters/sapphire-svell/foot.svg"
  31387. }
  31388. },
  31389. toering: {
  31390. height: math.unit(1.7, "inch"),
  31391. name: "Toering",
  31392. image: {
  31393. source: "./media/characters/sapphire-svell/toering.svg"
  31394. }
  31395. },
  31396. },
  31397. [
  31398. {
  31399. name: "Normal",
  31400. height: math.unit(300, "feet"),
  31401. default: true
  31402. },
  31403. {
  31404. name: "Augmented",
  31405. height: math.unit(1250, "feet")
  31406. },
  31407. {
  31408. name: "Unleashed",
  31409. height: math.unit(3000, "feet")
  31410. },
  31411. ]
  31412. ))
  31413. characterMakers.push(() => makeCharacter(
  31414. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31415. {
  31416. side: {
  31417. height: math.unit(2 + 3 / 12, "feet"),
  31418. weight: math.unit(110, "lb"),
  31419. name: "Side",
  31420. image: {
  31421. source: "./media/characters/glitch-flux/side.svg",
  31422. extra: 997 / 805,
  31423. bottom: 20 / 1017
  31424. }
  31425. },
  31426. },
  31427. [
  31428. {
  31429. name: "Normal",
  31430. height: math.unit(2 + 3 / 12, "feet"),
  31431. default: true
  31432. },
  31433. ]
  31434. ))
  31435. characterMakers.push(() => makeCharacter(
  31436. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31437. {
  31438. front: {
  31439. height: math.unit(4, "meters"),
  31440. name: "Front",
  31441. image: {
  31442. source: "./media/characters/mid/front.svg",
  31443. extra: 507 / 476,
  31444. bottom: 17 / 524
  31445. }
  31446. },
  31447. back: {
  31448. height: math.unit(4, "meters"),
  31449. name: "Back",
  31450. image: {
  31451. source: "./media/characters/mid/back.svg",
  31452. extra: 519 / 487,
  31453. bottom: 7 / 526
  31454. }
  31455. },
  31456. stuck: {
  31457. height: math.unit(2.2, "meters"),
  31458. name: "Stuck",
  31459. image: {
  31460. source: "./media/characters/mid/stuck.svg",
  31461. extra: 1951 / 1869,
  31462. bottom: 88 / 2039
  31463. }
  31464. }
  31465. },
  31466. [
  31467. {
  31468. name: "Normal",
  31469. height: math.unit(4, "meters"),
  31470. default: true
  31471. },
  31472. {
  31473. name: "Big",
  31474. height: math.unit(10, "meters")
  31475. },
  31476. {
  31477. name: "Macro",
  31478. height: math.unit(800, "meters")
  31479. },
  31480. {
  31481. name: "Megamacro",
  31482. height: math.unit(100, "km")
  31483. },
  31484. {
  31485. name: "Overgrown",
  31486. height: math.unit(1, "parsec")
  31487. },
  31488. ]
  31489. ))
  31490. characterMakers.push(() => makeCharacter(
  31491. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31492. {
  31493. front: {
  31494. height: math.unit(2.5, "meters"),
  31495. weight: math.unit(225, "kg"),
  31496. name: "Front",
  31497. image: {
  31498. source: "./media/characters/iris/front.svg",
  31499. extra: 3348 / 3251,
  31500. bottom: 205 / 3553
  31501. }
  31502. },
  31503. maw: {
  31504. height: math.unit(0.56, "meter"),
  31505. name: "Maw",
  31506. image: {
  31507. source: "./media/characters/iris/maw.svg"
  31508. }
  31509. },
  31510. },
  31511. [
  31512. {
  31513. name: "Mewter cat",
  31514. height: math.unit(1.2, "meters")
  31515. },
  31516. {
  31517. name: "Minimacro",
  31518. height: math.unit(2.5, "meters"),
  31519. default: true
  31520. },
  31521. {
  31522. name: "Macro",
  31523. height: math.unit(180, "meters")
  31524. },
  31525. {
  31526. name: "Megamacro",
  31527. height: math.unit(2746, "meters")
  31528. },
  31529. ]
  31530. ))
  31531. characterMakers.push(() => makeCharacter(
  31532. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31533. {
  31534. front: {
  31535. height: math.unit(6, "feet"),
  31536. weight: math.unit(135, "lb"),
  31537. name: "Front",
  31538. image: {
  31539. source: "./media/characters/axel/front.svg",
  31540. extra: 908 / 908,
  31541. bottom: 58 / 966
  31542. }
  31543. },
  31544. side: {
  31545. height: math.unit(6, "feet"),
  31546. weight: math.unit(135, "lb"),
  31547. name: "Side",
  31548. image: {
  31549. source: "./media/characters/axel/side.svg",
  31550. extra: 958 / 958,
  31551. bottom: 11 / 969
  31552. }
  31553. },
  31554. back: {
  31555. height: math.unit(6, "feet"),
  31556. weight: math.unit(135, "lb"),
  31557. name: "Back",
  31558. image: {
  31559. source: "./media/characters/axel/back.svg",
  31560. extra: 887 / 887,
  31561. bottom: 34 / 921
  31562. }
  31563. },
  31564. head: {
  31565. height: math.unit(1.07, "feet"),
  31566. name: "Head",
  31567. image: {
  31568. source: "./media/characters/axel/head.svg"
  31569. }
  31570. },
  31571. beak: {
  31572. height: math.unit(1.4, "feet"),
  31573. name: "Beak",
  31574. image: {
  31575. source: "./media/characters/axel/beak.svg"
  31576. }
  31577. },
  31578. beakSide: {
  31579. height: math.unit(1.4, "feet"),
  31580. name: "Beak Side",
  31581. image: {
  31582. source: "./media/characters/axel/beak-side.svg"
  31583. }
  31584. },
  31585. sheath: {
  31586. height: math.unit(0.5, "feet"),
  31587. name: "Sheath",
  31588. image: {
  31589. source: "./media/characters/axel/sheath.svg"
  31590. }
  31591. },
  31592. dick: {
  31593. height: math.unit(0.98, "feet"),
  31594. name: "Dick",
  31595. image: {
  31596. source: "./media/characters/axel/dick.svg"
  31597. }
  31598. },
  31599. },
  31600. [
  31601. {
  31602. name: "Macro",
  31603. height: math.unit(68, "meters"),
  31604. default: true
  31605. },
  31606. ]
  31607. ))
  31608. characterMakers.push(() => makeCharacter(
  31609. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31610. {
  31611. front: {
  31612. height: math.unit(3.5, "meters"),
  31613. weight: math.unit(1200, "kg"),
  31614. name: "Front",
  31615. image: {
  31616. source: "./media/characters/joanna/front.svg",
  31617. extra: 1596 / 1488,
  31618. bottom: 29 / 1625
  31619. }
  31620. },
  31621. back: {
  31622. height: math.unit(3.5, "meters"),
  31623. weight: math.unit(1200, "kg"),
  31624. name: "Back",
  31625. image: {
  31626. source: "./media/characters/joanna/back.svg",
  31627. extra: 1594 / 1495,
  31628. bottom: 26 / 1620
  31629. }
  31630. },
  31631. frontShorts: {
  31632. height: math.unit(3.5, "meters"),
  31633. weight: math.unit(1200, "kg"),
  31634. name: "Front (Shorts)",
  31635. image: {
  31636. source: "./media/characters/joanna/front-shorts.svg",
  31637. extra: 1596 / 1488,
  31638. bottom: 29 / 1625
  31639. }
  31640. },
  31641. frontBiker: {
  31642. height: math.unit(3.5, "meters"),
  31643. weight: math.unit(1200, "kg"),
  31644. name: "Front (Biker)",
  31645. image: {
  31646. source: "./media/characters/joanna/front-biker.svg",
  31647. extra: 1596 / 1488,
  31648. bottom: 29 / 1625
  31649. }
  31650. },
  31651. backBiker: {
  31652. height: math.unit(3.5, "meters"),
  31653. weight: math.unit(1200, "kg"),
  31654. name: "Back (Biker)",
  31655. image: {
  31656. source: "./media/characters/joanna/back-biker.svg",
  31657. extra: 1594 / 1495,
  31658. bottom: 88 / 1682
  31659. }
  31660. },
  31661. bikeLeft: {
  31662. height: math.unit(2.4, "meters"),
  31663. weight: math.unit(1600, "kg"),
  31664. name: "Bike (Left)",
  31665. image: {
  31666. source: "./media/characters/joanna/bike-left.svg",
  31667. extra: 720 / 720,
  31668. bottom: 8 / 728
  31669. }
  31670. },
  31671. bikeRight: {
  31672. height: math.unit(2.4, "meters"),
  31673. weight: math.unit(1600, "kg"),
  31674. name: "Bike (Right)",
  31675. image: {
  31676. source: "./media/characters/joanna/bike-right.svg",
  31677. extra: 720 / 720,
  31678. bottom: 8 / 728
  31679. }
  31680. },
  31681. },
  31682. [
  31683. {
  31684. name: "Incognito",
  31685. height: math.unit(3.5, "meters")
  31686. },
  31687. {
  31688. name: "Casual Big",
  31689. height: math.unit(200, "meters")
  31690. },
  31691. {
  31692. name: "Macro",
  31693. height: math.unit(600, "meters")
  31694. },
  31695. {
  31696. name: "Original",
  31697. height: math.unit(20, "km"),
  31698. default: true
  31699. },
  31700. {
  31701. name: "Giga",
  31702. height: math.unit(400, "km")
  31703. },
  31704. {
  31705. name: "Lounging",
  31706. height: math.unit(1500, "km")
  31707. },
  31708. {
  31709. name: "Planetary",
  31710. height: math.unit(200000, "km")
  31711. },
  31712. ]
  31713. ))
  31714. characterMakers.push(() => makeCharacter(
  31715. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31716. {
  31717. front: {
  31718. height: math.unit(6, "feet"),
  31719. weight: math.unit(150, "lb"),
  31720. name: "Front",
  31721. image: {
  31722. source: "./media/characters/hugo-sigil/front.svg",
  31723. extra: 522 / 500,
  31724. bottom: 2 / 524
  31725. }
  31726. },
  31727. back: {
  31728. height: math.unit(6, "feet"),
  31729. weight: math.unit(150, "lb"),
  31730. name: "Back",
  31731. image: {
  31732. source: "./media/characters/hugo-sigil/back.svg",
  31733. extra: 519 / 495,
  31734. bottom: 5 / 524
  31735. }
  31736. },
  31737. maw: {
  31738. height: math.unit(1.4, "feet"),
  31739. weight: math.unit(150, "lb"),
  31740. name: "Maw",
  31741. image: {
  31742. source: "./media/characters/hugo-sigil/maw.svg"
  31743. }
  31744. },
  31745. feet: {
  31746. height: math.unit(1.56, "feet"),
  31747. weight: math.unit(150, "lb"),
  31748. name: "Feet",
  31749. image: {
  31750. source: "./media/characters/hugo-sigil/feet.svg",
  31751. extra: 177 / 177,
  31752. bottom: 12 / 189
  31753. }
  31754. },
  31755. },
  31756. [
  31757. {
  31758. name: "Normal",
  31759. height: math.unit(6, "feet")
  31760. },
  31761. {
  31762. name: "Macro",
  31763. height: math.unit(200, "feet"),
  31764. default: true
  31765. },
  31766. ]
  31767. ))
  31768. characterMakers.push(() => makeCharacter(
  31769. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31770. {
  31771. front: {
  31772. height: math.unit(6, "feet"),
  31773. weight: math.unit(150, "lb"),
  31774. name: "Front",
  31775. image: {
  31776. source: "./media/characters/peri/front.svg",
  31777. extra: 2354 / 2233,
  31778. bottom: 49 / 2403
  31779. }
  31780. },
  31781. },
  31782. [
  31783. {
  31784. name: "Really Small",
  31785. height: math.unit(1, "nm")
  31786. },
  31787. {
  31788. name: "Micro",
  31789. height: math.unit(4, "inches")
  31790. },
  31791. {
  31792. name: "Normal",
  31793. height: math.unit(7, "inches"),
  31794. default: true
  31795. },
  31796. {
  31797. name: "Macro",
  31798. height: math.unit(400, "feet")
  31799. },
  31800. {
  31801. name: "Megamacro",
  31802. height: math.unit(100, "miles")
  31803. },
  31804. ]
  31805. ))
  31806. characterMakers.push(() => makeCharacter(
  31807. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31808. {
  31809. frontSlim: {
  31810. height: math.unit(7, "feet"),
  31811. name: "Front (Slim)",
  31812. image: {
  31813. source: "./media/characters/issilora/front-slim.svg",
  31814. extra: 529 / 449,
  31815. bottom: 53 / 582
  31816. }
  31817. },
  31818. sideSlim: {
  31819. height: math.unit(7, "feet"),
  31820. name: "Side (Slim)",
  31821. image: {
  31822. source: "./media/characters/issilora/side-slim.svg",
  31823. extra: 570 / 480,
  31824. bottom: 30 / 600
  31825. }
  31826. },
  31827. backSlim: {
  31828. height: math.unit(7, "feet"),
  31829. name: "Back (Slim)",
  31830. image: {
  31831. source: "./media/characters/issilora/back-slim.svg",
  31832. extra: 537 / 455,
  31833. bottom: 46 / 583
  31834. }
  31835. },
  31836. frontBuff: {
  31837. height: math.unit(7, "feet"),
  31838. name: "Front (Buff)",
  31839. image: {
  31840. source: "./media/characters/issilora/front-buff.svg",
  31841. extra: 2310 / 2035,
  31842. bottom: 335 / 2645
  31843. }
  31844. },
  31845. head: {
  31846. height: math.unit(1.94, "feet"),
  31847. name: "Head",
  31848. image: {
  31849. source: "./media/characters/issilora/head.svg"
  31850. }
  31851. },
  31852. },
  31853. [
  31854. {
  31855. name: "Minimum",
  31856. height: math.unit(7, "feet")
  31857. },
  31858. {
  31859. name: "Comfortable",
  31860. height: math.unit(17, "feet")
  31861. },
  31862. {
  31863. name: "Fun Size",
  31864. height: math.unit(47, "feet")
  31865. },
  31866. {
  31867. name: "Natural Macro",
  31868. height: math.unit(137, "feet"),
  31869. default: true
  31870. },
  31871. {
  31872. name: "Maximum Kaiju",
  31873. height: math.unit(397, "feet")
  31874. },
  31875. ]
  31876. ))
  31877. characterMakers.push(() => makeCharacter(
  31878. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31879. {
  31880. front: {
  31881. height: math.unit(50 + 9/12, "feet"),
  31882. weight: math.unit(32.8, "tons"),
  31883. name: "Front",
  31884. image: {
  31885. source: "./media/characters/irb'iiritaahn/front.svg",
  31886. extra: 1878/1826,
  31887. bottom: 326/2204
  31888. }
  31889. },
  31890. back: {
  31891. height: math.unit(50 + 9/12, "feet"),
  31892. weight: math.unit(32.8, "tons"),
  31893. name: "Back",
  31894. image: {
  31895. source: "./media/characters/irb'iiritaahn/back.svg",
  31896. extra: 2052/2018,
  31897. bottom: 152/2204
  31898. }
  31899. },
  31900. head: {
  31901. height: math.unit(12.86, "feet"),
  31902. name: "Head",
  31903. image: {
  31904. source: "./media/characters/irb'iiritaahn/head.svg"
  31905. }
  31906. },
  31907. maw: {
  31908. height: math.unit(9.66, "feet"),
  31909. name: "Maw",
  31910. image: {
  31911. source: "./media/characters/irb'iiritaahn/maw.svg"
  31912. }
  31913. },
  31914. frontDick: {
  31915. height: math.unit(8.78461, "feet"),
  31916. name: "Front Dick",
  31917. image: {
  31918. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31919. }
  31920. },
  31921. rearDick: {
  31922. height: math.unit(8.78461, "feet"),
  31923. name: "Rear Dick",
  31924. image: {
  31925. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31926. }
  31927. },
  31928. rearDickUnfolded: {
  31929. height: math.unit(8.78, "feet"),
  31930. name: "Rear Dick (Unfolded)",
  31931. image: {
  31932. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31933. }
  31934. },
  31935. wings: {
  31936. height: math.unit(43, "feet"),
  31937. name: "Wings",
  31938. image: {
  31939. source: "./media/characters/irb'iiritaahn/wings.svg"
  31940. }
  31941. },
  31942. },
  31943. [
  31944. {
  31945. name: "Macro",
  31946. height: math.unit(50 + 9/12, "feet"),
  31947. default: true
  31948. },
  31949. ]
  31950. ))
  31951. characterMakers.push(() => makeCharacter(
  31952. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31953. {
  31954. front: {
  31955. height: math.unit(205, "cm"),
  31956. weight: math.unit(102, "kg"),
  31957. name: "Front",
  31958. image: {
  31959. source: "./media/characters/irbisgreif/front.svg",
  31960. extra: 785/706,
  31961. bottom: 13/798
  31962. }
  31963. },
  31964. back: {
  31965. height: math.unit(205, "cm"),
  31966. weight: math.unit(102, "kg"),
  31967. name: "Back",
  31968. image: {
  31969. source: "./media/characters/irbisgreif/back.svg",
  31970. extra: 713/701,
  31971. bottom: 26/739
  31972. }
  31973. },
  31974. frontDressed: {
  31975. height: math.unit(216, "cm"),
  31976. weight: math.unit(102, "kg"),
  31977. name: "Front-dressed",
  31978. image: {
  31979. source: "./media/characters/irbisgreif/front-dressed.svg",
  31980. extra: 902/776,
  31981. bottom: 14/916
  31982. }
  31983. },
  31984. sideDressed: {
  31985. height: math.unit(195, "cm"),
  31986. weight: math.unit(102, "kg"),
  31987. name: "Side-dressed",
  31988. image: {
  31989. source: "./media/characters/irbisgreif/side-dressed.svg",
  31990. extra: 788/688,
  31991. bottom: 21/809
  31992. }
  31993. },
  31994. backDressed: {
  31995. height: math.unit(216, "cm"),
  31996. weight: math.unit(102, "kg"),
  31997. name: "Back-dressed",
  31998. image: {
  31999. source: "./media/characters/irbisgreif/back-dressed.svg",
  32000. extra: 901/783,
  32001. bottom: 10/911
  32002. }
  32003. },
  32004. dick: {
  32005. height: math.unit(0.49, "feet"),
  32006. name: "Dick",
  32007. image: {
  32008. source: "./media/characters/irbisgreif/dick.svg"
  32009. }
  32010. },
  32011. wingTop: {
  32012. height: math.unit(1.93 , "feet"),
  32013. name: "Wing-top",
  32014. image: {
  32015. source: "./media/characters/irbisgreif/wing-top.svg"
  32016. }
  32017. },
  32018. wingBottom: {
  32019. height: math.unit(1.93 , "feet"),
  32020. name: "Wing-bottom",
  32021. image: {
  32022. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32023. }
  32024. },
  32025. },
  32026. [
  32027. {
  32028. name: "Normal",
  32029. height: math.unit(216, "cm"),
  32030. default: true
  32031. },
  32032. ]
  32033. ))
  32034. characterMakers.push(() => makeCharacter(
  32035. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32036. {
  32037. front: {
  32038. height: math.unit(6, "feet"),
  32039. weight: math.unit(150, "lb"),
  32040. name: "Front",
  32041. image: {
  32042. source: "./media/characters/pride/front.svg",
  32043. extra: 1299/1230,
  32044. bottom: 18/1317
  32045. }
  32046. },
  32047. },
  32048. [
  32049. {
  32050. name: "Normal",
  32051. height: math.unit(7, "feet")
  32052. },
  32053. {
  32054. name: "Mini-macro",
  32055. height: math.unit(11, "feet")
  32056. },
  32057. {
  32058. name: "Macro",
  32059. height: math.unit(15, "meters"),
  32060. default: true
  32061. },
  32062. {
  32063. name: "Macro+",
  32064. height: math.unit(40, "meters")
  32065. },
  32066. ]
  32067. ))
  32068. characterMakers.push(() => makeCharacter(
  32069. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32070. {
  32071. front: {
  32072. height: math.unit(4 + 2 / 12, "feet"),
  32073. weight: math.unit(95, "lb"),
  32074. name: "Front",
  32075. image: {
  32076. source: "./media/characters/vaelophis-nyx/front.svg",
  32077. extra: 2532/2330,
  32078. bottom: 0/2532
  32079. }
  32080. },
  32081. back: {
  32082. height: math.unit(4 + 2 / 12, "feet"),
  32083. weight: math.unit(95, "lb"),
  32084. name: "Back",
  32085. image: {
  32086. source: "./media/characters/vaelophis-nyx/back.svg",
  32087. extra: 2484/2361,
  32088. bottom: 0/2484
  32089. }
  32090. },
  32091. feralSide: {
  32092. height: math.unit(2 + 1/12, "feet"),
  32093. weight: math.unit(20, "lb"),
  32094. name: "Feral (Side)",
  32095. image: {
  32096. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32097. extra: 1721/1581,
  32098. bottom: 70/1791
  32099. }
  32100. },
  32101. feralLazing: {
  32102. height: math.unit(1.08, "feet"),
  32103. weight: math.unit(20, "lb"),
  32104. name: "Feral (Lazing)",
  32105. image: {
  32106. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32107. extra: 822/822,
  32108. bottom: 248/1070
  32109. }
  32110. },
  32111. ear: {
  32112. height: math.unit(0.416, "feet"),
  32113. name: "Ear",
  32114. image: {
  32115. source: "./media/characters/vaelophis-nyx/ear.svg"
  32116. }
  32117. },
  32118. eye: {
  32119. height: math.unit(0.0748, "feet"),
  32120. name: "Eye",
  32121. image: {
  32122. source: "./media/characters/vaelophis-nyx/eye.svg"
  32123. }
  32124. },
  32125. mouth: {
  32126. height: math.unit(0.378, "feet"),
  32127. name: "Mouth",
  32128. image: {
  32129. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32130. }
  32131. },
  32132. spade: {
  32133. height: math.unit(0.55, "feet"),
  32134. name: "Spade",
  32135. image: {
  32136. source: "./media/characters/vaelophis-nyx/spade.svg"
  32137. }
  32138. },
  32139. },
  32140. [
  32141. {
  32142. name: "Normal",
  32143. height: math.unit(4 + 2/12, "feet"),
  32144. default: true
  32145. },
  32146. ]
  32147. ))
  32148. characterMakers.push(() => makeCharacter(
  32149. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32150. {
  32151. front: {
  32152. height: math.unit(7, "feet"),
  32153. weight: math.unit(231, "lb"),
  32154. name: "Front",
  32155. image: {
  32156. source: "./media/characters/flux/front.svg",
  32157. extra: 919/871,
  32158. bottom: 0/919
  32159. }
  32160. },
  32161. back: {
  32162. height: math.unit(7, "feet"),
  32163. weight: math.unit(231, "lb"),
  32164. name: "Back",
  32165. image: {
  32166. source: "./media/characters/flux/back.svg",
  32167. extra: 1040/992,
  32168. bottom: 0/1040
  32169. }
  32170. },
  32171. frontDressed: {
  32172. height: math.unit(7, "feet"),
  32173. weight: math.unit(231, "lb"),
  32174. name: "Front (Dressed)",
  32175. image: {
  32176. source: "./media/characters/flux/front-dressed.svg",
  32177. extra: 919/871,
  32178. bottom: 0/919
  32179. }
  32180. },
  32181. feralSide: {
  32182. height: math.unit(5, "feet"),
  32183. weight: math.unit(150, "lb"),
  32184. name: "Feral (Side)",
  32185. image: {
  32186. source: "./media/characters/flux/feral-side.svg",
  32187. extra: 598/528,
  32188. bottom: 28/626
  32189. }
  32190. },
  32191. head: {
  32192. height: math.unit(1.585, "feet"),
  32193. name: "Head",
  32194. image: {
  32195. source: "./media/characters/flux/head.svg"
  32196. }
  32197. },
  32198. headSide: {
  32199. height: math.unit(1.74, "feet"),
  32200. name: "Head (Side)",
  32201. image: {
  32202. source: "./media/characters/flux/head-side.svg"
  32203. }
  32204. },
  32205. headSideFire: {
  32206. height: math.unit(1.76, "feet"),
  32207. name: "Head (Side, Fire)",
  32208. image: {
  32209. source: "./media/characters/flux/head-side-fire.svg"
  32210. }
  32211. },
  32212. },
  32213. [
  32214. {
  32215. name: "Normal",
  32216. height: math.unit(7, "feet"),
  32217. default: true
  32218. },
  32219. ]
  32220. ))
  32221. characterMakers.push(() => makeCharacter(
  32222. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32223. {
  32224. front: {
  32225. height: math.unit(9, "feet"),
  32226. weight: math.unit(1012, "lb"),
  32227. name: "Front",
  32228. image: {
  32229. source: "./media/characters/ulfra-lupae/front.svg",
  32230. extra: 1083/1011,
  32231. bottom: 67/1150
  32232. }
  32233. },
  32234. },
  32235. [
  32236. {
  32237. name: "Micro",
  32238. height: math.unit(6, "inches")
  32239. },
  32240. {
  32241. name: "Socializing",
  32242. height: math.unit(6 + 5/12, "feet")
  32243. },
  32244. {
  32245. name: "Normal",
  32246. height: math.unit(9, "feet"),
  32247. default: true
  32248. },
  32249. {
  32250. name: "Macro",
  32251. height: math.unit(150, "feet")
  32252. },
  32253. ]
  32254. ))
  32255. characterMakers.push(() => makeCharacter(
  32256. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32257. {
  32258. front: {
  32259. height: math.unit(5 + 2/12, "feet"),
  32260. weight: math.unit(120, "lb"),
  32261. name: "Front",
  32262. image: {
  32263. source: "./media/characters/timber/front.svg",
  32264. extra: 2814/2705,
  32265. bottom: 181/2995
  32266. }
  32267. },
  32268. },
  32269. [
  32270. {
  32271. name: "Normal",
  32272. height: math.unit(5 + 2/12, "feet"),
  32273. default: true
  32274. },
  32275. ]
  32276. ))
  32277. characterMakers.push(() => makeCharacter(
  32278. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32279. {
  32280. front: {
  32281. height: math.unit(9, "feet"),
  32282. name: "Front",
  32283. image: {
  32284. source: "./media/characters/nicki/front.svg",
  32285. extra: 1240/990,
  32286. bottom: 45/1285
  32287. },
  32288. form: "anthro",
  32289. default: true
  32290. },
  32291. side: {
  32292. height: math.unit(9, "feet"),
  32293. name: "Side",
  32294. image: {
  32295. source: "./media/characters/nicki/side.svg",
  32296. extra: 1047/973,
  32297. bottom: 61/1108
  32298. },
  32299. form: "anthro"
  32300. },
  32301. back: {
  32302. height: math.unit(9, "feet"),
  32303. name: "Back",
  32304. image: {
  32305. source: "./media/characters/nicki/back.svg",
  32306. extra: 1006/965,
  32307. bottom: 39/1045
  32308. },
  32309. form: "anthro"
  32310. },
  32311. taur: {
  32312. height: math.unit(15, "feet"),
  32313. name: "Taur",
  32314. image: {
  32315. source: "./media/characters/nicki/taur.svg",
  32316. extra: 1592/1347,
  32317. bottom: 0/1592
  32318. },
  32319. form: "taur",
  32320. default: true
  32321. },
  32322. },
  32323. [
  32324. {
  32325. name: "Normal",
  32326. height: math.unit(9, "feet"),
  32327. form: "anthro",
  32328. default: true
  32329. },
  32330. {
  32331. name: "Normal",
  32332. height: math.unit(15, "feet"),
  32333. form: "taur",
  32334. default: true
  32335. }
  32336. ],
  32337. {
  32338. "anthro": {
  32339. name: "Anthro",
  32340. default: true
  32341. },
  32342. "taur": {
  32343. name: "Taur"
  32344. }
  32345. }
  32346. ))
  32347. characterMakers.push(() => makeCharacter(
  32348. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32349. {
  32350. front: {
  32351. height: math.unit(7 + 10/12, "feet"),
  32352. weight: math.unit(3.5, "tons"),
  32353. name: "Front",
  32354. image: {
  32355. source: "./media/characters/lee/front.svg",
  32356. extra: 1773/1615,
  32357. bottom: 86/1859
  32358. }
  32359. },
  32360. hand: {
  32361. height: math.unit(1.78, "feet"),
  32362. name: "Hand",
  32363. image: {
  32364. source: "./media/characters/lee/hand.svg"
  32365. }
  32366. },
  32367. maw: {
  32368. height: math.unit(1.18, "feet"),
  32369. name: "Maw",
  32370. image: {
  32371. source: "./media/characters/lee/maw.svg"
  32372. }
  32373. },
  32374. },
  32375. [
  32376. {
  32377. name: "Normal",
  32378. height: math.unit(7 + 10/12, "feet"),
  32379. default: true
  32380. },
  32381. ]
  32382. ))
  32383. characterMakers.push(() => makeCharacter(
  32384. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32385. {
  32386. front: {
  32387. height: math.unit(9, "feet"),
  32388. name: "Front",
  32389. image: {
  32390. source: "./media/characters/guti/front.svg",
  32391. extra: 4551/4355,
  32392. bottom: 123/4674
  32393. }
  32394. },
  32395. tongue: {
  32396. height: math.unit(1, "feet"),
  32397. name: "Tongue",
  32398. image: {
  32399. source: "./media/characters/guti/tongue.svg"
  32400. }
  32401. },
  32402. paw: {
  32403. height: math.unit(1.18, "feet"),
  32404. name: "Paw",
  32405. image: {
  32406. source: "./media/characters/guti/paw.svg"
  32407. }
  32408. },
  32409. },
  32410. [
  32411. {
  32412. name: "Normal",
  32413. height: math.unit(9, "feet"),
  32414. default: true
  32415. },
  32416. ]
  32417. ))
  32418. characterMakers.push(() => makeCharacter(
  32419. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32420. {
  32421. side: {
  32422. height: math.unit(5, "meters"),
  32423. name: "Side",
  32424. image: {
  32425. source: "./media/characters/vesper/side.svg",
  32426. extra: 1605/1518,
  32427. bottom: 0/1605
  32428. }
  32429. },
  32430. },
  32431. [
  32432. {
  32433. name: "Small",
  32434. height: math.unit(5, "meters")
  32435. },
  32436. {
  32437. name: "Sage",
  32438. height: math.unit(100, "meters"),
  32439. default: true
  32440. },
  32441. {
  32442. name: "Fun Size",
  32443. height: math.unit(600, "meters")
  32444. },
  32445. {
  32446. name: "Goddess",
  32447. height: math.unit(20000, "km")
  32448. },
  32449. {
  32450. name: "Maximum",
  32451. height: math.unit(5, "galaxies")
  32452. },
  32453. ]
  32454. ))
  32455. characterMakers.push(() => makeCharacter(
  32456. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32457. {
  32458. front: {
  32459. height: math.unit(6 + 3/12, "feet"),
  32460. weight: math.unit(190, "lb"),
  32461. name: "Front",
  32462. image: {
  32463. source: "./media/characters/gawain/front.svg",
  32464. extra: 2222/2139,
  32465. bottom: 90/2312
  32466. }
  32467. },
  32468. back: {
  32469. height: math.unit(6 + 3/12, "feet"),
  32470. weight: math.unit(190, "lb"),
  32471. name: "Back",
  32472. image: {
  32473. source: "./media/characters/gawain/back.svg",
  32474. extra: 2199/2111,
  32475. bottom: 73/2272
  32476. }
  32477. },
  32478. },
  32479. [
  32480. {
  32481. name: "Normal",
  32482. height: math.unit(6 + 3/12, "feet"),
  32483. default: true
  32484. },
  32485. ]
  32486. ))
  32487. characterMakers.push(() => makeCharacter(
  32488. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32489. {
  32490. side: {
  32491. height: math.unit(3.5, "meters"),
  32492. weight: math.unit(16000, "lb"),
  32493. name: "Side",
  32494. image: {
  32495. source: "./media/characters/dascalti/side.svg",
  32496. extra: 392/273,
  32497. bottom: 47/439
  32498. }
  32499. },
  32500. breath: {
  32501. height: math.unit(7.4, "feet"),
  32502. name: "Breath",
  32503. image: {
  32504. source: "./media/characters/dascalti/breath.svg"
  32505. }
  32506. },
  32507. fed: {
  32508. height: math.unit(3.6, "meters"),
  32509. weight: math.unit(16000, "lb"),
  32510. name: "Fed",
  32511. image: {
  32512. source: "./media/characters/dascalti/fed.svg",
  32513. extra: 1419/820,
  32514. bottom: 95/1514
  32515. }
  32516. },
  32517. },
  32518. [
  32519. {
  32520. name: "Normal",
  32521. height: math.unit(3.5, "meters"),
  32522. default: true
  32523. },
  32524. ]
  32525. ))
  32526. characterMakers.push(() => makeCharacter(
  32527. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32528. {
  32529. front: {
  32530. height: math.unit(3 + 5/12, "feet"),
  32531. name: "Front",
  32532. image: {
  32533. source: "./media/characters/mauve/front.svg",
  32534. extra: 1126/1033,
  32535. bottom: 65/1191
  32536. }
  32537. },
  32538. side: {
  32539. height: math.unit(3 + 5/12, "feet"),
  32540. name: "Side",
  32541. image: {
  32542. source: "./media/characters/mauve/side.svg",
  32543. extra: 1089/1001,
  32544. bottom: 29/1118
  32545. }
  32546. },
  32547. back: {
  32548. height: math.unit(3 + 5/12, "feet"),
  32549. name: "Back",
  32550. image: {
  32551. source: "./media/characters/mauve/back.svg",
  32552. extra: 1173/1053,
  32553. bottom: 109/1282
  32554. }
  32555. },
  32556. },
  32557. [
  32558. {
  32559. name: "Normal",
  32560. height: math.unit(3 + 5/12, "feet"),
  32561. default: true
  32562. },
  32563. ]
  32564. ))
  32565. characterMakers.push(() => makeCharacter(
  32566. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32567. {
  32568. front: {
  32569. height: math.unit(6 + 3/12, "feet"),
  32570. weight: math.unit(430, "lb"),
  32571. name: "Front",
  32572. image: {
  32573. source: "./media/characters/carlos/front.svg",
  32574. extra: 1964/1913,
  32575. bottom: 70/2034
  32576. }
  32577. },
  32578. },
  32579. [
  32580. {
  32581. name: "Normal",
  32582. height: math.unit(6 + 3/12, "feet"),
  32583. default: true
  32584. },
  32585. ]
  32586. ))
  32587. characterMakers.push(() => makeCharacter(
  32588. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32589. {
  32590. back: {
  32591. height: math.unit(5 + 10/12, "feet"),
  32592. weight: math.unit(200, "lb"),
  32593. name: "Back",
  32594. image: {
  32595. source: "./media/characters/jax/back.svg",
  32596. extra: 764/739,
  32597. bottom: 25/789
  32598. }
  32599. },
  32600. },
  32601. [
  32602. {
  32603. name: "Normal",
  32604. height: math.unit(5 + 10/12, "feet"),
  32605. default: true
  32606. },
  32607. ]
  32608. ))
  32609. characterMakers.push(() => makeCharacter(
  32610. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32611. {
  32612. front: {
  32613. height: math.unit(8, "feet"),
  32614. weight: math.unit(250, "lb"),
  32615. name: "Front",
  32616. image: {
  32617. source: "./media/characters/eikthynir/front.svg",
  32618. extra: 1332/1166,
  32619. bottom: 82/1414
  32620. }
  32621. },
  32622. back: {
  32623. height: math.unit(8, "feet"),
  32624. weight: math.unit(250, "lb"),
  32625. name: "Back",
  32626. image: {
  32627. source: "./media/characters/eikthynir/back.svg",
  32628. extra: 1342/1190,
  32629. bottom: 19/1361
  32630. }
  32631. },
  32632. dick: {
  32633. height: math.unit(2.35, "feet"),
  32634. name: "Dick",
  32635. image: {
  32636. source: "./media/characters/eikthynir/dick.svg"
  32637. }
  32638. },
  32639. },
  32640. [
  32641. {
  32642. name: "Normal",
  32643. height: math.unit(8, "feet"),
  32644. default: true
  32645. },
  32646. ]
  32647. ))
  32648. characterMakers.push(() => makeCharacter(
  32649. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32650. {
  32651. front: {
  32652. height: math.unit(99, "meters"),
  32653. weight: math.unit(13000, "tons"),
  32654. name: "Front",
  32655. image: {
  32656. source: "./media/characters/zlmos/front.svg",
  32657. extra: 2202/1992,
  32658. bottom: 315/2517
  32659. }
  32660. },
  32661. },
  32662. [
  32663. {
  32664. name: "Macro",
  32665. height: math.unit(99, "meters"),
  32666. default: true
  32667. },
  32668. ]
  32669. ))
  32670. characterMakers.push(() => makeCharacter(
  32671. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32672. {
  32673. front: {
  32674. height: math.unit(6 + 5/12, "feet"),
  32675. name: "Front",
  32676. image: {
  32677. source: "./media/characters/purri/front.svg",
  32678. extra: 1698/1610,
  32679. bottom: 32/1730
  32680. }
  32681. },
  32682. frontAlt: {
  32683. height: math.unit(6 + 5/12, "feet"),
  32684. name: "Front (Alt)",
  32685. image: {
  32686. source: "./media/characters/purri/front-alt.svg",
  32687. extra: 450/420,
  32688. bottom: 26/476
  32689. }
  32690. },
  32691. boots: {
  32692. height: math.unit(5.5, "feet"),
  32693. name: "Boots",
  32694. image: {
  32695. source: "./media/characters/purri/boots.svg",
  32696. extra: 905/853,
  32697. bottom: 18/923
  32698. }
  32699. },
  32700. lying: {
  32701. height: math.unit(2, "feet"),
  32702. name: "Lying",
  32703. image: {
  32704. source: "./media/characters/purri/lying.svg",
  32705. extra: 940/843,
  32706. bottom: 146/1086
  32707. }
  32708. },
  32709. devious: {
  32710. height: math.unit(1.77, "feet"),
  32711. name: "Devious",
  32712. image: {
  32713. source: "./media/characters/purri/devious.svg",
  32714. extra: 1440/1155,
  32715. bottom: 147/1587
  32716. }
  32717. },
  32718. bean: {
  32719. height: math.unit(1.94, "feet"),
  32720. name: "Bean",
  32721. image: {
  32722. source: "./media/characters/purri/bean.svg"
  32723. }
  32724. },
  32725. },
  32726. [
  32727. {
  32728. name: "Micro",
  32729. height: math.unit(1, "mm")
  32730. },
  32731. {
  32732. name: "Normal",
  32733. height: math.unit(6 + 5/12, "feet"),
  32734. default: true
  32735. },
  32736. {
  32737. name: "Macro :3c",
  32738. height: math.unit(2, "miles")
  32739. },
  32740. ]
  32741. ))
  32742. characterMakers.push(() => makeCharacter(
  32743. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32744. {
  32745. front: {
  32746. height: math.unit(6 + 2/12, "feet"),
  32747. weight: math.unit(250, "lb"),
  32748. name: "Front",
  32749. image: {
  32750. source: "./media/characters/moonlight/front.svg",
  32751. extra: 1044/908,
  32752. bottom: 56/1100
  32753. }
  32754. },
  32755. feral: {
  32756. height: math.unit(3 + 1/12, "feet"),
  32757. weight: math.unit(50, "kg"),
  32758. name: "Feral",
  32759. image: {
  32760. source: "./media/characters/moonlight/feral.svg",
  32761. extra: 3705/2791,
  32762. bottom: 145/3850
  32763. }
  32764. },
  32765. paw: {
  32766. height: math.unit(1, "feet"),
  32767. name: "Paw",
  32768. image: {
  32769. source: "./media/characters/moonlight/paw.svg"
  32770. }
  32771. },
  32772. paws: {
  32773. height: math.unit(0.98, "feet"),
  32774. name: "Paws",
  32775. image: {
  32776. source: "./media/characters/moonlight/paws.svg",
  32777. extra: 939/939,
  32778. bottom: 50/989
  32779. }
  32780. },
  32781. mouth: {
  32782. height: math.unit(0.48, "feet"),
  32783. name: "Mouth",
  32784. image: {
  32785. source: "./media/characters/moonlight/mouth.svg"
  32786. }
  32787. },
  32788. dick: {
  32789. height: math.unit(1.46, "feet"),
  32790. name: "Dick",
  32791. image: {
  32792. source: "./media/characters/moonlight/dick.svg"
  32793. }
  32794. },
  32795. },
  32796. [
  32797. {
  32798. name: "Normal",
  32799. height: math.unit(6 + 2/12, "feet"),
  32800. default: true
  32801. },
  32802. {
  32803. name: "Macro",
  32804. height: math.unit(300, "feet")
  32805. },
  32806. {
  32807. name: "Macro+",
  32808. height: math.unit(1, "mile")
  32809. },
  32810. {
  32811. name: "Mt. Moon",
  32812. height: math.unit(5, "miles")
  32813. },
  32814. {
  32815. name: "Megamacro",
  32816. height: math.unit(15, "miles")
  32817. },
  32818. ]
  32819. ))
  32820. characterMakers.push(() => makeCharacter(
  32821. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32822. {
  32823. back: {
  32824. height: math.unit(6, "feet"),
  32825. weight: math.unit(150, "lb"),
  32826. name: "Back",
  32827. image: {
  32828. source: "./media/characters/sylen/back.svg",
  32829. extra: 1335/1273,
  32830. bottom: 107/1442
  32831. }
  32832. },
  32833. },
  32834. [
  32835. {
  32836. name: "Normal",
  32837. height: math.unit(5 + 5/12, "feet")
  32838. },
  32839. {
  32840. name: "Megamacro",
  32841. height: math.unit(3, "miles"),
  32842. default: true
  32843. },
  32844. ]
  32845. ))
  32846. characterMakers.push(() => makeCharacter(
  32847. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32848. {
  32849. front: {
  32850. height: math.unit(6, "feet"),
  32851. weight: math.unit(190, "lb"),
  32852. name: "Front",
  32853. image: {
  32854. source: "./media/characters/huttser/front.svg",
  32855. extra: 1152/1058,
  32856. bottom: 23/1175
  32857. }
  32858. },
  32859. side: {
  32860. height: math.unit(6, "feet"),
  32861. weight: math.unit(190, "lb"),
  32862. name: "Side",
  32863. image: {
  32864. source: "./media/characters/huttser/side.svg",
  32865. extra: 1174/1065,
  32866. bottom: 18/1192
  32867. }
  32868. },
  32869. back: {
  32870. height: math.unit(6, "feet"),
  32871. weight: math.unit(190, "lb"),
  32872. name: "Back",
  32873. image: {
  32874. source: "./media/characters/huttser/back.svg",
  32875. extra: 1158/1056,
  32876. bottom: 12/1170
  32877. }
  32878. },
  32879. },
  32880. [
  32881. ]
  32882. ))
  32883. characterMakers.push(() => makeCharacter(
  32884. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32885. {
  32886. side: {
  32887. height: math.unit(12 + 9/12, "feet"),
  32888. weight: math.unit(15000, "lb"),
  32889. name: "Side",
  32890. image: {
  32891. source: "./media/characters/faan/side.svg",
  32892. extra: 2747/2697,
  32893. bottom: 0/2747
  32894. }
  32895. },
  32896. front: {
  32897. height: math.unit(12 + 9/12, "feet"),
  32898. weight: math.unit(15000, "lb"),
  32899. name: "Front",
  32900. image: {
  32901. source: "./media/characters/faan/front.svg",
  32902. extra: 607/571,
  32903. bottom: 24/631
  32904. }
  32905. },
  32906. head: {
  32907. height: math.unit(2.85, "feet"),
  32908. name: "Head",
  32909. image: {
  32910. source: "./media/characters/faan/head.svg"
  32911. }
  32912. },
  32913. headAlt: {
  32914. height: math.unit(3.13, "feet"),
  32915. name: "Head-alt",
  32916. image: {
  32917. source: "./media/characters/faan/head-alt.svg"
  32918. }
  32919. },
  32920. },
  32921. [
  32922. {
  32923. name: "Normal",
  32924. height: math.unit(12 + 9/12, "feet"),
  32925. default: true
  32926. },
  32927. ]
  32928. ))
  32929. characterMakers.push(() => makeCharacter(
  32930. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32931. {
  32932. front: {
  32933. height: math.unit(6, "feet"),
  32934. weight: math.unit(300, "lb"),
  32935. name: "Front",
  32936. image: {
  32937. source: "./media/characters/tanio/front.svg",
  32938. extra: 711/673,
  32939. bottom: 25/736
  32940. }
  32941. },
  32942. },
  32943. [
  32944. {
  32945. name: "Normal",
  32946. height: math.unit(6, "feet"),
  32947. default: true
  32948. },
  32949. ]
  32950. ))
  32951. characterMakers.push(() => makeCharacter(
  32952. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32953. {
  32954. front: {
  32955. height: math.unit(3, "inches"),
  32956. name: "Front",
  32957. image: {
  32958. source: "./media/characters/noboru/front.svg",
  32959. extra: 1039/932,
  32960. bottom: 18/1057
  32961. }
  32962. },
  32963. },
  32964. [
  32965. {
  32966. name: "Micro",
  32967. height: math.unit(3, "inches"),
  32968. default: true
  32969. },
  32970. ]
  32971. ))
  32972. characterMakers.push(() => makeCharacter(
  32973. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32974. {
  32975. front: {
  32976. height: math.unit(1.85, "meters"),
  32977. weight: math.unit(80, "kg"),
  32978. name: "Front",
  32979. image: {
  32980. source: "./media/characters/daniel-barrett/front.svg",
  32981. extra: 355/337,
  32982. bottom: 9/364
  32983. }
  32984. },
  32985. },
  32986. [
  32987. {
  32988. name: "Pico",
  32989. height: math.unit(0.0433, "mm")
  32990. },
  32991. {
  32992. name: "Nano",
  32993. height: math.unit(1.5, "mm")
  32994. },
  32995. {
  32996. name: "Micro",
  32997. height: math.unit(5.3, "cm"),
  32998. default: true
  32999. },
  33000. {
  33001. name: "Normal",
  33002. height: math.unit(1.85, "meters")
  33003. },
  33004. {
  33005. name: "Macro",
  33006. height: math.unit(64.7, "meters")
  33007. },
  33008. {
  33009. name: "Megamacro",
  33010. height: math.unit(2.26, "km")
  33011. },
  33012. {
  33013. name: "Gigamacro",
  33014. height: math.unit(79, "km")
  33015. },
  33016. {
  33017. name: "Teramacro",
  33018. height: math.unit(2765, "km")
  33019. },
  33020. {
  33021. name: "Petamacro",
  33022. height: math.unit(96678, "km")
  33023. },
  33024. ]
  33025. ))
  33026. characterMakers.push(() => makeCharacter(
  33027. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33028. {
  33029. front: {
  33030. height: math.unit(30, "meters"),
  33031. weight: math.unit(400, "tons"),
  33032. name: "Front",
  33033. image: {
  33034. source: "./media/characters/zeel/front.svg",
  33035. extra: 2599/2599,
  33036. bottom: 226/2825
  33037. }
  33038. },
  33039. },
  33040. [
  33041. {
  33042. name: "Macro",
  33043. height: math.unit(30, "meters"),
  33044. default: true
  33045. },
  33046. ]
  33047. ))
  33048. characterMakers.push(() => makeCharacter(
  33049. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33050. {
  33051. front: {
  33052. height: math.unit(6 + 7/12, "feet"),
  33053. weight: math.unit(210, "lb"),
  33054. name: "Front",
  33055. image: {
  33056. source: "./media/characters/tarn/front.svg",
  33057. extra: 3517/3220,
  33058. bottom: 91/3608
  33059. }
  33060. },
  33061. back: {
  33062. height: math.unit(6 + 7/12, "feet"),
  33063. weight: math.unit(210, "lb"),
  33064. name: "Back",
  33065. image: {
  33066. source: "./media/characters/tarn/back.svg",
  33067. extra: 3566/3241,
  33068. bottom: 34/3600
  33069. }
  33070. },
  33071. dick: {
  33072. height: math.unit(1.65, "feet"),
  33073. name: "Dick",
  33074. image: {
  33075. source: "./media/characters/tarn/dick.svg"
  33076. }
  33077. },
  33078. paw: {
  33079. height: math.unit(1.80, "feet"),
  33080. name: "Paw",
  33081. image: {
  33082. source: "./media/characters/tarn/paw.svg"
  33083. }
  33084. },
  33085. tongue: {
  33086. height: math.unit(0.97, "feet"),
  33087. name: "Tongue",
  33088. image: {
  33089. source: "./media/characters/tarn/tongue.svg"
  33090. }
  33091. },
  33092. },
  33093. [
  33094. {
  33095. name: "Micro",
  33096. height: math.unit(4, "inches")
  33097. },
  33098. {
  33099. name: "Normal",
  33100. height: math.unit(6 + 7/12, "feet"),
  33101. default: true
  33102. },
  33103. {
  33104. name: "Macro",
  33105. height: math.unit(300, "feet")
  33106. },
  33107. ]
  33108. ))
  33109. characterMakers.push(() => makeCharacter(
  33110. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33111. {
  33112. front: {
  33113. height: math.unit(5 + 7/12, "feet"),
  33114. weight: math.unit(80, "kg"),
  33115. name: "Front",
  33116. image: {
  33117. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33118. extra: 3023/2865,
  33119. bottom: 33/3056
  33120. }
  33121. },
  33122. back: {
  33123. height: math.unit(5 + 7/12, "feet"),
  33124. weight: math.unit(80, "kg"),
  33125. name: "Back",
  33126. image: {
  33127. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33128. extra: 3020/2886,
  33129. bottom: 30/3050
  33130. }
  33131. },
  33132. dick: {
  33133. height: math.unit(0.98, "feet"),
  33134. name: "Dick",
  33135. image: {
  33136. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33137. }
  33138. },
  33139. anatomy: {
  33140. height: math.unit(2.86, "feet"),
  33141. name: "Anatomy",
  33142. image: {
  33143. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33144. }
  33145. },
  33146. },
  33147. [
  33148. {
  33149. name: "Really Small",
  33150. height: math.unit(2, "inches")
  33151. },
  33152. {
  33153. name: "Micro",
  33154. height: math.unit(5.583, "inches")
  33155. },
  33156. {
  33157. name: "Normal",
  33158. height: math.unit(5 + 7/12, "feet"),
  33159. default: true
  33160. },
  33161. {
  33162. name: "Macro",
  33163. height: math.unit(67, "feet")
  33164. },
  33165. {
  33166. name: "Megamacro",
  33167. height: math.unit(134, "feet")
  33168. },
  33169. ]
  33170. ))
  33171. characterMakers.push(() => makeCharacter(
  33172. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33173. {
  33174. front: {
  33175. height: math.unit(9, "feet"),
  33176. weight: math.unit(120, "lb"),
  33177. name: "Front",
  33178. image: {
  33179. source: "./media/characters/sally/front.svg",
  33180. extra: 1506/1349,
  33181. bottom: 66/1572
  33182. }
  33183. },
  33184. },
  33185. [
  33186. {
  33187. name: "Normal",
  33188. height: math.unit(9, "feet"),
  33189. default: true
  33190. },
  33191. ]
  33192. ))
  33193. characterMakers.push(() => makeCharacter(
  33194. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33195. {
  33196. front: {
  33197. height: math.unit(8, "feet"),
  33198. weight: math.unit(900, "lb"),
  33199. name: "Front",
  33200. image: {
  33201. source: "./media/characters/owen/front.svg",
  33202. extra: 1761/1657,
  33203. bottom: 74/1835
  33204. }
  33205. },
  33206. side: {
  33207. height: math.unit(8, "feet"),
  33208. weight: math.unit(900, "lb"),
  33209. name: "Side",
  33210. image: {
  33211. source: "./media/characters/owen/side.svg",
  33212. extra: 1797/1734,
  33213. bottom: 30/1827
  33214. }
  33215. },
  33216. back: {
  33217. height: math.unit(8, "feet"),
  33218. weight: math.unit(900, "lb"),
  33219. name: "Back",
  33220. image: {
  33221. source: "./media/characters/owen/back.svg",
  33222. extra: 1796/1706,
  33223. bottom: 59/1855
  33224. }
  33225. },
  33226. maw: {
  33227. height: math.unit(1.76, "feet"),
  33228. name: "Maw",
  33229. image: {
  33230. source: "./media/characters/owen/maw.svg"
  33231. }
  33232. },
  33233. },
  33234. [
  33235. {
  33236. name: "Normal",
  33237. height: math.unit(8, "feet"),
  33238. default: true
  33239. },
  33240. ]
  33241. ))
  33242. characterMakers.push(() => makeCharacter(
  33243. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33244. {
  33245. front: {
  33246. height: math.unit(4, "feet"),
  33247. weight: math.unit(400, "lb"),
  33248. name: "Front",
  33249. image: {
  33250. source: "./media/characters/ryth/front.svg",
  33251. extra: 1920/1748,
  33252. bottom: 42/1962
  33253. }
  33254. },
  33255. back: {
  33256. height: math.unit(4, "feet"),
  33257. weight: math.unit(400, "lb"),
  33258. name: "Back",
  33259. image: {
  33260. source: "./media/characters/ryth/back.svg",
  33261. extra: 1897/1690,
  33262. bottom: 89/1986
  33263. }
  33264. },
  33265. mouth: {
  33266. height: math.unit(1.39, "feet"),
  33267. name: "Mouth",
  33268. image: {
  33269. source: "./media/characters/ryth/mouth.svg"
  33270. }
  33271. },
  33272. tailmaw: {
  33273. height: math.unit(1.23, "feet"),
  33274. name: "Tailmaw",
  33275. image: {
  33276. source: "./media/characters/ryth/tailmaw.svg"
  33277. }
  33278. },
  33279. goia: {
  33280. height: math.unit(4, "meters"),
  33281. weight: math.unit(10800, "lb"),
  33282. name: "Goia",
  33283. image: {
  33284. source: "./media/characters/ryth/goia.svg",
  33285. extra: 745/640,
  33286. bottom: 107/852
  33287. }
  33288. },
  33289. goiaFront: {
  33290. height: math.unit(4, "meters"),
  33291. weight: math.unit(10800, "lb"),
  33292. name: "Goia (Front)",
  33293. image: {
  33294. source: "./media/characters/ryth/goia-front.svg",
  33295. extra: 750/586,
  33296. bottom: 114/864
  33297. }
  33298. },
  33299. goiaMaw: {
  33300. height: math.unit(5.55, "feet"),
  33301. name: "Goia Maw",
  33302. image: {
  33303. source: "./media/characters/ryth/goia-maw.svg"
  33304. }
  33305. },
  33306. goiaForepaw: {
  33307. height: math.unit(3.5, "feet"),
  33308. name: "Goia Forepaw",
  33309. image: {
  33310. source: "./media/characters/ryth/goia-forepaw.svg"
  33311. }
  33312. },
  33313. goiaHindpaw: {
  33314. height: math.unit(5.55, "feet"),
  33315. name: "Goia Hindpaw",
  33316. image: {
  33317. source: "./media/characters/ryth/goia-hindpaw.svg"
  33318. }
  33319. },
  33320. },
  33321. [
  33322. {
  33323. name: "Normal",
  33324. height: math.unit(4, "feet"),
  33325. default: true
  33326. },
  33327. ]
  33328. ))
  33329. characterMakers.push(() => makeCharacter(
  33330. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33331. {
  33332. front: {
  33333. height: math.unit(7, "feet"),
  33334. weight: math.unit(180, "lb"),
  33335. name: "Front",
  33336. image: {
  33337. source: "./media/characters/necrolance/front.svg",
  33338. extra: 1062/947,
  33339. bottom: 41/1103
  33340. }
  33341. },
  33342. back: {
  33343. height: math.unit(7, "feet"),
  33344. weight: math.unit(180, "lb"),
  33345. name: "Back",
  33346. image: {
  33347. source: "./media/characters/necrolance/back.svg",
  33348. extra: 1045/984,
  33349. bottom: 14/1059
  33350. }
  33351. },
  33352. wing: {
  33353. height: math.unit(2.67, "feet"),
  33354. name: "Wing",
  33355. image: {
  33356. source: "./media/characters/necrolance/wing.svg"
  33357. }
  33358. },
  33359. },
  33360. [
  33361. {
  33362. name: "Normal",
  33363. height: math.unit(7, "feet"),
  33364. default: true
  33365. },
  33366. ]
  33367. ))
  33368. characterMakers.push(() => makeCharacter(
  33369. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33370. {
  33371. front: {
  33372. height: math.unit(76, "meters"),
  33373. weight: math.unit(30000, "tons"),
  33374. name: "Front",
  33375. image: {
  33376. source: "./media/characters/tyler/front.svg",
  33377. extra: 1640/1640,
  33378. bottom: 114/1754
  33379. }
  33380. },
  33381. },
  33382. [
  33383. {
  33384. name: "Macro",
  33385. height: math.unit(76, "meters"),
  33386. default: true
  33387. },
  33388. ]
  33389. ))
  33390. characterMakers.push(() => makeCharacter(
  33391. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33392. {
  33393. front: {
  33394. height: math.unit(4 + 11/12, "feet"),
  33395. weight: math.unit(132, "lb"),
  33396. name: "Front",
  33397. image: {
  33398. source: "./media/characters/icey/front.svg",
  33399. extra: 2750/2550,
  33400. bottom: 33/2783
  33401. }
  33402. },
  33403. back: {
  33404. height: math.unit(4 + 11/12, "feet"),
  33405. weight: math.unit(132, "lb"),
  33406. name: "Back",
  33407. image: {
  33408. source: "./media/characters/icey/back.svg",
  33409. extra: 2624/2481,
  33410. bottom: 35/2659
  33411. }
  33412. },
  33413. },
  33414. [
  33415. {
  33416. name: "Normal",
  33417. height: math.unit(4 + 11/12, "feet"),
  33418. default: true
  33419. },
  33420. ]
  33421. ))
  33422. characterMakers.push(() => makeCharacter(
  33423. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33424. {
  33425. front: {
  33426. height: math.unit(100, "feet"),
  33427. weight: math.unit(0, "lb"),
  33428. name: "Front",
  33429. image: {
  33430. source: "./media/characters/smile/front.svg",
  33431. extra: 2983/2912,
  33432. bottom: 162/3145
  33433. }
  33434. },
  33435. back: {
  33436. height: math.unit(100, "feet"),
  33437. weight: math.unit(0, "lb"),
  33438. name: "Back",
  33439. image: {
  33440. source: "./media/characters/smile/back.svg",
  33441. extra: 3143/3031,
  33442. bottom: 91/3234
  33443. }
  33444. },
  33445. head: {
  33446. height: math.unit(26.3, "feet"),
  33447. weight: math.unit(0, "lb"),
  33448. name: "Head",
  33449. image: {
  33450. source: "./media/characters/smile/head.svg"
  33451. }
  33452. },
  33453. collar: {
  33454. height: math.unit(5.3, "feet"),
  33455. weight: math.unit(0, "lb"),
  33456. name: "Collar",
  33457. image: {
  33458. source: "./media/characters/smile/collar.svg"
  33459. }
  33460. },
  33461. },
  33462. [
  33463. {
  33464. name: "Macro",
  33465. height: math.unit(100, "feet"),
  33466. default: true
  33467. },
  33468. ]
  33469. ))
  33470. characterMakers.push(() => makeCharacter(
  33471. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33472. {
  33473. dragon: {
  33474. height: math.unit(26, "feet"),
  33475. weight: math.unit(36, "tons"),
  33476. name: "Dragon",
  33477. image: {
  33478. source: "./media/characters/arimphae/dragon.svg",
  33479. extra: 1574/983,
  33480. bottom: 357/1931
  33481. }
  33482. },
  33483. drake: {
  33484. height: math.unit(9, "feet"),
  33485. weight: math.unit(1.5, "tons"),
  33486. name: "Drake",
  33487. image: {
  33488. source: "./media/characters/arimphae/drake.svg",
  33489. extra: 1120/925,
  33490. bottom: 435/1555
  33491. }
  33492. },
  33493. },
  33494. [
  33495. {
  33496. name: "Small",
  33497. height: math.unit(26*5/9, "feet")
  33498. },
  33499. {
  33500. name: "Normal",
  33501. height: math.unit(26, "feet"),
  33502. default: true
  33503. },
  33504. ]
  33505. ))
  33506. characterMakers.push(() => makeCharacter(
  33507. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33508. {
  33509. front: {
  33510. height: math.unit(8 + 9/12, "feet"),
  33511. name: "Front",
  33512. image: {
  33513. source: "./media/characters/xander/front.svg",
  33514. extra: 1237/974,
  33515. bottom: 94/1331
  33516. }
  33517. },
  33518. },
  33519. [
  33520. {
  33521. name: "Normal",
  33522. height: math.unit(8 + 9/12, "feet"),
  33523. default: true
  33524. },
  33525. {
  33526. name: "Gaze Grabber",
  33527. height: math.unit(13 + 8/12, "feet")
  33528. },
  33529. {
  33530. name: "Jaw Dropper",
  33531. height: math.unit(27, "feet")
  33532. },
  33533. {
  33534. name: "Show Stopper",
  33535. height: math.unit(136, "feet")
  33536. },
  33537. {
  33538. name: "Superstar",
  33539. height: math.unit(1.9e6, "miles")
  33540. },
  33541. ]
  33542. ))
  33543. characterMakers.push(() => makeCharacter(
  33544. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33545. {
  33546. side: {
  33547. height: math.unit(2100, "feet"),
  33548. name: "Side",
  33549. image: {
  33550. source: "./media/characters/osiris/side.svg",
  33551. extra: 1105/939,
  33552. bottom: 167/1272
  33553. }
  33554. },
  33555. },
  33556. [
  33557. {
  33558. name: "Macro",
  33559. height: math.unit(2100, "feet"),
  33560. default: true
  33561. },
  33562. ]
  33563. ))
  33564. characterMakers.push(() => makeCharacter(
  33565. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33566. {
  33567. front: {
  33568. height: math.unit(6 + 8/12, "feet"),
  33569. weight: math.unit(225, "lb"),
  33570. name: "Front",
  33571. image: {
  33572. source: "./media/characters/rhys-londe/front.svg",
  33573. extra: 2258/2141,
  33574. bottom: 188/2446
  33575. }
  33576. },
  33577. back: {
  33578. height: math.unit(6 + 8/12, "feet"),
  33579. weight: math.unit(225, "lb"),
  33580. name: "Back",
  33581. image: {
  33582. source: "./media/characters/rhys-londe/back.svg",
  33583. extra: 2237/2137,
  33584. bottom: 63/2300
  33585. }
  33586. },
  33587. frontNsfw: {
  33588. height: math.unit(6 + 8/12, "feet"),
  33589. weight: math.unit(225, "lb"),
  33590. name: "Front (NSFW)",
  33591. image: {
  33592. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33593. extra: 2258/2141,
  33594. bottom: 188/2446
  33595. }
  33596. },
  33597. backNsfw: {
  33598. height: math.unit(6 + 8/12, "feet"),
  33599. weight: math.unit(225, "lb"),
  33600. name: "Back (NSFW)",
  33601. image: {
  33602. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33603. extra: 2237/2137,
  33604. bottom: 63/2300
  33605. }
  33606. },
  33607. dick: {
  33608. height: math.unit(30, "inches"),
  33609. name: "Dick",
  33610. image: {
  33611. source: "./media/characters/rhys-londe/dick.svg"
  33612. }
  33613. },
  33614. maw: {
  33615. height: math.unit(1.6, "feet"),
  33616. name: "Maw",
  33617. image: {
  33618. source: "./media/characters/rhys-londe/maw.svg"
  33619. }
  33620. },
  33621. },
  33622. [
  33623. {
  33624. name: "Normal",
  33625. height: math.unit(6 + 8/12, "feet"),
  33626. default: true
  33627. },
  33628. ]
  33629. ))
  33630. characterMakers.push(() => makeCharacter(
  33631. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33632. {
  33633. front: {
  33634. height: math.unit(3 + 10/12, "feet"),
  33635. weight: math.unit(90, "lb"),
  33636. name: "Front",
  33637. image: {
  33638. source: "./media/characters/taivas-ensim/front.svg",
  33639. extra: 1327/1216,
  33640. bottom: 96/1423
  33641. }
  33642. },
  33643. back: {
  33644. height: math.unit(3 + 10/12, "feet"),
  33645. weight: math.unit(90, "lb"),
  33646. name: "Back",
  33647. image: {
  33648. source: "./media/characters/taivas-ensim/back.svg",
  33649. extra: 1355/1247,
  33650. bottom: 11/1366
  33651. }
  33652. },
  33653. frontNsfw: {
  33654. height: math.unit(3 + 10/12, "feet"),
  33655. weight: math.unit(90, "lb"),
  33656. name: "Front (NSFW)",
  33657. image: {
  33658. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33659. extra: 1327/1216,
  33660. bottom: 96/1423
  33661. }
  33662. },
  33663. backNsfw: {
  33664. height: math.unit(3 + 10/12, "feet"),
  33665. weight: math.unit(90, "lb"),
  33666. name: "Back (NSFW)",
  33667. image: {
  33668. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33669. extra: 1355/1247,
  33670. bottom: 11/1366
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Normal",
  33677. height: math.unit(3 + 10/12, "feet"),
  33678. default: true
  33679. },
  33680. ]
  33681. ))
  33682. characterMakers.push(() => makeCharacter(
  33683. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33684. {
  33685. front: {
  33686. height: math.unit(9 + 6/12, "feet"),
  33687. weight: math.unit(940, "lb"),
  33688. name: "Front",
  33689. image: {
  33690. source: "./media/characters/byliss/front.svg",
  33691. extra: 1327/1290,
  33692. bottom: 82/1409
  33693. }
  33694. },
  33695. back: {
  33696. height: math.unit(9 + 6/12, "feet"),
  33697. weight: math.unit(940, "lb"),
  33698. name: "Back",
  33699. image: {
  33700. source: "./media/characters/byliss/back.svg",
  33701. extra: 1376/1349,
  33702. bottom: 9/1385
  33703. }
  33704. },
  33705. frontNsfw: {
  33706. height: math.unit(9 + 6/12, "feet"),
  33707. weight: math.unit(940, "lb"),
  33708. name: "Front (NSFW)",
  33709. image: {
  33710. source: "./media/characters/byliss/front-nsfw.svg",
  33711. extra: 1327/1290,
  33712. bottom: 82/1409
  33713. }
  33714. },
  33715. backNsfw: {
  33716. height: math.unit(9 + 6/12, "feet"),
  33717. weight: math.unit(940, "lb"),
  33718. name: "Back (NSFW)",
  33719. image: {
  33720. source: "./media/characters/byliss/back-nsfw.svg",
  33721. extra: 1376/1349,
  33722. bottom: 9/1385
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Normal",
  33729. height: math.unit(9 + 6/12, "feet"),
  33730. default: true
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33736. {
  33737. front: {
  33738. height: math.unit(5 + 2/12, "feet"),
  33739. weight: math.unit(200, "lb"),
  33740. name: "Front",
  33741. image: {
  33742. source: "./media/characters/noraly/front.svg",
  33743. extra: 4985/4773,
  33744. bottom: 150/5135
  33745. }
  33746. },
  33747. full: {
  33748. height: math.unit(5 + 2/12, "feet"),
  33749. weight: math.unit(164, "lb"),
  33750. name: "Full",
  33751. image: {
  33752. source: "./media/characters/noraly/full.svg",
  33753. extra: 1114/1059,
  33754. bottom: 35/1149
  33755. }
  33756. },
  33757. fuller: {
  33758. height: math.unit(5 + 2/12, "feet"),
  33759. weight: math.unit(230, "lb"),
  33760. name: "Fuller",
  33761. image: {
  33762. source: "./media/characters/noraly/fuller.svg",
  33763. extra: 1114/1059,
  33764. bottom: 35/1149
  33765. }
  33766. },
  33767. fullest: {
  33768. height: math.unit(5 + 2/12, "feet"),
  33769. weight: math.unit(300, "lb"),
  33770. name: "Fullest",
  33771. image: {
  33772. source: "./media/characters/noraly/fullest.svg",
  33773. extra: 1114/1059,
  33774. bottom: 35/1149
  33775. }
  33776. },
  33777. },
  33778. [
  33779. {
  33780. name: "Normal",
  33781. height: math.unit(5 + 2/12, "feet"),
  33782. default: true
  33783. },
  33784. ]
  33785. ))
  33786. characterMakers.push(() => makeCharacter(
  33787. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33788. {
  33789. front: {
  33790. height: math.unit(5 + 2/12, "feet"),
  33791. weight: math.unit(210, "lb"),
  33792. name: "Front",
  33793. image: {
  33794. source: "./media/characters/pera/front.svg",
  33795. extra: 1560/1531,
  33796. bottom: 165/1725
  33797. }
  33798. },
  33799. back: {
  33800. height: math.unit(5 + 2/12, "feet"),
  33801. weight: math.unit(210, "lb"),
  33802. name: "Back",
  33803. image: {
  33804. source: "./media/characters/pera/back.svg",
  33805. extra: 1523/1493,
  33806. bottom: 152/1675
  33807. }
  33808. },
  33809. dick: {
  33810. height: math.unit(2.4, "feet"),
  33811. name: "Dick",
  33812. image: {
  33813. source: "./media/characters/pera/dick.svg"
  33814. }
  33815. },
  33816. },
  33817. [
  33818. {
  33819. name: "Normal",
  33820. height: math.unit(5 + 2/12, "feet"),
  33821. default: true
  33822. },
  33823. ]
  33824. ))
  33825. characterMakers.push(() => makeCharacter(
  33826. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33827. {
  33828. front: {
  33829. height: math.unit(12, "feet"),
  33830. weight: math.unit(3200, "lb"),
  33831. name: "Front",
  33832. image: {
  33833. source: "./media/characters/julian/front.svg",
  33834. extra: 2962/2701,
  33835. bottom: 184/3146
  33836. }
  33837. },
  33838. maw: {
  33839. height: math.unit(5.35, "feet"),
  33840. name: "Maw",
  33841. image: {
  33842. source: "./media/characters/julian/maw.svg"
  33843. }
  33844. },
  33845. paw: {
  33846. height: math.unit(3.07, "feet"),
  33847. name: "Paw",
  33848. image: {
  33849. source: "./media/characters/julian/paw.svg"
  33850. }
  33851. },
  33852. },
  33853. [
  33854. {
  33855. name: "Default",
  33856. height: math.unit(12, "feet"),
  33857. default: true
  33858. },
  33859. {
  33860. name: "Big",
  33861. height: math.unit(50, "feet")
  33862. },
  33863. {
  33864. name: "Really Big",
  33865. height: math.unit(1, "mile")
  33866. },
  33867. {
  33868. name: "Extremely Big",
  33869. height: math.unit(100, "miles")
  33870. },
  33871. {
  33872. name: "Planet Hugger",
  33873. height: math.unit(200, "megameters")
  33874. },
  33875. {
  33876. name: "Unreasonably Big",
  33877. height: math.unit(1e300, "meters")
  33878. },
  33879. ]
  33880. ))
  33881. characterMakers.push(() => makeCharacter(
  33882. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33883. {
  33884. solgooleo: {
  33885. height: math.unit(4, "meters"),
  33886. weight: math.unit(6000*1.5, "kg"),
  33887. volume: math.unit(6000, "liters"),
  33888. name: "Solgooleo",
  33889. image: {
  33890. source: "./media/characters/pi/solgooleo.svg",
  33891. extra: 388/331,
  33892. bottom: 29/417
  33893. }
  33894. },
  33895. },
  33896. [
  33897. {
  33898. name: "Normal",
  33899. height: math.unit(4, "meters"),
  33900. default: true
  33901. },
  33902. ]
  33903. ))
  33904. characterMakers.push(() => makeCharacter(
  33905. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33906. {
  33907. front: {
  33908. height: math.unit(8, "feet"),
  33909. weight: math.unit(4, "tons"),
  33910. name: "Front",
  33911. image: {
  33912. source: "./media/characters/shaun/front.svg",
  33913. extra: 503/495,
  33914. bottom: 20/523
  33915. }
  33916. },
  33917. back: {
  33918. height: math.unit(8, "feet"),
  33919. weight: math.unit(4, "tons"),
  33920. name: "Back",
  33921. image: {
  33922. source: "./media/characters/shaun/back.svg",
  33923. extra: 487/480,
  33924. bottom: 20/507
  33925. }
  33926. },
  33927. },
  33928. [
  33929. {
  33930. name: "Lorg",
  33931. height: math.unit(8, "feet"),
  33932. default: true
  33933. },
  33934. ]
  33935. ))
  33936. characterMakers.push(() => makeCharacter(
  33937. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33938. {
  33939. frontAnthro: {
  33940. height: math.unit(7, "feet"),
  33941. name: "Front",
  33942. image: {
  33943. source: "./media/characters/sini/front-anthro.svg",
  33944. extra: 726/678,
  33945. bottom: 35/761
  33946. },
  33947. form: "anthro",
  33948. default: true
  33949. },
  33950. backAnthro: {
  33951. height: math.unit(7, "feet"),
  33952. name: "Back",
  33953. image: {
  33954. source: "./media/characters/sini/back-anthro.svg",
  33955. extra: 743/701,
  33956. bottom: 12/755
  33957. },
  33958. form: "anthro",
  33959. },
  33960. frontAnthroNsfw: {
  33961. height: math.unit(7, "feet"),
  33962. name: "Front (NSFW)",
  33963. image: {
  33964. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33965. extra: 726/678,
  33966. bottom: 35/761
  33967. },
  33968. form: "anthro"
  33969. },
  33970. backAnthroNsfw: {
  33971. height: math.unit(7, "feet"),
  33972. name: "Back (NSFW)",
  33973. image: {
  33974. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33975. extra: 743/701,
  33976. bottom: 12/755
  33977. },
  33978. form: "anthro",
  33979. },
  33980. mawAnthro: {
  33981. height: math.unit(2.14, "feet"),
  33982. name: "Maw",
  33983. image: {
  33984. source: "./media/characters/sini/maw-anthro.svg"
  33985. },
  33986. form: "anthro"
  33987. },
  33988. dick: {
  33989. height: math.unit(1.45, "feet"),
  33990. name: "Dick",
  33991. image: {
  33992. source: "./media/characters/sini/dick-anthro.svg"
  33993. },
  33994. form: "anthro"
  33995. },
  33996. feral: {
  33997. height: math.unit(16, "feet"),
  33998. name: "Feral",
  33999. image: {
  34000. source: "./media/characters/sini/feral.svg",
  34001. extra: 814/605,
  34002. bottom: 11/825
  34003. },
  34004. form: "feral",
  34005. default: true
  34006. },
  34007. feralNsfw: {
  34008. height: math.unit(16, "feet"),
  34009. name: "Feral (NSFW)",
  34010. image: {
  34011. source: "./media/characters/sini/feral-nsfw.svg",
  34012. extra: 814/605,
  34013. bottom: 11/825
  34014. },
  34015. form: "feral"
  34016. },
  34017. mawFeral: {
  34018. height: math.unit(5.66, "feet"),
  34019. name: "Maw",
  34020. image: {
  34021. source: "./media/characters/sini/maw-feral.svg"
  34022. },
  34023. form: "feral",
  34024. },
  34025. pawFeral: {
  34026. height: math.unit(5.17, "feet"),
  34027. name: "Paw",
  34028. image: {
  34029. source: "./media/characters/sini/paw-feral.svg"
  34030. },
  34031. form: "feral",
  34032. },
  34033. rumpFeral: {
  34034. height: math.unit(13.11, "feet"),
  34035. name: "Rump",
  34036. image: {
  34037. source: "./media/characters/sini/rump-feral.svg"
  34038. },
  34039. form: "feral",
  34040. },
  34041. dickFeral: {
  34042. height: math.unit(1, "feet"),
  34043. name: "Dick",
  34044. image: {
  34045. source: "./media/characters/sini/dick-feral.svg"
  34046. },
  34047. form: "feral",
  34048. },
  34049. eyeFeral: {
  34050. height: math.unit(1.23, "feet"),
  34051. name: "Eye",
  34052. image: {
  34053. source: "./media/characters/sini/eye-feral.svg"
  34054. },
  34055. form: "feral",
  34056. },
  34057. },
  34058. [
  34059. {
  34060. name: "Normal",
  34061. height: math.unit(7, "feet"),
  34062. default: true,
  34063. form: "anthro"
  34064. },
  34065. {
  34066. name: "Normal",
  34067. height: math.unit(16, "feet"),
  34068. default: true,
  34069. form: "feral"
  34070. },
  34071. ],
  34072. {
  34073. "anthro": {
  34074. name: "Anthro",
  34075. default: true
  34076. },
  34077. "feral": {
  34078. name: "Feral",
  34079. }
  34080. }
  34081. ))
  34082. characterMakers.push(() => makeCharacter(
  34083. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34084. {
  34085. side: {
  34086. height: math.unit(47.2, "meters"),
  34087. weight: math.unit(10000, "tons"),
  34088. name: "Side",
  34089. image: {
  34090. source: "./media/characters/raylldo/side.svg",
  34091. extra: 2363/642,
  34092. bottom: 221/2584
  34093. }
  34094. },
  34095. top: {
  34096. height: math.unit(240, "meters"),
  34097. weight: math.unit(10000, "tons"),
  34098. name: "Top",
  34099. image: {
  34100. source: "./media/characters/raylldo/top.svg"
  34101. }
  34102. },
  34103. bottom: {
  34104. height: math.unit(240, "meters"),
  34105. weight: math.unit(10000, "tons"),
  34106. name: "Bottom",
  34107. image: {
  34108. source: "./media/characters/raylldo/bottom.svg"
  34109. }
  34110. },
  34111. head: {
  34112. height: math.unit(38.6, "meters"),
  34113. name: "Head",
  34114. image: {
  34115. source: "./media/characters/raylldo/head.svg",
  34116. extra: 1335/1112,
  34117. bottom: 0/1335
  34118. }
  34119. },
  34120. maw: {
  34121. height: math.unit(16.37, "meters"),
  34122. name: "Maw",
  34123. image: {
  34124. source: "./media/characters/raylldo/maw.svg",
  34125. extra: 883/660,
  34126. bottom: 0/883
  34127. },
  34128. extraAttributes: {
  34129. preyCapacity: {
  34130. name: "Capacity",
  34131. power: 3,
  34132. type: "volume",
  34133. base: math.unit(1000, "people")
  34134. },
  34135. tongueSize: {
  34136. name: "Tongue Size",
  34137. power: 2,
  34138. type: "area",
  34139. base: math.unit(21, "m^2")
  34140. }
  34141. }
  34142. },
  34143. forepaw: {
  34144. height: math.unit(18, "meters"),
  34145. name: "Forepaw",
  34146. image: {
  34147. source: "./media/characters/raylldo/forepaw.svg"
  34148. }
  34149. },
  34150. hindpaw: {
  34151. height: math.unit(23, "meters"),
  34152. name: "Hindpaw",
  34153. image: {
  34154. source: "./media/characters/raylldo/hindpaw.svg"
  34155. }
  34156. },
  34157. genitals: {
  34158. height: math.unit(42, "meters"),
  34159. name: "Genitals",
  34160. image: {
  34161. source: "./media/characters/raylldo/genitals.svg"
  34162. }
  34163. },
  34164. },
  34165. [
  34166. {
  34167. name: "Normal",
  34168. height: math.unit(47.2, "meters"),
  34169. default: true
  34170. },
  34171. ]
  34172. ))
  34173. characterMakers.push(() => makeCharacter(
  34174. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34175. {
  34176. anthroFront: {
  34177. height: math.unit(9, "feet"),
  34178. weight: math.unit(600, "lb"),
  34179. name: "Anthro (Front)",
  34180. image: {
  34181. source: "./media/characters/glint/anthro-front.svg",
  34182. extra: 1097/1018,
  34183. bottom: 28/1125
  34184. }
  34185. },
  34186. anthroBack: {
  34187. height: math.unit(9, "feet"),
  34188. weight: math.unit(600, "lb"),
  34189. name: "Anthro (Back)",
  34190. image: {
  34191. source: "./media/characters/glint/anthro-back.svg",
  34192. extra: 1154/997,
  34193. bottom: 36/1190
  34194. }
  34195. },
  34196. feral: {
  34197. height: math.unit(11, "feet"),
  34198. weight: math.unit(50000, "lb"),
  34199. name: "Feral",
  34200. image: {
  34201. source: "./media/characters/glint/feral.svg",
  34202. extra: 3035/1585,
  34203. bottom: 1169/4204
  34204. }
  34205. },
  34206. dickAnthro: {
  34207. height: math.unit(0.7, "meters"),
  34208. name: "Dick (Anthro)",
  34209. image: {
  34210. source: "./media/characters/glint/dick-anthro.svg"
  34211. }
  34212. },
  34213. dickFeral: {
  34214. height: math.unit(2.65, "meters"),
  34215. name: "Dick (Feral)",
  34216. image: {
  34217. source: "./media/characters/glint/dick-feral.svg"
  34218. }
  34219. },
  34220. slitHidden: {
  34221. height: math.unit(5.85, "meters"),
  34222. name: "Slit (Hidden)",
  34223. image: {
  34224. source: "./media/characters/glint/slit-hidden.svg"
  34225. }
  34226. },
  34227. slitErect: {
  34228. height: math.unit(5.85, "meters"),
  34229. name: "Slit (Erect)",
  34230. image: {
  34231. source: "./media/characters/glint/slit-erect.svg"
  34232. }
  34233. },
  34234. mawAnthro: {
  34235. height: math.unit(0.63, "meters"),
  34236. name: "Maw (Anthro)",
  34237. image: {
  34238. source: "./media/characters/glint/maw.svg"
  34239. }
  34240. },
  34241. mawFeral: {
  34242. height: math.unit(2.89, "meters"),
  34243. name: "Maw (Feral)",
  34244. image: {
  34245. source: "./media/characters/glint/maw.svg"
  34246. }
  34247. },
  34248. },
  34249. [
  34250. {
  34251. name: "Normal",
  34252. height: math.unit(9, "feet"),
  34253. default: true
  34254. },
  34255. ]
  34256. ))
  34257. characterMakers.push(() => makeCharacter(
  34258. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34259. {
  34260. side: {
  34261. height: math.unit(15, "feet"),
  34262. weight: math.unit(5000, "kg"),
  34263. name: "Side",
  34264. image: {
  34265. source: "./media/characters/kairne/side.svg",
  34266. extra: 979/811,
  34267. bottom: 13/992
  34268. }
  34269. },
  34270. front: {
  34271. height: math.unit(15, "feet"),
  34272. weight: math.unit(5000, "kg"),
  34273. name: "Front",
  34274. image: {
  34275. source: "./media/characters/kairne/front.svg",
  34276. extra: 908/814,
  34277. bottom: 26/934
  34278. }
  34279. },
  34280. sideNsfw: {
  34281. height: math.unit(15, "feet"),
  34282. weight: math.unit(5000, "kg"),
  34283. name: "Side (NSFW)",
  34284. image: {
  34285. source: "./media/characters/kairne/side-nsfw.svg",
  34286. extra: 979/811,
  34287. bottom: 13/992
  34288. }
  34289. },
  34290. frontNsfw: {
  34291. height: math.unit(15, "feet"),
  34292. weight: math.unit(5000, "kg"),
  34293. name: "Front (NSFW)",
  34294. image: {
  34295. source: "./media/characters/kairne/front-nsfw.svg",
  34296. extra: 908/814,
  34297. bottom: 26/934
  34298. }
  34299. },
  34300. dickCaged: {
  34301. height: math.unit(0.65, "meters"),
  34302. name: "Dick-caged",
  34303. image: {
  34304. source: "./media/characters/kairne/dick-caged.svg"
  34305. }
  34306. },
  34307. dick: {
  34308. height: math.unit(0.79, "meters"),
  34309. name: "Dick",
  34310. image: {
  34311. source: "./media/characters/kairne/dick.svg"
  34312. }
  34313. },
  34314. genitals: {
  34315. height: math.unit(1.29, "meters"),
  34316. name: "Genitals",
  34317. image: {
  34318. source: "./media/characters/kairne/genitals.svg"
  34319. }
  34320. },
  34321. maw: {
  34322. height: math.unit(1.73, "meters"),
  34323. name: "Maw",
  34324. image: {
  34325. source: "./media/characters/kairne/maw.svg"
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Normal",
  34332. height: math.unit(15, "feet"),
  34333. default: true
  34334. },
  34335. ]
  34336. ))
  34337. characterMakers.push(() => makeCharacter(
  34338. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34339. {
  34340. front: {
  34341. height: math.unit(5 + 8/12, "feet"),
  34342. weight: math.unit(139, "lb"),
  34343. name: "Front",
  34344. image: {
  34345. source: "./media/characters/biscuit-jackal/front.svg",
  34346. extra: 2106/1961,
  34347. bottom: 58/2164
  34348. }
  34349. },
  34350. back: {
  34351. height: math.unit(5 + 8/12, "feet"),
  34352. weight: math.unit(139, "lb"),
  34353. name: "Back",
  34354. image: {
  34355. source: "./media/characters/biscuit-jackal/back.svg",
  34356. extra: 2132/1976,
  34357. bottom: 57/2189
  34358. }
  34359. },
  34360. werejackal: {
  34361. height: math.unit(6 + 3/12, "feet"),
  34362. weight: math.unit(188, "lb"),
  34363. name: "Werejackal",
  34364. image: {
  34365. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34366. extra: 2373/2178,
  34367. bottom: 53/2426
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Normal",
  34374. height: math.unit(5 + 8/12, "feet"),
  34375. default: true
  34376. },
  34377. ]
  34378. ))
  34379. characterMakers.push(() => makeCharacter(
  34380. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34381. {
  34382. front: {
  34383. height: math.unit(140, "cm"),
  34384. weight: math.unit(45, "kg"),
  34385. name: "Front",
  34386. image: {
  34387. source: "./media/characters/tayra-white/front.svg",
  34388. extra: 2229/2192,
  34389. bottom: 75/2304
  34390. }
  34391. },
  34392. },
  34393. [
  34394. {
  34395. name: "Normal",
  34396. height: math.unit(140, "cm"),
  34397. default: true
  34398. },
  34399. ]
  34400. ))
  34401. characterMakers.push(() => makeCharacter(
  34402. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34403. {
  34404. front: {
  34405. height: math.unit(4 + 5/12, "feet"),
  34406. name: "Front",
  34407. image: {
  34408. source: "./media/characters/scoop/front.svg",
  34409. extra: 1257/1136,
  34410. bottom: 69/1326
  34411. }
  34412. },
  34413. back: {
  34414. height: math.unit(4 + 5/12, "feet"),
  34415. name: "Back",
  34416. image: {
  34417. source: "./media/characters/scoop/back.svg",
  34418. extra: 1321/1152,
  34419. bottom: 32/1353
  34420. }
  34421. },
  34422. maw: {
  34423. height: math.unit(0.68, "feet"),
  34424. name: "Maw",
  34425. image: {
  34426. source: "./media/characters/scoop/maw.svg"
  34427. }
  34428. },
  34429. },
  34430. [
  34431. {
  34432. name: "Really Small",
  34433. height: math.unit(1, "mm")
  34434. },
  34435. {
  34436. name: "Micro",
  34437. height: math.unit(1, "inch")
  34438. },
  34439. {
  34440. name: "Normal",
  34441. height: math.unit(4 + 5/12, "feet"),
  34442. default: true
  34443. },
  34444. {
  34445. name: "Macro",
  34446. height: math.unit(200, "feet")
  34447. },
  34448. {
  34449. name: "Megamacro",
  34450. height: math.unit(3240, "feet")
  34451. },
  34452. {
  34453. name: "Teramacro",
  34454. height: math.unit(2500, "miles")
  34455. },
  34456. ]
  34457. ))
  34458. characterMakers.push(() => makeCharacter(
  34459. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34460. {
  34461. front: {
  34462. height: math.unit(15 + 7/12, "feet"),
  34463. weight: math.unit(1150, "tons"),
  34464. name: "Front",
  34465. image: {
  34466. source: "./media/characters/saphinara/front.svg",
  34467. extra: 1837/1643,
  34468. bottom: 84/1921
  34469. },
  34470. form: "normal",
  34471. default: true
  34472. },
  34473. side: {
  34474. height: math.unit(15 + 7/12, "feet"),
  34475. weight: math.unit(1150, "tons"),
  34476. name: "Side",
  34477. image: {
  34478. source: "./media/characters/saphinara/side.svg",
  34479. extra: 605/547,
  34480. bottom: 6/611
  34481. },
  34482. form: "normal"
  34483. },
  34484. back: {
  34485. height: math.unit(15 + 7/12, "feet"),
  34486. weight: math.unit(1150, "tons"),
  34487. name: "Back",
  34488. image: {
  34489. source: "./media/characters/saphinara/back.svg",
  34490. extra: 591/531,
  34491. bottom: 13/604
  34492. },
  34493. form: "normal"
  34494. },
  34495. frontTail: {
  34496. height: math.unit(15 + 7/12, "feet"),
  34497. weight: math.unit(1150, "tons"),
  34498. name: "Front (Full Tail)",
  34499. image: {
  34500. source: "./media/characters/saphinara/front-tail.svg",
  34501. extra: 2256/1630,
  34502. bottom: 261/2517
  34503. },
  34504. form: "normal"
  34505. },
  34506. insides: {
  34507. height: math.unit(11.92, "feet"),
  34508. name: "Insides",
  34509. image: {
  34510. source: "./media/characters/saphinara/insides.svg"
  34511. },
  34512. form: "normal"
  34513. },
  34514. head: {
  34515. height: math.unit(4.17, "feet"),
  34516. name: "Head",
  34517. image: {
  34518. source: "./media/characters/saphinara/head.svg"
  34519. },
  34520. form: "normal"
  34521. },
  34522. tongue: {
  34523. height: math.unit(4.60, "feet"),
  34524. name: "Tongue",
  34525. image: {
  34526. source: "./media/characters/saphinara/tongue.svg"
  34527. },
  34528. form: "normal"
  34529. },
  34530. headEnraged: {
  34531. height: math.unit(5.55, "feet"),
  34532. name: "Head (Enraged)",
  34533. image: {
  34534. source: "./media/characters/saphinara/head-enraged.svg"
  34535. },
  34536. form: "normal"
  34537. },
  34538. wings: {
  34539. height: math.unit(11.95, "feet"),
  34540. name: "Wings",
  34541. image: {
  34542. source: "./media/characters/saphinara/wings.svg"
  34543. },
  34544. form: "normal"
  34545. },
  34546. feathers: {
  34547. height: math.unit(8.92, "feet"),
  34548. name: "Feathers",
  34549. image: {
  34550. source: "./media/characters/saphinara/feathers.svg"
  34551. },
  34552. form: "normal"
  34553. },
  34554. shackles: {
  34555. height: math.unit(2, "feet"),
  34556. name: "Shackles",
  34557. image: {
  34558. source: "./media/characters/saphinara/shackles.svg"
  34559. },
  34560. form: "normal"
  34561. },
  34562. eyes: {
  34563. height: math.unit(1.331, "feet"),
  34564. name: "Eyes",
  34565. image: {
  34566. source: "./media/characters/saphinara/eyes.svg"
  34567. },
  34568. form: "normal"
  34569. },
  34570. eyesEnraged: {
  34571. height: math.unit(1.331, "feet"),
  34572. name: "Eyes (Enraged)",
  34573. image: {
  34574. source: "./media/characters/saphinara/eyes-enraged.svg"
  34575. },
  34576. form: "normal"
  34577. },
  34578. trueFormSide: {
  34579. height: math.unit(200, "feet"),
  34580. weight: math.unit(1e7, "tons"),
  34581. name: "Side",
  34582. image: {
  34583. source: "./media/characters/saphinara/true-form-side.svg",
  34584. extra: 1399/770,
  34585. bottom: 97/1496
  34586. },
  34587. form: "true-form",
  34588. default: true
  34589. },
  34590. trueFormMaw: {
  34591. height: math.unit(71.5, "feet"),
  34592. name: "Maw",
  34593. image: {
  34594. source: "./media/characters/saphinara/true-form-maw.svg",
  34595. extra: 2302/1453,
  34596. bottom: 0/2302
  34597. },
  34598. form: "true-form"
  34599. },
  34600. meowberusSide: {
  34601. height: math.unit(75, "feet"),
  34602. weight: math.unit(180000, "kg"),
  34603. preyCapacity: math.unit(50000, "people"),
  34604. name: "Side",
  34605. image: {
  34606. source: "./media/characters/saphinara/meowberus-side.svg",
  34607. extra: 1400/711,
  34608. bottom: 126/1526
  34609. },
  34610. form: "meowberus",
  34611. extraAttributes: {
  34612. "pawArea": {
  34613. name: "Paw Size",
  34614. power: 2,
  34615. type: "area",
  34616. base: math.unit(35, "m^2")
  34617. }
  34618. }
  34619. },
  34620. },
  34621. [
  34622. {
  34623. name: "Normal",
  34624. height: math.unit(15 + 7/12, "feet"),
  34625. default: true,
  34626. form: "normal"
  34627. },
  34628. {
  34629. name: "Angry",
  34630. height: math.unit(30 + 6/12, "feet"),
  34631. form: "normal"
  34632. },
  34633. {
  34634. name: "Enraged",
  34635. height: math.unit(102 + 1/12, "feet"),
  34636. form: "normal"
  34637. },
  34638. {
  34639. name: "True",
  34640. height: math.unit(200, "feet"),
  34641. default: true,
  34642. form: "true-form"
  34643. },
  34644. {
  34645. name: "Normal",
  34646. height: math.unit(75, "feet"),
  34647. default: true,
  34648. form: "meowberus"
  34649. },
  34650. ],
  34651. {
  34652. "normal": {
  34653. name: "Normal",
  34654. default: true
  34655. },
  34656. "true-form": {
  34657. name: "True Form"
  34658. },
  34659. "meowberus": {
  34660. name: "Meowberus",
  34661. },
  34662. }
  34663. ))
  34664. characterMakers.push(() => makeCharacter(
  34665. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34666. {
  34667. front: {
  34668. height: math.unit(6 + 8/12, "feet"),
  34669. weight: math.unit(300, "lb"),
  34670. name: "Front",
  34671. image: {
  34672. source: "./media/characters/jrain/front.svg",
  34673. extra: 3039/2865,
  34674. bottom: 399/3438
  34675. }
  34676. },
  34677. back: {
  34678. height: math.unit(6 + 8/12, "feet"),
  34679. weight: math.unit(300, "lb"),
  34680. name: "Back",
  34681. image: {
  34682. source: "./media/characters/jrain/back.svg",
  34683. extra: 3089/2938,
  34684. bottom: 172/3261
  34685. }
  34686. },
  34687. head: {
  34688. height: math.unit(2.14, "feet"),
  34689. name: "Head",
  34690. image: {
  34691. source: "./media/characters/jrain/head.svg"
  34692. }
  34693. },
  34694. maw: {
  34695. height: math.unit(1.77, "feet"),
  34696. name: "Maw",
  34697. image: {
  34698. source: "./media/characters/jrain/maw.svg"
  34699. }
  34700. },
  34701. leftHand: {
  34702. height: math.unit(1.1, "feet"),
  34703. name: "Left Hand",
  34704. image: {
  34705. source: "./media/characters/jrain/left-hand.svg"
  34706. }
  34707. },
  34708. rightHand: {
  34709. height: math.unit(1.1, "feet"),
  34710. name: "Right Hand",
  34711. image: {
  34712. source: "./media/characters/jrain/right-hand.svg"
  34713. }
  34714. },
  34715. eye: {
  34716. height: math.unit(0.35, "feet"),
  34717. name: "Eye",
  34718. image: {
  34719. source: "./media/characters/jrain/eye.svg"
  34720. }
  34721. },
  34722. },
  34723. [
  34724. {
  34725. name: "Normal",
  34726. height: math.unit(6 + 8/12, "feet"),
  34727. default: true
  34728. },
  34729. {
  34730. name: "Casually Large",
  34731. height: math.unit(25, "feet")
  34732. },
  34733. {
  34734. name: "Giant",
  34735. height: math.unit(100, "feet")
  34736. },
  34737. {
  34738. name: "Kaiju",
  34739. height: math.unit(300, "feet")
  34740. },
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34745. {
  34746. dragon: {
  34747. height: math.unit(5, "meters"),
  34748. name: "Dragon",
  34749. image: {
  34750. source: "./media/characters/sabrina/dragon.svg",
  34751. extra: 3670 / 2365,
  34752. bottom: 333 / 4003
  34753. }
  34754. },
  34755. gryphon: {
  34756. height: math.unit(3, "meters"),
  34757. name: "Gryphon",
  34758. image: {
  34759. source: "./media/characters/sabrina/gryphon.svg",
  34760. extra: 1576 / 945,
  34761. bottom: 71 / 1647
  34762. }
  34763. },
  34764. snake: {
  34765. height: math.unit(12, "meters"),
  34766. name: "Snake",
  34767. image: {
  34768. source: "./media/characters/sabrina/snake.svg",
  34769. extra: 1758 / 1320,
  34770. bottom: 186 / 1944
  34771. }
  34772. },
  34773. collar: {
  34774. height: math.unit(1.86, "meters"),
  34775. name: "Collar",
  34776. image: {
  34777. source: "./media/characters/sabrina/collar.svg"
  34778. }
  34779. },
  34780. eye: {
  34781. height: math.unit(0.53, "meters"),
  34782. name: "Eye",
  34783. image: {
  34784. source: "./media/characters/sabrina/eye.svg"
  34785. }
  34786. },
  34787. foot: {
  34788. height: math.unit(1.86, "meters"),
  34789. name: "Foot",
  34790. image: {
  34791. source: "./media/characters/sabrina/foot.svg"
  34792. }
  34793. },
  34794. hand: {
  34795. height: math.unit(1.32, "meters"),
  34796. name: "Hand",
  34797. image: {
  34798. source: "./media/characters/sabrina/hand.svg"
  34799. }
  34800. },
  34801. head: {
  34802. height: math.unit(2.44, "meters"),
  34803. name: "Head",
  34804. image: {
  34805. source: "./media/characters/sabrina/head.svg"
  34806. }
  34807. },
  34808. headAngry: {
  34809. height: math.unit(2.44, "meters"),
  34810. name: "Head (Angry))",
  34811. image: {
  34812. source: "./media/characters/sabrina/head-angry.svg"
  34813. }
  34814. },
  34815. maw: {
  34816. height: math.unit(1.65, "meters"),
  34817. name: "Maw",
  34818. image: {
  34819. source: "./media/characters/sabrina/maw.svg"
  34820. }
  34821. },
  34822. spikes: {
  34823. height: math.unit(1.69, "meters"),
  34824. name: "Spikes",
  34825. image: {
  34826. source: "./media/characters/sabrina/spikes.svg"
  34827. }
  34828. },
  34829. stomach: {
  34830. height: math.unit(1.15, "meters"),
  34831. name: "Stomach",
  34832. image: {
  34833. source: "./media/characters/sabrina/stomach.svg"
  34834. }
  34835. },
  34836. tongue: {
  34837. height: math.unit(1.27, "meters"),
  34838. name: "Tongue",
  34839. image: {
  34840. source: "./media/characters/sabrina/tongue.svg"
  34841. }
  34842. },
  34843. wingDorsal: {
  34844. height: math.unit(4.85, "meters"),
  34845. name: "Wing (Dorsal)",
  34846. image: {
  34847. source: "./media/characters/sabrina/wing-dorsal.svg"
  34848. }
  34849. },
  34850. wingVentral: {
  34851. height: math.unit(4.85, "meters"),
  34852. name: "Wing (Ventral)",
  34853. image: {
  34854. source: "./media/characters/sabrina/wing-ventral.svg"
  34855. }
  34856. },
  34857. },
  34858. [
  34859. {
  34860. name: "Normal",
  34861. height: math.unit(5, "meters"),
  34862. default: true
  34863. },
  34864. ]
  34865. ))
  34866. characterMakers.push(() => makeCharacter(
  34867. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34868. {
  34869. frontMaid: {
  34870. height: math.unit(5 + 5/12, "feet"),
  34871. weight: math.unit(130, "lb"),
  34872. name: "Front (Maid)",
  34873. image: {
  34874. source: "./media/characters/midnight-tales/front-maid.svg",
  34875. extra: 489/454,
  34876. bottom: 61/550
  34877. }
  34878. },
  34879. frontFormal: {
  34880. height: math.unit(5 + 5/12, "feet"),
  34881. weight: math.unit(130, "lb"),
  34882. name: "Front (Formal)",
  34883. image: {
  34884. source: "./media/characters/midnight-tales/front-formal.svg",
  34885. extra: 489/454,
  34886. bottom: 61/550
  34887. }
  34888. },
  34889. back: {
  34890. height: math.unit(5 + 5/12, "feet"),
  34891. weight: math.unit(130, "lb"),
  34892. name: "Back",
  34893. image: {
  34894. source: "./media/characters/midnight-tales/back.svg",
  34895. extra: 498/456,
  34896. bottom: 33/531
  34897. }
  34898. },
  34899. frontBeast: {
  34900. height: math.unit(40, "feet"),
  34901. weight: math.unit(64000, "lb"),
  34902. name: "Front (Beast)",
  34903. image: {
  34904. source: "./media/characters/midnight-tales/front-beast.svg",
  34905. extra: 927/860,
  34906. bottom: 53/980
  34907. }
  34908. },
  34909. backBeast: {
  34910. height: math.unit(40, "feet"),
  34911. weight: math.unit(64000, "lb"),
  34912. name: "Back (Beast)",
  34913. image: {
  34914. source: "./media/characters/midnight-tales/back-beast.svg",
  34915. extra: 929/855,
  34916. bottom: 16/945
  34917. }
  34918. },
  34919. footBeast: {
  34920. height: math.unit(6.7, "feet"),
  34921. name: "Foot (Beast)",
  34922. image: {
  34923. source: "./media/characters/midnight-tales/foot-beast.svg"
  34924. }
  34925. },
  34926. headBeast: {
  34927. height: math.unit(8, "feet"),
  34928. name: "Head (Beast)",
  34929. image: {
  34930. source: "./media/characters/midnight-tales/head-beast.svg"
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Normal",
  34937. height: math.unit(5 + 5 / 12, "feet"),
  34938. default: true
  34939. },
  34940. {
  34941. name: "Macro",
  34942. height: math.unit(25, "feet")
  34943. },
  34944. ]
  34945. ))
  34946. characterMakers.push(() => makeCharacter(
  34947. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34948. {
  34949. front: {
  34950. height: math.unit(5 + 10/12, "feet"),
  34951. name: "Front",
  34952. image: {
  34953. source: "./media/characters/argon/front.svg",
  34954. extra: 2009/1935,
  34955. bottom: 118/2127
  34956. }
  34957. },
  34958. back: {
  34959. height: math.unit(5 + 10/12, "feet"),
  34960. name: "Back",
  34961. image: {
  34962. source: "./media/characters/argon/back.svg",
  34963. extra: 2047/1992,
  34964. bottom: 20/2067
  34965. }
  34966. },
  34967. frontDressed: {
  34968. height: math.unit(5 + 10/12, "feet"),
  34969. name: "Front (Dressed)",
  34970. image: {
  34971. source: "./media/characters/argon/front-dressed.svg",
  34972. extra: 2009/1935,
  34973. bottom: 118/2127
  34974. }
  34975. },
  34976. },
  34977. [
  34978. {
  34979. name: "Normal",
  34980. height: math.unit(5 + 10/12, "feet"),
  34981. default: true
  34982. },
  34983. ]
  34984. ))
  34985. characterMakers.push(() => makeCharacter(
  34986. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34987. {
  34988. front: {
  34989. height: math.unit(8 + 6/12, "feet"),
  34990. weight: math.unit(1150, "lb"),
  34991. name: "Front",
  34992. image: {
  34993. source: "./media/characters/kichi/front.svg",
  34994. extra: 1267/1164,
  34995. bottom: 61/1328
  34996. }
  34997. },
  34998. back: {
  34999. height: math.unit(8 + 6/12, "feet"),
  35000. weight: math.unit(1150, "lb"),
  35001. name: "Back",
  35002. image: {
  35003. source: "./media/characters/kichi/back.svg",
  35004. extra: 1273/1166,
  35005. bottom: 33/1306
  35006. }
  35007. },
  35008. },
  35009. [
  35010. {
  35011. name: "Normal",
  35012. height: math.unit(8 + 6/12, "feet"),
  35013. default: true
  35014. },
  35015. ]
  35016. ))
  35017. characterMakers.push(() => makeCharacter(
  35018. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35019. {
  35020. front: {
  35021. height: math.unit(6, "feet"),
  35022. weight: math.unit(210, "lb"),
  35023. name: "Front",
  35024. image: {
  35025. source: "./media/characters/manetel-greyscale/front.svg",
  35026. extra: 350/312,
  35027. bottom: 8/358
  35028. }
  35029. },
  35030. },
  35031. [
  35032. {
  35033. name: "Micro",
  35034. height: math.unit(2, "inches")
  35035. },
  35036. {
  35037. name: "Normal",
  35038. height: math.unit(6, "feet"),
  35039. default: true
  35040. },
  35041. {
  35042. name: "Minimacro",
  35043. height: math.unit(17, "feet")
  35044. },
  35045. {
  35046. name: "Macro",
  35047. height: math.unit(117, "feet")
  35048. },
  35049. ]
  35050. ))
  35051. characterMakers.push(() => makeCharacter(
  35052. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35053. {
  35054. side: {
  35055. height: math.unit(5 + 1/12, "feet"),
  35056. weight: math.unit(418, "lb"),
  35057. name: "Side",
  35058. image: {
  35059. source: "./media/characters/softpurr/side.svg",
  35060. extra: 1993/1945,
  35061. bottom: 134/2127
  35062. }
  35063. },
  35064. front: {
  35065. height: math.unit(5 + 1/12, "feet"),
  35066. weight: math.unit(418, "lb"),
  35067. name: "Front",
  35068. image: {
  35069. source: "./media/characters/softpurr/front.svg",
  35070. extra: 1950/1856,
  35071. bottom: 174/2124
  35072. }
  35073. },
  35074. paw: {
  35075. height: math.unit(1, "feet"),
  35076. name: "Paw",
  35077. image: {
  35078. source: "./media/characters/softpurr/paw.svg"
  35079. }
  35080. },
  35081. },
  35082. [
  35083. {
  35084. name: "Normal",
  35085. height: math.unit(5 + 1/12, "feet"),
  35086. default: true
  35087. },
  35088. ]
  35089. ))
  35090. characterMakers.push(() => makeCharacter(
  35091. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35092. {
  35093. front: {
  35094. height: math.unit(260, "meters"),
  35095. name: "Front",
  35096. image: {
  35097. source: "./media/characters/anahita/front.svg",
  35098. extra: 665/635,
  35099. bottom: 89/754
  35100. }
  35101. },
  35102. },
  35103. [
  35104. {
  35105. name: "Macro",
  35106. height: math.unit(260, "meters"),
  35107. default: true
  35108. },
  35109. ]
  35110. ))
  35111. characterMakers.push(() => makeCharacter(
  35112. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35113. {
  35114. front: {
  35115. height: math.unit(4 + 10/12, "feet"),
  35116. weight: math.unit(160, "lb"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/chip-mouse/front.svg",
  35120. extra: 3528/3408,
  35121. bottom: 0/3528
  35122. }
  35123. },
  35124. frontNsfw: {
  35125. height: math.unit(4 + 10/12, "feet"),
  35126. weight: math.unit(160, "lb"),
  35127. name: "Front (NSFW)",
  35128. image: {
  35129. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35130. extra: 3528/3408,
  35131. bottom: 0/3528
  35132. }
  35133. },
  35134. },
  35135. [
  35136. {
  35137. name: "Normal",
  35138. height: math.unit(4 + 10/12, "feet"),
  35139. default: true
  35140. },
  35141. ]
  35142. ))
  35143. characterMakers.push(() => makeCharacter(
  35144. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35145. {
  35146. side: {
  35147. height: math.unit(10, "feet"),
  35148. weight: math.unit(14000, "lb"),
  35149. name: "Side",
  35150. image: {
  35151. source: "./media/characters/kremm/side.svg",
  35152. extra: 1390/1053,
  35153. bottom: 90/1480
  35154. }
  35155. },
  35156. gut: {
  35157. height: math.unit(5.8, "feet"),
  35158. name: "Gut",
  35159. image: {
  35160. source: "./media/characters/kremm/gut.svg"
  35161. }
  35162. },
  35163. ass: {
  35164. height: math.unit(6.1, "feet"),
  35165. name: "Ass",
  35166. image: {
  35167. source: "./media/characters/kremm/ass.svg"
  35168. }
  35169. },
  35170. jaws: {
  35171. height: math.unit(2.2, "feet"),
  35172. name: "Jaws",
  35173. image: {
  35174. source: "./media/characters/kremm/jaws.svg"
  35175. }
  35176. },
  35177. dick: {
  35178. height: math.unit(4.26, "feet"),
  35179. name: "Dick",
  35180. image: {
  35181. source: "./media/characters/kremm/dick.svg"
  35182. }
  35183. },
  35184. },
  35185. [
  35186. {
  35187. name: "Normal",
  35188. height: math.unit(10, "feet"),
  35189. default: true
  35190. },
  35191. ]
  35192. ))
  35193. characterMakers.push(() => makeCharacter(
  35194. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35195. {
  35196. front: {
  35197. height: math.unit(30, "stories"),
  35198. name: "Front",
  35199. image: {
  35200. source: "./media/characters/kai/front.svg",
  35201. extra: 1892/1718,
  35202. bottom: 162/2054
  35203. }
  35204. },
  35205. },
  35206. [
  35207. {
  35208. name: "Macro",
  35209. height: math.unit(30, "stories"),
  35210. default: true
  35211. },
  35212. ]
  35213. ))
  35214. characterMakers.push(() => makeCharacter(
  35215. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35216. {
  35217. front: {
  35218. height: math.unit(6 + 4/12, "feet"),
  35219. weight: math.unit(145, "lb"),
  35220. name: "Front",
  35221. image: {
  35222. source: "./media/characters/sykes/front.svg",
  35223. extra: 1321 / 1187,
  35224. bottom: 66 / 1387
  35225. }
  35226. },
  35227. back: {
  35228. height: math.unit(6 + 4/12, "feet"),
  35229. weight: math.unit(145, "lb"),
  35230. name: "Back",
  35231. image: {
  35232. source: "./media/characters/sykes/back.svg",
  35233. extra: 1326/1181,
  35234. bottom: 31/1357
  35235. }
  35236. },
  35237. traditionalOutfit: {
  35238. height: math.unit(6 + 4/12, "feet"),
  35239. weight: math.unit(145, "lb"),
  35240. name: "Traditional Outfit",
  35241. image: {
  35242. source: "./media/characters/sykes/traditional-outfit.svg",
  35243. extra: 1321 / 1187,
  35244. bottom: 66 / 1387
  35245. }
  35246. },
  35247. adventureOutfit: {
  35248. height: math.unit(6 + 4/12, "feet"),
  35249. weight: math.unit(145, "lb"),
  35250. name: "Adventure Outfit",
  35251. image: {
  35252. source: "./media/characters/sykes/adventure-outfit.svg",
  35253. extra: 1321 / 1187,
  35254. bottom: 66 / 1387
  35255. }
  35256. },
  35257. handLeft: {
  35258. height: math.unit(0.9, "feet"),
  35259. name: "Hand (Left)",
  35260. image: {
  35261. source: "./media/characters/sykes/hand-left.svg"
  35262. }
  35263. },
  35264. handRight: {
  35265. height: math.unit(0.839, "feet"),
  35266. name: "Hand (Right)",
  35267. image: {
  35268. source: "./media/characters/sykes/hand-right.svg"
  35269. }
  35270. },
  35271. leftFoot: {
  35272. height: math.unit(1.2, "feet"),
  35273. name: "Foot (Left)",
  35274. image: {
  35275. source: "./media/characters/sykes/foot-left.svg"
  35276. }
  35277. },
  35278. rightFoot: {
  35279. height: math.unit(1.2, "feet"),
  35280. name: "Foot (Right)",
  35281. image: {
  35282. source: "./media/characters/sykes/foot-right.svg"
  35283. }
  35284. },
  35285. maw: {
  35286. height: math.unit(1.93, "feet"),
  35287. name: "Maw",
  35288. image: {
  35289. source: "./media/characters/sykes/maw.svg"
  35290. }
  35291. },
  35292. teeth: {
  35293. height: math.unit(0.51, "feet"),
  35294. name: "Teeth",
  35295. image: {
  35296. source: "./media/characters/sykes/teeth.svg"
  35297. }
  35298. },
  35299. tongue: {
  35300. height: math.unit(2.13, "feet"),
  35301. name: "Tongue",
  35302. image: {
  35303. source: "./media/characters/sykes/tongue.svg"
  35304. }
  35305. },
  35306. uvula: {
  35307. height: math.unit(0.16, "feet"),
  35308. name: "Uvula",
  35309. image: {
  35310. source: "./media/characters/sykes/uvula.svg"
  35311. }
  35312. },
  35313. collar: {
  35314. height: math.unit(0.287, "feet"),
  35315. name: "Collar",
  35316. image: {
  35317. source: "./media/characters/sykes/collar.svg"
  35318. }
  35319. },
  35320. tail: {
  35321. height: math.unit(3.8, "feet"),
  35322. name: "Tail",
  35323. image: {
  35324. source: "./media/characters/sykes/tail.svg"
  35325. }
  35326. },
  35327. },
  35328. [
  35329. {
  35330. name: "Shrunken",
  35331. height: math.unit(5, "inches")
  35332. },
  35333. {
  35334. name: "Normal",
  35335. height: math.unit(6 + 4 / 12, "feet"),
  35336. default: true
  35337. },
  35338. {
  35339. name: "Big",
  35340. height: math.unit(15, "feet")
  35341. },
  35342. ]
  35343. ))
  35344. characterMakers.push(() => makeCharacter(
  35345. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35346. {
  35347. front: {
  35348. height: math.unit(5 + 8/12, "feet"),
  35349. weight: math.unit(190, "lb"),
  35350. name: "Front",
  35351. image: {
  35352. source: "./media/characters/oven-otter/front.svg",
  35353. extra: 1809/1740,
  35354. bottom: 181/1990
  35355. }
  35356. },
  35357. back: {
  35358. height: math.unit(5 + 8/12, "feet"),
  35359. weight: math.unit(190, "lb"),
  35360. name: "Back",
  35361. image: {
  35362. source: "./media/characters/oven-otter/back.svg",
  35363. extra: 1709/1635,
  35364. bottom: 118/1827
  35365. }
  35366. },
  35367. hand: {
  35368. height: math.unit(1.07, "feet"),
  35369. name: "Hand",
  35370. image: {
  35371. source: "./media/characters/oven-otter/hand.svg"
  35372. }
  35373. },
  35374. beans: {
  35375. height: math.unit(1.74, "feet"),
  35376. name: "Beans",
  35377. image: {
  35378. source: "./media/characters/oven-otter/beans.svg"
  35379. }
  35380. },
  35381. },
  35382. [
  35383. {
  35384. name: "Micro",
  35385. height: math.unit(0.5, "inches")
  35386. },
  35387. {
  35388. name: "Normal",
  35389. height: math.unit(5 + 8/12, "feet"),
  35390. default: true
  35391. },
  35392. {
  35393. name: "Macro",
  35394. height: math.unit(250, "feet")
  35395. },
  35396. {
  35397. name: "Really High",
  35398. height: math.unit(420, "feet")
  35399. },
  35400. ]
  35401. ))
  35402. characterMakers.push(() => makeCharacter(
  35403. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35404. {
  35405. front: {
  35406. height: math.unit(5, "meters"),
  35407. weight: math.unit(292000000000000, "kg"),
  35408. name: "Front",
  35409. image: {
  35410. source: "./media/characters/devourer/front.svg",
  35411. extra: 1800/1733,
  35412. bottom: 211/2011
  35413. }
  35414. },
  35415. maw: {
  35416. height: math.unit(1.1, "meter"),
  35417. name: "Maw",
  35418. image: {
  35419. source: "./media/characters/devourer/maw.svg"
  35420. }
  35421. },
  35422. },
  35423. [
  35424. {
  35425. name: "Small",
  35426. height: math.unit(3, "meters")
  35427. },
  35428. {
  35429. name: "Large",
  35430. height: math.unit(5, "meters"),
  35431. default: true
  35432. },
  35433. ]
  35434. ))
  35435. characterMakers.push(() => makeCharacter(
  35436. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35437. {
  35438. front: {
  35439. height: math.unit(6, "feet"),
  35440. weight: math.unit(400, "lb"),
  35441. name: "Front",
  35442. image: {
  35443. source: "./media/characters/ellarby/front.svg",
  35444. extra: 1909/1763,
  35445. bottom: 80/1989
  35446. }
  35447. },
  35448. back: {
  35449. height: math.unit(6, "feet"),
  35450. weight: math.unit(400, "lb"),
  35451. name: "Back",
  35452. image: {
  35453. source: "./media/characters/ellarby/back.svg",
  35454. extra: 1914/1784,
  35455. bottom: 172/2086
  35456. }
  35457. },
  35458. },
  35459. [
  35460. {
  35461. name: "Mischief",
  35462. height: math.unit(18, "inches")
  35463. },
  35464. {
  35465. name: "Trouble",
  35466. height: math.unit(12, "feet")
  35467. },
  35468. {
  35469. name: "Havoc",
  35470. height: math.unit(200, "feet"),
  35471. default: true
  35472. },
  35473. {
  35474. name: "Pandemonium",
  35475. height: math.unit(1, "mile")
  35476. },
  35477. {
  35478. name: "Catastrophe",
  35479. height: math.unit(100, "miles")
  35480. },
  35481. ]
  35482. ))
  35483. characterMakers.push(() => makeCharacter(
  35484. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35485. {
  35486. front: {
  35487. height: math.unit(4.7, "meters"),
  35488. weight: math.unit(6500, "kg"),
  35489. name: "Front",
  35490. image: {
  35491. source: "./media/characters/vex/front.svg",
  35492. extra: 1288/1140,
  35493. bottom: 100/1388
  35494. }
  35495. },
  35496. },
  35497. [
  35498. {
  35499. name: "Normal",
  35500. height: math.unit(4.7, "meters"),
  35501. default: true
  35502. },
  35503. ]
  35504. ))
  35505. characterMakers.push(() => makeCharacter(
  35506. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35507. {
  35508. normal: {
  35509. height: math.unit(6, "feet"),
  35510. weight: math.unit(350, "lb"),
  35511. name: "Normal",
  35512. image: {
  35513. source: "./media/characters/teshy/normal.svg",
  35514. extra: 1795/1735,
  35515. bottom: 16/1811
  35516. }
  35517. },
  35518. monsterFront: {
  35519. height: math.unit(12, "feet"),
  35520. weight: math.unit(4700, "lb"),
  35521. name: "Monster (Front)",
  35522. image: {
  35523. source: "./media/characters/teshy/monster-front.svg",
  35524. extra: 2042/2034,
  35525. bottom: 128/2170
  35526. }
  35527. },
  35528. monsterSide: {
  35529. height: math.unit(12, "feet"),
  35530. weight: math.unit(4700, "lb"),
  35531. name: "Monster (Side)",
  35532. image: {
  35533. source: "./media/characters/teshy/monster-side.svg",
  35534. extra: 2067/2056,
  35535. bottom: 70/2137
  35536. }
  35537. },
  35538. monsterBack: {
  35539. height: math.unit(12, "feet"),
  35540. weight: math.unit(4700, "lb"),
  35541. name: "Monster (Back)",
  35542. image: {
  35543. source: "./media/characters/teshy/monster-back.svg",
  35544. extra: 1921/1914,
  35545. bottom: 171/2092
  35546. }
  35547. },
  35548. },
  35549. [
  35550. {
  35551. name: "Normal",
  35552. height: math.unit(6, "feet"),
  35553. default: true
  35554. },
  35555. ]
  35556. ))
  35557. characterMakers.push(() => makeCharacter(
  35558. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35559. {
  35560. front: {
  35561. height: math.unit(6, "feet"),
  35562. name: "Front",
  35563. image: {
  35564. source: "./media/characters/ramey/front.svg",
  35565. extra: 790/787,
  35566. bottom: 27/817
  35567. }
  35568. },
  35569. },
  35570. [
  35571. {
  35572. name: "Normal",
  35573. height: math.unit(6, "feet"),
  35574. default: true
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35580. {
  35581. front: {
  35582. height: math.unit(5 + 5/12, "feet"),
  35583. weight: math.unit(120, "lb"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/phirae/front.svg",
  35587. extra: 2491/2436,
  35588. bottom: 38/2529
  35589. }
  35590. },
  35591. },
  35592. [
  35593. {
  35594. name: "Normal",
  35595. height: math.unit(5 + 5/12, "feet"),
  35596. default: true
  35597. },
  35598. ]
  35599. ))
  35600. characterMakers.push(() => makeCharacter(
  35601. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35602. {
  35603. front: {
  35604. height: math.unit(5 + 3/12, "feet"),
  35605. name: "Front",
  35606. image: {
  35607. source: "./media/characters/stagglas/front.svg",
  35608. extra: 962/882,
  35609. bottom: 53/1015
  35610. }
  35611. },
  35612. feral: {
  35613. height: math.unit(335, "cm"),
  35614. name: "Feral",
  35615. image: {
  35616. source: "./media/characters/stagglas/feral.svg",
  35617. extra: 1732/1090,
  35618. bottom: 48/1780
  35619. }
  35620. },
  35621. },
  35622. [
  35623. {
  35624. name: "Normal",
  35625. height: math.unit(5 + 3/12, "feet"),
  35626. default: true
  35627. },
  35628. ]
  35629. ))
  35630. characterMakers.push(() => makeCharacter(
  35631. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35632. {
  35633. front: {
  35634. height: math.unit(5 + 4/12, "feet"),
  35635. weight: math.unit(145, "lb"),
  35636. name: "Front",
  35637. image: {
  35638. source: "./media/characters/starra/front.svg",
  35639. extra: 1790/1691,
  35640. bottom: 91/1881
  35641. }
  35642. },
  35643. },
  35644. [
  35645. {
  35646. name: "Normal",
  35647. height: math.unit(5 + 4/12, "feet"),
  35648. default: true
  35649. },
  35650. ]
  35651. ))
  35652. characterMakers.push(() => makeCharacter(
  35653. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35654. {
  35655. front: {
  35656. height: math.unit(2.2, "meters"),
  35657. name: "Front",
  35658. image: {
  35659. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35660. extra: 1194/1005,
  35661. bottom: 25/1219
  35662. }
  35663. },
  35664. },
  35665. [
  35666. {
  35667. name: "Normal",
  35668. height: math.unit(2.2, "meters"),
  35669. default: true
  35670. },
  35671. ]
  35672. ))
  35673. characterMakers.push(() => makeCharacter(
  35674. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35675. {
  35676. side: {
  35677. height: math.unit(8 + 2/12, "feet"),
  35678. weight: math.unit(1240, "lb"),
  35679. name: "Side",
  35680. image: {
  35681. source: "./media/characters/mika-valentine/side.svg",
  35682. extra: 2670/2501,
  35683. bottom: 250/2920
  35684. }
  35685. },
  35686. },
  35687. [
  35688. {
  35689. name: "Normal",
  35690. height: math.unit(8 + 2/12, "feet"),
  35691. default: true
  35692. },
  35693. ]
  35694. ))
  35695. characterMakers.push(() => makeCharacter(
  35696. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35697. {
  35698. front: {
  35699. height: math.unit(7 + 2/12, "feet"),
  35700. name: "Front",
  35701. image: {
  35702. source: "./media/characters/xoltol/front.svg",
  35703. extra: 2212/2124,
  35704. bottom: 84/2296
  35705. }
  35706. },
  35707. side: {
  35708. height: math.unit(7 + 2/12, "feet"),
  35709. name: "Side",
  35710. image: {
  35711. source: "./media/characters/xoltol/side.svg",
  35712. extra: 2273/2197,
  35713. bottom: 26/2299
  35714. }
  35715. },
  35716. hand: {
  35717. height: math.unit(2.5, "feet"),
  35718. name: "Hand",
  35719. image: {
  35720. source: "./media/characters/xoltol/hand.svg"
  35721. }
  35722. },
  35723. },
  35724. [
  35725. {
  35726. name: "Small-ish",
  35727. height: math.unit(5 + 11/12, "feet")
  35728. },
  35729. {
  35730. name: "Normal",
  35731. height: math.unit(7 + 2/12, "feet")
  35732. },
  35733. {
  35734. name: "\"Macro\"",
  35735. height: math.unit(14 + 9/12, "feet"),
  35736. default: true
  35737. },
  35738. {
  35739. name: "Alternate Height",
  35740. height: math.unit(20, "feet")
  35741. },
  35742. {
  35743. name: "Actually Macro",
  35744. height: math.unit(100, "feet")
  35745. },
  35746. ]
  35747. ))
  35748. characterMakers.push(() => makeCharacter(
  35749. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35750. {
  35751. front: {
  35752. height: math.unit(5 + 2/12, "feet"),
  35753. name: "Front",
  35754. image: {
  35755. source: "./media/characters/kotetsu-redwood/front.svg",
  35756. extra: 1053/942,
  35757. bottom: 60/1113
  35758. }
  35759. },
  35760. },
  35761. [
  35762. {
  35763. name: "Normal",
  35764. height: math.unit(5 + 2/12, "feet"),
  35765. default: true
  35766. },
  35767. ]
  35768. ))
  35769. characterMakers.push(() => makeCharacter(
  35770. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35771. {
  35772. front: {
  35773. height: math.unit(2.4, "meters"),
  35774. weight: math.unit(125, "kg"),
  35775. name: "Front",
  35776. image: {
  35777. source: "./media/characters/lilith/front.svg",
  35778. extra: 1590/1513,
  35779. bottom: 203/1793
  35780. }
  35781. },
  35782. },
  35783. [
  35784. {
  35785. name: "Humanoid",
  35786. height: math.unit(2.4, "meters")
  35787. },
  35788. {
  35789. name: "Normal",
  35790. height: math.unit(6, "meters"),
  35791. default: true
  35792. },
  35793. {
  35794. name: "Largest",
  35795. height: math.unit(55, "meters")
  35796. },
  35797. ]
  35798. ))
  35799. characterMakers.push(() => makeCharacter(
  35800. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35801. {
  35802. front: {
  35803. height: math.unit(8 + 4/12, "feet"),
  35804. weight: math.unit(535, "lb"),
  35805. name: "Front",
  35806. image: {
  35807. source: "./media/characters/beh'kah-bolger/front.svg",
  35808. extra: 1660/1603,
  35809. bottom: 37/1697
  35810. }
  35811. },
  35812. },
  35813. [
  35814. {
  35815. name: "Normal",
  35816. height: math.unit(8 + 4/12, "feet"),
  35817. default: true
  35818. },
  35819. {
  35820. name: "Kaiju",
  35821. height: math.unit(250, "feet")
  35822. },
  35823. {
  35824. name: "Still Growing",
  35825. height: math.unit(10, "miles")
  35826. },
  35827. {
  35828. name: "Continental",
  35829. height: math.unit(5000, "miles")
  35830. },
  35831. {
  35832. name: "Final Form",
  35833. height: math.unit(2500000, "miles")
  35834. },
  35835. ]
  35836. ))
  35837. characterMakers.push(() => makeCharacter(
  35838. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35839. {
  35840. front: {
  35841. height: math.unit(7 + 2/12, "feet"),
  35842. weight: math.unit(230, "kg"),
  35843. name: "Front",
  35844. image: {
  35845. source: "./media/characters/tatyana-milewska/front.svg",
  35846. extra: 1199/1150,
  35847. bottom: 86/1285
  35848. }
  35849. },
  35850. },
  35851. [
  35852. {
  35853. name: "Normal",
  35854. height: math.unit(7 + 2/12, "feet"),
  35855. default: true
  35856. },
  35857. {
  35858. name: "Big",
  35859. height: math.unit(12, "feet")
  35860. },
  35861. {
  35862. name: "Minimacro",
  35863. height: math.unit(20, "feet")
  35864. },
  35865. {
  35866. name: "Macro",
  35867. height: math.unit(120, "feet")
  35868. },
  35869. ]
  35870. ))
  35871. characterMakers.push(() => makeCharacter(
  35872. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35873. {
  35874. front: {
  35875. height: math.unit(7 + 8/12, "feet"),
  35876. weight: math.unit(152, "kg"),
  35877. name: "Front",
  35878. image: {
  35879. source: "./media/characters/helen-arri/front.svg",
  35880. extra: 440/423,
  35881. bottom: 14/454
  35882. }
  35883. },
  35884. back: {
  35885. height: math.unit(7 + 8/12, "feet"),
  35886. weight: math.unit(152, "kg"),
  35887. name: "Back",
  35888. image: {
  35889. source: "./media/characters/helen-arri/back.svg",
  35890. extra: 443/426,
  35891. bottom: 8/451
  35892. }
  35893. },
  35894. },
  35895. [
  35896. {
  35897. name: "Normal",
  35898. height: math.unit(7 + 8/12, "feet"),
  35899. default: true
  35900. },
  35901. {
  35902. name: "Big",
  35903. height: math.unit(14, "feet")
  35904. },
  35905. {
  35906. name: "Minimacro",
  35907. height: math.unit(24, "feet")
  35908. },
  35909. {
  35910. name: "Macro",
  35911. height: math.unit(140, "feet")
  35912. },
  35913. ]
  35914. ))
  35915. characterMakers.push(() => makeCharacter(
  35916. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35917. {
  35918. front: {
  35919. height: math.unit(6, "meters"),
  35920. name: "Front",
  35921. image: {
  35922. source: "./media/characters/ehanu-rehu/front.svg",
  35923. extra: 1800/1800,
  35924. bottom: 59/1859
  35925. }
  35926. },
  35927. },
  35928. [
  35929. {
  35930. name: "Normal",
  35931. height: math.unit(6, "meters"),
  35932. default: true
  35933. },
  35934. ]
  35935. ))
  35936. characterMakers.push(() => makeCharacter(
  35937. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35938. {
  35939. front: {
  35940. height: math.unit(7 + 3/12, "feet"),
  35941. name: "Front",
  35942. image: {
  35943. source: "./media/characters/renholder/front.svg",
  35944. extra: 3096/2960,
  35945. bottom: 250/3346
  35946. }
  35947. },
  35948. },
  35949. [
  35950. {
  35951. name: "Normal Bat",
  35952. height: math.unit(7 + 3/12, "feet"),
  35953. default: true
  35954. },
  35955. {
  35956. name: "Slightly Tall Bat",
  35957. height: math.unit(100, "feet")
  35958. },
  35959. {
  35960. name: "Big Bat",
  35961. height: math.unit(1000, "feet")
  35962. },
  35963. {
  35964. name: "City-Sized Bat",
  35965. height: math.unit(200000, "feet")
  35966. },
  35967. {
  35968. name: "Bigger Bat",
  35969. height: math.unit(10000, "miles")
  35970. },
  35971. {
  35972. name: "Solar Sized Bat",
  35973. height: math.unit(100, "AU")
  35974. },
  35975. {
  35976. name: "Galactic Bat",
  35977. height: math.unit(200000, "lightyears")
  35978. },
  35979. {
  35980. name: "Universally Known Bat",
  35981. height: math.unit(1, "universe")
  35982. },
  35983. ]
  35984. ))
  35985. characterMakers.push(() => makeCharacter(
  35986. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35987. {
  35988. front: {
  35989. height: math.unit(6 + 11/12, "feet"),
  35990. weight: math.unit(250, "lb"),
  35991. name: "Front",
  35992. image: {
  35993. source: "./media/characters/cookiecat/front.svg",
  35994. extra: 893/827,
  35995. bottom: 14/907
  35996. }
  35997. },
  35998. },
  35999. [
  36000. {
  36001. name: "Micro",
  36002. height: math.unit(3, "inches")
  36003. },
  36004. {
  36005. name: "Normal",
  36006. height: math.unit(6 + 11/12, "feet"),
  36007. default: true
  36008. },
  36009. {
  36010. name: "Macro",
  36011. height: math.unit(100, "feet")
  36012. },
  36013. {
  36014. name: "Macro+",
  36015. height: math.unit(404, "feet")
  36016. },
  36017. {
  36018. name: "Megamacro",
  36019. height: math.unit(165, "miles")
  36020. },
  36021. {
  36022. name: "Planetary",
  36023. height: math.unit(4600, "miles")
  36024. },
  36025. ]
  36026. ))
  36027. characterMakers.push(() => makeCharacter(
  36028. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36029. {
  36030. front: {
  36031. height: math.unit(10 + 3/12, "feet"),
  36032. weight: math.unit(1500, "lb"),
  36033. name: "Front",
  36034. image: {
  36035. source: "./media/characters/tux-kusanagi/front.svg",
  36036. extra: 944/840,
  36037. bottom: 39/983
  36038. }
  36039. },
  36040. back: {
  36041. height: math.unit(10 + 3/12, "feet"),
  36042. weight: math.unit(1500, "lb"),
  36043. name: "Back",
  36044. image: {
  36045. source: "./media/characters/tux-kusanagi/back.svg",
  36046. extra: 941/842,
  36047. bottom: 28/969
  36048. }
  36049. },
  36050. rump: {
  36051. height: math.unit(5.25, "feet"),
  36052. name: "Rump",
  36053. image: {
  36054. source: "./media/characters/tux-kusanagi/rump.svg"
  36055. }
  36056. },
  36057. beak: {
  36058. height: math.unit(1.54, "feet"),
  36059. name: "Beak",
  36060. image: {
  36061. source: "./media/characters/tux-kusanagi/beak.svg"
  36062. }
  36063. },
  36064. },
  36065. [
  36066. {
  36067. name: "Normal",
  36068. height: math.unit(10 + 3/12, "feet"),
  36069. default: true
  36070. },
  36071. ]
  36072. ))
  36073. characterMakers.push(() => makeCharacter(
  36074. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36075. {
  36076. front: {
  36077. height: math.unit(58, "feet"),
  36078. weight: math.unit(200, "tons"),
  36079. name: "Front",
  36080. image: {
  36081. source: "./media/characters/uzarmazari/front.svg",
  36082. extra: 1575/1455,
  36083. bottom: 152/1727
  36084. }
  36085. },
  36086. back: {
  36087. height: math.unit(58, "feet"),
  36088. weight: math.unit(200, "tons"),
  36089. name: "Back",
  36090. image: {
  36091. source: "./media/characters/uzarmazari/back.svg",
  36092. extra: 1585/1510,
  36093. bottom: 157/1742
  36094. }
  36095. },
  36096. head: {
  36097. height: math.unit(26, "feet"),
  36098. name: "Head",
  36099. image: {
  36100. source: "./media/characters/uzarmazari/head.svg"
  36101. }
  36102. },
  36103. },
  36104. [
  36105. {
  36106. name: "Normal",
  36107. height: math.unit(58, "feet"),
  36108. default: true
  36109. },
  36110. ]
  36111. ))
  36112. characterMakers.push(() => makeCharacter(
  36113. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36114. {
  36115. side: {
  36116. height: math.unit(15, "feet"),
  36117. name: "Side",
  36118. image: {
  36119. source: "./media/characters/akitu/side.svg",
  36120. extra: 1421/1321,
  36121. bottom: 157/1578
  36122. }
  36123. },
  36124. front: {
  36125. height: math.unit(15, "feet"),
  36126. name: "Front",
  36127. image: {
  36128. source: "./media/characters/akitu/front.svg",
  36129. extra: 1435/1326,
  36130. bottom: 232/1667
  36131. }
  36132. },
  36133. },
  36134. [
  36135. {
  36136. name: "Normal",
  36137. height: math.unit(15, "feet"),
  36138. default: true
  36139. },
  36140. ]
  36141. ))
  36142. characterMakers.push(() => makeCharacter(
  36143. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36144. {
  36145. front: {
  36146. height: math.unit(10 + 8/12, "feet"),
  36147. name: "Front",
  36148. image: {
  36149. source: "./media/characters/azalie-croixland/front.svg",
  36150. extra: 1972/1856,
  36151. bottom: 31/2003
  36152. }
  36153. },
  36154. },
  36155. [
  36156. {
  36157. name: "Original Height",
  36158. height: math.unit(5 + 4/12, "feet")
  36159. },
  36160. {
  36161. name: "Normal Height",
  36162. height: math.unit(10 + 8/12, "feet"),
  36163. default: true
  36164. },
  36165. ]
  36166. ))
  36167. characterMakers.push(() => makeCharacter(
  36168. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36169. {
  36170. side: {
  36171. height: math.unit(7 + 1/12, "feet"),
  36172. weight: math.unit(245, "lb"),
  36173. name: "Side",
  36174. image: {
  36175. source: "./media/characters/kavus-kazian/side.svg",
  36176. extra: 349/342,
  36177. bottom: 15/364
  36178. }
  36179. },
  36180. },
  36181. [
  36182. {
  36183. name: "Normal",
  36184. height: math.unit(7 + 1/12, "feet"),
  36185. default: true
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36191. {
  36192. normalFront: {
  36193. height: math.unit(5 + 11/12, "feet"),
  36194. name: "Front",
  36195. image: {
  36196. source: "./media/characters/moonlight-rose/normal-front.svg",
  36197. extra: 1980/1825,
  36198. bottom: 18/1998
  36199. },
  36200. form: "normal",
  36201. default: true
  36202. },
  36203. normalBack: {
  36204. height: math.unit(5 + 11/12, "feet"),
  36205. name: "Back",
  36206. image: {
  36207. source: "./media/characters/moonlight-rose/normal-back.svg",
  36208. extra: 2010/1839,
  36209. bottom: 10/2020
  36210. },
  36211. form: "normal"
  36212. },
  36213. demonFront: {
  36214. height: math.unit(1.5, "earths"),
  36215. name: "Front",
  36216. image: {
  36217. source: "./media/characters/moonlight-rose/demon.svg",
  36218. extra: 1400/1294,
  36219. bottom: 45/1445
  36220. },
  36221. form: "demon",
  36222. default: true
  36223. },
  36224. terraFront: {
  36225. height: math.unit(1.5, "earths"),
  36226. name: "Front",
  36227. image: {
  36228. source: "./media/characters/moonlight-rose/terra.svg"
  36229. },
  36230. form: "terra",
  36231. default: true
  36232. },
  36233. jupiterFront: {
  36234. height: math.unit(69911*2, "km"),
  36235. name: "Front",
  36236. image: {
  36237. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36238. extra: 1367/1286,
  36239. bottom: 55/1422
  36240. },
  36241. form: "jupiter",
  36242. default: true
  36243. },
  36244. neptuneFront: {
  36245. height: math.unit(24622*2, "feet"),
  36246. name: "Front",
  36247. image: {
  36248. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36249. extra: 1851/1712,
  36250. bottom: 0/1851
  36251. },
  36252. form: "neptune",
  36253. default: true
  36254. },
  36255. },
  36256. [
  36257. {
  36258. name: "\"Natural\" Height",
  36259. height: math.unit(5 + 11/12, "feet"),
  36260. form: "normal"
  36261. },
  36262. {
  36263. name: "Smallest comfortable size",
  36264. height: math.unit(40, "meters"),
  36265. form: "normal"
  36266. },
  36267. {
  36268. name: "Common size",
  36269. height: math.unit(50, "km"),
  36270. form: "normal",
  36271. default: true
  36272. },
  36273. {
  36274. name: "Normal",
  36275. height: math.unit(1.5, "earths"),
  36276. form: "demon",
  36277. default: true
  36278. },
  36279. {
  36280. name: "Universal",
  36281. height: math.unit(15, "universes"),
  36282. form: "demon"
  36283. },
  36284. {
  36285. name: "Earth",
  36286. height: math.unit(1.5, "earths"),
  36287. form: "terra",
  36288. default: true
  36289. },
  36290. {
  36291. name: "Super Earth",
  36292. height: math.unit(67.5, "earths"),
  36293. form: "terra"
  36294. },
  36295. {
  36296. name: "Doesn't fit in a solar system...",
  36297. height: math.unit(1, "galaxy"),
  36298. form: "terra"
  36299. },
  36300. {
  36301. name: "Saturn",
  36302. height: math.unit(58232*2, "km"),
  36303. form: "jupiter"
  36304. },
  36305. {
  36306. name: "Jupiter",
  36307. height: math.unit(69911*2, "km"),
  36308. form: "jupiter",
  36309. default: true
  36310. },
  36311. {
  36312. name: "HD 100546 b",
  36313. height: math.unit(482938, "km"),
  36314. form: "jupiter"
  36315. },
  36316. {
  36317. name: "Enceladus",
  36318. height: math.unit(513*2, "km"),
  36319. form: "neptune"
  36320. },
  36321. {
  36322. name: "Europe",
  36323. height: math.unit(1560*2, "km"),
  36324. form: "neptune"
  36325. },
  36326. {
  36327. name: "Neptune",
  36328. height: math.unit(24622*2, "km"),
  36329. form: "neptune",
  36330. default: true
  36331. },
  36332. {
  36333. name: "CoRoT-9b",
  36334. height: math.unit(75067*2, "km"),
  36335. form: "neptune"
  36336. },
  36337. ],
  36338. {
  36339. "normal": {
  36340. name: "Normal",
  36341. default: true
  36342. },
  36343. "demon": {
  36344. name: "Demon"
  36345. },
  36346. "terra": {
  36347. name: "Terra"
  36348. },
  36349. "jupiter": {
  36350. name: "Jupiter"
  36351. },
  36352. "neptune": {
  36353. name: "Neptune"
  36354. }
  36355. }
  36356. ))
  36357. characterMakers.push(() => makeCharacter(
  36358. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36359. {
  36360. front: {
  36361. height: math.unit(16, "feet"),
  36362. weight: math.unit(610, "kg"),
  36363. name: "Front",
  36364. image: {
  36365. source: "./media/characters/huckle/front.svg",
  36366. extra: 1731/1625,
  36367. bottom: 33/1764
  36368. }
  36369. },
  36370. back: {
  36371. height: math.unit(16, "feet"),
  36372. weight: math.unit(610, "kg"),
  36373. name: "Back",
  36374. image: {
  36375. source: "./media/characters/huckle/back.svg",
  36376. extra: 1738/1651,
  36377. bottom: 37/1775
  36378. }
  36379. },
  36380. laughing: {
  36381. height: math.unit(3.75, "feet"),
  36382. name: "Laughing",
  36383. image: {
  36384. source: "./media/characters/huckle/laughing.svg"
  36385. }
  36386. },
  36387. angry: {
  36388. height: math.unit(4.15, "feet"),
  36389. name: "Angry",
  36390. image: {
  36391. source: "./media/characters/huckle/angry.svg"
  36392. }
  36393. },
  36394. },
  36395. [
  36396. {
  36397. name: "Normal",
  36398. height: math.unit(16, "feet"),
  36399. default: true
  36400. },
  36401. {
  36402. name: "Mini Macro",
  36403. height: math.unit(463, "feet")
  36404. },
  36405. {
  36406. name: "Macro",
  36407. height: math.unit(1680, "meters")
  36408. },
  36409. {
  36410. name: "Mega Macro",
  36411. height: math.unit(175, "km")
  36412. },
  36413. {
  36414. name: "Terra Macro",
  36415. height: math.unit(32, "gigameters")
  36416. },
  36417. {
  36418. name: "Multiverse+",
  36419. height: math.unit(2.56e23, "yottameters")
  36420. },
  36421. ]
  36422. ))
  36423. characterMakers.push(() => makeCharacter(
  36424. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36425. {
  36426. front: {
  36427. height: math.unit(6 + 9/12, "feet"),
  36428. weight: math.unit(280, "lb"),
  36429. name: "Front",
  36430. image: {
  36431. source: "./media/characters/candy/front.svg",
  36432. extra: 234/217,
  36433. bottom: 11/245
  36434. }
  36435. },
  36436. },
  36437. [
  36438. {
  36439. name: "Really Small",
  36440. height: math.unit(0.1, "nm")
  36441. },
  36442. {
  36443. name: "Micro",
  36444. height: math.unit(2, "inches")
  36445. },
  36446. {
  36447. name: "Normal",
  36448. height: math.unit(6 + 9/12, "feet"),
  36449. default: true
  36450. },
  36451. {
  36452. name: "Small Macro",
  36453. height: math.unit(69, "feet")
  36454. },
  36455. {
  36456. name: "Macro",
  36457. height: math.unit(160, "feet")
  36458. },
  36459. {
  36460. name: "Megamacro",
  36461. height: math.unit(22000, "miles")
  36462. },
  36463. {
  36464. name: "Gigamacro",
  36465. height: math.unit(50000, "miles")
  36466. },
  36467. ]
  36468. ))
  36469. characterMakers.push(() => makeCharacter(
  36470. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36471. {
  36472. front: {
  36473. height: math.unit(4, "feet"),
  36474. weight: math.unit(90, "lb"),
  36475. name: "Front",
  36476. image: {
  36477. source: "./media/characters/joey-mcdonald/front.svg",
  36478. extra: 1059/852,
  36479. bottom: 33/1092
  36480. }
  36481. },
  36482. back: {
  36483. height: math.unit(4, "feet"),
  36484. weight: math.unit(90, "lb"),
  36485. name: "Back",
  36486. image: {
  36487. source: "./media/characters/joey-mcdonald/back.svg",
  36488. extra: 1077/879,
  36489. bottom: 5/1082
  36490. }
  36491. },
  36492. frontKobold: {
  36493. height: math.unit(4, "feet"),
  36494. weight: math.unit(100, "lb"),
  36495. name: "Front-kobold",
  36496. image: {
  36497. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36498. extra: 1480/1367,
  36499. bottom: 0/1480
  36500. }
  36501. },
  36502. backKobold: {
  36503. height: math.unit(4, "feet"),
  36504. weight: math.unit(100, "lb"),
  36505. name: "Back-kobold",
  36506. image: {
  36507. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36508. extra: 1449/1361,
  36509. bottom: 0/1449
  36510. }
  36511. },
  36512. },
  36513. [
  36514. {
  36515. name: "Normal",
  36516. height: math.unit(4, "feet"),
  36517. default: true
  36518. },
  36519. ]
  36520. ))
  36521. characterMakers.push(() => makeCharacter(
  36522. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36523. {
  36524. front: {
  36525. height: math.unit(12 + 6/12, "feet"),
  36526. name: "Front",
  36527. image: {
  36528. source: "./media/characters/kass-lockheed/front.svg",
  36529. extra: 354/343,
  36530. bottom: 9/363
  36531. }
  36532. },
  36533. back: {
  36534. height: math.unit(12 + 6/12, "feet"),
  36535. name: "Back",
  36536. image: {
  36537. source: "./media/characters/kass-lockheed/back.svg",
  36538. extra: 364/352,
  36539. bottom: 3/367
  36540. }
  36541. },
  36542. dick: {
  36543. height: math.unit(3.12, "feet"),
  36544. name: "Dick",
  36545. image: {
  36546. source: "./media/characters/kass-lockheed/dick.svg"
  36547. }
  36548. },
  36549. head: {
  36550. height: math.unit(2.6, "feet"),
  36551. name: "Head",
  36552. image: {
  36553. source: "./media/characters/kass-lockheed/head.svg"
  36554. }
  36555. },
  36556. bleh: {
  36557. height: math.unit(2.85, "feet"),
  36558. name: "Bleh",
  36559. image: {
  36560. source: "./media/characters/kass-lockheed/bleh.svg"
  36561. }
  36562. },
  36563. smug: {
  36564. height: math.unit(2.85, "feet"),
  36565. name: "Smug",
  36566. image: {
  36567. source: "./media/characters/kass-lockheed/smug.svg"
  36568. }
  36569. },
  36570. },
  36571. [
  36572. {
  36573. name: "Normal",
  36574. height: math.unit(12 + 6/12, "feet"),
  36575. default: true
  36576. },
  36577. ]
  36578. ))
  36579. characterMakers.push(() => makeCharacter(
  36580. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36581. {
  36582. front: {
  36583. height: math.unit(6 + 2/12, "feet"),
  36584. name: "Front",
  36585. image: {
  36586. source: "./media/characters/taylor/front.svg",
  36587. extra: 639/495,
  36588. bottom: 12/651
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Normal",
  36595. height: math.unit(6 + 2/12, "feet"),
  36596. default: true
  36597. },
  36598. {
  36599. name: "Big",
  36600. height: math.unit(15, "feet")
  36601. },
  36602. {
  36603. name: "Lorg",
  36604. height: math.unit(80, "feet")
  36605. },
  36606. {
  36607. name: "Too Lorg",
  36608. height: math.unit(120, "feet")
  36609. },
  36610. ]
  36611. ))
  36612. characterMakers.push(() => makeCharacter(
  36613. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36614. {
  36615. front: {
  36616. height: math.unit(15, "feet"),
  36617. name: "Front",
  36618. image: {
  36619. source: "./media/characters/kaizer/front.svg",
  36620. extra: 1612/1436,
  36621. bottom: 43/1655
  36622. }
  36623. },
  36624. },
  36625. [
  36626. {
  36627. name: "Normal",
  36628. height: math.unit(15, "feet"),
  36629. default: true
  36630. },
  36631. ]
  36632. ))
  36633. characterMakers.push(() => makeCharacter(
  36634. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36635. {
  36636. front: {
  36637. height: math.unit(2, "feet"),
  36638. weight: math.unit(30, "lb"),
  36639. name: "Front",
  36640. image: {
  36641. source: "./media/characters/sandy/front.svg",
  36642. extra: 1439/1307,
  36643. bottom: 194/1633
  36644. }
  36645. },
  36646. },
  36647. [
  36648. {
  36649. name: "Normal",
  36650. height: math.unit(2, "feet"),
  36651. default: true
  36652. },
  36653. ]
  36654. ))
  36655. characterMakers.push(() => makeCharacter(
  36656. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36657. {
  36658. front: {
  36659. height: math.unit(3, "feet"),
  36660. name: "Front",
  36661. image: {
  36662. source: "./media/characters/mellvi/front.svg",
  36663. extra: 1831/1630,
  36664. bottom: 58/1889
  36665. }
  36666. },
  36667. },
  36668. [
  36669. {
  36670. name: "Normal",
  36671. height: math.unit(3, "feet"),
  36672. default: true
  36673. },
  36674. ]
  36675. ))
  36676. characterMakers.push(() => makeCharacter(
  36677. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36678. {
  36679. front: {
  36680. height: math.unit(5 + 11/12, "feet"),
  36681. weight: math.unit(200, "lb"),
  36682. name: "Front",
  36683. image: {
  36684. source: "./media/characters/shirou/front.svg",
  36685. extra: 2491/2383,
  36686. bottom: 189/2680
  36687. }
  36688. },
  36689. back: {
  36690. height: math.unit(5 + 11/12, "feet"),
  36691. weight: math.unit(200, "lb"),
  36692. name: "Back",
  36693. image: {
  36694. source: "./media/characters/shirou/back.svg",
  36695. extra: 2554/2450,
  36696. bottom: 76/2630
  36697. }
  36698. },
  36699. },
  36700. [
  36701. {
  36702. name: "Normal",
  36703. height: math.unit(5 + 11/12, "feet"),
  36704. default: true
  36705. },
  36706. ]
  36707. ))
  36708. characterMakers.push(() => makeCharacter(
  36709. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36710. {
  36711. front: {
  36712. height: math.unit(6 + 3/12, "feet"),
  36713. weight: math.unit(177, "lb"),
  36714. name: "Front",
  36715. image: {
  36716. source: "./media/characters/noryu/front.svg",
  36717. extra: 973/885,
  36718. bottom: 10/983
  36719. }
  36720. },
  36721. },
  36722. [
  36723. {
  36724. name: "Normal",
  36725. height: math.unit(6 + 3/12, "feet"),
  36726. default: true
  36727. },
  36728. ]
  36729. ))
  36730. characterMakers.push(() => makeCharacter(
  36731. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36732. {
  36733. front: {
  36734. height: math.unit(5 + 6/12, "feet"),
  36735. weight: math.unit(170, "lb"),
  36736. name: "Front",
  36737. image: {
  36738. source: "./media/characters/mevolas-rubenido/front.svg",
  36739. extra: 2109/1901,
  36740. bottom: 96/2205
  36741. }
  36742. },
  36743. },
  36744. [
  36745. {
  36746. name: "Normal",
  36747. height: math.unit(5 + 6/12, "feet"),
  36748. default: true
  36749. },
  36750. ]
  36751. ))
  36752. characterMakers.push(() => makeCharacter(
  36753. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36754. {
  36755. front: {
  36756. height: math.unit(100, "feet"),
  36757. name: "Front",
  36758. image: {
  36759. source: "./media/characters/dee/front.svg",
  36760. extra: 2153/2036,
  36761. bottom: 59/2212
  36762. }
  36763. },
  36764. back: {
  36765. height: math.unit(100, "feet"),
  36766. name: "Back",
  36767. image: {
  36768. source: "./media/characters/dee/back.svg",
  36769. extra: 2183/2058,
  36770. bottom: 75/2258
  36771. }
  36772. },
  36773. foot: {
  36774. height: math.unit(19.43, "feet"),
  36775. name: "Foot",
  36776. image: {
  36777. source: "./media/characters/dee/foot.svg"
  36778. }
  36779. },
  36780. hoof: {
  36781. height: math.unit(20.6, "feet"),
  36782. name: "Hoof",
  36783. image: {
  36784. source: "./media/characters/dee/hoof.svg"
  36785. }
  36786. },
  36787. },
  36788. [
  36789. {
  36790. name: "Macro",
  36791. height: math.unit(100, "feet"),
  36792. default: true
  36793. },
  36794. ]
  36795. ))
  36796. characterMakers.push(() => makeCharacter(
  36797. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36798. {
  36799. front: {
  36800. height: math.unit(5 + 6/12, "feet"),
  36801. name: "Front",
  36802. image: {
  36803. source: "./media/characters/teh/front.svg",
  36804. extra: 1002/847,
  36805. bottom: 62/1064
  36806. }
  36807. },
  36808. },
  36809. [
  36810. {
  36811. name: "Normal",
  36812. height: math.unit(5 + 6/12, "feet"),
  36813. default: true
  36814. },
  36815. ]
  36816. ))
  36817. characterMakers.push(() => makeCharacter(
  36818. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36819. {
  36820. side: {
  36821. height: math.unit(6 + 1/12, "feet"),
  36822. weight: math.unit(204, "lb"),
  36823. name: "Side",
  36824. image: {
  36825. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36826. extra: 974/775,
  36827. bottom: 169/1143
  36828. }
  36829. },
  36830. sitting: {
  36831. height: math.unit(6 + 2/12, "feet"),
  36832. weight: math.unit(204, "lb"),
  36833. name: "Sitting",
  36834. image: {
  36835. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36836. extra: 1175/964,
  36837. bottom: 378/1553
  36838. }
  36839. },
  36840. },
  36841. [
  36842. {
  36843. name: "Normal",
  36844. height: math.unit(6 + 1/12, "feet"),
  36845. default: true
  36846. },
  36847. ]
  36848. ))
  36849. characterMakers.push(() => makeCharacter(
  36850. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36851. {
  36852. front: {
  36853. height: math.unit(6, "inches"),
  36854. name: "Front",
  36855. image: {
  36856. source: "./media/characters/tululi/front.svg",
  36857. extra: 1997/1876,
  36858. bottom: 20/2017
  36859. }
  36860. },
  36861. },
  36862. [
  36863. {
  36864. name: "Normal",
  36865. height: math.unit(6, "inches"),
  36866. default: true
  36867. },
  36868. ]
  36869. ))
  36870. characterMakers.push(() => makeCharacter(
  36871. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36872. {
  36873. front: {
  36874. height: math.unit(4 + 1/12, "feet"),
  36875. name: "Front",
  36876. image: {
  36877. source: "./media/characters/star/front.svg",
  36878. extra: 1493/1189,
  36879. bottom: 48/1541
  36880. }
  36881. },
  36882. },
  36883. [
  36884. {
  36885. name: "Normal",
  36886. height: math.unit(4 + 1/12, "feet"),
  36887. default: true
  36888. },
  36889. ]
  36890. ))
  36891. characterMakers.push(() => makeCharacter(
  36892. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36893. {
  36894. front: {
  36895. height: math.unit(6 + 3/12, "feet"),
  36896. name: "Front",
  36897. image: {
  36898. source: "./media/characters/comet/front.svg",
  36899. extra: 1681/1462,
  36900. bottom: 26/1707
  36901. }
  36902. },
  36903. },
  36904. [
  36905. {
  36906. name: "Normal",
  36907. height: math.unit(6 + 3/12, "feet"),
  36908. default: true
  36909. },
  36910. ]
  36911. ))
  36912. characterMakers.push(() => makeCharacter(
  36913. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36914. {
  36915. front: {
  36916. height: math.unit(950, "feet"),
  36917. name: "Front",
  36918. image: {
  36919. source: "./media/characters/vortex/front.svg",
  36920. extra: 1497/1434,
  36921. bottom: 56/1553
  36922. }
  36923. },
  36924. maw: {
  36925. height: math.unit(285, "feet"),
  36926. name: "Maw",
  36927. image: {
  36928. source: "./media/characters/vortex/maw.svg"
  36929. }
  36930. },
  36931. },
  36932. [
  36933. {
  36934. name: "Macro",
  36935. height: math.unit(950, "feet"),
  36936. default: true
  36937. },
  36938. ]
  36939. ))
  36940. characterMakers.push(() => makeCharacter(
  36941. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36942. {
  36943. front: {
  36944. height: math.unit(600, "feet"),
  36945. weight: math.unit(0.02, "grams"),
  36946. name: "Front",
  36947. image: {
  36948. source: "./media/characters/doodle/front.svg",
  36949. extra: 1578/1413,
  36950. bottom: 37/1615
  36951. }
  36952. },
  36953. },
  36954. [
  36955. {
  36956. name: "Macro",
  36957. height: math.unit(600, "feet"),
  36958. default: true
  36959. },
  36960. ]
  36961. ))
  36962. characterMakers.push(() => makeCharacter(
  36963. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36964. {
  36965. front: {
  36966. height: math.unit(6 + 6/12, "feet"),
  36967. name: "Front",
  36968. image: {
  36969. source: "./media/characters/jai/front.svg",
  36970. extra: 1645/1534,
  36971. bottom: 115/1760
  36972. }
  36973. },
  36974. },
  36975. [
  36976. {
  36977. name: "Normal",
  36978. height: math.unit(6 + 6/12, "feet"),
  36979. default: true
  36980. },
  36981. ]
  36982. ))
  36983. characterMakers.push(() => makeCharacter(
  36984. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36985. {
  36986. front: {
  36987. height: math.unit(6 + 8/12, "feet"),
  36988. name: "Front",
  36989. image: {
  36990. source: "./media/characters/pixel/front.svg",
  36991. extra: 1900/1735,
  36992. bottom: 63/1963
  36993. }
  36994. },
  36995. },
  36996. [
  36997. {
  36998. name: "Normal",
  36999. height: math.unit(6 + 8/12, "feet"),
  37000. default: true
  37001. },
  37002. ]
  37003. ))
  37004. characterMakers.push(() => makeCharacter(
  37005. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37006. {
  37007. back: {
  37008. height: math.unit(4 + 1/12, "feet"),
  37009. weight: math.unit(75, "lb"),
  37010. name: "Back",
  37011. image: {
  37012. source: "./media/characters/rhett/back.svg",
  37013. extra: 930/878,
  37014. bottom: 25/955
  37015. }
  37016. },
  37017. front: {
  37018. height: math.unit(4 + 1/12, "feet"),
  37019. weight: math.unit(75, "lb"),
  37020. name: "Front",
  37021. image: {
  37022. source: "./media/characters/rhett/front.svg",
  37023. extra: 1682/1586,
  37024. bottom: 92/1774
  37025. }
  37026. },
  37027. },
  37028. [
  37029. {
  37030. name: "Micro",
  37031. height: math.unit(8, "inches")
  37032. },
  37033. {
  37034. name: "Tiny",
  37035. height: math.unit(2, "feet")
  37036. },
  37037. {
  37038. name: "Normal",
  37039. height: math.unit(4 + 1/12, "feet"),
  37040. default: true
  37041. },
  37042. ]
  37043. ))
  37044. characterMakers.push(() => makeCharacter(
  37045. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37046. {
  37047. front: {
  37048. height: math.unit(3 + 3/12, "feet"),
  37049. name: "Front",
  37050. image: {
  37051. source: "./media/characters/penny/front.svg",
  37052. extra: 1406/1311,
  37053. bottom: 26/1432
  37054. }
  37055. },
  37056. },
  37057. [
  37058. {
  37059. name: "Normal",
  37060. height: math.unit(3 + 3/12, "feet"),
  37061. default: true
  37062. },
  37063. ]
  37064. ))
  37065. characterMakers.push(() => makeCharacter(
  37066. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37067. {
  37068. front: {
  37069. height: math.unit(4 + 11/12, "feet"),
  37070. name: "Front",
  37071. image: {
  37072. source: "./media/characters/monty/front.svg",
  37073. extra: 1479/1209,
  37074. bottom: 0/1479
  37075. }
  37076. },
  37077. },
  37078. [
  37079. {
  37080. name: "Normal",
  37081. height: math.unit(4 + 11/12, "feet"),
  37082. default: true
  37083. },
  37084. ]
  37085. ))
  37086. characterMakers.push(() => makeCharacter(
  37087. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37088. {
  37089. front: {
  37090. height: math.unit(8 + 4/12, "feet"),
  37091. name: "Front",
  37092. image: {
  37093. source: "./media/characters/sterling/front.svg",
  37094. extra: 1420/1236,
  37095. bottom: 27/1447
  37096. }
  37097. },
  37098. },
  37099. [
  37100. {
  37101. name: "Normal",
  37102. height: math.unit(8 + 4/12, "feet"),
  37103. default: true
  37104. },
  37105. ]
  37106. ))
  37107. characterMakers.push(() => makeCharacter(
  37108. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37109. {
  37110. front: {
  37111. height: math.unit(15, "feet"),
  37112. name: "Front",
  37113. image: {
  37114. source: "./media/characters/marble/front.svg",
  37115. extra: 973/937,
  37116. bottom: 32/1005
  37117. }
  37118. },
  37119. },
  37120. [
  37121. {
  37122. name: "Normal",
  37123. height: math.unit(15, "feet"),
  37124. default: true
  37125. },
  37126. ]
  37127. ))
  37128. characterMakers.push(() => makeCharacter(
  37129. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37130. {
  37131. front: {
  37132. height: math.unit(3, "inches"),
  37133. name: "Front",
  37134. image: {
  37135. source: "./media/characters/powder/front.svg",
  37136. extra: 1504/1334,
  37137. bottom: 518/2022
  37138. }
  37139. },
  37140. },
  37141. [
  37142. {
  37143. name: "Normal",
  37144. height: math.unit(3, "inches"),
  37145. default: true
  37146. },
  37147. ]
  37148. ))
  37149. characterMakers.push(() => makeCharacter(
  37150. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37151. {
  37152. front: {
  37153. height: math.unit(4 + 5/12, "feet"),
  37154. name: "Front",
  37155. image: {
  37156. source: "./media/characters/joey-raccoon/front.svg",
  37157. extra: 1273/1197,
  37158. bottom: 0/1273
  37159. }
  37160. },
  37161. },
  37162. [
  37163. {
  37164. name: "Normal",
  37165. height: math.unit(4 + 5/12, "feet"),
  37166. default: true
  37167. },
  37168. ]
  37169. ))
  37170. characterMakers.push(() => makeCharacter(
  37171. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37172. {
  37173. front: {
  37174. height: math.unit(8 + 4/12, "feet"),
  37175. name: "Front",
  37176. image: {
  37177. source: "./media/characters/vick/front.svg",
  37178. extra: 2187/2118,
  37179. bottom: 47/2234
  37180. }
  37181. },
  37182. },
  37183. [
  37184. {
  37185. name: "Normal",
  37186. height: math.unit(8 + 4/12, "feet"),
  37187. default: true
  37188. },
  37189. ]
  37190. ))
  37191. characterMakers.push(() => makeCharacter(
  37192. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37193. {
  37194. front: {
  37195. height: math.unit(5 + 5/12, "feet"),
  37196. name: "Front",
  37197. image: {
  37198. source: "./media/characters/mitsy/front.svg",
  37199. extra: 1842/1695,
  37200. bottom: 0/1842
  37201. }
  37202. },
  37203. },
  37204. [
  37205. {
  37206. name: "Normal",
  37207. height: math.unit(5 + 5/12, "feet"),
  37208. default: true
  37209. },
  37210. ]
  37211. ))
  37212. characterMakers.push(() => makeCharacter(
  37213. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37214. {
  37215. front: {
  37216. height: math.unit(6 + 3/12, "feet"),
  37217. name: "Front",
  37218. image: {
  37219. source: "./media/characters/silvy/front.svg",
  37220. extra: 1995/1836,
  37221. bottom: 225/2220
  37222. }
  37223. },
  37224. },
  37225. [
  37226. {
  37227. name: "Normal",
  37228. height: math.unit(6 + 3/12, "feet"),
  37229. default: true
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37235. {
  37236. front: {
  37237. height: math.unit(3 + 8/12, "feet"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/rodney/front.svg",
  37241. extra: 1956/1747,
  37242. bottom: 31/1987
  37243. }
  37244. },
  37245. frontDressed: {
  37246. height: math.unit(2.9, "feet"),
  37247. name: "Front (Dressed)",
  37248. image: {
  37249. source: "./media/characters/rodney/front-dressed.svg",
  37250. extra: 1382/1241,
  37251. bottom: 385/1767
  37252. }
  37253. },
  37254. },
  37255. [
  37256. {
  37257. name: "Normal",
  37258. height: math.unit(3 + 8/12, "feet"),
  37259. default: true
  37260. },
  37261. ]
  37262. ))
  37263. characterMakers.push(() => makeCharacter(
  37264. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37265. {
  37266. front: {
  37267. height: math.unit(5 + 9/12, "feet"),
  37268. weight: math.unit(194, "lbs"),
  37269. name: "Front",
  37270. image: {
  37271. source: "./media/characters/zakail-sudekai/front.svg",
  37272. extra: 2696/2533,
  37273. bottom: 248/2944
  37274. }
  37275. },
  37276. maw: {
  37277. height: math.unit(1.35, "feet"),
  37278. name: "Maw",
  37279. image: {
  37280. source: "./media/characters/zakail-sudekai/maw.svg"
  37281. }
  37282. },
  37283. },
  37284. [
  37285. {
  37286. name: "Normal",
  37287. height: math.unit(5 + 9/12, "feet"),
  37288. default: true
  37289. },
  37290. ]
  37291. ))
  37292. characterMakers.push(() => makeCharacter(
  37293. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37294. {
  37295. front: {
  37296. height: math.unit(8 + 4/12, "feet"),
  37297. weight: math.unit(1200, "lb"),
  37298. name: "Front",
  37299. image: {
  37300. source: "./media/characters/eleanor/front.svg",
  37301. extra: 1226/1192,
  37302. bottom: 52/1278
  37303. }
  37304. },
  37305. back: {
  37306. height: math.unit(8 + 4/12, "feet"),
  37307. weight: math.unit(1200, "lb"),
  37308. name: "Back",
  37309. image: {
  37310. source: "./media/characters/eleanor/back.svg",
  37311. extra: 1242/1184,
  37312. bottom: 60/1302
  37313. }
  37314. },
  37315. head: {
  37316. height: math.unit(2.62, "feet"),
  37317. name: "Head",
  37318. image: {
  37319. source: "./media/characters/eleanor/head.svg"
  37320. }
  37321. },
  37322. },
  37323. [
  37324. {
  37325. name: "Normal",
  37326. height: math.unit(8 + 4/12, "feet"),
  37327. default: true
  37328. },
  37329. ]
  37330. ))
  37331. characterMakers.push(() => makeCharacter(
  37332. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37333. {
  37334. front: {
  37335. height: math.unit(8 + 4/12, "feet"),
  37336. weight: math.unit(750, "lb"),
  37337. name: "Front",
  37338. image: {
  37339. source: "./media/characters/tanya/front.svg",
  37340. extra: 1749/1615,
  37341. bottom: 33/1782
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(8 + 4/12, "feet"),
  37349. default: true
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37355. {
  37356. front: {
  37357. height: math.unit(5, "feet"),
  37358. weight: math.unit(225, "lb"),
  37359. name: "Front",
  37360. image: {
  37361. source: "./media/characters/cindy/front.svg",
  37362. extra: 1320/1250,
  37363. bottom: 42/1362
  37364. }
  37365. },
  37366. frontDressed: {
  37367. height: math.unit(5, "feet"),
  37368. weight: math.unit(225, "lb"),
  37369. name: "Front (Dressed)",
  37370. image: {
  37371. source: "./media/characters/cindy/front-dressed.svg",
  37372. extra: 1320/1250,
  37373. bottom: 42/1362
  37374. }
  37375. },
  37376. back: {
  37377. height: math.unit(5, "feet"),
  37378. weight: math.unit(225, "lb"),
  37379. name: "Back",
  37380. image: {
  37381. source: "./media/characters/cindy/back.svg",
  37382. extra: 1384/1346,
  37383. bottom: 14/1398
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Normal",
  37390. height: math.unit(5, "feet"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(6 + 9/12, "feet"),
  37400. weight: math.unit(440, "lb"),
  37401. name: "Front",
  37402. image: {
  37403. source: "./media/characters/wilbur-owen/front.svg",
  37404. extra: 1575/1448,
  37405. bottom: 72/1647
  37406. }
  37407. },
  37408. back: {
  37409. height: math.unit(6 + 9/12, "feet"),
  37410. weight: math.unit(440, "lb"),
  37411. name: "Back",
  37412. image: {
  37413. source: "./media/characters/wilbur-owen/back.svg",
  37414. extra: 1578/1445,
  37415. bottom: 36/1614
  37416. }
  37417. },
  37418. },
  37419. [
  37420. {
  37421. name: "Normal",
  37422. height: math.unit(6 + 9/12, "feet"),
  37423. default: true
  37424. },
  37425. ]
  37426. ))
  37427. characterMakers.push(() => makeCharacter(
  37428. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37429. {
  37430. front: {
  37431. height: math.unit(6 + 5/12, "feet"),
  37432. weight: math.unit(650, "lb"),
  37433. name: "Front",
  37434. image: {
  37435. source: "./media/characters/keegan/front.svg",
  37436. extra: 2387/2198,
  37437. bottom: 33/2420
  37438. }
  37439. },
  37440. side: {
  37441. height: math.unit(6 + 5/12, "feet"),
  37442. weight: math.unit(650, "lb"),
  37443. name: "Side",
  37444. image: {
  37445. source: "./media/characters/keegan/side.svg",
  37446. extra: 2390/2202,
  37447. bottom: 47/2437
  37448. }
  37449. },
  37450. back: {
  37451. height: math.unit(6 + 5/12, "feet"),
  37452. weight: math.unit(650, "lb"),
  37453. name: "Back",
  37454. image: {
  37455. source: "./media/characters/keegan/back.svg",
  37456. extra: 2418/2268,
  37457. bottom: 15/2433
  37458. }
  37459. },
  37460. frontSfw: {
  37461. height: math.unit(6 + 5/12, "feet"),
  37462. weight: math.unit(650, "lb"),
  37463. name: "Front (SFW)",
  37464. image: {
  37465. source: "./media/characters/keegan/front-sfw.svg",
  37466. extra: 2387/2198,
  37467. bottom: 33/2420
  37468. }
  37469. },
  37470. beans: {
  37471. height: math.unit(1.85, "feet"),
  37472. name: "Beans",
  37473. image: {
  37474. source: "./media/characters/keegan/beans.svg"
  37475. }
  37476. },
  37477. },
  37478. [
  37479. {
  37480. name: "Normal",
  37481. height: math.unit(6 + 5/12, "feet"),
  37482. default: true
  37483. },
  37484. ]
  37485. ))
  37486. characterMakers.push(() => makeCharacter(
  37487. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37488. {
  37489. front: {
  37490. height: math.unit(9, "feet"),
  37491. name: "Front",
  37492. image: {
  37493. source: "./media/characters/colton/front.svg",
  37494. extra: 1589/1326,
  37495. bottom: 139/1728
  37496. }
  37497. },
  37498. },
  37499. [
  37500. {
  37501. name: "Normal",
  37502. height: math.unit(9, "feet"),
  37503. default: true
  37504. },
  37505. ]
  37506. ))
  37507. characterMakers.push(() => makeCharacter(
  37508. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37509. {
  37510. front: {
  37511. height: math.unit(2 + 9/12, "feet"),
  37512. name: "Front",
  37513. image: {
  37514. source: "./media/characters/bora/front.svg",
  37515. extra: 1265/1250,
  37516. bottom: 24/1289
  37517. }
  37518. },
  37519. },
  37520. [
  37521. {
  37522. name: "Normal",
  37523. height: math.unit(2 + 9/12, "feet"),
  37524. default: true
  37525. },
  37526. ]
  37527. ))
  37528. characterMakers.push(() => makeCharacter(
  37529. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37530. {
  37531. front: {
  37532. height: math.unit(8, "feet"),
  37533. name: "Front",
  37534. image: {
  37535. source: "./media/characters/myu-myu/front.svg",
  37536. extra: 1949/1857,
  37537. bottom: 90/2039
  37538. }
  37539. },
  37540. },
  37541. [
  37542. {
  37543. name: "Normal",
  37544. height: math.unit(8, "feet"),
  37545. default: true
  37546. },
  37547. {
  37548. name: "Big",
  37549. height: math.unit(15, "feet")
  37550. },
  37551. {
  37552. name: "BIG",
  37553. height: math.unit(25, "feet")
  37554. },
  37555. ]
  37556. ))
  37557. characterMakers.push(() => makeCharacter(
  37558. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37559. {
  37560. side: {
  37561. height: math.unit(7 + 5/12, "feet"),
  37562. weight: math.unit(2800, "lb"),
  37563. name: "Side",
  37564. image: {
  37565. source: "./media/characters/haloren/side.svg",
  37566. extra: 1793/409,
  37567. bottom: 59/1852
  37568. }
  37569. },
  37570. frontPaw: {
  37571. height: math.unit(2.36, "feet"),
  37572. name: "Front paw",
  37573. image: {
  37574. source: "./media/characters/haloren/front-paw.svg"
  37575. }
  37576. },
  37577. hindPaw: {
  37578. height: math.unit(3.18, "feet"),
  37579. name: "Hind paw",
  37580. image: {
  37581. source: "./media/characters/haloren/hind-paw.svg"
  37582. }
  37583. },
  37584. maw: {
  37585. height: math.unit(5.05, "feet"),
  37586. name: "Maw",
  37587. image: {
  37588. source: "./media/characters/haloren/maw.svg"
  37589. }
  37590. },
  37591. dick: {
  37592. height: math.unit(2.90, "feet"),
  37593. name: "Dick",
  37594. image: {
  37595. source: "./media/characters/haloren/dick.svg"
  37596. }
  37597. },
  37598. },
  37599. [
  37600. {
  37601. name: "Normal",
  37602. height: math.unit(7 + 5/12, "feet"),
  37603. default: true
  37604. },
  37605. {
  37606. name: "Enhanced",
  37607. height: math.unit(14 + 3/12, "feet")
  37608. },
  37609. ]
  37610. ))
  37611. characterMakers.push(() => makeCharacter(
  37612. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37613. {
  37614. front: {
  37615. height: math.unit(171, "cm"),
  37616. name: "Front",
  37617. image: {
  37618. source: "./media/characters/kimmy/front.svg",
  37619. extra: 1491/1435,
  37620. bottom: 53/1544
  37621. }
  37622. },
  37623. },
  37624. [
  37625. {
  37626. name: "Small",
  37627. height: math.unit(9, "cm")
  37628. },
  37629. {
  37630. name: "Normal",
  37631. height: math.unit(171, "cm"),
  37632. default: true
  37633. },
  37634. ]
  37635. ))
  37636. characterMakers.push(() => makeCharacter(
  37637. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37638. {
  37639. front: {
  37640. height: math.unit(8, "feet"),
  37641. weight: math.unit(300, "lb"),
  37642. name: "Front",
  37643. image: {
  37644. source: "./media/characters/galeboomer/front.svg",
  37645. extra: 4651/4415,
  37646. bottom: 162/4813
  37647. }
  37648. },
  37649. back: {
  37650. height: math.unit(8, "feet"),
  37651. weight: math.unit(300, "lb"),
  37652. name: "Back",
  37653. image: {
  37654. source: "./media/characters/galeboomer/back.svg",
  37655. extra: 4544/4314,
  37656. bottom: 16/4560
  37657. }
  37658. },
  37659. frontAlt: {
  37660. height: math.unit(8, "feet"),
  37661. weight: math.unit(300, "lb"),
  37662. name: "Front (Alt)",
  37663. image: {
  37664. source: "./media/characters/galeboomer/front-alt.svg",
  37665. extra: 4458/4228,
  37666. bottom: 68/4526
  37667. }
  37668. },
  37669. maw: {
  37670. height: math.unit(1.2, "feet"),
  37671. name: "Maw",
  37672. image: {
  37673. source: "./media/characters/galeboomer/maw.svg"
  37674. }
  37675. },
  37676. },
  37677. [
  37678. {
  37679. name: "Normal",
  37680. height: math.unit(8, "feet"),
  37681. default: true
  37682. },
  37683. ]
  37684. ))
  37685. characterMakers.push(() => makeCharacter(
  37686. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37687. {
  37688. front: {
  37689. height: math.unit(5 + 9/12, "feet"),
  37690. weight: math.unit(120, "lb"),
  37691. name: "Front",
  37692. image: {
  37693. source: "./media/characters/chyr/front.svg",
  37694. extra: 1323/1254,
  37695. bottom: 63/1386
  37696. }
  37697. },
  37698. back: {
  37699. height: math.unit(5 + 9/12, "feet"),
  37700. weight: math.unit(120, "lb"),
  37701. name: "Back",
  37702. image: {
  37703. source: "./media/characters/chyr/back.svg",
  37704. extra: 1323/1252,
  37705. bottom: 48/1371
  37706. }
  37707. },
  37708. },
  37709. [
  37710. {
  37711. name: "Normal",
  37712. height: math.unit(5 + 9/12, "feet"),
  37713. default: true
  37714. },
  37715. ]
  37716. ))
  37717. characterMakers.push(() => makeCharacter(
  37718. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37719. {
  37720. front: {
  37721. height: math.unit(7, "feet"),
  37722. weight: math.unit(310, "lb"),
  37723. name: "Front",
  37724. image: {
  37725. source: "./media/characters/solarus/front.svg",
  37726. extra: 2415/2021,
  37727. bottom: 103/2518
  37728. }
  37729. },
  37730. back: {
  37731. height: math.unit(7, "feet"),
  37732. weight: math.unit(310, "lb"),
  37733. name: "Back",
  37734. image: {
  37735. source: "./media/characters/solarus/back.svg",
  37736. extra: 2463/2089,
  37737. bottom: 79/2542
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Normal",
  37744. height: math.unit(7, "feet"),
  37745. default: true
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(16, "feet"),
  37754. name: "Front",
  37755. image: {
  37756. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37757. extra: 1844/1780,
  37758. bottom: 58/1902
  37759. }
  37760. },
  37761. winterCoat: {
  37762. height: math.unit(16, "feet"),
  37763. name: "Winter Coat",
  37764. image: {
  37765. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37766. extra: 1807/1775,
  37767. bottom: 69/1876
  37768. }
  37769. },
  37770. },
  37771. [
  37772. {
  37773. name: "Normal",
  37774. height: math.unit(16, "feet"),
  37775. default: true
  37776. },
  37777. {
  37778. name: "Chicago Size",
  37779. height: math.unit(560, "feet")
  37780. },
  37781. ]
  37782. ))
  37783. characterMakers.push(() => makeCharacter(
  37784. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37785. {
  37786. front: {
  37787. height: math.unit(11 + 6/12, "feet"),
  37788. weight: math.unit(1366, "lb"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/lexor/front.svg",
  37792. extra: 1560/1481,
  37793. bottom: 211/1771
  37794. }
  37795. },
  37796. back: {
  37797. height: math.unit(11 + 6/12, "feet"),
  37798. weight: math.unit(1366, "lb"),
  37799. name: "Back",
  37800. image: {
  37801. source: "./media/characters/lexor/back.svg",
  37802. extra: 1614/1533,
  37803. bottom: 76/1690
  37804. }
  37805. },
  37806. maw: {
  37807. height: math.unit(3, "feet"),
  37808. name: "Maw",
  37809. image: {
  37810. source: "./media/characters/lexor/maw.svg"
  37811. }
  37812. },
  37813. dick: {
  37814. height: math.unit(2.59, "feet"),
  37815. name: "Dick",
  37816. image: {
  37817. source: "./media/characters/lexor/dick.svg"
  37818. }
  37819. },
  37820. },
  37821. [
  37822. {
  37823. name: "Normal",
  37824. height: math.unit(11 + 6/12, "feet"),
  37825. default: true
  37826. },
  37827. ]
  37828. ))
  37829. characterMakers.push(() => makeCharacter(
  37830. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37831. {
  37832. front: {
  37833. height: math.unit(5 + 8/12, "feet"),
  37834. name: "Front",
  37835. image: {
  37836. source: "./media/characters/magnum/front.svg",
  37837. extra: 942/855,
  37838. bottom: 26/968
  37839. }
  37840. },
  37841. },
  37842. [
  37843. {
  37844. name: "Normal",
  37845. height: math.unit(5 + 8/12, "feet"),
  37846. default: true
  37847. },
  37848. ]
  37849. ))
  37850. characterMakers.push(() => makeCharacter(
  37851. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37852. {
  37853. front: {
  37854. height: math.unit(18 + 4/12, "feet"),
  37855. weight: math.unit(1500, "kg"),
  37856. name: "Front",
  37857. image: {
  37858. source: "./media/characters/solas-sharpsman/front.svg",
  37859. extra: 1698/1589,
  37860. bottom: 0/1698
  37861. }
  37862. },
  37863. },
  37864. [
  37865. {
  37866. name: "Normal",
  37867. height: math.unit(18 + 4/12, "feet"),
  37868. default: true
  37869. },
  37870. ]
  37871. ))
  37872. characterMakers.push(() => makeCharacter(
  37873. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37874. {
  37875. front: {
  37876. height: math.unit(5 + 5/12, "feet"),
  37877. weight: math.unit(180, "lb"),
  37878. name: "Front",
  37879. image: {
  37880. source: "./media/characters/october/front.svg",
  37881. extra: 1800/1650,
  37882. bottom: 0/1800
  37883. }
  37884. },
  37885. frontNsfw: {
  37886. height: math.unit(5 + 5/12, "feet"),
  37887. weight: math.unit(180, "lb"),
  37888. name: "Front (NSFW)",
  37889. image: {
  37890. source: "./media/characters/october/front-nsfw.svg",
  37891. extra: 1392/1307,
  37892. bottom: 42/1434
  37893. }
  37894. },
  37895. },
  37896. [
  37897. {
  37898. name: "Normal",
  37899. height: math.unit(5 + 5/12, "feet"),
  37900. default: true
  37901. },
  37902. ]
  37903. ))
  37904. characterMakers.push(() => makeCharacter(
  37905. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37906. {
  37907. front: {
  37908. height: math.unit(8 + 6/12, "feet"),
  37909. name: "Front",
  37910. image: {
  37911. source: "./media/characters/essynkardi/front.svg",
  37912. extra: 1914/1846,
  37913. bottom: 22/1936
  37914. }
  37915. },
  37916. },
  37917. [
  37918. {
  37919. name: "Normal",
  37920. height: math.unit(8 + 6/12, "feet"),
  37921. default: true
  37922. },
  37923. ]
  37924. ))
  37925. characterMakers.push(() => makeCharacter(
  37926. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37927. {
  37928. front: {
  37929. height: math.unit(6 + 6/12, "feet"),
  37930. weight: math.unit(7, "lb"),
  37931. name: "Front",
  37932. image: {
  37933. source: "./media/characters/icky/front.svg",
  37934. extra: 813/782,
  37935. bottom: 66/879
  37936. }
  37937. },
  37938. back: {
  37939. height: math.unit(6 + 6/12, "feet"),
  37940. weight: math.unit(7, "lb"),
  37941. name: "Back",
  37942. image: {
  37943. source: "./media/characters/icky/back.svg",
  37944. extra: 754/735,
  37945. bottom: 56/810
  37946. }
  37947. },
  37948. },
  37949. [
  37950. {
  37951. name: "Normal",
  37952. height: math.unit(6 + 6/12, "feet"),
  37953. default: true
  37954. },
  37955. ]
  37956. ))
  37957. characterMakers.push(() => makeCharacter(
  37958. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37959. {
  37960. front: {
  37961. height: math.unit(15, "feet"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/rojas/front.svg",
  37965. extra: 1462/1408,
  37966. bottom: 95/1557
  37967. }
  37968. },
  37969. back: {
  37970. height: math.unit(15, "feet"),
  37971. name: "Back",
  37972. image: {
  37973. source: "./media/characters/rojas/back.svg",
  37974. extra: 1023/954,
  37975. bottom: 28/1051
  37976. }
  37977. },
  37978. },
  37979. [
  37980. {
  37981. name: "Normal",
  37982. height: math.unit(15, "feet"),
  37983. default: true
  37984. },
  37985. ]
  37986. ))
  37987. characterMakers.push(() => makeCharacter(
  37988. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37989. {
  37990. frontHuman: {
  37991. height: math.unit(5 + 7/12, "feet"),
  37992. name: "Front (Human)",
  37993. image: {
  37994. source: "./media/characters/alek-dryagan/front-human.svg",
  37995. extra: 1687/1667,
  37996. bottom: 69/1756
  37997. }
  37998. },
  37999. backHuman: {
  38000. height: math.unit(5 + 7/12, "feet"),
  38001. name: "Back (Human)",
  38002. image: {
  38003. source: "./media/characters/alek-dryagan/back-human.svg",
  38004. extra: 1670/1649,
  38005. bottom: 65/1735
  38006. }
  38007. },
  38008. frontDemi: {
  38009. height: math.unit(65, "feet"),
  38010. name: "Front (Demi)",
  38011. image: {
  38012. source: "./media/characters/alek-dryagan/front-demi.svg",
  38013. extra: 1669/1642,
  38014. bottom: 49/1718
  38015. }
  38016. },
  38017. backDemi: {
  38018. height: math.unit(65, "feet"),
  38019. name: "Back (Demi)",
  38020. image: {
  38021. source: "./media/characters/alek-dryagan/back-demi.svg",
  38022. extra: 1658/1637,
  38023. bottom: 40/1698
  38024. }
  38025. },
  38026. mawHuman: {
  38027. height: math.unit(0.3, "feet"),
  38028. name: "Maw (Human)",
  38029. image: {
  38030. source: "./media/characters/alek-dryagan/maw-human.svg"
  38031. }
  38032. },
  38033. mawDemi: {
  38034. height: math.unit(3.8, "feet"),
  38035. name: "Maw (Demi)",
  38036. image: {
  38037. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38038. }
  38039. },
  38040. },
  38041. [
  38042. {
  38043. name: "Normal",
  38044. height: math.unit(5 + 7/12, "feet"),
  38045. default: true
  38046. },
  38047. ]
  38048. ))
  38049. characterMakers.push(() => makeCharacter(
  38050. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38051. {
  38052. frontHuman: {
  38053. height: math.unit(5 + 2/12, "feet"),
  38054. name: "Front (Human)",
  38055. image: {
  38056. source: "./media/characters/gen/front-human.svg",
  38057. extra: 1627/1538,
  38058. bottom: 71/1698
  38059. }
  38060. },
  38061. backHuman: {
  38062. height: math.unit(5 + 2/12, "feet"),
  38063. name: "Back (Human)",
  38064. image: {
  38065. source: "./media/characters/gen/back-human.svg",
  38066. extra: 1638/1548,
  38067. bottom: 69/1707
  38068. }
  38069. },
  38070. frontDemi: {
  38071. height: math.unit(5 + 2/12, "feet"),
  38072. name: "Front (Demi)",
  38073. image: {
  38074. source: "./media/characters/gen/front-demi.svg",
  38075. extra: 1627/1538,
  38076. bottom: 71/1698
  38077. }
  38078. },
  38079. backDemi: {
  38080. height: math.unit(5 + 2/12, "feet"),
  38081. name: "Back (Demi)",
  38082. image: {
  38083. source: "./media/characters/gen/back-demi.svg",
  38084. extra: 1638/1548,
  38085. bottom: 69/1707
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(5 + 2/12, "feet"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38099. {
  38100. frontImp: {
  38101. height: math.unit(1 + 11/12, "feet"),
  38102. name: "Front (Imp)",
  38103. image: {
  38104. source: "./media/characters/max-kobold/front-imp.svg",
  38105. extra: 1238/1134,
  38106. bottom: 81/1319
  38107. }
  38108. },
  38109. backImp: {
  38110. height: math.unit(1 + 11/12, "feet"),
  38111. name: "Back (Imp)",
  38112. image: {
  38113. source: "./media/characters/max-kobold/back-imp.svg",
  38114. extra: 1334/1175,
  38115. bottom: 34/1368
  38116. }
  38117. },
  38118. frontDemi: {
  38119. height: math.unit(5 + 9/12, "feet"),
  38120. name: "Front (Demi)",
  38121. image: {
  38122. source: "./media/characters/max-kobold/front-demi.svg",
  38123. extra: 1715/1685,
  38124. bottom: 54/1769
  38125. }
  38126. },
  38127. backDemi: {
  38128. height: math.unit(5 + 9/12, "feet"),
  38129. name: "Back (Demi)",
  38130. image: {
  38131. source: "./media/characters/max-kobold/back-demi.svg",
  38132. extra: 1752/1729,
  38133. bottom: 41/1793
  38134. }
  38135. },
  38136. handImp: {
  38137. height: math.unit(0.45, "feet"),
  38138. name: "Hand (Imp)",
  38139. image: {
  38140. source: "./media/characters/max-kobold/hand.svg"
  38141. }
  38142. },
  38143. pawImp: {
  38144. height: math.unit(0.46, "feet"),
  38145. name: "Paw (Imp)",
  38146. image: {
  38147. source: "./media/characters/max-kobold/paw.svg"
  38148. }
  38149. },
  38150. handDemi: {
  38151. height: math.unit(0.80, "feet"),
  38152. name: "Hand (Demi)",
  38153. image: {
  38154. source: "./media/characters/max-kobold/hand.svg"
  38155. }
  38156. },
  38157. pawDemi: {
  38158. height: math.unit(1.1, "feet"),
  38159. name: "Paw (Demi)",
  38160. image: {
  38161. source: "./media/characters/max-kobold/paw.svg"
  38162. }
  38163. },
  38164. headImp: {
  38165. height: math.unit(1.33, "feet"),
  38166. name: "Head (Imp)",
  38167. image: {
  38168. source: "./media/characters/max-kobold/head-imp.svg"
  38169. }
  38170. },
  38171. mawImp: {
  38172. height: math.unit(0.75, "feet"),
  38173. name: "Maw (Imp)",
  38174. image: {
  38175. source: "./media/characters/max-kobold/maw-imp.svg"
  38176. }
  38177. },
  38178. mawDemi: {
  38179. height: math.unit(0.42, "feet"),
  38180. name: "Maw (Demi)",
  38181. image: {
  38182. source: "./media/characters/max-kobold/maw-demi.svg"
  38183. }
  38184. },
  38185. },
  38186. [
  38187. {
  38188. name: "Normal",
  38189. height: math.unit(1 + 11/12, "feet"),
  38190. default: true
  38191. },
  38192. ]
  38193. ))
  38194. characterMakers.push(() => makeCharacter(
  38195. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38196. {
  38197. front: {
  38198. height: math.unit(7 + 5/12, "feet"),
  38199. name: "Front",
  38200. image: {
  38201. source: "./media/characters/carbon/front.svg",
  38202. extra: 1754/1689,
  38203. bottom: 65/1819
  38204. }
  38205. },
  38206. back: {
  38207. height: math.unit(7 + 5/12, "feet"),
  38208. name: "Back",
  38209. image: {
  38210. source: "./media/characters/carbon/back.svg",
  38211. extra: 1762/1695,
  38212. bottom: 24/1786
  38213. }
  38214. },
  38215. frontGigantamax: {
  38216. height: math.unit(150, "feet"),
  38217. name: "Front (Gigantamax)",
  38218. image: {
  38219. source: "./media/characters/carbon/front-gigantamax.svg",
  38220. extra: 1826/1669,
  38221. bottom: 59/1885
  38222. }
  38223. },
  38224. backGigantamax: {
  38225. height: math.unit(150, "feet"),
  38226. name: "Back (Gigantamax)",
  38227. image: {
  38228. source: "./media/characters/carbon/back-gigantamax.svg",
  38229. extra: 1796/1653,
  38230. bottom: 53/1849
  38231. }
  38232. },
  38233. maw: {
  38234. height: math.unit(0.48, "feet"),
  38235. name: "Maw",
  38236. image: {
  38237. source: "./media/characters/carbon/maw.svg"
  38238. }
  38239. },
  38240. mawGigantamax: {
  38241. height: math.unit(7.5, "feet"),
  38242. name: "Maw (Gigantamax)",
  38243. image: {
  38244. source: "./media/characters/carbon/maw-gigantamax.svg"
  38245. }
  38246. },
  38247. },
  38248. [
  38249. {
  38250. name: "Normal",
  38251. height: math.unit(7 + 5/12, "feet"),
  38252. default: true
  38253. },
  38254. ]
  38255. ))
  38256. characterMakers.push(() => makeCharacter(
  38257. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38258. {
  38259. front: {
  38260. height: math.unit(6, "feet"),
  38261. name: "Front",
  38262. image: {
  38263. source: "./media/characters/maverick/front.svg",
  38264. extra: 1672/1661,
  38265. bottom: 85/1757
  38266. }
  38267. },
  38268. back: {
  38269. height: math.unit(6, "feet"),
  38270. name: "Back",
  38271. image: {
  38272. source: "./media/characters/maverick/back.svg",
  38273. extra: 1642/1631,
  38274. bottom: 38/1680
  38275. }
  38276. },
  38277. },
  38278. [
  38279. {
  38280. name: "Normal",
  38281. height: math.unit(6, "feet"),
  38282. default: true
  38283. },
  38284. ]
  38285. ))
  38286. characterMakers.push(() => makeCharacter(
  38287. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38288. {
  38289. front: {
  38290. height: math.unit(15, "feet"),
  38291. weight: math.unit(615, "lb"),
  38292. name: "Front",
  38293. image: {
  38294. source: "./media/characters/grockle/front.svg",
  38295. extra: 1535/1427,
  38296. bottom: 56/1591
  38297. }
  38298. },
  38299. },
  38300. [
  38301. {
  38302. name: "Normal",
  38303. height: math.unit(15, "feet"),
  38304. default: true
  38305. },
  38306. {
  38307. name: "Large",
  38308. height: math.unit(150, "feet")
  38309. },
  38310. {
  38311. name: "Macro",
  38312. height: math.unit(1876, "feet")
  38313. },
  38314. {
  38315. name: "Mega Macro",
  38316. height: math.unit(121940, "feet")
  38317. },
  38318. {
  38319. name: "Giga Macro",
  38320. height: math.unit(750, "km")
  38321. },
  38322. {
  38323. name: "Tera Macro",
  38324. height: math.unit(750000, "km")
  38325. },
  38326. {
  38327. name: "Galactic",
  38328. height: math.unit(1.4e5, "km")
  38329. },
  38330. {
  38331. name: "Godlike",
  38332. height: math.unit(9.8e280, "galaxies")
  38333. },
  38334. ]
  38335. ))
  38336. characterMakers.push(() => makeCharacter(
  38337. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38338. {
  38339. front: {
  38340. height: math.unit(11, "meters"),
  38341. weight: math.unit(20, "tonnes"),
  38342. name: "Front",
  38343. image: {
  38344. source: "./media/characters/alistair/front.svg",
  38345. extra: 1265/1009,
  38346. bottom: 93/1358
  38347. }
  38348. },
  38349. },
  38350. [
  38351. {
  38352. name: "Normal",
  38353. height: math.unit(11, "meters"),
  38354. default: true
  38355. },
  38356. ]
  38357. ))
  38358. characterMakers.push(() => makeCharacter(
  38359. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38360. {
  38361. front: {
  38362. height: math.unit(5 + 8/12, "feet"),
  38363. name: "Front",
  38364. image: {
  38365. source: "./media/characters/haruka/front.svg",
  38366. extra: 2012/1952,
  38367. bottom: 0/2012
  38368. }
  38369. },
  38370. },
  38371. [
  38372. {
  38373. name: "Normal",
  38374. height: math.unit(5 + 8/12, "feet"),
  38375. default: true
  38376. },
  38377. ]
  38378. ))
  38379. characterMakers.push(() => makeCharacter(
  38380. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38381. {
  38382. back: {
  38383. height: math.unit(9, "feet"),
  38384. name: "Back",
  38385. image: {
  38386. source: "./media/characters/vivian-sylveon/back.svg",
  38387. extra: 1853/1714,
  38388. bottom: 0/1853
  38389. }
  38390. },
  38391. },
  38392. [
  38393. {
  38394. name: "Normal",
  38395. height: math.unit(9, "feet"),
  38396. default: true
  38397. },
  38398. {
  38399. name: "Macro",
  38400. height: math.unit(500, "feet")
  38401. },
  38402. {
  38403. name: "Megamacro",
  38404. height: math.unit(600, "miles")
  38405. },
  38406. {
  38407. name: "Gigamacro",
  38408. height: math.unit(30000, "miles")
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38414. {
  38415. anthro: {
  38416. height: math.unit(5 + 10/12, "feet"),
  38417. weight: math.unit(100, "lb"),
  38418. name: "Anthro",
  38419. image: {
  38420. source: "./media/characters/daiki/anthro.svg",
  38421. extra: 1115/1027,
  38422. bottom: 69/1184
  38423. }
  38424. },
  38425. feral: {
  38426. height: math.unit(200, "feet"),
  38427. name: "Feral",
  38428. image: {
  38429. source: "./media/characters/daiki/feral.svg",
  38430. extra: 1256/313,
  38431. bottom: 39/1295
  38432. }
  38433. },
  38434. feralHead: {
  38435. height: math.unit(171, "feet"),
  38436. name: "Feral Head",
  38437. image: {
  38438. source: "./media/characters/daiki/feral-head.svg"
  38439. }
  38440. },
  38441. manaDragon: {
  38442. height: math.unit(170, "meters"),
  38443. name: "Mana-dragon",
  38444. image: {
  38445. source: "./media/characters/daiki/mana-dragon.svg",
  38446. extra: 763/420,
  38447. bottom: 97/860
  38448. }
  38449. },
  38450. },
  38451. [
  38452. {
  38453. name: "Normal",
  38454. height: math.unit(5 + 10/12, "feet"),
  38455. default: true
  38456. },
  38457. ]
  38458. ))
  38459. characterMakers.push(() => makeCharacter(
  38460. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38461. {
  38462. fullyEquippedFront: {
  38463. height: math.unit(3 + 1/12, "feet"),
  38464. weight: math.unit(24, "lb"),
  38465. name: "Fully Equipped (Front)",
  38466. image: {
  38467. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38468. extra: 687/605,
  38469. bottom: 18/705
  38470. }
  38471. },
  38472. fullyEquippedBack: {
  38473. height: math.unit(3 + 1/12, "feet"),
  38474. weight: math.unit(24, "lb"),
  38475. name: "Fully Equipped (Back)",
  38476. image: {
  38477. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38478. extra: 689/590,
  38479. bottom: 18/707
  38480. }
  38481. },
  38482. dailyWear: {
  38483. height: math.unit(3 + 1/12, "feet"),
  38484. weight: math.unit(24, "lb"),
  38485. name: "Daily Wear",
  38486. image: {
  38487. source: "./media/characters/tea-spot/daily-wear.svg",
  38488. extra: 701/620,
  38489. bottom: 21/722
  38490. }
  38491. },
  38492. maidWork: {
  38493. height: math.unit(3 + 1/12, "feet"),
  38494. weight: math.unit(24, "lb"),
  38495. name: "Maid Work",
  38496. image: {
  38497. source: "./media/characters/tea-spot/maid-work.svg",
  38498. extra: 693/609,
  38499. bottom: 15/708
  38500. }
  38501. },
  38502. },
  38503. [
  38504. {
  38505. name: "Normal",
  38506. height: math.unit(3 + 1/12, "feet"),
  38507. default: true
  38508. },
  38509. ]
  38510. ))
  38511. characterMakers.push(() => makeCharacter(
  38512. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38513. {
  38514. front: {
  38515. height: math.unit(175, "cm"),
  38516. weight: math.unit(75, "kg"),
  38517. name: "Front",
  38518. image: {
  38519. source: "./media/characters/chee/front.svg",
  38520. extra: 1796/1740,
  38521. bottom: 40/1836
  38522. }
  38523. },
  38524. },
  38525. [
  38526. {
  38527. name: "Micro-Micro",
  38528. height: math.unit(1, "nm")
  38529. },
  38530. {
  38531. name: "Micro-erst",
  38532. height: math.unit(1, "micrometer")
  38533. },
  38534. {
  38535. name: "Micro-er",
  38536. height: math.unit(1, "cm")
  38537. },
  38538. {
  38539. name: "Normal",
  38540. height: math.unit(175, "cm"),
  38541. default: true
  38542. },
  38543. {
  38544. name: "Macro",
  38545. height: math.unit(100, "m")
  38546. },
  38547. {
  38548. name: "Macro-er",
  38549. height: math.unit(1, "km")
  38550. },
  38551. {
  38552. name: "Macro-erst",
  38553. height: math.unit(10, "km")
  38554. },
  38555. {
  38556. name: "Macro-Macro",
  38557. height: math.unit(100, "km")
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38563. {
  38564. front: {
  38565. height: math.unit(11 + 9/12, "feet"),
  38566. weight: math.unit(935, "lb"),
  38567. name: "Front",
  38568. image: {
  38569. source: "./media/characters/kingsley/front.svg",
  38570. extra: 1803/1674,
  38571. bottom: 127/1930
  38572. }
  38573. },
  38574. frontNude: {
  38575. height: math.unit(11 + 9/12, "feet"),
  38576. weight: math.unit(935, "lb"),
  38577. name: "Front (Nude)",
  38578. image: {
  38579. source: "./media/characters/kingsley/front-nude.svg",
  38580. extra: 1803/1674,
  38581. bottom: 127/1930
  38582. }
  38583. },
  38584. },
  38585. [
  38586. {
  38587. name: "Normal",
  38588. height: math.unit(11 + 9/12, "feet"),
  38589. default: true
  38590. },
  38591. ]
  38592. ))
  38593. characterMakers.push(() => makeCharacter(
  38594. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38595. {
  38596. side: {
  38597. height: math.unit(9, "feet"),
  38598. name: "Side",
  38599. image: {
  38600. source: "./media/characters/rymel/side.svg",
  38601. extra: 792/469,
  38602. bottom: 121/913
  38603. }
  38604. },
  38605. maw: {
  38606. height: math.unit(2.4, "meters"),
  38607. name: "Maw",
  38608. image: {
  38609. source: "./media/characters/rymel/maw.svg"
  38610. }
  38611. },
  38612. },
  38613. [
  38614. {
  38615. name: "House Drake",
  38616. height: math.unit(2, "feet")
  38617. },
  38618. {
  38619. name: "Reduced",
  38620. height: math.unit(4.5, "feet")
  38621. },
  38622. {
  38623. name: "Normal",
  38624. height: math.unit(9, "feet"),
  38625. default: true
  38626. },
  38627. ]
  38628. ))
  38629. characterMakers.push(() => makeCharacter(
  38630. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38631. {
  38632. front: {
  38633. height: math.unit(1.74, "meters"),
  38634. weight: math.unit(55, "kg"),
  38635. name: "Front",
  38636. image: {
  38637. source: "./media/characters/rubus/front.svg",
  38638. extra: 1894/1742,
  38639. bottom: 44/1938
  38640. }
  38641. },
  38642. },
  38643. [
  38644. {
  38645. name: "Normal",
  38646. height: math.unit(1.74, "meters"),
  38647. default: true
  38648. },
  38649. ]
  38650. ))
  38651. characterMakers.push(() => makeCharacter(
  38652. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38653. {
  38654. front: {
  38655. height: math.unit(5 + 2/12, "feet"),
  38656. weight: math.unit(112, "lb"),
  38657. name: "Front",
  38658. image: {
  38659. source: "./media/characters/cassie-kingston/front.svg",
  38660. extra: 1438/1390,
  38661. bottom: 47/1485
  38662. }
  38663. },
  38664. },
  38665. [
  38666. {
  38667. name: "Normal",
  38668. height: math.unit(5 + 2/12, "feet"),
  38669. default: true
  38670. },
  38671. {
  38672. name: "Macro",
  38673. height: math.unit(128, "feet")
  38674. },
  38675. {
  38676. name: "Megamacro",
  38677. height: math.unit(2.56, "miles")
  38678. },
  38679. ]
  38680. ))
  38681. characterMakers.push(() => makeCharacter(
  38682. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38683. {
  38684. front: {
  38685. height: math.unit(7, "feet"),
  38686. name: "Front",
  38687. image: {
  38688. source: "./media/characters/fox/front.svg",
  38689. extra: 1798/1703,
  38690. bottom: 55/1853
  38691. }
  38692. },
  38693. back: {
  38694. height: math.unit(7, "feet"),
  38695. name: "Back",
  38696. image: {
  38697. source: "./media/characters/fox/back.svg",
  38698. extra: 1748/1649,
  38699. bottom: 32/1780
  38700. }
  38701. },
  38702. head: {
  38703. height: math.unit(1.95, "feet"),
  38704. name: "Head",
  38705. image: {
  38706. source: "./media/characters/fox/head.svg"
  38707. }
  38708. },
  38709. dick: {
  38710. height: math.unit(1.33, "feet"),
  38711. name: "Dick",
  38712. image: {
  38713. source: "./media/characters/fox/dick.svg"
  38714. }
  38715. },
  38716. foot: {
  38717. height: math.unit(1, "feet"),
  38718. name: "Foot",
  38719. image: {
  38720. source: "./media/characters/fox/foot.svg"
  38721. }
  38722. },
  38723. paw: {
  38724. height: math.unit(0.92, "feet"),
  38725. name: "Paw",
  38726. image: {
  38727. source: "./media/characters/fox/paw.svg"
  38728. }
  38729. },
  38730. },
  38731. [
  38732. {
  38733. name: "Small",
  38734. height: math.unit(3, "inches")
  38735. },
  38736. {
  38737. name: "\"Realistic\"",
  38738. height: math.unit(7, "feet")
  38739. },
  38740. {
  38741. name: "Normal",
  38742. height: math.unit(150, "feet"),
  38743. default: true
  38744. },
  38745. {
  38746. name: "BIG",
  38747. height: math.unit(1200, "feet")
  38748. },
  38749. {
  38750. name: "👀",
  38751. height: math.unit(5, "miles")
  38752. },
  38753. {
  38754. name: "👀👀👀",
  38755. height: math.unit(64, "miles")
  38756. },
  38757. ]
  38758. ))
  38759. characterMakers.push(() => makeCharacter(
  38760. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38761. {
  38762. front: {
  38763. height: math.unit(625, "feet"),
  38764. name: "Front",
  38765. image: {
  38766. source: "./media/characters/asonja-rossa/front.svg",
  38767. extra: 1833/1686,
  38768. bottom: 24/1857
  38769. }
  38770. },
  38771. back: {
  38772. height: math.unit(625, "feet"),
  38773. name: "Back",
  38774. image: {
  38775. source: "./media/characters/asonja-rossa/back.svg",
  38776. extra: 1852/1753,
  38777. bottom: 26/1878
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "Macro",
  38784. height: math.unit(625, "feet"),
  38785. default: true
  38786. },
  38787. ]
  38788. ))
  38789. characterMakers.push(() => makeCharacter(
  38790. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38791. {
  38792. side: {
  38793. height: math.unit(8, "feet"),
  38794. name: "Side",
  38795. image: {
  38796. source: "./media/characters/rezukii/side.svg",
  38797. extra: 979/542,
  38798. bottom: 87/1066
  38799. }
  38800. },
  38801. sitting: {
  38802. height: math.unit(14.6, "feet"),
  38803. name: "Sitting",
  38804. image: {
  38805. source: "./media/characters/rezukii/sitting.svg",
  38806. extra: 1023/813,
  38807. bottom: 45/1068
  38808. }
  38809. },
  38810. },
  38811. [
  38812. {
  38813. name: "Tiny",
  38814. height: math.unit(2, "feet")
  38815. },
  38816. {
  38817. name: "Smol",
  38818. height: math.unit(4, "feet")
  38819. },
  38820. {
  38821. name: "Normal",
  38822. height: math.unit(8, "feet"),
  38823. default: true
  38824. },
  38825. {
  38826. name: "Big",
  38827. height: math.unit(12, "feet")
  38828. },
  38829. {
  38830. name: "Macro",
  38831. height: math.unit(30, "feet")
  38832. },
  38833. ]
  38834. ))
  38835. characterMakers.push(() => makeCharacter(
  38836. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38837. {
  38838. front: {
  38839. height: math.unit(14, "feet"),
  38840. weight: math.unit(9.5, "tonnes"),
  38841. name: "Front",
  38842. image: {
  38843. source: "./media/characters/dawnheart/front.svg",
  38844. extra: 2792/2675,
  38845. bottom: 64/2856
  38846. }
  38847. },
  38848. },
  38849. [
  38850. {
  38851. name: "Normal",
  38852. height: math.unit(14, "feet"),
  38853. default: true
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38859. {
  38860. front: {
  38861. height: math.unit(1.7, "m"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/gladi/front.svg",
  38865. extra: 1460/1362,
  38866. bottom: 19/1479
  38867. }
  38868. },
  38869. back: {
  38870. height: math.unit(1.7, "m"),
  38871. name: "Back",
  38872. image: {
  38873. source: "./media/characters/gladi/back.svg",
  38874. extra: 1459/1357,
  38875. bottom: 12/1471
  38876. }
  38877. },
  38878. feral: {
  38879. height: math.unit(2.05, "m"),
  38880. name: "Feral",
  38881. image: {
  38882. source: "./media/characters/gladi/feral.svg",
  38883. extra: 821/557,
  38884. bottom: 91/912
  38885. }
  38886. },
  38887. },
  38888. [
  38889. {
  38890. name: "Shortest",
  38891. height: math.unit(70, "cm")
  38892. },
  38893. {
  38894. name: "Normal",
  38895. height: math.unit(1.7, "m")
  38896. },
  38897. {
  38898. name: "Macro",
  38899. height: math.unit(10, "m"),
  38900. default: true
  38901. },
  38902. {
  38903. name: "Tallest",
  38904. height: math.unit(200, "m")
  38905. },
  38906. ]
  38907. ))
  38908. characterMakers.push(() => makeCharacter(
  38909. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38910. {
  38911. front: {
  38912. height: math.unit(5 + 7/12, "feet"),
  38913. weight: math.unit(2, "tons"),
  38914. name: "Front",
  38915. image: {
  38916. source: "./media/characters/erdno/front.svg",
  38917. extra: 1234/1129,
  38918. bottom: 35/1269
  38919. }
  38920. },
  38921. angled: {
  38922. height: math.unit(5 + 7/12, "feet"),
  38923. weight: math.unit(2, "tons"),
  38924. name: "Angled",
  38925. image: {
  38926. source: "./media/characters/erdno/angled.svg",
  38927. extra: 1185/1139,
  38928. bottom: 36/1221
  38929. }
  38930. },
  38931. side: {
  38932. height: math.unit(5 + 7/12, "feet"),
  38933. weight: math.unit(2, "tons"),
  38934. name: "Side",
  38935. image: {
  38936. source: "./media/characters/erdno/side.svg",
  38937. extra: 1191/1144,
  38938. bottom: 40/1231
  38939. }
  38940. },
  38941. back: {
  38942. height: math.unit(5 + 7/12, "feet"),
  38943. weight: math.unit(2, "tons"),
  38944. name: "Back",
  38945. image: {
  38946. source: "./media/characters/erdno/back.svg",
  38947. extra: 1202/1146,
  38948. bottom: 17/1219
  38949. }
  38950. },
  38951. frontNsfw: {
  38952. height: math.unit(5 + 7/12, "feet"),
  38953. weight: math.unit(2, "tons"),
  38954. name: "Front (NSFW)",
  38955. image: {
  38956. source: "./media/characters/erdno/front-nsfw.svg",
  38957. extra: 1234/1129,
  38958. bottom: 35/1269
  38959. }
  38960. },
  38961. angledNsfw: {
  38962. height: math.unit(5 + 7/12, "feet"),
  38963. weight: math.unit(2, "tons"),
  38964. name: "Angled (NSFW)",
  38965. image: {
  38966. source: "./media/characters/erdno/angled-nsfw.svg",
  38967. extra: 1185/1139,
  38968. bottom: 36/1221
  38969. }
  38970. },
  38971. sideNsfw: {
  38972. height: math.unit(5 + 7/12, "feet"),
  38973. weight: math.unit(2, "tons"),
  38974. name: "Side (NSFW)",
  38975. image: {
  38976. source: "./media/characters/erdno/side-nsfw.svg",
  38977. extra: 1191/1144,
  38978. bottom: 40/1231
  38979. }
  38980. },
  38981. backNsfw: {
  38982. height: math.unit(5 + 7/12, "feet"),
  38983. weight: math.unit(2, "tons"),
  38984. name: "Back (NSFW)",
  38985. image: {
  38986. source: "./media/characters/erdno/back-nsfw.svg",
  38987. extra: 1202/1146,
  38988. bottom: 17/1219
  38989. }
  38990. },
  38991. frontHyper: {
  38992. height: math.unit(5 + 7/12, "feet"),
  38993. weight: math.unit(2, "tons"),
  38994. name: "Front (Hyper)",
  38995. image: {
  38996. source: "./media/characters/erdno/front-hyper.svg",
  38997. extra: 1298/1136,
  38998. bottom: 35/1333
  38999. }
  39000. },
  39001. },
  39002. [
  39003. {
  39004. name: "Normal",
  39005. height: math.unit(5 + 7/12, "feet"),
  39006. default: true
  39007. },
  39008. {
  39009. name: "Big",
  39010. height: math.unit(5.7, "meters")
  39011. },
  39012. {
  39013. name: "Macro",
  39014. height: math.unit(5.7, "kilometers")
  39015. },
  39016. {
  39017. name: "Megamacro",
  39018. height: math.unit(5.7, "earths")
  39019. },
  39020. ]
  39021. ))
  39022. characterMakers.push(() => makeCharacter(
  39023. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39024. {
  39025. front: {
  39026. height: math.unit(5 + 10/12, "feet"),
  39027. weight: math.unit(150, "lb"),
  39028. name: "Front",
  39029. image: {
  39030. source: "./media/characters/jamie/front.svg",
  39031. extra: 1908/1768,
  39032. bottom: 19/1927
  39033. }
  39034. },
  39035. },
  39036. [
  39037. {
  39038. name: "Minimum",
  39039. height: math.unit(2, "cm")
  39040. },
  39041. {
  39042. name: "Micro",
  39043. height: math.unit(3, "inches")
  39044. },
  39045. {
  39046. name: "Normal",
  39047. height: math.unit(5 + 10/12, "feet"),
  39048. default: true
  39049. },
  39050. {
  39051. name: "Macro",
  39052. height: math.unit(150, "feet")
  39053. },
  39054. {
  39055. name: "Megamacro",
  39056. height: math.unit(10000, "m")
  39057. },
  39058. ]
  39059. ))
  39060. characterMakers.push(() => makeCharacter(
  39061. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39062. {
  39063. front: {
  39064. height: math.unit(2, "meters"),
  39065. weight: math.unit(100, "kg"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/shiron/front.svg",
  39069. extra: 2103/1985,
  39070. bottom: 98/2201
  39071. }
  39072. },
  39073. back: {
  39074. height: math.unit(2, "meters"),
  39075. weight: math.unit(100, "kg"),
  39076. name: "Back",
  39077. image: {
  39078. source: "./media/characters/shiron/back.svg",
  39079. extra: 2110/2015,
  39080. bottom: 89/2199
  39081. }
  39082. },
  39083. hand: {
  39084. height: math.unit(0.96, "feet"),
  39085. name: "Hand",
  39086. image: {
  39087. source: "./media/characters/shiron/hand.svg"
  39088. }
  39089. },
  39090. foot: {
  39091. height: math.unit(1.464, "feet"),
  39092. name: "Foot",
  39093. image: {
  39094. source: "./media/characters/shiron/foot.svg"
  39095. }
  39096. },
  39097. },
  39098. [
  39099. {
  39100. name: "Normal",
  39101. height: math.unit(2, "meters")
  39102. },
  39103. {
  39104. name: "Macro",
  39105. height: math.unit(500, "meters"),
  39106. default: true
  39107. },
  39108. {
  39109. name: "Megamacro",
  39110. height: math.unit(20, "km")
  39111. },
  39112. ]
  39113. ))
  39114. characterMakers.push(() => makeCharacter(
  39115. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39116. {
  39117. front: {
  39118. height: math.unit(6, "feet"),
  39119. name: "Front",
  39120. image: {
  39121. source: "./media/characters/sam/front.svg",
  39122. extra: 849/826,
  39123. bottom: 19/868
  39124. }
  39125. },
  39126. },
  39127. [
  39128. {
  39129. name: "Normal",
  39130. height: math.unit(6, "feet"),
  39131. default: true
  39132. },
  39133. ]
  39134. ))
  39135. characterMakers.push(() => makeCharacter(
  39136. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39137. {
  39138. front: {
  39139. height: math.unit(8 + 4/12, "feet"),
  39140. weight: math.unit(122, "kg"),
  39141. name: "Front",
  39142. image: {
  39143. source: "./media/characters/namori-kurogawa/front.svg",
  39144. extra: 1894/1576,
  39145. bottom: 34/1928
  39146. }
  39147. },
  39148. },
  39149. [
  39150. {
  39151. name: "Normal",
  39152. height: math.unit(8 + 4/12, "feet"),
  39153. default: true
  39154. },
  39155. ]
  39156. ))
  39157. characterMakers.push(() => makeCharacter(
  39158. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39159. {
  39160. front: {
  39161. height: math.unit(9, "feet"),
  39162. weight: math.unit(621, "lb"),
  39163. name: "Front",
  39164. image: {
  39165. source: "./media/characters/unmru/front.svg",
  39166. extra: 1853/1747,
  39167. bottom: 73/1926
  39168. }
  39169. },
  39170. side: {
  39171. height: math.unit(9, "feet"),
  39172. weight: math.unit(621, "lb"),
  39173. name: "Side",
  39174. image: {
  39175. source: "./media/characters/unmru/side.svg",
  39176. extra: 1781/1671,
  39177. bottom: 127/1908
  39178. }
  39179. },
  39180. back: {
  39181. height: math.unit(9, "feet"),
  39182. weight: math.unit(621, "lb"),
  39183. name: "Back",
  39184. image: {
  39185. source: "./media/characters/unmru/back.svg",
  39186. extra: 1894/1765,
  39187. bottom: 75/1969
  39188. }
  39189. },
  39190. dick: {
  39191. height: math.unit(3, "feet"),
  39192. weight: math.unit(35, "lb"),
  39193. name: "Dick",
  39194. image: {
  39195. source: "./media/characters/unmru/dick.svg"
  39196. }
  39197. },
  39198. },
  39199. [
  39200. {
  39201. name: "Normal",
  39202. height: math.unit(9, "feet")
  39203. },
  39204. {
  39205. name: "Natural",
  39206. height: math.unit(27, "feet"),
  39207. default: true
  39208. },
  39209. {
  39210. name: "Giant",
  39211. height: math.unit(90, "feet")
  39212. },
  39213. {
  39214. name: "Kaiju",
  39215. height: math.unit(270, "feet")
  39216. },
  39217. {
  39218. name: "Macro",
  39219. height: math.unit(900, "feet")
  39220. },
  39221. {
  39222. name: "Macro+",
  39223. height: math.unit(2700, "feet")
  39224. },
  39225. {
  39226. name: "Megamacro",
  39227. height: math.unit(9000, "feet")
  39228. },
  39229. {
  39230. name: "City-Crushing",
  39231. height: math.unit(27000, "feet")
  39232. },
  39233. {
  39234. name: "Mountain-Mashing",
  39235. height: math.unit(90000, "feet")
  39236. },
  39237. {
  39238. name: "Earth-Eclipsing",
  39239. height: math.unit(2.7e8, "feet")
  39240. },
  39241. {
  39242. name: "Sol-Swallowing",
  39243. height: math.unit(9e10, "feet")
  39244. },
  39245. {
  39246. name: "Majoris-Munching",
  39247. height: math.unit(2.7e13, "feet")
  39248. },
  39249. ]
  39250. ))
  39251. characterMakers.push(() => makeCharacter(
  39252. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39253. {
  39254. front: {
  39255. height: math.unit(1, "inch"),
  39256. name: "Front",
  39257. image: {
  39258. source: "./media/characters/squeaks-mouse/front.svg",
  39259. extra: 352/308,
  39260. bottom: 25/377
  39261. }
  39262. },
  39263. },
  39264. [
  39265. {
  39266. name: "Micro",
  39267. height: math.unit(1, "inch"),
  39268. default: true
  39269. },
  39270. ]
  39271. ))
  39272. characterMakers.push(() => makeCharacter(
  39273. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39274. {
  39275. side: {
  39276. height: math.unit(35, "feet"),
  39277. name: "Side",
  39278. image: {
  39279. source: "./media/characters/sayko/side.svg",
  39280. extra: 1697/1021,
  39281. bottom: 82/1779
  39282. }
  39283. },
  39284. head: {
  39285. height: math.unit(16, "feet"),
  39286. name: "Head",
  39287. image: {
  39288. source: "./media/characters/sayko/head.svg"
  39289. }
  39290. },
  39291. forepaw: {
  39292. height: math.unit(7.85, "feet"),
  39293. name: "Forepaw",
  39294. image: {
  39295. source: "./media/characters/sayko/forepaw.svg"
  39296. }
  39297. },
  39298. hindpaw: {
  39299. height: math.unit(8.8, "feet"),
  39300. name: "Hindpaw",
  39301. image: {
  39302. source: "./media/characters/sayko/hindpaw.svg"
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Normal",
  39309. height: math.unit(35, "feet"),
  39310. default: true
  39311. },
  39312. {
  39313. name: "Colossus",
  39314. height: math.unit(100, "meters")
  39315. },
  39316. {
  39317. name: "\"Small\" Deity",
  39318. height: math.unit(1, "km")
  39319. },
  39320. {
  39321. name: "\"Large\" Deity",
  39322. height: math.unit(15, "km")
  39323. },
  39324. ]
  39325. ))
  39326. characterMakers.push(() => makeCharacter(
  39327. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39328. {
  39329. front: {
  39330. height: math.unit(6, "feet"),
  39331. weight: math.unit(250, "lb"),
  39332. name: "Front",
  39333. image: {
  39334. source: "./media/characters/mukiro/front.svg",
  39335. extra: 1368/1310,
  39336. bottom: 34/1402
  39337. }
  39338. },
  39339. },
  39340. [
  39341. {
  39342. name: "Normal",
  39343. height: math.unit(6, "feet"),
  39344. default: true
  39345. },
  39346. ]
  39347. ))
  39348. characterMakers.push(() => makeCharacter(
  39349. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39350. {
  39351. front: {
  39352. height: math.unit(12 + 4/12, "feet"),
  39353. name: "Front",
  39354. image: {
  39355. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39356. extra: 1346/1311,
  39357. bottom: 65/1411
  39358. }
  39359. },
  39360. },
  39361. [
  39362. {
  39363. name: "Base",
  39364. height: math.unit(12 + 4/12, "feet"),
  39365. default: true
  39366. },
  39367. {
  39368. name: "Macro",
  39369. height: math.unit(150, "feet")
  39370. },
  39371. {
  39372. name: "Mega",
  39373. height: math.unit(2, "miles")
  39374. },
  39375. {
  39376. name: "Demi God",
  39377. height: math.unit(4, "AU")
  39378. },
  39379. {
  39380. name: "God Size",
  39381. height: math.unit(1, "universe")
  39382. },
  39383. ]
  39384. ))
  39385. characterMakers.push(() => makeCharacter(
  39386. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39387. {
  39388. front: {
  39389. height: math.unit(3 + 3/12, "feet"),
  39390. weight: math.unit(88, "lb"),
  39391. name: "Front",
  39392. image: {
  39393. source: "./media/characters/trey/front.svg",
  39394. extra: 1815/1509,
  39395. bottom: 60/1875
  39396. }
  39397. },
  39398. },
  39399. [
  39400. {
  39401. name: "Normal",
  39402. height: math.unit(3 + 3/12, "feet"),
  39403. default: true
  39404. },
  39405. ]
  39406. ))
  39407. characterMakers.push(() => makeCharacter(
  39408. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39409. {
  39410. front: {
  39411. height: math.unit(4, "meters"),
  39412. name: "Front",
  39413. image: {
  39414. source: "./media/characters/adelonda/front.svg",
  39415. extra: 1077/982,
  39416. bottom: 39/1116
  39417. }
  39418. },
  39419. back: {
  39420. height: math.unit(4, "meters"),
  39421. name: "Back",
  39422. image: {
  39423. source: "./media/characters/adelonda/back.svg",
  39424. extra: 1105/1003,
  39425. bottom: 25/1130
  39426. }
  39427. },
  39428. feral: {
  39429. height: math.unit(40/1.5, "meters"),
  39430. name: "Feral",
  39431. image: {
  39432. source: "./media/characters/adelonda/feral.svg",
  39433. extra: 597/271,
  39434. bottom: 387/984
  39435. }
  39436. },
  39437. },
  39438. [
  39439. {
  39440. name: "Normal",
  39441. height: math.unit(4, "meters"),
  39442. default: true
  39443. },
  39444. ]
  39445. ))
  39446. characterMakers.push(() => makeCharacter(
  39447. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39448. {
  39449. front: {
  39450. height: math.unit(8 + 4/12, "feet"),
  39451. weight: math.unit(670, "lb"),
  39452. name: "Front",
  39453. image: {
  39454. source: "./media/characters/acadiel/front.svg",
  39455. extra: 1901/1595,
  39456. bottom: 142/2043
  39457. }
  39458. },
  39459. },
  39460. [
  39461. {
  39462. name: "Normal",
  39463. height: math.unit(8 + 4/12, "feet"),
  39464. default: true
  39465. },
  39466. {
  39467. name: "Macro",
  39468. height: math.unit(200, "feet")
  39469. },
  39470. ]
  39471. ))
  39472. characterMakers.push(() => makeCharacter(
  39473. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39474. {
  39475. front: {
  39476. height: math.unit(6 + 2/12, "feet"),
  39477. weight: math.unit(185, "lb"),
  39478. name: "Front",
  39479. image: {
  39480. source: "./media/characters/kayne-ein/front.svg",
  39481. extra: 1780/1560,
  39482. bottom: 81/1861
  39483. }
  39484. },
  39485. },
  39486. [
  39487. {
  39488. name: "Normal",
  39489. height: math.unit(6 + 2/12, "feet"),
  39490. default: true
  39491. },
  39492. {
  39493. name: "Transformation Stage",
  39494. height: math.unit(15, "feet")
  39495. },
  39496. {
  39497. name: "Macro",
  39498. height: math.unit(150, "feet")
  39499. },
  39500. {
  39501. name: "Earth's Shadow",
  39502. height: math.unit(6200, "miles")
  39503. },
  39504. {
  39505. name: "Universal Demon",
  39506. height: math.unit(28e9, "parsecs")
  39507. },
  39508. {
  39509. name: "Multiverse God",
  39510. height: math.unit(3, "multiverses")
  39511. },
  39512. ]
  39513. ))
  39514. characterMakers.push(() => makeCharacter(
  39515. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39516. {
  39517. front: {
  39518. height: math.unit(5 + 5/12, "feet"),
  39519. name: "Front",
  39520. image: {
  39521. source: "./media/characters/fawn/front.svg",
  39522. extra: 1873/1731,
  39523. bottom: 95/1968
  39524. }
  39525. },
  39526. back: {
  39527. height: math.unit(5 + 5/12, "feet"),
  39528. name: "Back",
  39529. image: {
  39530. source: "./media/characters/fawn/back.svg",
  39531. extra: 1813/1700,
  39532. bottom: 14/1827
  39533. }
  39534. },
  39535. hoof: {
  39536. height: math.unit(1.45, "feet"),
  39537. name: "Hoof",
  39538. image: {
  39539. source: "./media/characters/fawn/hoof.svg"
  39540. }
  39541. },
  39542. },
  39543. [
  39544. {
  39545. name: "Normal",
  39546. height: math.unit(5 + 5/12, "feet"),
  39547. default: true
  39548. },
  39549. ]
  39550. ))
  39551. characterMakers.push(() => makeCharacter(
  39552. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39553. {
  39554. front: {
  39555. height: math.unit(2 + 5/12, "feet"),
  39556. name: "Front",
  39557. image: {
  39558. source: "./media/characters/orion/front.svg",
  39559. extra: 1366/1304,
  39560. bottom: 43/1409
  39561. }
  39562. },
  39563. paw: {
  39564. height: math.unit(0.52, "feet"),
  39565. name: "Paw",
  39566. image: {
  39567. source: "./media/characters/orion/paw.svg"
  39568. }
  39569. },
  39570. },
  39571. [
  39572. {
  39573. name: "Normal",
  39574. height: math.unit(2 + 5/12, "feet"),
  39575. default: true
  39576. },
  39577. ]
  39578. ))
  39579. characterMakers.push(() => makeCharacter(
  39580. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39581. {
  39582. front: {
  39583. height: math.unit(5 + 10/12, "feet"),
  39584. name: "Front",
  39585. image: {
  39586. source: "./media/characters/vera/front.svg",
  39587. extra: 1680/1575,
  39588. bottom: 49/1729
  39589. }
  39590. },
  39591. back: {
  39592. height: math.unit(5 + 10/12, "feet"),
  39593. name: "Back",
  39594. image: {
  39595. source: "./media/characters/vera/back.svg",
  39596. extra: 1700/1588,
  39597. bottom: 18/1718
  39598. }
  39599. },
  39600. arcanine: {
  39601. height: math.unit(6 + 8/12, "feet"),
  39602. name: "Arcanine",
  39603. image: {
  39604. source: "./media/characters/vera/arcanine.svg",
  39605. extra: 1590/1511,
  39606. bottom: 71/1661
  39607. }
  39608. },
  39609. maw: {
  39610. height: math.unit(0.82, "feet"),
  39611. name: "Maw",
  39612. image: {
  39613. source: "./media/characters/vera/maw.svg"
  39614. }
  39615. },
  39616. mawArcanine: {
  39617. height: math.unit(0.97, "feet"),
  39618. name: "Maw (Arcanine)",
  39619. image: {
  39620. source: "./media/characters/vera/maw-arcanine.svg"
  39621. }
  39622. },
  39623. paw: {
  39624. height: math.unit(0.75, "feet"),
  39625. name: "Paw",
  39626. image: {
  39627. source: "./media/characters/vera/paw.svg"
  39628. }
  39629. },
  39630. pawprint: {
  39631. height: math.unit(0.52, "feet"),
  39632. name: "Pawprint",
  39633. image: {
  39634. source: "./media/characters/vera/pawprint.svg"
  39635. }
  39636. },
  39637. },
  39638. [
  39639. {
  39640. name: "Normal",
  39641. height: math.unit(5 + 10/12, "feet"),
  39642. default: true
  39643. },
  39644. {
  39645. name: "Macro",
  39646. height: math.unit(75, "feet")
  39647. },
  39648. ]
  39649. ))
  39650. characterMakers.push(() => makeCharacter(
  39651. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39652. {
  39653. front: {
  39654. height: math.unit(4, "feet"),
  39655. weight: math.unit(40, "lb"),
  39656. name: "Front",
  39657. image: {
  39658. source: "./media/characters/orvan-rabbit/front.svg",
  39659. extra: 1896/1642,
  39660. bottom: 29/1925
  39661. }
  39662. },
  39663. },
  39664. [
  39665. {
  39666. name: "Normal",
  39667. height: math.unit(4, "feet"),
  39668. default: true
  39669. },
  39670. ]
  39671. ))
  39672. characterMakers.push(() => makeCharacter(
  39673. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39674. {
  39675. front: {
  39676. height: math.unit(6, "feet"),
  39677. weight: math.unit(168, "lb"),
  39678. name: "Front",
  39679. image: {
  39680. source: "./media/characters/lisa/front.svg",
  39681. extra: 2065/1867,
  39682. bottom: 46/2111
  39683. }
  39684. },
  39685. back: {
  39686. height: math.unit(6, "feet"),
  39687. weight: math.unit(168, "lb"),
  39688. name: "Back",
  39689. image: {
  39690. source: "./media/characters/lisa/back.svg",
  39691. extra: 1982/1838,
  39692. bottom: 29/2011
  39693. }
  39694. },
  39695. maw: {
  39696. height: math.unit(0.81, "feet"),
  39697. name: "Maw",
  39698. image: {
  39699. source: "./media/characters/lisa/maw.svg"
  39700. }
  39701. },
  39702. paw: {
  39703. height: math.unit(0.9, "feet"),
  39704. name: "Paw",
  39705. image: {
  39706. source: "./media/characters/lisa/paw.svg"
  39707. }
  39708. },
  39709. caribousune: {
  39710. height: math.unit(7 + 2/12, "feet"),
  39711. weight: math.unit(268, "lb"),
  39712. name: "Caribousune",
  39713. image: {
  39714. source: "./media/characters/lisa/caribousune.svg",
  39715. extra: 1843/1633,
  39716. bottom: 29/1872
  39717. }
  39718. },
  39719. frontCaribousune: {
  39720. height: math.unit(7 + 2/12, "feet"),
  39721. weight: math.unit(268, "lb"),
  39722. name: "Front (Caribousune)",
  39723. image: {
  39724. source: "./media/characters/lisa/front-caribousune.svg",
  39725. extra: 1818/1638,
  39726. bottom: 52/1870
  39727. }
  39728. },
  39729. sideCaribousune: {
  39730. height: math.unit(7 + 2/12, "feet"),
  39731. weight: math.unit(268, "lb"),
  39732. name: "Side (Caribousune)",
  39733. image: {
  39734. source: "./media/characters/lisa/side-caribousune.svg",
  39735. extra: 1851/1635,
  39736. bottom: 16/1867
  39737. }
  39738. },
  39739. backCaribousune: {
  39740. height: math.unit(7 + 2/12, "feet"),
  39741. weight: math.unit(268, "lb"),
  39742. name: "Back (Caribousune)",
  39743. image: {
  39744. source: "./media/characters/lisa/back-caribousune.svg",
  39745. extra: 1801/1604,
  39746. bottom: 44/1845
  39747. }
  39748. },
  39749. caribou: {
  39750. height: math.unit(7 + 2/12, "feet"),
  39751. weight: math.unit(268, "lb"),
  39752. name: "Caribou",
  39753. image: {
  39754. source: "./media/characters/lisa/caribou.svg",
  39755. extra: 1843/1633,
  39756. bottom: 29/1872
  39757. }
  39758. },
  39759. frontCaribou: {
  39760. height: math.unit(7 + 2/12, "feet"),
  39761. weight: math.unit(268, "lb"),
  39762. name: "Front (Caribou)",
  39763. image: {
  39764. source: "./media/characters/lisa/front-caribou.svg",
  39765. extra: 1818/1638,
  39766. bottom: 52/1870
  39767. }
  39768. },
  39769. sideCaribou: {
  39770. height: math.unit(7 + 2/12, "feet"),
  39771. weight: math.unit(268, "lb"),
  39772. name: "Side (Caribou)",
  39773. image: {
  39774. source: "./media/characters/lisa/side-caribou.svg",
  39775. extra: 1851/1635,
  39776. bottom: 16/1867
  39777. }
  39778. },
  39779. backCaribou: {
  39780. height: math.unit(7 + 2/12, "feet"),
  39781. weight: math.unit(268, "lb"),
  39782. name: "Back (Caribou)",
  39783. image: {
  39784. source: "./media/characters/lisa/back-caribou.svg",
  39785. extra: 1801/1604,
  39786. bottom: 44/1845
  39787. }
  39788. },
  39789. mawCaribou: {
  39790. height: math.unit(1.45, "feet"),
  39791. name: "Maw (Caribou)",
  39792. image: {
  39793. source: "./media/characters/lisa/maw-caribou.svg"
  39794. }
  39795. },
  39796. mawCaribousune: {
  39797. height: math.unit(1.45, "feet"),
  39798. name: "Maw (Caribousune)",
  39799. image: {
  39800. source: "./media/characters/lisa/maw-caribousune.svg"
  39801. }
  39802. },
  39803. pawCaribousune: {
  39804. height: math.unit(1.61, "feet"),
  39805. name: "Paw (Caribou)",
  39806. image: {
  39807. source: "./media/characters/lisa/paw-caribousune.svg"
  39808. }
  39809. },
  39810. },
  39811. [
  39812. {
  39813. name: "Normal",
  39814. height: math.unit(6, "feet")
  39815. },
  39816. {
  39817. name: "God Size",
  39818. height: math.unit(72, "feet"),
  39819. default: true
  39820. },
  39821. {
  39822. name: "Towering",
  39823. height: math.unit(288, "feet")
  39824. },
  39825. {
  39826. name: "City Size",
  39827. height: math.unit(48384, "feet")
  39828. },
  39829. {
  39830. name: "Continental",
  39831. height: math.unit(4200, "miles")
  39832. },
  39833. {
  39834. name: "Planet Eater",
  39835. height: math.unit(42, "earths")
  39836. },
  39837. {
  39838. name: "Star Swallower",
  39839. height: math.unit(42, "solarradii")
  39840. },
  39841. {
  39842. name: "System Swallower",
  39843. height: math.unit(84000, "AU")
  39844. },
  39845. {
  39846. name: "Galaxy Gobbler",
  39847. height: math.unit(42, "galaxies")
  39848. },
  39849. {
  39850. name: "Universe Devourer",
  39851. height: math.unit(42, "universes")
  39852. },
  39853. {
  39854. name: "Multiverse Muncher",
  39855. height: math.unit(42, "multiverses")
  39856. },
  39857. ]
  39858. ))
  39859. characterMakers.push(() => makeCharacter(
  39860. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39861. {
  39862. front: {
  39863. height: math.unit(36, "feet"),
  39864. name: "Front",
  39865. image: {
  39866. source: "./media/characters/shadow-rat/front.svg",
  39867. extra: 1845/1758,
  39868. bottom: 83/1928
  39869. }
  39870. },
  39871. },
  39872. [
  39873. {
  39874. name: "Macro",
  39875. height: math.unit(36, "feet"),
  39876. default: true
  39877. },
  39878. ]
  39879. ))
  39880. characterMakers.push(() => makeCharacter(
  39881. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39882. {
  39883. side: {
  39884. height: math.unit(8, "feet"),
  39885. weight: math.unit(2630, "lb"),
  39886. name: "Side",
  39887. image: {
  39888. source: "./media/characters/torallia/side.svg",
  39889. extra: 2164/2021,
  39890. bottom: 371/2535
  39891. }
  39892. },
  39893. },
  39894. [
  39895. {
  39896. name: "Mortal Interaction",
  39897. height: math.unit(8, "feet")
  39898. },
  39899. {
  39900. name: "Natural",
  39901. height: math.unit(24, "feet"),
  39902. default: true
  39903. },
  39904. {
  39905. name: "Giant",
  39906. height: math.unit(80, "feet")
  39907. },
  39908. {
  39909. name: "Kaiju",
  39910. height: math.unit(240, "feet")
  39911. },
  39912. {
  39913. name: "Macro",
  39914. height: math.unit(800, "feet")
  39915. },
  39916. {
  39917. name: "Macro+",
  39918. height: math.unit(2400, "feet")
  39919. },
  39920. {
  39921. name: "Macro++",
  39922. height: math.unit(8000, "feet")
  39923. },
  39924. {
  39925. name: "City-Crushing",
  39926. height: math.unit(24000, "feet")
  39927. },
  39928. {
  39929. name: "Mountain-Mashing",
  39930. height: math.unit(80000, "feet")
  39931. },
  39932. {
  39933. name: "District Demolisher",
  39934. height: math.unit(240000, "feet")
  39935. },
  39936. {
  39937. name: "Tri-County Terror",
  39938. height: math.unit(800000, "feet")
  39939. },
  39940. {
  39941. name: "State Smasher",
  39942. height: math.unit(2.4e6, "feet")
  39943. },
  39944. {
  39945. name: "Nation Nemesis",
  39946. height: math.unit(8e6, "feet")
  39947. },
  39948. {
  39949. name: "Continent Cracker",
  39950. height: math.unit(2.4e7, "feet")
  39951. },
  39952. {
  39953. name: "Planet-Pillaging",
  39954. height: math.unit(8e7, "feet")
  39955. },
  39956. {
  39957. name: "Earth-Eclipsing",
  39958. height: math.unit(2.4e8, "feet")
  39959. },
  39960. {
  39961. name: "Jovian-Jostling",
  39962. height: math.unit(8e8, "feet")
  39963. },
  39964. {
  39965. name: "Gas Giant Gulper",
  39966. height: math.unit(2.4e9, "feet")
  39967. },
  39968. {
  39969. name: "Astral Annihilator",
  39970. height: math.unit(8e9, "feet")
  39971. },
  39972. {
  39973. name: "Celestial Conqueror",
  39974. height: math.unit(2.4e10, "feet")
  39975. },
  39976. {
  39977. name: "Sol-Swallowing",
  39978. height: math.unit(8e10, "feet")
  39979. },
  39980. {
  39981. name: "Hunter of the Heavens",
  39982. height: math.unit(2.4e13, "feet")
  39983. },
  39984. ]
  39985. ))
  39986. characterMakers.push(() => makeCharacter(
  39987. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39988. {
  39989. front: {
  39990. height: math.unit(6 + 8/12, "feet"),
  39991. weight: math.unit(250, "kilograms"),
  39992. volume: math.unit(28, "liters"),
  39993. name: "Front",
  39994. image: {
  39995. source: "./media/characters/rebecca-pawlson/front.svg",
  39996. extra: 1737/1596,
  39997. bottom: 107/1844
  39998. }
  39999. },
  40000. back: {
  40001. height: math.unit(6 + 8/12, "feet"),
  40002. weight: math.unit(250, "kilograms"),
  40003. volume: math.unit(28, "liters"),
  40004. name: "Back",
  40005. image: {
  40006. source: "./media/characters/rebecca-pawlson/back.svg",
  40007. extra: 1702/1523,
  40008. bottom: 86/1788
  40009. }
  40010. },
  40011. },
  40012. [
  40013. {
  40014. name: "Normal",
  40015. height: math.unit(6 + 8/12, "feet")
  40016. },
  40017. {
  40018. name: "Mini Macro",
  40019. height: math.unit(10, "feet"),
  40020. default: true
  40021. },
  40022. {
  40023. name: "Macro",
  40024. height: math.unit(100, "feet")
  40025. },
  40026. {
  40027. name: "Mega Macro",
  40028. height: math.unit(2500, "feet")
  40029. },
  40030. {
  40031. name: "Giga Macro",
  40032. height: math.unit(50, "miles")
  40033. },
  40034. ]
  40035. ))
  40036. characterMakers.push(() => makeCharacter(
  40037. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40038. {
  40039. front: {
  40040. height: math.unit(7 + 6/12, "feet"),
  40041. weight: math.unit(600, "lb"),
  40042. name: "Front",
  40043. image: {
  40044. source: "./media/characters/moxie-nova/front.svg",
  40045. extra: 1734/1652,
  40046. bottom: 41/1775
  40047. }
  40048. },
  40049. },
  40050. [
  40051. {
  40052. name: "Normal",
  40053. height: math.unit(7 + 6/12, "feet"),
  40054. default: true
  40055. },
  40056. ]
  40057. ))
  40058. characterMakers.push(() => makeCharacter(
  40059. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40060. {
  40061. goat: {
  40062. height: math.unit(4, "feet"),
  40063. weight: math.unit(180, "lb"),
  40064. name: "Goat",
  40065. image: {
  40066. source: "./media/characters/tiffany/goat.svg",
  40067. extra: 1845/1595,
  40068. bottom: 106/1951
  40069. }
  40070. },
  40071. front: {
  40072. height: math.unit(5, "feet"),
  40073. weight: math.unit(150, "lb"),
  40074. name: "Foxcoon",
  40075. image: {
  40076. source: "./media/characters/tiffany/foxcoon.svg",
  40077. extra: 1941/1845,
  40078. bottom: 58/1999
  40079. }
  40080. },
  40081. },
  40082. [
  40083. {
  40084. name: "Normal",
  40085. height: math.unit(5, "feet"),
  40086. default: true
  40087. },
  40088. ]
  40089. ))
  40090. characterMakers.push(() => makeCharacter(
  40091. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40092. {
  40093. front: {
  40094. height: math.unit(8, "feet"),
  40095. weight: math.unit(300, "lb"),
  40096. name: "Front",
  40097. image: {
  40098. source: "./media/characters/raxinath/front.svg",
  40099. extra: 1407/1309,
  40100. bottom: 39/1446
  40101. }
  40102. },
  40103. back: {
  40104. height: math.unit(8, "feet"),
  40105. weight: math.unit(300, "lb"),
  40106. name: "Back",
  40107. image: {
  40108. source: "./media/characters/raxinath/back.svg",
  40109. extra: 1405/1315,
  40110. bottom: 9/1414
  40111. }
  40112. },
  40113. },
  40114. [
  40115. {
  40116. name: "Speck",
  40117. height: math.unit(0.5, "nm")
  40118. },
  40119. {
  40120. name: "Micro",
  40121. height: math.unit(3, "inches")
  40122. },
  40123. {
  40124. name: "Kobold",
  40125. height: math.unit(3, "feet")
  40126. },
  40127. {
  40128. name: "Normal",
  40129. height: math.unit(8, "feet"),
  40130. default: true
  40131. },
  40132. {
  40133. name: "Giant",
  40134. height: math.unit(50, "feet")
  40135. },
  40136. {
  40137. name: "Macro",
  40138. height: math.unit(1000, "feet")
  40139. },
  40140. {
  40141. name: "Megamacro",
  40142. height: math.unit(1, "mile")
  40143. },
  40144. ]
  40145. ))
  40146. characterMakers.push(() => makeCharacter(
  40147. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40148. {
  40149. front: {
  40150. height: math.unit(10, "feet"),
  40151. weight: math.unit(1442, "lb"),
  40152. name: "Front",
  40153. image: {
  40154. source: "./media/characters/mal-dragon/front.svg",
  40155. extra: 1515/1444,
  40156. bottom: 113/1628
  40157. }
  40158. },
  40159. back: {
  40160. height: math.unit(10, "feet"),
  40161. weight: math.unit(1442, "lb"),
  40162. name: "Back",
  40163. image: {
  40164. source: "./media/characters/mal-dragon/back.svg",
  40165. extra: 1527/1434,
  40166. bottom: 25/1552
  40167. }
  40168. },
  40169. },
  40170. [
  40171. {
  40172. name: "Mortal Interaction",
  40173. height: math.unit(10, "feet"),
  40174. default: true
  40175. },
  40176. {
  40177. name: "Large",
  40178. height: math.unit(30, "feet")
  40179. },
  40180. {
  40181. name: "Kaiju",
  40182. height: math.unit(300, "feet")
  40183. },
  40184. {
  40185. name: "Megamacro",
  40186. height: math.unit(10000, "feet")
  40187. },
  40188. {
  40189. name: "Continent Cracker",
  40190. height: math.unit(30000000, "feet")
  40191. },
  40192. {
  40193. name: "Sol-Swallowing",
  40194. height: math.unit(1e11, "feet")
  40195. },
  40196. {
  40197. name: "Light Universal",
  40198. height: math.unit(5, "universes")
  40199. },
  40200. {
  40201. name: "Universe Atoms",
  40202. height: math.unit(1.829e9, "universes")
  40203. },
  40204. {
  40205. name: "Light Multiversal",
  40206. height: math.unit(5, "multiverses")
  40207. },
  40208. {
  40209. name: "Multiverse Atoms",
  40210. height: math.unit(1.829e9, "multiverses")
  40211. },
  40212. {
  40213. name: "Fabric of Time",
  40214. height: math.unit(1e262, "multiverses")
  40215. },
  40216. ]
  40217. ))
  40218. characterMakers.push(() => makeCharacter(
  40219. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40220. {
  40221. front: {
  40222. height: math.unit(9, "feet"),
  40223. weight: math.unit(1050, "lb"),
  40224. name: "Front",
  40225. image: {
  40226. source: "./media/characters/tabitha/front.svg",
  40227. extra: 2083/1994,
  40228. bottom: 68/2151
  40229. }
  40230. },
  40231. },
  40232. [
  40233. {
  40234. name: "Baseline",
  40235. height: math.unit(9, "feet"),
  40236. default: true
  40237. },
  40238. {
  40239. name: "Giant",
  40240. height: math.unit(90, "feet")
  40241. },
  40242. {
  40243. name: "Macro",
  40244. height: math.unit(900, "feet")
  40245. },
  40246. {
  40247. name: "Megamacro",
  40248. height: math.unit(9000, "feet")
  40249. },
  40250. {
  40251. name: "City-Crushing",
  40252. height: math.unit(27000, "feet")
  40253. },
  40254. {
  40255. name: "Mountain-Mashing",
  40256. height: math.unit(90000, "feet")
  40257. },
  40258. {
  40259. name: "Nation Nemesis",
  40260. height: math.unit(9e6, "feet")
  40261. },
  40262. {
  40263. name: "Continent Cracker",
  40264. height: math.unit(27e6, "feet")
  40265. },
  40266. {
  40267. name: "Earth-Eclipsing",
  40268. height: math.unit(2.7e8, "feet")
  40269. },
  40270. {
  40271. name: "Gas Giant Gulper",
  40272. height: math.unit(2.7e9, "feet")
  40273. },
  40274. {
  40275. name: "Sol-Swallowing",
  40276. height: math.unit(9e10, "feet")
  40277. },
  40278. {
  40279. name: "Galaxy Gulper",
  40280. height: math.unit(9, "galaxies")
  40281. },
  40282. {
  40283. name: "Cosmos Churner",
  40284. height: math.unit(9, "universes")
  40285. },
  40286. ]
  40287. ))
  40288. characterMakers.push(() => makeCharacter(
  40289. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40290. {
  40291. front: {
  40292. height: math.unit(160, "cm"),
  40293. weight: math.unit(55, "kg"),
  40294. name: "Front",
  40295. image: {
  40296. source: "./media/characters/tow/front.svg",
  40297. extra: 1751/1722,
  40298. bottom: 74/1825
  40299. }
  40300. },
  40301. },
  40302. [
  40303. {
  40304. name: "Norm",
  40305. height: math.unit(160, "cm")
  40306. },
  40307. {
  40308. name: "Casual",
  40309. height: math.unit(3200, "m"),
  40310. default: true
  40311. },
  40312. {
  40313. name: "Show-Off",
  40314. height: math.unit(160, "km")
  40315. },
  40316. ]
  40317. ))
  40318. characterMakers.push(() => makeCharacter(
  40319. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40320. {
  40321. front: {
  40322. height: math.unit(7 + 11/12, "feet"),
  40323. weight: math.unit(342.8, "lb"),
  40324. name: "Front",
  40325. image: {
  40326. source: "./media/characters/vivian-orca-dragon/front.svg",
  40327. extra: 1890/1865,
  40328. bottom: 28/1918
  40329. }
  40330. },
  40331. },
  40332. [
  40333. {
  40334. name: "Micro",
  40335. height: math.unit(5, "inches")
  40336. },
  40337. {
  40338. name: "Normal",
  40339. height: math.unit(7 + 11/12, "feet"),
  40340. default: true
  40341. },
  40342. {
  40343. name: "Macro",
  40344. height: math.unit(395 + 7/12, "feet")
  40345. },
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40350. {
  40351. side: {
  40352. height: math.unit(10, "feet"),
  40353. weight: math.unit(1442, "lb"),
  40354. name: "Side",
  40355. image: {
  40356. source: "./media/characters/lotherakon/side.svg",
  40357. extra: 1604/1497,
  40358. bottom: 89/1693
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Mortal Interaction",
  40365. height: math.unit(10, "feet")
  40366. },
  40367. {
  40368. name: "Large",
  40369. height: math.unit(30, "feet"),
  40370. default: true
  40371. },
  40372. {
  40373. name: "Giant",
  40374. height: math.unit(100, "feet")
  40375. },
  40376. {
  40377. name: "Kaiju",
  40378. height: math.unit(300, "feet")
  40379. },
  40380. {
  40381. name: "Macro",
  40382. height: math.unit(1000, "feet")
  40383. },
  40384. {
  40385. name: "Macro+",
  40386. height: math.unit(3000, "feet")
  40387. },
  40388. {
  40389. name: "Megamacro",
  40390. height: math.unit(10000, "feet")
  40391. },
  40392. {
  40393. name: "City-Crushing",
  40394. height: math.unit(30000, "feet")
  40395. },
  40396. {
  40397. name: "Continent Cracker",
  40398. height: math.unit(30e6, "feet")
  40399. },
  40400. {
  40401. name: "Earth Eclipsing",
  40402. height: math.unit(3e8, "feet")
  40403. },
  40404. {
  40405. name: "Gas Giant Gulper",
  40406. height: math.unit(3e9, "feet")
  40407. },
  40408. {
  40409. name: "Sol-Swallowing",
  40410. height: math.unit(1e11, "feet")
  40411. },
  40412. {
  40413. name: "System Swallower",
  40414. height: math.unit(3e14, "feet")
  40415. },
  40416. {
  40417. name: "Galaxy Gulper",
  40418. height: math.unit(10, "galaxies")
  40419. },
  40420. {
  40421. name: "Light Universal",
  40422. height: math.unit(5, "universes")
  40423. },
  40424. {
  40425. name: "Universe Palm",
  40426. height: math.unit(20, "universes")
  40427. },
  40428. {
  40429. name: "Light Multiversal",
  40430. height: math.unit(5, "multiverses")
  40431. },
  40432. {
  40433. name: "Multiverse Palm",
  40434. height: math.unit(20, "multiverses")
  40435. },
  40436. {
  40437. name: "Inferno Incarnate",
  40438. height: math.unit(1e7, "multiverses")
  40439. },
  40440. ]
  40441. ))
  40442. characterMakers.push(() => makeCharacter(
  40443. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40444. {
  40445. front: {
  40446. height: math.unit(8, "feet"),
  40447. weight: math.unit(1200, "lb"),
  40448. name: "Front",
  40449. image: {
  40450. source: "./media/characters/malithee/front.svg",
  40451. extra: 1675/1640,
  40452. bottom: 162/1837
  40453. }
  40454. },
  40455. },
  40456. [
  40457. {
  40458. name: "Mortal Interaction",
  40459. height: math.unit(8, "feet"),
  40460. default: true
  40461. },
  40462. {
  40463. name: "Large",
  40464. height: math.unit(24, "feet")
  40465. },
  40466. {
  40467. name: "Kaiju",
  40468. height: math.unit(240, "feet")
  40469. },
  40470. {
  40471. name: "Megamacro",
  40472. height: math.unit(8000, "feet")
  40473. },
  40474. {
  40475. name: "Continent Cracker",
  40476. height: math.unit(24e6, "feet")
  40477. },
  40478. {
  40479. name: "Earth-Eclipsing",
  40480. height: math.unit(2.4e8, "feet")
  40481. },
  40482. {
  40483. name: "Sol-Swallowing",
  40484. height: math.unit(8e10, "feet")
  40485. },
  40486. {
  40487. name: "Galaxy Gulper",
  40488. height: math.unit(8, "galaxies")
  40489. },
  40490. {
  40491. name: "Light Universal",
  40492. height: math.unit(4, "universes")
  40493. },
  40494. {
  40495. name: "Universe Atoms",
  40496. height: math.unit(1.829e9, "universes")
  40497. },
  40498. {
  40499. name: "Light Multiversal",
  40500. height: math.unit(4, "multiverses")
  40501. },
  40502. {
  40503. name: "Multiverse Atoms",
  40504. height: math.unit(1.829e9, "multiverses")
  40505. },
  40506. {
  40507. name: "Nigh-Omnipresence",
  40508. height: math.unit(8e261, "multiverses")
  40509. },
  40510. ]
  40511. ))
  40512. characterMakers.push(() => makeCharacter(
  40513. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40514. {
  40515. front: {
  40516. height: math.unit(10, "feet"),
  40517. weight: math.unit(1500, "lb"),
  40518. name: "Front",
  40519. image: {
  40520. source: "./media/characters/miles-thestia/front.svg",
  40521. extra: 1812/1727,
  40522. bottom: 86/1898
  40523. }
  40524. },
  40525. back: {
  40526. height: math.unit(10, "feet"),
  40527. weight: math.unit(1500, "lb"),
  40528. name: "Back",
  40529. image: {
  40530. source: "./media/characters/miles-thestia/back.svg",
  40531. extra: 1799/1690,
  40532. bottom: 47/1846
  40533. }
  40534. },
  40535. frontNsfw: {
  40536. height: math.unit(10, "feet"),
  40537. weight: math.unit(1500, "lb"),
  40538. name: "Front (NSFW)",
  40539. image: {
  40540. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40541. extra: 1812/1727,
  40542. bottom: 86/1898
  40543. }
  40544. },
  40545. },
  40546. [
  40547. {
  40548. name: "Mini-Macro",
  40549. height: math.unit(10, "feet"),
  40550. default: true
  40551. },
  40552. ]
  40553. ))
  40554. characterMakers.push(() => makeCharacter(
  40555. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40556. {
  40557. front: {
  40558. height: math.unit(25, "feet"),
  40559. name: "Front",
  40560. image: {
  40561. source: "./media/characters/titan-s-wulf/front.svg",
  40562. extra: 1560/1484,
  40563. bottom: 76/1636
  40564. }
  40565. },
  40566. },
  40567. [
  40568. {
  40569. name: "Smallest",
  40570. height: math.unit(25, "feet"),
  40571. default: true
  40572. },
  40573. {
  40574. name: "Normal",
  40575. height: math.unit(200, "feet")
  40576. },
  40577. {
  40578. name: "Macro",
  40579. height: math.unit(200000, "feet")
  40580. },
  40581. {
  40582. name: "Multiversal Original",
  40583. height: math.unit(10000, "multiverses")
  40584. },
  40585. ]
  40586. ))
  40587. characterMakers.push(() => makeCharacter(
  40588. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40589. {
  40590. front: {
  40591. height: math.unit(8, "feet"),
  40592. weight: math.unit(553, "lb"),
  40593. name: "Front",
  40594. image: {
  40595. source: "./media/characters/tawendeh/front.svg",
  40596. extra: 2365/2268,
  40597. bottom: 83/2448
  40598. }
  40599. },
  40600. frontClothed: {
  40601. height: math.unit(8, "feet"),
  40602. weight: math.unit(553, "lb"),
  40603. name: "Front (Clothed)",
  40604. image: {
  40605. source: "./media/characters/tawendeh/front-clothed.svg",
  40606. extra: 2365/2268,
  40607. bottom: 83/2448
  40608. }
  40609. },
  40610. back: {
  40611. height: math.unit(8, "feet"),
  40612. weight: math.unit(553, "lb"),
  40613. name: "Back",
  40614. image: {
  40615. source: "./media/characters/tawendeh/back.svg",
  40616. extra: 2397/2294,
  40617. bottom: 42/2439
  40618. }
  40619. },
  40620. },
  40621. [
  40622. {
  40623. name: "Mortal Interaction",
  40624. height: math.unit(8, "feet"),
  40625. default: true
  40626. },
  40627. {
  40628. name: "Giant",
  40629. height: math.unit(80, "feet")
  40630. },
  40631. {
  40632. name: "Macro",
  40633. height: math.unit(800, "feet")
  40634. },
  40635. {
  40636. name: "Megamacro",
  40637. height: math.unit(8000, "feet")
  40638. },
  40639. {
  40640. name: "City-Crushing",
  40641. height: math.unit(24000, "feet")
  40642. },
  40643. {
  40644. name: "Mountain-Mashing",
  40645. height: math.unit(80000, "feet")
  40646. },
  40647. {
  40648. name: "Nation Nemesis",
  40649. height: math.unit(8e6, "feet")
  40650. },
  40651. {
  40652. name: "Continent Cracker",
  40653. height: math.unit(24e6, "feet")
  40654. },
  40655. {
  40656. name: "Earth-Eclipsing",
  40657. height: math.unit(2.4e8, "feet")
  40658. },
  40659. {
  40660. name: "Gas Giant Gulper",
  40661. height: math.unit(2.4e9, "feet")
  40662. },
  40663. {
  40664. name: "Sol-Swallowing",
  40665. height: math.unit(8e10, "feet")
  40666. },
  40667. {
  40668. name: "Galaxy Gulper",
  40669. height: math.unit(8, "galaxies")
  40670. },
  40671. {
  40672. name: "Cosmos Churner",
  40673. height: math.unit(8, "universes")
  40674. },
  40675. {
  40676. name: "Omnipotent Otter",
  40677. height: math.unit(80, "universes")
  40678. },
  40679. ]
  40680. ))
  40681. characterMakers.push(() => makeCharacter(
  40682. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40683. {
  40684. front: {
  40685. height: math.unit(2.6, "meters"),
  40686. weight: math.unit(900, "kg"),
  40687. name: "Front",
  40688. image: {
  40689. source: "./media/characters/neesha/front.svg",
  40690. extra: 1803/1653,
  40691. bottom: 128/1931
  40692. }
  40693. },
  40694. },
  40695. [
  40696. {
  40697. name: "Normal",
  40698. height: math.unit(2.6, "meters"),
  40699. default: true
  40700. },
  40701. {
  40702. name: "Macro",
  40703. height: math.unit(50, "meters")
  40704. },
  40705. ]
  40706. ))
  40707. characterMakers.push(() => makeCharacter(
  40708. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40709. {
  40710. front: {
  40711. height: math.unit(5, "feet"),
  40712. weight: math.unit(185, "lb"),
  40713. name: "Front",
  40714. image: {
  40715. source: "./media/characters/kyera/front.svg",
  40716. extra: 1875/1790,
  40717. bottom: 96/1971
  40718. }
  40719. },
  40720. },
  40721. [
  40722. {
  40723. name: "Normal",
  40724. height: math.unit(5, "feet"),
  40725. default: true
  40726. },
  40727. ]
  40728. ))
  40729. characterMakers.push(() => makeCharacter(
  40730. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40731. {
  40732. front: {
  40733. height: math.unit(7 + 6/12, "feet"),
  40734. weight: math.unit(540, "lb"),
  40735. name: "Front",
  40736. image: {
  40737. source: "./media/characters/yuko/front.svg",
  40738. extra: 1282/1222,
  40739. bottom: 101/1383
  40740. }
  40741. },
  40742. frontClothed: {
  40743. height: math.unit(7 + 6/12, "feet"),
  40744. weight: math.unit(540, "lb"),
  40745. name: "Front (Clothed)",
  40746. image: {
  40747. source: "./media/characters/yuko/front-clothed.svg",
  40748. extra: 1282/1222,
  40749. bottom: 101/1383
  40750. }
  40751. },
  40752. },
  40753. [
  40754. {
  40755. name: "Normal",
  40756. height: math.unit(7 + 6/12, "feet"),
  40757. default: true
  40758. },
  40759. {
  40760. name: "Macro",
  40761. height: math.unit(26 + 9/12, "feet")
  40762. },
  40763. {
  40764. name: "Megamacro",
  40765. height: math.unit(300, "feet")
  40766. },
  40767. {
  40768. name: "Gigamacro",
  40769. height: math.unit(5000, "feet")
  40770. },
  40771. {
  40772. name: "Planetary",
  40773. height: math.unit(10000, "miles")
  40774. },
  40775. ]
  40776. ))
  40777. characterMakers.push(() => makeCharacter(
  40778. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40779. {
  40780. front: {
  40781. height: math.unit(8 + 2/12, "feet"),
  40782. weight: math.unit(600, "lb"),
  40783. name: "Front",
  40784. image: {
  40785. source: "./media/characters/deam-nitrel/front.svg",
  40786. extra: 1308/1234,
  40787. bottom: 125/1433
  40788. }
  40789. },
  40790. },
  40791. [
  40792. {
  40793. name: "Normal",
  40794. height: math.unit(8 + 2/12, "feet"),
  40795. default: true
  40796. },
  40797. ]
  40798. ))
  40799. characterMakers.push(() => makeCharacter(
  40800. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40801. {
  40802. front: {
  40803. height: math.unit(6.1, "feet"),
  40804. weight: math.unit(180, "lb"),
  40805. name: "Front",
  40806. image: {
  40807. source: "./media/characters/skyress/front.svg",
  40808. extra: 1045/915,
  40809. bottom: 28/1073
  40810. }
  40811. },
  40812. maw: {
  40813. height: math.unit(1, "feet"),
  40814. name: "Maw",
  40815. image: {
  40816. source: "./media/characters/skyress/maw.svg"
  40817. }
  40818. },
  40819. },
  40820. [
  40821. {
  40822. name: "Normal",
  40823. height: math.unit(6.1, "feet"),
  40824. default: true
  40825. },
  40826. {
  40827. name: "Macro",
  40828. height: math.unit(200, "feet")
  40829. },
  40830. ]
  40831. ))
  40832. characterMakers.push(() => makeCharacter(
  40833. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40834. {
  40835. front: {
  40836. height: math.unit(4 + 2/12, "feet"),
  40837. weight: math.unit(40, "kg"),
  40838. name: "Front",
  40839. image: {
  40840. source: "./media/characters/amethyst-jones/front.svg",
  40841. extra: 1220/1150,
  40842. bottom: 101/1321
  40843. }
  40844. },
  40845. },
  40846. [
  40847. {
  40848. name: "Normal",
  40849. height: math.unit(4 + 2/12, "feet"),
  40850. default: true
  40851. },
  40852. ]
  40853. ))
  40854. characterMakers.push(() => makeCharacter(
  40855. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40856. {
  40857. front: {
  40858. height: math.unit(1.7, "m"),
  40859. weight: math.unit(135, "lb"),
  40860. name: "Front",
  40861. image: {
  40862. source: "./media/characters/jade/front.svg",
  40863. extra: 1818/1767,
  40864. bottom: 32/1850
  40865. }
  40866. },
  40867. back: {
  40868. height: math.unit(1.7, "m"),
  40869. weight: math.unit(135, "lb"),
  40870. name: "Back",
  40871. image: {
  40872. source: "./media/characters/jade/back.svg",
  40873. extra: 1869/1809,
  40874. bottom: 35/1904
  40875. }
  40876. },
  40877. hand: {
  40878. height: math.unit(0.24, "m"),
  40879. name: "Hand",
  40880. image: {
  40881. source: "./media/characters/jade/hand.svg"
  40882. }
  40883. },
  40884. foot: {
  40885. height: math.unit(0.263, "m"),
  40886. name: "Foot",
  40887. image: {
  40888. source: "./media/characters/jade/foot.svg"
  40889. }
  40890. },
  40891. dick: {
  40892. height: math.unit(0.47, "m"),
  40893. name: "Dick",
  40894. image: {
  40895. source: "./media/characters/jade/dick.svg"
  40896. }
  40897. },
  40898. },
  40899. [
  40900. {
  40901. name: "Micro",
  40902. height: math.unit(22, "cm")
  40903. },
  40904. {
  40905. name: "Normal",
  40906. height: math.unit(1.7, "m"),
  40907. default: true
  40908. },
  40909. {
  40910. name: "Macro",
  40911. height: math.unit(152, "m")
  40912. },
  40913. ]
  40914. ))
  40915. characterMakers.push(() => makeCharacter(
  40916. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40917. {
  40918. front: {
  40919. height: math.unit(100, "miles"),
  40920. weight: math.unit(20000, "tons"),
  40921. name: "Front",
  40922. image: {
  40923. source: "./media/characters/cookie/front.svg",
  40924. extra: 1125/1070,
  40925. bottom: 30/1155
  40926. }
  40927. },
  40928. },
  40929. [
  40930. {
  40931. name: "Big",
  40932. height: math.unit(50, "feet")
  40933. },
  40934. {
  40935. name: "Macro",
  40936. height: math.unit(100, "miles"),
  40937. default: true
  40938. },
  40939. {
  40940. name: "Megamacro",
  40941. height: math.unit(90000, "miles")
  40942. },
  40943. ]
  40944. ))
  40945. characterMakers.push(() => makeCharacter(
  40946. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40947. {
  40948. front: {
  40949. height: math.unit(6, "feet"),
  40950. weight: math.unit(145, "lb"),
  40951. name: "Front",
  40952. image: {
  40953. source: "./media/characters/farzian/front.svg",
  40954. extra: 1902/1693,
  40955. bottom: 108/2010
  40956. }
  40957. },
  40958. },
  40959. [
  40960. {
  40961. name: "Macro",
  40962. height: math.unit(500, "feet"),
  40963. default: true
  40964. },
  40965. ]
  40966. ))
  40967. characterMakers.push(() => makeCharacter(
  40968. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40969. {
  40970. front: {
  40971. height: math.unit(3 + 6/12, "feet"),
  40972. weight: math.unit(50, "lb"),
  40973. name: "Front",
  40974. image: {
  40975. source: "./media/characters/kimberly-tilson/front.svg",
  40976. extra: 1400/1322,
  40977. bottom: 36/1436
  40978. }
  40979. },
  40980. back: {
  40981. height: math.unit(3 + 6/12, "feet"),
  40982. weight: math.unit(50, "lb"),
  40983. name: "Back",
  40984. image: {
  40985. source: "./media/characters/kimberly-tilson/back.svg",
  40986. extra: 1370/1307,
  40987. bottom: 20/1390
  40988. }
  40989. },
  40990. },
  40991. [
  40992. {
  40993. name: "Normal",
  40994. height: math.unit(3 + 6/12, "feet"),
  40995. default: true
  40996. },
  40997. ]
  40998. ))
  40999. characterMakers.push(() => makeCharacter(
  41000. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41001. {
  41002. front: {
  41003. height: math.unit(1148, "feet"),
  41004. weight: math.unit(34057, "lb"),
  41005. name: "Front",
  41006. image: {
  41007. source: "./media/characters/harthos/front.svg",
  41008. extra: 1391/1339,
  41009. bottom: 13/1404
  41010. }
  41011. },
  41012. },
  41013. [
  41014. {
  41015. name: "Macro",
  41016. height: math.unit(1148, "feet"),
  41017. default: true
  41018. },
  41019. ]
  41020. ))
  41021. characterMakers.push(() => makeCharacter(
  41022. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41023. {
  41024. front: {
  41025. height: math.unit(15, "feet"),
  41026. name: "Front",
  41027. image: {
  41028. source: "./media/characters/hypatia/front.svg",
  41029. extra: 1653/1591,
  41030. bottom: 79/1732
  41031. }
  41032. },
  41033. },
  41034. [
  41035. {
  41036. name: "Normal",
  41037. height: math.unit(15, "feet")
  41038. },
  41039. {
  41040. name: "Small",
  41041. height: math.unit(300, "feet")
  41042. },
  41043. {
  41044. name: "Macro",
  41045. height: math.unit(2500, "feet"),
  41046. default: true
  41047. },
  41048. {
  41049. name: "Mega Macro",
  41050. height: math.unit(1500, "miles")
  41051. },
  41052. {
  41053. name: "Giga Macro",
  41054. height: math.unit(1.5e6, "miles")
  41055. },
  41056. ]
  41057. ))
  41058. characterMakers.push(() => makeCharacter(
  41059. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41060. {
  41061. front: {
  41062. height: math.unit(6, "feet"),
  41063. weight: math.unit(200, "lb"),
  41064. name: "Front",
  41065. image: {
  41066. source: "./media/characters/wulver/front.svg",
  41067. extra: 1724/1632,
  41068. bottom: 130/1854
  41069. }
  41070. },
  41071. frontNsfw: {
  41072. height: math.unit(6, "feet"),
  41073. weight: math.unit(200, "lb"),
  41074. name: "Front (NSFW)",
  41075. image: {
  41076. source: "./media/characters/wulver/front-nsfw.svg",
  41077. extra: 1724/1632,
  41078. bottom: 130/1854
  41079. }
  41080. },
  41081. },
  41082. [
  41083. {
  41084. name: "Human-Sized",
  41085. height: math.unit(6, "feet")
  41086. },
  41087. {
  41088. name: "Normal",
  41089. height: math.unit(4, "meters"),
  41090. default: true
  41091. },
  41092. {
  41093. name: "Large",
  41094. height: math.unit(6, "m")
  41095. },
  41096. ]
  41097. ))
  41098. characterMakers.push(() => makeCharacter(
  41099. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41100. {
  41101. front: {
  41102. height: math.unit(7, "feet"),
  41103. name: "Front",
  41104. image: {
  41105. source: "./media/characters/maru/front.svg",
  41106. extra: 1595/1570,
  41107. bottom: 0/1595
  41108. }
  41109. },
  41110. },
  41111. [
  41112. {
  41113. name: "Normal",
  41114. height: math.unit(7, "feet"),
  41115. default: true
  41116. },
  41117. {
  41118. name: "Macro",
  41119. height: math.unit(700, "feet")
  41120. },
  41121. {
  41122. name: "Mega Macro",
  41123. height: math.unit(25, "miles")
  41124. },
  41125. ]
  41126. ))
  41127. characterMakers.push(() => makeCharacter(
  41128. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41129. {
  41130. front: {
  41131. height: math.unit(6, "feet"),
  41132. weight: math.unit(170, "lb"),
  41133. name: "Front",
  41134. image: {
  41135. source: "./media/characters/xenon/front.svg",
  41136. extra: 1376/1305,
  41137. bottom: 56/1432
  41138. }
  41139. },
  41140. back: {
  41141. height: math.unit(6, "feet"),
  41142. weight: math.unit(170, "lb"),
  41143. name: "Back",
  41144. image: {
  41145. source: "./media/characters/xenon/back.svg",
  41146. extra: 1328/1259,
  41147. bottom: 95/1423
  41148. }
  41149. },
  41150. maw: {
  41151. height: math.unit(0.52, "feet"),
  41152. name: "Maw",
  41153. image: {
  41154. source: "./media/characters/xenon/maw.svg"
  41155. }
  41156. },
  41157. hand: {
  41158. height: math.unit(0.82, "feet"),
  41159. name: "Hand",
  41160. image: {
  41161. source: "./media/characters/xenon/hand.svg"
  41162. }
  41163. },
  41164. foot: {
  41165. height: math.unit(1.13, "feet"),
  41166. name: "Foot",
  41167. image: {
  41168. source: "./media/characters/xenon/foot.svg"
  41169. }
  41170. },
  41171. },
  41172. [
  41173. {
  41174. name: "Micro",
  41175. height: math.unit(0.8, "inches")
  41176. },
  41177. {
  41178. name: "Normal",
  41179. height: math.unit(6, "feet")
  41180. },
  41181. {
  41182. name: "Macro",
  41183. height: math.unit(50, "feet"),
  41184. default: true
  41185. },
  41186. {
  41187. name: "Macro+",
  41188. height: math.unit(250, "feet")
  41189. },
  41190. {
  41191. name: "Megamacro",
  41192. height: math.unit(1500, "feet")
  41193. },
  41194. ]
  41195. ))
  41196. characterMakers.push(() => makeCharacter(
  41197. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41198. {
  41199. front: {
  41200. height: math.unit(7 + 5/12, "feet"),
  41201. name: "Front",
  41202. image: {
  41203. source: "./media/characters/zane/front.svg",
  41204. extra: 1260/1203,
  41205. bottom: 94/1354
  41206. }
  41207. },
  41208. back: {
  41209. height: math.unit(5.05, "feet"),
  41210. name: "Back",
  41211. image: {
  41212. source: "./media/characters/zane/back.svg",
  41213. extra: 893/829,
  41214. bottom: 30/923
  41215. }
  41216. },
  41217. werewolf: {
  41218. height: math.unit(11, "feet"),
  41219. name: "Werewolf",
  41220. image: {
  41221. source: "./media/characters/zane/werewolf.svg",
  41222. extra: 1383/1323,
  41223. bottom: 89/1472
  41224. }
  41225. },
  41226. foot: {
  41227. height: math.unit(1.46, "feet"),
  41228. name: "Foot",
  41229. image: {
  41230. source: "./media/characters/zane/foot.svg"
  41231. }
  41232. },
  41233. footFront: {
  41234. height: math.unit(0.784, "feet"),
  41235. name: "Foot (Front)",
  41236. image: {
  41237. source: "./media/characters/zane/foot-front.svg"
  41238. }
  41239. },
  41240. dick: {
  41241. height: math.unit(1.95, "feet"),
  41242. name: "Dick",
  41243. image: {
  41244. source: "./media/characters/zane/dick.svg"
  41245. }
  41246. },
  41247. dickWerewolf: {
  41248. height: math.unit(3.77, "feet"),
  41249. name: "Dick (Werewolf)",
  41250. image: {
  41251. source: "./media/characters/zane/dick.svg"
  41252. }
  41253. },
  41254. },
  41255. [
  41256. {
  41257. name: "Normal",
  41258. height: math.unit(7 + 5/12, "feet"),
  41259. default: true
  41260. },
  41261. ]
  41262. ))
  41263. characterMakers.push(() => makeCharacter(
  41264. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41265. {
  41266. front: {
  41267. height: math.unit(6 + 2/12, "feet"),
  41268. weight: math.unit(284, "lb"),
  41269. name: "Front",
  41270. image: {
  41271. source: "./media/characters/benni-desparque/front.svg",
  41272. extra: 1353/1126,
  41273. bottom: 69/1422
  41274. }
  41275. },
  41276. },
  41277. [
  41278. {
  41279. name: "Civilian",
  41280. height: math.unit(6 + 2/12, "feet")
  41281. },
  41282. {
  41283. name: "Normal",
  41284. height: math.unit(98, "feet"),
  41285. default: true
  41286. },
  41287. {
  41288. name: "Kaiju Fighter",
  41289. height: math.unit(268, "feet")
  41290. },
  41291. ]
  41292. ))
  41293. characterMakers.push(() => makeCharacter(
  41294. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41295. {
  41296. front: {
  41297. height: math.unit(5, "feet"),
  41298. weight: math.unit(105, "lb"),
  41299. name: "Front",
  41300. image: {
  41301. source: "./media/characters/maxine/front.svg",
  41302. extra: 1386/1250,
  41303. bottom: 71/1457
  41304. }
  41305. },
  41306. },
  41307. [
  41308. {
  41309. name: "Normal",
  41310. height: math.unit(5, "feet"),
  41311. default: true
  41312. },
  41313. ]
  41314. ))
  41315. characterMakers.push(() => makeCharacter(
  41316. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41317. {
  41318. front: {
  41319. height: math.unit(11 + 7/12, "feet"),
  41320. weight: math.unit(9576, "lb"),
  41321. name: "Front",
  41322. image: {
  41323. source: "./media/characters/scaly/front.svg",
  41324. extra: 888/867,
  41325. bottom: 36/924
  41326. }
  41327. },
  41328. },
  41329. [
  41330. {
  41331. name: "Normal",
  41332. height: math.unit(11 + 7/12, "feet"),
  41333. default: true
  41334. },
  41335. ]
  41336. ))
  41337. characterMakers.push(() => makeCharacter(
  41338. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41339. {
  41340. front: {
  41341. height: math.unit(6 + 3/12, "feet"),
  41342. name: "Front",
  41343. image: {
  41344. source: "./media/characters/saelria/front.svg",
  41345. extra: 1243/1138,
  41346. bottom: 46/1289
  41347. }
  41348. },
  41349. },
  41350. [
  41351. {
  41352. name: "Micro",
  41353. height: math.unit(6, "inches"),
  41354. },
  41355. {
  41356. name: "Normal",
  41357. height: math.unit(6 + 3/12, "feet"),
  41358. default: true
  41359. },
  41360. {
  41361. name: "Macro",
  41362. height: math.unit(25, "feet")
  41363. },
  41364. ]
  41365. ))
  41366. characterMakers.push(() => makeCharacter(
  41367. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41368. {
  41369. front: {
  41370. height: math.unit(80, "meters"),
  41371. weight: math.unit(7000, "tonnes"),
  41372. name: "Front",
  41373. image: {
  41374. source: "./media/characters/tef/front.svg",
  41375. extra: 2036/1991,
  41376. bottom: 54/2090
  41377. }
  41378. },
  41379. back: {
  41380. height: math.unit(80, "meters"),
  41381. weight: math.unit(7000, "tonnes"),
  41382. name: "Back",
  41383. image: {
  41384. source: "./media/characters/tef/back.svg",
  41385. extra: 2036/1991,
  41386. bottom: 54/2090
  41387. }
  41388. },
  41389. },
  41390. [
  41391. {
  41392. name: "Macro",
  41393. height: math.unit(80, "meters"),
  41394. default: true
  41395. },
  41396. ]
  41397. ))
  41398. characterMakers.push(() => makeCharacter(
  41399. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41400. {
  41401. front: {
  41402. height: math.unit(13, "feet"),
  41403. weight: math.unit(6, "tons"),
  41404. name: "Front",
  41405. image: {
  41406. source: "./media/characters/rover/front.svg",
  41407. extra: 1233/1156,
  41408. bottom: 50/1283
  41409. }
  41410. },
  41411. back: {
  41412. height: math.unit(13, "feet"),
  41413. weight: math.unit(6, "tons"),
  41414. name: "Back",
  41415. image: {
  41416. source: "./media/characters/rover/back.svg",
  41417. extra: 1327/1258,
  41418. bottom: 39/1366
  41419. }
  41420. },
  41421. },
  41422. [
  41423. {
  41424. name: "Normal",
  41425. height: math.unit(13, "feet"),
  41426. default: true
  41427. },
  41428. {
  41429. name: "Macro",
  41430. height: math.unit(1300, "feet")
  41431. },
  41432. {
  41433. name: "Megamacro",
  41434. height: math.unit(1300, "miles")
  41435. },
  41436. {
  41437. name: "Gigamacro",
  41438. height: math.unit(1300000, "miles")
  41439. },
  41440. ]
  41441. ))
  41442. characterMakers.push(() => makeCharacter(
  41443. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41444. {
  41445. front: {
  41446. height: math.unit(6, "feet"),
  41447. weight: math.unit(150, "lb"),
  41448. name: "Front",
  41449. image: {
  41450. source: "./media/characters/ariz/front.svg",
  41451. extra: 1401/1346,
  41452. bottom: 5/1406
  41453. }
  41454. },
  41455. },
  41456. [
  41457. {
  41458. name: "Normal",
  41459. height: math.unit(10, "feet"),
  41460. default: true
  41461. },
  41462. ]
  41463. ))
  41464. characterMakers.push(() => makeCharacter(
  41465. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41466. {
  41467. front: {
  41468. height: math.unit(6, "feet"),
  41469. weight: math.unit(140, "lb"),
  41470. name: "Front",
  41471. image: {
  41472. source: "./media/characters/sigrun/front.svg",
  41473. extra: 1418/1359,
  41474. bottom: 27/1445
  41475. }
  41476. },
  41477. },
  41478. [
  41479. {
  41480. name: "Macro",
  41481. height: math.unit(35, "feet"),
  41482. default: true
  41483. },
  41484. ]
  41485. ))
  41486. characterMakers.push(() => makeCharacter(
  41487. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41488. {
  41489. front: {
  41490. height: math.unit(6, "feet"),
  41491. weight: math.unit(150, "lb"),
  41492. name: "Front",
  41493. image: {
  41494. source: "./media/characters/numin/front.svg",
  41495. extra: 1433/1388,
  41496. bottom: 12/1445
  41497. }
  41498. },
  41499. },
  41500. [
  41501. {
  41502. name: "Macro",
  41503. height: math.unit(21.5, "km"),
  41504. default: true
  41505. },
  41506. ]
  41507. ))
  41508. characterMakers.push(() => makeCharacter(
  41509. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41510. {
  41511. front: {
  41512. height: math.unit(6, "feet"),
  41513. weight: math.unit(463, "lb"),
  41514. name: "Front",
  41515. image: {
  41516. source: "./media/characters/melwa/front.svg",
  41517. extra: 1307/1248,
  41518. bottom: 93/1400
  41519. }
  41520. },
  41521. },
  41522. [
  41523. {
  41524. name: "Macro",
  41525. height: math.unit(50, "meters"),
  41526. default: true
  41527. },
  41528. ]
  41529. ))
  41530. characterMakers.push(() => makeCharacter(
  41531. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41532. {
  41533. front: {
  41534. height: math.unit(325, "feet"),
  41535. name: "Front",
  41536. image: {
  41537. source: "./media/characters/zorkaiju/front.svg",
  41538. extra: 1955/1814,
  41539. bottom: 40/1995
  41540. }
  41541. },
  41542. frontExtended: {
  41543. height: math.unit(325, "feet"),
  41544. name: "Front (Extended)",
  41545. image: {
  41546. source: "./media/characters/zorkaiju/front-extended.svg",
  41547. extra: 1955/1814,
  41548. bottom: 40/1995
  41549. }
  41550. },
  41551. side: {
  41552. height: math.unit(325, "feet"),
  41553. name: "Side",
  41554. image: {
  41555. source: "./media/characters/zorkaiju/side.svg",
  41556. extra: 1495/1396,
  41557. bottom: 17/1512
  41558. }
  41559. },
  41560. sideExtended: {
  41561. height: math.unit(325, "feet"),
  41562. name: "Side (Extended)",
  41563. image: {
  41564. source: "./media/characters/zorkaiju/side-extended.svg",
  41565. extra: 1495/1396,
  41566. bottom: 17/1512
  41567. }
  41568. },
  41569. back: {
  41570. height: math.unit(325, "feet"),
  41571. name: "Back",
  41572. image: {
  41573. source: "./media/characters/zorkaiju/back.svg",
  41574. extra: 1959/1821,
  41575. bottom: 31/1990
  41576. }
  41577. },
  41578. backExtended: {
  41579. height: math.unit(325, "feet"),
  41580. name: "Back (Extended)",
  41581. image: {
  41582. source: "./media/characters/zorkaiju/back-extended.svg",
  41583. extra: 1959/1821,
  41584. bottom: 31/1990
  41585. }
  41586. },
  41587. hand: {
  41588. height: math.unit(58.4, "feet"),
  41589. name: "Hand",
  41590. image: {
  41591. source: "./media/characters/zorkaiju/hand.svg"
  41592. }
  41593. },
  41594. handExtended: {
  41595. height: math.unit(61.4, "feet"),
  41596. name: "Hand (Extended)",
  41597. image: {
  41598. source: "./media/characters/zorkaiju/hand-extended.svg"
  41599. }
  41600. },
  41601. foot: {
  41602. height: math.unit(95, "feet"),
  41603. name: "Foot",
  41604. image: {
  41605. source: "./media/characters/zorkaiju/foot.svg"
  41606. }
  41607. },
  41608. leftArm: {
  41609. height: math.unit(59, "feet"),
  41610. name: "Left Arm",
  41611. image: {
  41612. source: "./media/characters/zorkaiju/left-arm.svg"
  41613. }
  41614. },
  41615. rightArm: {
  41616. height: math.unit(59, "feet"),
  41617. name: "Right Arm",
  41618. image: {
  41619. source: "./media/characters/zorkaiju/right-arm.svg"
  41620. }
  41621. },
  41622. leftArmExtended: {
  41623. height: math.unit(59 * 1.033546, "feet"),
  41624. name: "Left Arm (Extended)",
  41625. image: {
  41626. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41627. }
  41628. },
  41629. rightArmExtended: {
  41630. height: math.unit(59 * 1.0496, "feet"),
  41631. name: "Right Arm (Extended)",
  41632. image: {
  41633. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41634. }
  41635. },
  41636. tail: {
  41637. height: math.unit(104, "feet"),
  41638. name: "Tail",
  41639. image: {
  41640. source: "./media/characters/zorkaiju/tail.svg"
  41641. }
  41642. },
  41643. tailExtended: {
  41644. height: math.unit(104, "feet"),
  41645. name: "Tail (Extended)",
  41646. image: {
  41647. source: "./media/characters/zorkaiju/tail-extended.svg"
  41648. }
  41649. },
  41650. tailBottom: {
  41651. height: math.unit(104, "feet"),
  41652. name: "Tail Bottom",
  41653. image: {
  41654. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41655. }
  41656. },
  41657. crystal: {
  41658. height: math.unit(27.54, "feet"),
  41659. name: "Crystal",
  41660. image: {
  41661. source: "./media/characters/zorkaiju/crystal.svg"
  41662. }
  41663. },
  41664. },
  41665. [
  41666. {
  41667. name: "Kaiju",
  41668. height: math.unit(325, "feet"),
  41669. default: true
  41670. },
  41671. ]
  41672. ))
  41673. characterMakers.push(() => makeCharacter(
  41674. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41675. {
  41676. front: {
  41677. height: math.unit(6 + 1/12, "feet"),
  41678. weight: math.unit(115, "lb"),
  41679. name: "Front",
  41680. image: {
  41681. source: "./media/characters/bailey-belfry/front.svg",
  41682. extra: 1240/1121,
  41683. bottom: 101/1341
  41684. }
  41685. },
  41686. },
  41687. [
  41688. {
  41689. name: "Normal",
  41690. height: math.unit(6 + 1/12, "feet"),
  41691. default: true
  41692. },
  41693. ]
  41694. ))
  41695. characterMakers.push(() => makeCharacter(
  41696. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41697. {
  41698. side: {
  41699. height: math.unit(4, "meters"),
  41700. weight: math.unit(250, "kg"),
  41701. name: "Side",
  41702. image: {
  41703. source: "./media/characters/blacky/side.svg",
  41704. extra: 1027/919,
  41705. bottom: 43/1070
  41706. }
  41707. },
  41708. maw: {
  41709. height: math.unit(1, "meters"),
  41710. name: "Maw",
  41711. image: {
  41712. source: "./media/characters/blacky/maw.svg"
  41713. }
  41714. },
  41715. paw: {
  41716. height: math.unit(1, "meters"),
  41717. name: "Paw",
  41718. image: {
  41719. source: "./media/characters/blacky/paw.svg"
  41720. }
  41721. },
  41722. },
  41723. [
  41724. {
  41725. name: "Normal",
  41726. height: math.unit(4, "meters"),
  41727. default: true
  41728. },
  41729. ]
  41730. ))
  41731. characterMakers.push(() => makeCharacter(
  41732. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41733. {
  41734. front: {
  41735. height: math.unit(170, "cm"),
  41736. weight: math.unit(66, "kg"),
  41737. name: "Front",
  41738. image: {
  41739. source: "./media/characters/thux-ei/front.svg",
  41740. extra: 1109/1011,
  41741. bottom: 8/1117
  41742. }
  41743. },
  41744. },
  41745. [
  41746. {
  41747. name: "Normal",
  41748. height: math.unit(170, "cm"),
  41749. default: true
  41750. },
  41751. ]
  41752. ))
  41753. characterMakers.push(() => makeCharacter(
  41754. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41755. {
  41756. front: {
  41757. height: math.unit(5, "feet"),
  41758. weight: math.unit(120, "lb"),
  41759. name: "Front",
  41760. image: {
  41761. source: "./media/characters/roxanne-voltaire/front.svg",
  41762. extra: 1901/1779,
  41763. bottom: 53/1954
  41764. }
  41765. },
  41766. },
  41767. [
  41768. {
  41769. name: "Normal",
  41770. height: math.unit(5, "feet"),
  41771. default: true
  41772. },
  41773. {
  41774. name: "Giant",
  41775. height: math.unit(50, "feet")
  41776. },
  41777. {
  41778. name: "Titan",
  41779. height: math.unit(500, "feet")
  41780. },
  41781. {
  41782. name: "Macro",
  41783. height: math.unit(5000, "feet")
  41784. },
  41785. {
  41786. name: "Megamacro",
  41787. height: math.unit(50000, "feet")
  41788. },
  41789. {
  41790. name: "Gigamacro",
  41791. height: math.unit(500000, "feet")
  41792. },
  41793. {
  41794. name: "Teramacro",
  41795. height: math.unit(5e6, "feet")
  41796. },
  41797. ]
  41798. ))
  41799. characterMakers.push(() => makeCharacter(
  41800. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41801. {
  41802. front: {
  41803. height: math.unit(6 + 2/12, "feet"),
  41804. name: "Front",
  41805. image: {
  41806. source: "./media/characters/squeaks/front.svg",
  41807. extra: 1823/1768,
  41808. bottom: 138/1961
  41809. }
  41810. },
  41811. },
  41812. [
  41813. {
  41814. name: "Micro",
  41815. height: math.unit(0.5, "inches")
  41816. },
  41817. {
  41818. name: "Normal",
  41819. height: math.unit(6 + 2/12, "feet"),
  41820. default: true
  41821. },
  41822. {
  41823. name: "Macro",
  41824. height: math.unit(600, "feet")
  41825. },
  41826. ]
  41827. ))
  41828. characterMakers.push(() => makeCharacter(
  41829. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41830. {
  41831. front: {
  41832. height: math.unit(1.72, "meters"),
  41833. name: "Front",
  41834. image: {
  41835. source: "./media/characters/archinger/front.svg",
  41836. extra: 1861/1675,
  41837. bottom: 125/1986
  41838. }
  41839. },
  41840. back: {
  41841. height: math.unit(1.72, "meters"),
  41842. name: "Back",
  41843. image: {
  41844. source: "./media/characters/archinger/back.svg",
  41845. extra: 1844/1701,
  41846. bottom: 104/1948
  41847. }
  41848. },
  41849. cock: {
  41850. height: math.unit(0.59, "feet"),
  41851. name: "Cock",
  41852. image: {
  41853. source: "./media/characters/archinger/cock.svg"
  41854. }
  41855. },
  41856. },
  41857. [
  41858. {
  41859. name: "Normal",
  41860. height: math.unit(1.72, "meters"),
  41861. default: true
  41862. },
  41863. {
  41864. name: "Macro",
  41865. height: math.unit(84, "meters")
  41866. },
  41867. {
  41868. name: "Macro+",
  41869. height: math.unit(112, "meters")
  41870. },
  41871. {
  41872. name: "Macro++",
  41873. height: math.unit(960, "meters")
  41874. },
  41875. {
  41876. name: "Macro+++",
  41877. height: math.unit(4, "km")
  41878. },
  41879. {
  41880. name: "Macro++++",
  41881. height: math.unit(48, "km")
  41882. },
  41883. {
  41884. name: "Macro+++++",
  41885. height: math.unit(4500, "km")
  41886. },
  41887. ]
  41888. ))
  41889. characterMakers.push(() => makeCharacter(
  41890. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41891. {
  41892. front: {
  41893. height: math.unit(5 + 5/12, "feet"),
  41894. name: "Front",
  41895. image: {
  41896. source: "./media/characters/alsnapz/front.svg",
  41897. extra: 1157/1065,
  41898. bottom: 42/1199
  41899. }
  41900. },
  41901. },
  41902. [
  41903. {
  41904. name: "Normal",
  41905. height: math.unit(5 + 5/12, "feet"),
  41906. default: true
  41907. },
  41908. ]
  41909. ))
  41910. characterMakers.push(() => makeCharacter(
  41911. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41912. {
  41913. side: {
  41914. height: math.unit(3.2, "earths"),
  41915. name: "Side",
  41916. image: {
  41917. source: "./media/characters/mag/side.svg",
  41918. extra: 1331/1008,
  41919. bottom: 52/1383
  41920. }
  41921. },
  41922. wing: {
  41923. height: math.unit(1.94, "earths"),
  41924. name: "Wing",
  41925. image: {
  41926. source: "./media/characters/mag/wing.svg"
  41927. }
  41928. },
  41929. dick: {
  41930. height: math.unit(1.8, "earths"),
  41931. name: "Dick",
  41932. image: {
  41933. source: "./media/characters/mag/dick.svg"
  41934. }
  41935. },
  41936. ass: {
  41937. height: math.unit(1.33, "earths"),
  41938. name: "Ass",
  41939. image: {
  41940. source: "./media/characters/mag/ass.svg"
  41941. }
  41942. },
  41943. head: {
  41944. height: math.unit(1.1, "earths"),
  41945. name: "Head",
  41946. image: {
  41947. source: "./media/characters/mag/head.svg"
  41948. }
  41949. },
  41950. maw: {
  41951. height: math.unit(1.62, "earths"),
  41952. name: "Maw",
  41953. image: {
  41954. source: "./media/characters/mag/maw.svg"
  41955. }
  41956. },
  41957. },
  41958. [
  41959. {
  41960. name: "Small",
  41961. height: math.unit(162, "feet")
  41962. },
  41963. {
  41964. name: "Normal",
  41965. height: math.unit(3.2, "earths"),
  41966. default: true
  41967. },
  41968. ]
  41969. ))
  41970. characterMakers.push(() => makeCharacter(
  41971. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41972. {
  41973. front: {
  41974. height: math.unit(512, "feet"),
  41975. weight: math.unit(63509, "tonnes"),
  41976. name: "Front",
  41977. image: {
  41978. source: "./media/characters/vorrel-harroc/front.svg",
  41979. extra: 1075/1063,
  41980. bottom: 62/1137
  41981. }
  41982. },
  41983. },
  41984. [
  41985. {
  41986. name: "Normal",
  41987. height: math.unit(10, "feet")
  41988. },
  41989. {
  41990. name: "Macro",
  41991. height: math.unit(512, "feet"),
  41992. default: true
  41993. },
  41994. {
  41995. name: "Megamacro",
  41996. height: math.unit(256, "miles")
  41997. },
  41998. {
  41999. name: "Gigamacro",
  42000. height: math.unit(4096, "miles")
  42001. },
  42002. ]
  42003. ))
  42004. characterMakers.push(() => makeCharacter(
  42005. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42006. {
  42007. side: {
  42008. height: math.unit(50, "feet"),
  42009. name: "Side",
  42010. image: {
  42011. source: "./media/characters/froimar/side.svg",
  42012. extra: 855/638,
  42013. bottom: 99/954
  42014. }
  42015. },
  42016. },
  42017. [
  42018. {
  42019. name: "Macro",
  42020. height: math.unit(50, "feet"),
  42021. default: true
  42022. },
  42023. ]
  42024. ))
  42025. characterMakers.push(() => makeCharacter(
  42026. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42027. {
  42028. front: {
  42029. height: math.unit(210, "miles"),
  42030. name: "Front",
  42031. image: {
  42032. source: "./media/characters/timothy/front.svg",
  42033. extra: 1007/943,
  42034. bottom: 62/1069
  42035. }
  42036. },
  42037. frontSkirt: {
  42038. height: math.unit(210, "miles"),
  42039. name: "Front (Skirt)",
  42040. image: {
  42041. source: "./media/characters/timothy/front-skirt.svg",
  42042. extra: 1007/943,
  42043. bottom: 62/1069
  42044. }
  42045. },
  42046. frontCoat: {
  42047. height: math.unit(210, "miles"),
  42048. name: "Front (Coat)",
  42049. image: {
  42050. source: "./media/characters/timothy/front-coat.svg",
  42051. extra: 1007/943,
  42052. bottom: 62/1069
  42053. }
  42054. },
  42055. },
  42056. [
  42057. {
  42058. name: "Macro",
  42059. height: math.unit(210, "miles"),
  42060. default: true
  42061. },
  42062. {
  42063. name: "Megamacro",
  42064. height: math.unit(210000, "miles")
  42065. },
  42066. ]
  42067. ))
  42068. characterMakers.push(() => makeCharacter(
  42069. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42070. {
  42071. front: {
  42072. height: math.unit(188, "feet"),
  42073. name: "Front",
  42074. image: {
  42075. source: "./media/characters/pyotr/front.svg",
  42076. extra: 1912/1826,
  42077. bottom: 18/1930
  42078. }
  42079. },
  42080. },
  42081. [
  42082. {
  42083. name: "Macro",
  42084. height: math.unit(188, "feet"),
  42085. default: true
  42086. },
  42087. {
  42088. name: "Megamacro",
  42089. height: math.unit(8, "miles")
  42090. },
  42091. ]
  42092. ))
  42093. characterMakers.push(() => makeCharacter(
  42094. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42095. {
  42096. side: {
  42097. height: math.unit(10, "feet"),
  42098. weight: math.unit(4500, "lb"),
  42099. name: "Side",
  42100. image: {
  42101. source: "./media/characters/ackart/side.svg",
  42102. extra: 1776/1668,
  42103. bottom: 116/1892
  42104. }
  42105. },
  42106. },
  42107. [
  42108. {
  42109. name: "Normal",
  42110. height: math.unit(10, "feet"),
  42111. default: true
  42112. },
  42113. ]
  42114. ))
  42115. characterMakers.push(() => makeCharacter(
  42116. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42117. {
  42118. side: {
  42119. height: math.unit(21, "feet"),
  42120. name: "Side",
  42121. image: {
  42122. source: "./media/characters/nolow/side.svg",
  42123. extra: 1484/1434,
  42124. bottom: 85/1569
  42125. }
  42126. },
  42127. sideErect: {
  42128. height: math.unit(21, "feet"),
  42129. name: "Side-erect",
  42130. image: {
  42131. source: "./media/characters/nolow/side-erect.svg",
  42132. extra: 1484/1434,
  42133. bottom: 85/1569
  42134. }
  42135. },
  42136. },
  42137. [
  42138. {
  42139. name: "Regular",
  42140. height: math.unit(12, "feet")
  42141. },
  42142. {
  42143. name: "Big Chee",
  42144. height: math.unit(21, "feet"),
  42145. default: true
  42146. },
  42147. ]
  42148. ))
  42149. characterMakers.push(() => makeCharacter(
  42150. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42151. {
  42152. front: {
  42153. height: math.unit(7, "feet"),
  42154. weight: math.unit(250, "lb"),
  42155. name: "Front",
  42156. image: {
  42157. source: "./media/characters/nines/front.svg",
  42158. extra: 1741/1607,
  42159. bottom: 41/1782
  42160. }
  42161. },
  42162. side: {
  42163. height: math.unit(7, "feet"),
  42164. weight: math.unit(250, "lb"),
  42165. name: "Side",
  42166. image: {
  42167. source: "./media/characters/nines/side.svg",
  42168. extra: 1854/1735,
  42169. bottom: 93/1947
  42170. }
  42171. },
  42172. back: {
  42173. height: math.unit(7, "feet"),
  42174. weight: math.unit(250, "lb"),
  42175. name: "Back",
  42176. image: {
  42177. source: "./media/characters/nines/back.svg",
  42178. extra: 1748/1615,
  42179. bottom: 20/1768
  42180. }
  42181. },
  42182. },
  42183. [
  42184. {
  42185. name: "Megamacro",
  42186. height: math.unit(99, "km"),
  42187. default: true
  42188. },
  42189. ]
  42190. ))
  42191. characterMakers.push(() => makeCharacter(
  42192. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42193. {
  42194. front: {
  42195. height: math.unit(5 + 10/12, "feet"),
  42196. weight: math.unit(210, "lb"),
  42197. name: "Front",
  42198. image: {
  42199. source: "./media/characters/zenith/front.svg",
  42200. extra: 1531/1452,
  42201. bottom: 198/1729
  42202. }
  42203. },
  42204. back: {
  42205. height: math.unit(5 + 10/12, "feet"),
  42206. weight: math.unit(210, "lb"),
  42207. name: "Back",
  42208. image: {
  42209. source: "./media/characters/zenith/back.svg",
  42210. extra: 1571/1487,
  42211. bottom: 75/1646
  42212. }
  42213. },
  42214. },
  42215. [
  42216. {
  42217. name: "Normal",
  42218. height: math.unit(5 + 10/12, "feet"),
  42219. default: true
  42220. }
  42221. ]
  42222. ))
  42223. characterMakers.push(() => makeCharacter(
  42224. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42225. {
  42226. front: {
  42227. height: math.unit(4, "feet"),
  42228. weight: math.unit(60, "lb"),
  42229. name: "Front",
  42230. image: {
  42231. source: "./media/characters/jasper/front.svg",
  42232. extra: 1450/1379,
  42233. bottom: 19/1469
  42234. }
  42235. },
  42236. },
  42237. [
  42238. {
  42239. name: "Normal",
  42240. height: math.unit(4, "feet"),
  42241. default: true
  42242. },
  42243. ]
  42244. ))
  42245. characterMakers.push(() => makeCharacter(
  42246. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42247. {
  42248. front: {
  42249. height: math.unit(6 + 5/12, "feet"),
  42250. weight: math.unit(290, "lb"),
  42251. name: "Front",
  42252. image: {
  42253. source: "./media/characters/tiberius-thyben/front.svg",
  42254. extra: 757/739,
  42255. bottom: 39/796
  42256. }
  42257. },
  42258. },
  42259. [
  42260. {
  42261. name: "Micro",
  42262. height: math.unit(1.5, "inches")
  42263. },
  42264. {
  42265. name: "Normal",
  42266. height: math.unit(6 + 5/12, "feet"),
  42267. default: true
  42268. },
  42269. {
  42270. name: "Macro",
  42271. height: math.unit(300, "feet")
  42272. },
  42273. ]
  42274. ))
  42275. characterMakers.push(() => makeCharacter(
  42276. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42277. {
  42278. front: {
  42279. height: math.unit(5 + 6/12, "feet"),
  42280. weight: math.unit(60, "kg"),
  42281. name: "Front",
  42282. image: {
  42283. source: "./media/characters/sabre/front.svg",
  42284. extra: 738/671,
  42285. bottom: 27/765
  42286. }
  42287. },
  42288. },
  42289. [
  42290. {
  42291. name: "Teeny",
  42292. height: math.unit(2, "inches")
  42293. },
  42294. {
  42295. name: "Smol",
  42296. height: math.unit(8, "inches")
  42297. },
  42298. {
  42299. name: "Normal",
  42300. height: math.unit(5 + 6/12, "feet"),
  42301. default: true
  42302. },
  42303. {
  42304. name: "Mini-Macro",
  42305. height: math.unit(15, "feet")
  42306. },
  42307. {
  42308. name: "Macro",
  42309. height: math.unit(50, "feet")
  42310. },
  42311. ]
  42312. ))
  42313. characterMakers.push(() => makeCharacter(
  42314. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42315. {
  42316. front: {
  42317. height: math.unit(6 + 4/12, "feet"),
  42318. weight: math.unit(170, "lb"),
  42319. name: "Front",
  42320. image: {
  42321. source: "./media/characters/charlie/front.svg",
  42322. extra: 1348/1228,
  42323. bottom: 15/1363
  42324. }
  42325. },
  42326. },
  42327. [
  42328. {
  42329. name: "Macro",
  42330. height: math.unit(1700, "meters"),
  42331. default: true
  42332. },
  42333. {
  42334. name: "MegaMacro",
  42335. height: math.unit(20400, "meters")
  42336. },
  42337. ]
  42338. ))
  42339. characterMakers.push(() => makeCharacter(
  42340. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42341. {
  42342. front: {
  42343. height: math.unit(6 + 3/12, "feet"),
  42344. weight: math.unit(185, "lb"),
  42345. name: "Front",
  42346. image: {
  42347. source: "./media/characters/susan-grant/front.svg",
  42348. extra: 1351/1327,
  42349. bottom: 26/1377
  42350. }
  42351. },
  42352. },
  42353. [
  42354. {
  42355. name: "Normal",
  42356. height: math.unit(6 + 3/12, "feet"),
  42357. default: true
  42358. },
  42359. {
  42360. name: "Macro",
  42361. height: math.unit(225, "feet")
  42362. },
  42363. {
  42364. name: "Macro+",
  42365. height: math.unit(900, "feet")
  42366. },
  42367. {
  42368. name: "MegaMacro",
  42369. height: math.unit(14400, "feet")
  42370. },
  42371. ]
  42372. ))
  42373. characterMakers.push(() => makeCharacter(
  42374. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42375. {
  42376. front: {
  42377. height: math.unit(5 + 4/12, "feet"),
  42378. weight: math.unit(110, "lb"),
  42379. name: "Front",
  42380. image: {
  42381. source: "./media/characters/axel-isanov/front.svg",
  42382. extra: 1096/1065,
  42383. bottom: 13/1109
  42384. }
  42385. },
  42386. },
  42387. [
  42388. {
  42389. name: "Normal",
  42390. height: math.unit(5 + 4/12, "feet"),
  42391. default: true
  42392. },
  42393. ]
  42394. ))
  42395. characterMakers.push(() => makeCharacter(
  42396. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42397. {
  42398. front: {
  42399. height: math.unit(9, "feet"),
  42400. weight: math.unit(467, "lb"),
  42401. name: "Front",
  42402. image: {
  42403. source: "./media/characters/necahual/front.svg",
  42404. extra: 920/873,
  42405. bottom: 26/946
  42406. }
  42407. },
  42408. back: {
  42409. height: math.unit(9, "feet"),
  42410. weight: math.unit(467, "lb"),
  42411. name: "Back",
  42412. image: {
  42413. source: "./media/characters/necahual/back.svg",
  42414. extra: 930/884,
  42415. bottom: 16/946
  42416. }
  42417. },
  42418. frontUnderwear: {
  42419. height: math.unit(9, "feet"),
  42420. weight: math.unit(467, "lb"),
  42421. name: "Front (Underwear)",
  42422. image: {
  42423. source: "./media/characters/necahual/front-underwear.svg",
  42424. extra: 920/873,
  42425. bottom: 26/946
  42426. }
  42427. },
  42428. frontDressed: {
  42429. height: math.unit(9, "feet"),
  42430. weight: math.unit(467, "lb"),
  42431. name: "Front (Dressed)",
  42432. image: {
  42433. source: "./media/characters/necahual/front-dressed.svg",
  42434. extra: 920/873,
  42435. bottom: 26/946
  42436. }
  42437. },
  42438. },
  42439. [
  42440. {
  42441. name: "Comprsesed",
  42442. height: math.unit(9, "feet")
  42443. },
  42444. {
  42445. name: "Natural",
  42446. height: math.unit(15, "feet"),
  42447. default: true
  42448. },
  42449. {
  42450. name: "Boosted",
  42451. height: math.unit(50, "feet")
  42452. },
  42453. {
  42454. name: "Boosted+",
  42455. height: math.unit(150, "feet")
  42456. },
  42457. {
  42458. name: "Max",
  42459. height: math.unit(500, "feet")
  42460. },
  42461. ]
  42462. ))
  42463. characterMakers.push(() => makeCharacter(
  42464. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42465. {
  42466. front: {
  42467. height: math.unit(22 + 1/12, "feet"),
  42468. weight: math.unit(3200, "lb"),
  42469. name: "Front",
  42470. image: {
  42471. source: "./media/characters/theo-acacia/front.svg",
  42472. extra: 1796/1741,
  42473. bottom: 83/1879
  42474. }
  42475. },
  42476. frontUnderwear: {
  42477. height: math.unit(22 + 1/12, "feet"),
  42478. weight: math.unit(3200, "lb"),
  42479. name: "Front (Underwear)",
  42480. image: {
  42481. source: "./media/characters/theo-acacia/front-underwear.svg",
  42482. extra: 1796/1741,
  42483. bottom: 83/1879
  42484. }
  42485. },
  42486. frontNude: {
  42487. height: math.unit(22 + 1/12, "feet"),
  42488. weight: math.unit(3200, "lb"),
  42489. name: "Front (Nude)",
  42490. image: {
  42491. source: "./media/characters/theo-acacia/front-nude.svg",
  42492. extra: 1796/1741,
  42493. bottom: 83/1879
  42494. }
  42495. },
  42496. },
  42497. [
  42498. {
  42499. name: "Normal",
  42500. height: math.unit(22 + 1/12, "feet"),
  42501. default: true
  42502. },
  42503. ]
  42504. ))
  42505. characterMakers.push(() => makeCharacter(
  42506. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42507. {
  42508. front: {
  42509. height: math.unit(20, "feet"),
  42510. name: "Front",
  42511. image: {
  42512. source: "./media/characters/astra/front.svg",
  42513. extra: 1850/1714,
  42514. bottom: 106/1956
  42515. }
  42516. },
  42517. frontUndressed: {
  42518. height: math.unit(20, "feet"),
  42519. name: "Front (Undressed)",
  42520. image: {
  42521. source: "./media/characters/astra/front-undressed.svg",
  42522. extra: 1926/1749,
  42523. bottom: 0/1926
  42524. }
  42525. },
  42526. hand: {
  42527. height: math.unit(1.53, "feet"),
  42528. name: "Hand",
  42529. image: {
  42530. source: "./media/characters/astra/hand.svg"
  42531. }
  42532. },
  42533. paw: {
  42534. height: math.unit(1.53, "feet"),
  42535. name: "Paw",
  42536. image: {
  42537. source: "./media/characters/astra/paw.svg"
  42538. }
  42539. },
  42540. },
  42541. [
  42542. {
  42543. name: "Smallest",
  42544. height: math.unit(20, "feet")
  42545. },
  42546. {
  42547. name: "Normal",
  42548. height: math.unit(1e9, "miles"),
  42549. default: true
  42550. },
  42551. {
  42552. name: "Larger",
  42553. height: math.unit(5, "multiverses")
  42554. },
  42555. {
  42556. name: "Largest",
  42557. height: math.unit(1e9, "multiverses")
  42558. },
  42559. ]
  42560. ))
  42561. characterMakers.push(() => makeCharacter(
  42562. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42563. {
  42564. front: {
  42565. height: math.unit(8, "feet"),
  42566. name: "Front",
  42567. image: {
  42568. source: "./media/characters/breanna/front.svg",
  42569. extra: 1912/1632,
  42570. bottom: 33/1945
  42571. }
  42572. },
  42573. },
  42574. [
  42575. {
  42576. name: "Smallest",
  42577. height: math.unit(8, "feet")
  42578. },
  42579. {
  42580. name: "Normal",
  42581. height: math.unit(1, "mile"),
  42582. default: true
  42583. },
  42584. {
  42585. name: "Maximum",
  42586. height: math.unit(1500000000000, "lightyears")
  42587. },
  42588. ]
  42589. ))
  42590. characterMakers.push(() => makeCharacter(
  42591. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42592. {
  42593. front: {
  42594. height: math.unit(5 + 11/12, "feet"),
  42595. weight: math.unit(155, "lb"),
  42596. name: "Front",
  42597. image: {
  42598. source: "./media/characters/cai/front.svg",
  42599. extra: 1823/1702,
  42600. bottom: 32/1855
  42601. }
  42602. },
  42603. back: {
  42604. height: math.unit(5 + 11/12, "feet"),
  42605. weight: math.unit(155, "lb"),
  42606. name: "Back",
  42607. image: {
  42608. source: "./media/characters/cai/back.svg",
  42609. extra: 1809/1708,
  42610. bottom: 31/1840
  42611. }
  42612. },
  42613. },
  42614. [
  42615. {
  42616. name: "Normal",
  42617. height: math.unit(5 + 11/12, "feet"),
  42618. default: true
  42619. },
  42620. {
  42621. name: "Big",
  42622. height: math.unit(15, "feet")
  42623. },
  42624. {
  42625. name: "Macro",
  42626. height: math.unit(200, "feet")
  42627. },
  42628. ]
  42629. ))
  42630. characterMakers.push(() => makeCharacter(
  42631. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42632. {
  42633. front: {
  42634. height: math.unit(5 + 6/12, "feet"),
  42635. weight: math.unit(160, "lb"),
  42636. name: "Front",
  42637. image: {
  42638. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42639. extra: 1227/1174,
  42640. bottom: 37/1264
  42641. }
  42642. },
  42643. },
  42644. [
  42645. {
  42646. name: "Macro",
  42647. height: math.unit(444, "meters"),
  42648. default: true
  42649. },
  42650. ]
  42651. ))
  42652. characterMakers.push(() => makeCharacter(
  42653. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42654. {
  42655. front: {
  42656. height: math.unit(18 + 7/12, "feet"),
  42657. name: "Front",
  42658. image: {
  42659. source: "./media/characters/rex/front.svg",
  42660. extra: 1941/1807,
  42661. bottom: 66/2007
  42662. }
  42663. },
  42664. back: {
  42665. height: math.unit(18 + 7/12, "feet"),
  42666. name: "Back",
  42667. image: {
  42668. source: "./media/characters/rex/back.svg",
  42669. extra: 1937/1822,
  42670. bottom: 42/1979
  42671. }
  42672. },
  42673. boot: {
  42674. height: math.unit(3.45, "feet"),
  42675. name: "Boot",
  42676. image: {
  42677. source: "./media/characters/rex/boot.svg"
  42678. }
  42679. },
  42680. paw: {
  42681. height: math.unit(4.17, "feet"),
  42682. name: "Paw",
  42683. image: {
  42684. source: "./media/characters/rex/paw.svg"
  42685. }
  42686. },
  42687. head: {
  42688. height: math.unit(6.728, "feet"),
  42689. name: "Head",
  42690. image: {
  42691. source: "./media/characters/rex/head.svg"
  42692. }
  42693. },
  42694. },
  42695. [
  42696. {
  42697. name: "Nano",
  42698. height: math.unit(18 + 7/12, "feet")
  42699. },
  42700. {
  42701. name: "Micro",
  42702. height: math.unit(1.5, "megameters")
  42703. },
  42704. {
  42705. name: "Normal",
  42706. height: math.unit(440, "megameters"),
  42707. default: true
  42708. },
  42709. {
  42710. name: "Macro",
  42711. height: math.unit(2.5, "gigameters")
  42712. },
  42713. {
  42714. name: "Gigamacro",
  42715. height: math.unit(2, "galaxies")
  42716. },
  42717. ]
  42718. ))
  42719. characterMakers.push(() => makeCharacter(
  42720. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42721. {
  42722. side: {
  42723. height: math.unit(32, "feet"),
  42724. weight: math.unit(250000, "lb"),
  42725. name: "Side",
  42726. image: {
  42727. source: "./media/characters/silverwing/side.svg",
  42728. extra: 1100/1019,
  42729. bottom: 204/1304
  42730. }
  42731. },
  42732. },
  42733. [
  42734. {
  42735. name: "Normal",
  42736. height: math.unit(32, "feet"),
  42737. default: true
  42738. },
  42739. ]
  42740. ))
  42741. characterMakers.push(() => makeCharacter(
  42742. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42743. {
  42744. front: {
  42745. height: math.unit(6 + 6/12, "feet"),
  42746. weight: math.unit(350, "lb"),
  42747. name: "Front",
  42748. image: {
  42749. source: "./media/characters/tristan-hawthorne/front.svg",
  42750. extra: 1159/1124,
  42751. bottom: 37/1196
  42752. },
  42753. form: "labrador",
  42754. default: true
  42755. },
  42756. skunkFront: {
  42757. height: math.unit(4 + 6/12, "feet"),
  42758. weight: math.unit(120, "lb"),
  42759. name: "Front",
  42760. image: {
  42761. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42762. extra: 1609/1551,
  42763. bottom: 169/1778
  42764. },
  42765. form: "skunk",
  42766. default: true
  42767. },
  42768. },
  42769. [
  42770. {
  42771. name: "Normal",
  42772. height: math.unit(6 + 6/12, "feet"),
  42773. form: "labrador",
  42774. default: true
  42775. },
  42776. {
  42777. name: "Normal",
  42778. height: math.unit(4 + 6/12, "feet"),
  42779. form: "skunk",
  42780. default: true
  42781. },
  42782. ],
  42783. {
  42784. "labrador": {
  42785. name: "Labrador",
  42786. default: true
  42787. },
  42788. "skunk": {
  42789. name: "Skunk"
  42790. }
  42791. }
  42792. ))
  42793. characterMakers.push(() => makeCharacter(
  42794. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42795. {
  42796. front: {
  42797. height: math.unit(5 + 11/12, "feet"),
  42798. weight: math.unit(190, "lb"),
  42799. name: "Front",
  42800. image: {
  42801. source: "./media/characters/mizu/front.svg",
  42802. extra: 1988/1788,
  42803. bottom: 14/2002
  42804. }
  42805. },
  42806. },
  42807. [
  42808. {
  42809. name: "Normal",
  42810. height: math.unit(5 + 11/12, "feet"),
  42811. default: true
  42812. },
  42813. ]
  42814. ))
  42815. characterMakers.push(() => makeCharacter(
  42816. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42817. {
  42818. front: {
  42819. height: math.unit(1.7, "feet"),
  42820. weight: math.unit(50, "lb"),
  42821. name: "Front",
  42822. image: {
  42823. source: "./media/characters/dechroma/front.svg",
  42824. extra: 1095/859,
  42825. bottom: 64/1159
  42826. }
  42827. },
  42828. },
  42829. [
  42830. {
  42831. name: "Normal",
  42832. height: math.unit(1.7, "feet"),
  42833. default: true
  42834. },
  42835. ]
  42836. ))
  42837. characterMakers.push(() => makeCharacter(
  42838. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42839. {
  42840. side: {
  42841. height: math.unit(30, "feet"),
  42842. name: "Side",
  42843. image: {
  42844. source: "./media/characters/veluren-thanazel/side.svg",
  42845. extra: 1611/633,
  42846. bottom: 118/1729
  42847. }
  42848. },
  42849. front: {
  42850. height: math.unit(30, "feet"),
  42851. name: "Front",
  42852. image: {
  42853. source: "./media/characters/veluren-thanazel/front.svg",
  42854. extra: 1486/636,
  42855. bottom: 238/1724
  42856. }
  42857. },
  42858. head: {
  42859. height: math.unit(21.4, "feet"),
  42860. name: "Head",
  42861. image: {
  42862. source: "./media/characters/veluren-thanazel/head.svg"
  42863. }
  42864. },
  42865. genitals: {
  42866. height: math.unit(19.4, "feet"),
  42867. name: "Genitals",
  42868. image: {
  42869. source: "./media/characters/veluren-thanazel/genitals.svg"
  42870. }
  42871. },
  42872. },
  42873. [
  42874. {
  42875. name: "Social",
  42876. height: math.unit(6, "feet")
  42877. },
  42878. {
  42879. name: "Play",
  42880. height: math.unit(12, "feet")
  42881. },
  42882. {
  42883. name: "True",
  42884. height: math.unit(30, "feet"),
  42885. default: true
  42886. },
  42887. ]
  42888. ))
  42889. characterMakers.push(() => makeCharacter(
  42890. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42891. {
  42892. front: {
  42893. height: math.unit(7 + 6/12, "feet"),
  42894. weight: math.unit(500, "kg"),
  42895. name: "Front",
  42896. image: {
  42897. source: "./media/characters/arcturas/front.svg",
  42898. extra: 1700/1500,
  42899. bottom: 145/1845
  42900. }
  42901. },
  42902. },
  42903. [
  42904. {
  42905. name: "Normal",
  42906. height: math.unit(7 + 6/12, "feet"),
  42907. default: true
  42908. },
  42909. ]
  42910. ))
  42911. characterMakers.push(() => makeCharacter(
  42912. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42913. {
  42914. side: {
  42915. height: math.unit(6, "feet"),
  42916. weight: math.unit(2, "tons"),
  42917. name: "Side",
  42918. image: {
  42919. source: "./media/characters/vitaen/side.svg",
  42920. extra: 1157/617,
  42921. bottom: 122/1279
  42922. }
  42923. },
  42924. },
  42925. [
  42926. {
  42927. name: "Normal",
  42928. height: math.unit(6, "feet"),
  42929. default: true
  42930. },
  42931. ]
  42932. ))
  42933. characterMakers.push(() => makeCharacter(
  42934. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42935. {
  42936. front: {
  42937. height: math.unit(19, "feet"),
  42938. name: "Front",
  42939. image: {
  42940. source: "./media/characters/fia-dreamweaver/front.svg",
  42941. extra: 1630/1504,
  42942. bottom: 25/1655
  42943. }
  42944. },
  42945. },
  42946. [
  42947. {
  42948. name: "Normal",
  42949. height: math.unit(19, "feet"),
  42950. default: true
  42951. },
  42952. ]
  42953. ))
  42954. characterMakers.push(() => makeCharacter(
  42955. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42956. {
  42957. front: {
  42958. height: math.unit(5 + 4/12, "feet"),
  42959. name: "Front",
  42960. image: {
  42961. source: "./media/characters/artan/front.svg",
  42962. extra: 1618/1535,
  42963. bottom: 46/1664
  42964. }
  42965. },
  42966. back: {
  42967. height: math.unit(5 + 4/12, "feet"),
  42968. name: "Back",
  42969. image: {
  42970. source: "./media/characters/artan/back.svg",
  42971. extra: 1618/1543,
  42972. bottom: 31/1649
  42973. }
  42974. },
  42975. },
  42976. [
  42977. {
  42978. name: "Normal",
  42979. height: math.unit(5 + 4/12, "feet"),
  42980. default: true
  42981. },
  42982. ]
  42983. ))
  42984. characterMakers.push(() => makeCharacter(
  42985. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42986. {
  42987. side: {
  42988. height: math.unit(182, "cm"),
  42989. weight: math.unit(1000, "lb"),
  42990. name: "Side",
  42991. image: {
  42992. source: "./media/characters/silver-dragon/side.svg",
  42993. extra: 710/287,
  42994. bottom: 88/798
  42995. }
  42996. },
  42997. },
  42998. [
  42999. {
  43000. name: "Normal",
  43001. height: math.unit(182, "cm"),
  43002. default: true
  43003. },
  43004. ]
  43005. ))
  43006. characterMakers.push(() => makeCharacter(
  43007. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43008. {
  43009. side: {
  43010. height: math.unit(6 + 6/12, "feet"),
  43011. weight: math.unit(1.5, "tons"),
  43012. name: "Side",
  43013. image: {
  43014. source: "./media/characters/zephyr/side.svg",
  43015. extra: 1433/586,
  43016. bottom: 109/1542
  43017. }
  43018. },
  43019. },
  43020. [
  43021. {
  43022. name: "Normal",
  43023. height: math.unit(6 + 6/12, "feet"),
  43024. default: true
  43025. },
  43026. ]
  43027. ))
  43028. characterMakers.push(() => makeCharacter(
  43029. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43030. {
  43031. side: {
  43032. height: math.unit(1, "feet"),
  43033. name: "Side",
  43034. image: {
  43035. source: "./media/characters/vixye/side.svg",
  43036. extra: 632/541,
  43037. bottom: 0/632
  43038. }
  43039. },
  43040. },
  43041. [
  43042. {
  43043. name: "Normal",
  43044. height: math.unit(1, "feet"),
  43045. default: true
  43046. },
  43047. {
  43048. name: "True",
  43049. height: math.unit(1e15, "multiverses")
  43050. },
  43051. ]
  43052. ))
  43053. characterMakers.push(() => makeCharacter(
  43054. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43055. {
  43056. front: {
  43057. height: math.unit(8 + 2/12, "feet"),
  43058. weight: math.unit(650, "lb"),
  43059. name: "Front",
  43060. image: {
  43061. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43062. extra: 1174/1137,
  43063. bottom: 82/1256
  43064. }
  43065. },
  43066. back: {
  43067. height: math.unit(8 + 2/12, "feet"),
  43068. weight: math.unit(650, "lb"),
  43069. name: "Back",
  43070. image: {
  43071. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43072. extra: 1204/1157,
  43073. bottom: 46/1250
  43074. }
  43075. },
  43076. },
  43077. [
  43078. {
  43079. name: "Wildform",
  43080. height: math.unit(8 + 2/12, "feet"),
  43081. default: true
  43082. },
  43083. ]
  43084. ))
  43085. characterMakers.push(() => makeCharacter(
  43086. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43087. {
  43088. front: {
  43089. height: math.unit(18, "feet"),
  43090. name: "Front",
  43091. image: {
  43092. source: "./media/characters/cyphin/front.svg",
  43093. extra: 970/886,
  43094. bottom: 42/1012
  43095. }
  43096. },
  43097. back: {
  43098. height: math.unit(18, "feet"),
  43099. name: "Back",
  43100. image: {
  43101. source: "./media/characters/cyphin/back.svg",
  43102. extra: 1009/894,
  43103. bottom: 24/1033
  43104. }
  43105. },
  43106. head: {
  43107. height: math.unit(5.05, "feet"),
  43108. name: "Head",
  43109. image: {
  43110. source: "./media/characters/cyphin/head.svg"
  43111. }
  43112. },
  43113. tailbud: {
  43114. height: math.unit(5, "feet"),
  43115. name: "Tailbud",
  43116. image: {
  43117. source: "./media/characters/cyphin/tailbud.svg"
  43118. }
  43119. },
  43120. },
  43121. [
  43122. ]
  43123. ))
  43124. characterMakers.push(() => makeCharacter(
  43125. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43126. {
  43127. side: {
  43128. height: math.unit(10, "feet"),
  43129. weight: math.unit(6, "tons"),
  43130. name: "Side",
  43131. image: {
  43132. source: "./media/characters/raijin/side.svg",
  43133. extra: 1529/613,
  43134. bottom: 337/1866
  43135. }
  43136. },
  43137. },
  43138. [
  43139. {
  43140. name: "Normal",
  43141. height: math.unit(10, "feet"),
  43142. default: true
  43143. },
  43144. ]
  43145. ))
  43146. characterMakers.push(() => makeCharacter(
  43147. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43148. {
  43149. side: {
  43150. height: math.unit(9, "feet"),
  43151. name: "Side",
  43152. image: {
  43153. source: "./media/characters/nilghais/side.svg",
  43154. extra: 1047/744,
  43155. bottom: 91/1138
  43156. }
  43157. },
  43158. head: {
  43159. height: math.unit(3.14, "feet"),
  43160. name: "Head",
  43161. image: {
  43162. source: "./media/characters/nilghais/head.svg"
  43163. }
  43164. },
  43165. mouth: {
  43166. height: math.unit(4.6, "feet"),
  43167. name: "Mouth",
  43168. image: {
  43169. source: "./media/characters/nilghais/mouth.svg"
  43170. }
  43171. },
  43172. wings: {
  43173. height: math.unit(24, "feet"),
  43174. name: "Wings",
  43175. image: {
  43176. source: "./media/characters/nilghais/wings.svg"
  43177. }
  43178. },
  43179. ass: {
  43180. height: math.unit(6.12, "feet"),
  43181. name: "Ass",
  43182. image: {
  43183. source: "./media/characters/nilghais/ass.svg"
  43184. }
  43185. },
  43186. },
  43187. [
  43188. {
  43189. name: "Normal",
  43190. height: math.unit(9, "feet"),
  43191. default: true
  43192. },
  43193. ]
  43194. ))
  43195. characterMakers.push(() => makeCharacter(
  43196. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43197. {
  43198. regular: {
  43199. height: math.unit(16 + 2/12, "feet"),
  43200. weight: math.unit(2300, "lb"),
  43201. name: "Regular",
  43202. image: {
  43203. source: "./media/characters/zolgar/regular.svg",
  43204. extra: 1246/1004,
  43205. bottom: 124/1370
  43206. }
  43207. },
  43208. boxers: {
  43209. height: math.unit(16 + 2/12, "feet"),
  43210. weight: math.unit(2300, "lb"),
  43211. name: "Boxers",
  43212. image: {
  43213. source: "./media/characters/zolgar/boxers.svg",
  43214. extra: 1246/1004,
  43215. bottom: 124/1370
  43216. }
  43217. },
  43218. armored: {
  43219. height: math.unit(16 + 2/12, "feet"),
  43220. weight: math.unit(2300, "lb"),
  43221. name: "Armored",
  43222. image: {
  43223. source: "./media/characters/zolgar/armored.svg",
  43224. extra: 1246/1004,
  43225. bottom: 124/1370
  43226. }
  43227. },
  43228. goth: {
  43229. height: math.unit(16 + 2/12, "feet"),
  43230. weight: math.unit(2300, "lb"),
  43231. name: "Goth",
  43232. image: {
  43233. source: "./media/characters/zolgar/goth.svg",
  43234. extra: 1246/1004,
  43235. bottom: 124/1370
  43236. }
  43237. },
  43238. },
  43239. [
  43240. {
  43241. name: "Shrunken Down",
  43242. height: math.unit(9 + 2/12, "feet")
  43243. },
  43244. {
  43245. name: "Normal",
  43246. height: math.unit(16 + 2/12, "feet"),
  43247. default: true
  43248. },
  43249. ]
  43250. ))
  43251. characterMakers.push(() => makeCharacter(
  43252. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43253. {
  43254. front: {
  43255. height: math.unit(6, "feet"),
  43256. weight: math.unit(168, "lb"),
  43257. name: "Front",
  43258. image: {
  43259. source: "./media/characters/luca/front.svg",
  43260. extra: 841/667,
  43261. bottom: 102/943
  43262. }
  43263. },
  43264. },
  43265. [
  43266. {
  43267. name: "Normal",
  43268. height: math.unit(6, "feet"),
  43269. default: true
  43270. },
  43271. ]
  43272. ))
  43273. characterMakers.push(() => makeCharacter(
  43274. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43275. {
  43276. side: {
  43277. height: math.unit(7 + 3/12, "feet"),
  43278. weight: math.unit(312, "lb"),
  43279. name: "Side",
  43280. image: {
  43281. source: "./media/characters/zezo/side.svg",
  43282. extra: 1192/1067,
  43283. bottom: 63/1255
  43284. }
  43285. },
  43286. },
  43287. [
  43288. {
  43289. name: "Normal",
  43290. height: math.unit(7 + 3/12, "feet"),
  43291. default: true
  43292. },
  43293. ]
  43294. ))
  43295. characterMakers.push(() => makeCharacter(
  43296. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43297. {
  43298. front: {
  43299. height: math.unit(5 + 5/12, "feet"),
  43300. weight: math.unit(170, "lb"),
  43301. name: "Front",
  43302. image: {
  43303. source: "./media/characters/mayso/front.svg",
  43304. extra: 1215/1108,
  43305. bottom: 16/1231
  43306. }
  43307. },
  43308. },
  43309. [
  43310. {
  43311. name: "Normal",
  43312. height: math.unit(5 + 5/12, "feet"),
  43313. default: true
  43314. },
  43315. ]
  43316. ))
  43317. characterMakers.push(() => makeCharacter(
  43318. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43319. {
  43320. front: {
  43321. height: math.unit(4 + 3/12, "feet"),
  43322. weight: math.unit(80, "lb"),
  43323. name: "Front",
  43324. image: {
  43325. source: "./media/characters/hess/front.svg",
  43326. extra: 1200/1123,
  43327. bottom: 16/1216
  43328. }
  43329. },
  43330. },
  43331. [
  43332. {
  43333. name: "Normal",
  43334. height: math.unit(4 + 3/12, "feet"),
  43335. default: true
  43336. },
  43337. ]
  43338. ))
  43339. characterMakers.push(() => makeCharacter(
  43340. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43341. {
  43342. front: {
  43343. height: math.unit(1.9, "meters"),
  43344. name: "Front",
  43345. image: {
  43346. source: "./media/characters/ashgar/front.svg",
  43347. extra: 1177/1146,
  43348. bottom: 99/1276
  43349. }
  43350. },
  43351. back: {
  43352. height: math.unit(1.9, "meters"),
  43353. name: "Back",
  43354. image: {
  43355. source: "./media/characters/ashgar/back.svg",
  43356. extra: 1201/1183,
  43357. bottom: 53/1254
  43358. }
  43359. },
  43360. feral: {
  43361. height: math.unit(1.4, "meters"),
  43362. name: "Feral",
  43363. image: {
  43364. source: "./media/characters/ashgar/feral.svg",
  43365. extra: 370/345,
  43366. bottom: 45/415
  43367. }
  43368. },
  43369. },
  43370. [
  43371. {
  43372. name: "Normal",
  43373. height: math.unit(1.9, "meters"),
  43374. default: true
  43375. },
  43376. ]
  43377. ))
  43378. characterMakers.push(() => makeCharacter(
  43379. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43380. {
  43381. regular: {
  43382. height: math.unit(6, "feet"),
  43383. weight: math.unit(220, "lb"),
  43384. name: "Regular",
  43385. image: {
  43386. source: "./media/characters/phillip/regular.svg",
  43387. extra: 1373/1277,
  43388. bottom: 75/1448
  43389. }
  43390. },
  43391. dressed: {
  43392. height: math.unit(6, "feet"),
  43393. weight: math.unit(220, "lb"),
  43394. name: "Dressed",
  43395. image: {
  43396. source: "./media/characters/phillip/dressed.svg",
  43397. extra: 1373/1277,
  43398. bottom: 75/1448
  43399. }
  43400. },
  43401. paw: {
  43402. height: math.unit(1.44, "feet"),
  43403. name: "Paw",
  43404. image: {
  43405. source: "./media/characters/phillip/paw.svg"
  43406. }
  43407. },
  43408. },
  43409. [
  43410. {
  43411. name: "Normal",
  43412. height: math.unit(6, "feet"),
  43413. default: true
  43414. },
  43415. ]
  43416. ))
  43417. characterMakers.push(() => makeCharacter(
  43418. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43419. {
  43420. side: {
  43421. height: math.unit(42, "feet"),
  43422. name: "Side",
  43423. image: {
  43424. source: "./media/characters/uvula/side.svg",
  43425. extra: 683/586,
  43426. bottom: 60/743
  43427. }
  43428. },
  43429. front: {
  43430. height: math.unit(42, "feet"),
  43431. name: "Front",
  43432. image: {
  43433. source: "./media/characters/uvula/front.svg",
  43434. extra: 705/613,
  43435. bottom: 54/759
  43436. }
  43437. },
  43438. maw: {
  43439. height: math.unit(23.5, "feet"),
  43440. name: "Maw",
  43441. image: {
  43442. source: "./media/characters/uvula/maw.svg"
  43443. }
  43444. },
  43445. },
  43446. [
  43447. {
  43448. name: "Original Size",
  43449. height: math.unit(14, "inches")
  43450. },
  43451. {
  43452. name: "Human Size",
  43453. height: math.unit(6, "feet")
  43454. },
  43455. {
  43456. name: "Big",
  43457. height: math.unit(42, "feet"),
  43458. default: true
  43459. },
  43460. {
  43461. name: "Bigger",
  43462. height: math.unit(100, "feet")
  43463. },
  43464. ]
  43465. ))
  43466. characterMakers.push(() => makeCharacter(
  43467. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43468. {
  43469. front: {
  43470. height: math.unit(5 + 11/12, "feet"),
  43471. name: "Front",
  43472. image: {
  43473. source: "./media/characters/lannah/front.svg",
  43474. extra: 1208/1113,
  43475. bottom: 97/1305
  43476. }
  43477. },
  43478. },
  43479. [
  43480. {
  43481. name: "Normal",
  43482. height: math.unit(5 + 11/12, "feet"),
  43483. default: true
  43484. },
  43485. ]
  43486. ))
  43487. characterMakers.push(() => makeCharacter(
  43488. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43489. {
  43490. front: {
  43491. height: math.unit(6 + 3/12, "feet"),
  43492. weight: math.unit(3.5, "tons"),
  43493. name: "Front",
  43494. image: {
  43495. source: "./media/characters/emberflame/front.svg",
  43496. extra: 1198/672,
  43497. bottom: 82/1280
  43498. }
  43499. },
  43500. side: {
  43501. height: math.unit(6 + 3/12, "feet"),
  43502. weight: math.unit(3.5, "tons"),
  43503. name: "Side",
  43504. image: {
  43505. source: "./media/characters/emberflame/side.svg",
  43506. extra: 938/527,
  43507. bottom: 56/994
  43508. }
  43509. },
  43510. },
  43511. [
  43512. {
  43513. name: "Normal",
  43514. height: math.unit(6 + 3/12, "feet"),
  43515. default: true
  43516. },
  43517. ]
  43518. ))
  43519. characterMakers.push(() => makeCharacter(
  43520. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43521. {
  43522. side: {
  43523. height: math.unit(17.5, "feet"),
  43524. weight: math.unit(35, "tons"),
  43525. name: "Side",
  43526. image: {
  43527. source: "./media/characters/sophie-ambrose/side.svg",
  43528. extra: 1573/1242,
  43529. bottom: 71/1644
  43530. }
  43531. },
  43532. maw: {
  43533. height: math.unit(7.4, "feet"),
  43534. name: "Maw",
  43535. image: {
  43536. source: "./media/characters/sophie-ambrose/maw.svg"
  43537. }
  43538. },
  43539. },
  43540. [
  43541. {
  43542. name: "Normal",
  43543. height: math.unit(17.5, "feet"),
  43544. default: true
  43545. },
  43546. ]
  43547. ))
  43548. characterMakers.push(() => makeCharacter(
  43549. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43550. {
  43551. front: {
  43552. height: math.unit(280, "feet"),
  43553. weight: math.unit(550, "tons"),
  43554. name: "Front",
  43555. image: {
  43556. source: "./media/characters/king-mugi/front.svg",
  43557. extra: 1102/947,
  43558. bottom: 104/1206
  43559. }
  43560. },
  43561. },
  43562. [
  43563. {
  43564. name: "King Mugi",
  43565. height: math.unit(280, "feet"),
  43566. default: true
  43567. },
  43568. ]
  43569. ))
  43570. characterMakers.push(() => makeCharacter(
  43571. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43572. {
  43573. front: {
  43574. height: math.unit(64, "meters"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/nova-fox/front.svg",
  43578. extra: 1310/1246,
  43579. bottom: 65/1375
  43580. }
  43581. },
  43582. },
  43583. [
  43584. {
  43585. name: "Macro",
  43586. height: math.unit(64, "meters"),
  43587. default: true
  43588. },
  43589. ]
  43590. ))
  43591. characterMakers.push(() => makeCharacter(
  43592. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43593. {
  43594. front: {
  43595. height: math.unit(6 + 3/12, "feet"),
  43596. weight: math.unit(170, "lb"),
  43597. name: "Front",
  43598. image: {
  43599. source: "./media/characters/sam-bat/front.svg",
  43600. extra: 1601/1411,
  43601. bottom: 125/1726
  43602. }
  43603. },
  43604. back: {
  43605. height: math.unit(6 + 3/12, "feet"),
  43606. weight: math.unit(170, "lb"),
  43607. name: "Back",
  43608. image: {
  43609. source: "./media/characters/sam-bat/back.svg",
  43610. extra: 1577/1405,
  43611. bottom: 58/1635
  43612. }
  43613. },
  43614. },
  43615. [
  43616. {
  43617. name: "Normal",
  43618. height: math.unit(6 + 3/12, "feet"),
  43619. default: true
  43620. },
  43621. ]
  43622. ))
  43623. characterMakers.push(() => makeCharacter(
  43624. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43625. {
  43626. front: {
  43627. height: math.unit(59, "feet"),
  43628. weight: math.unit(40000, "lb"),
  43629. name: "Front",
  43630. image: {
  43631. source: "./media/characters/inari/front.svg",
  43632. extra: 1884/1350,
  43633. bottom: 95/1979
  43634. }
  43635. },
  43636. },
  43637. [
  43638. {
  43639. name: "Gigantamax",
  43640. height: math.unit(59, "feet"),
  43641. default: true
  43642. },
  43643. ]
  43644. ))
  43645. characterMakers.push(() => makeCharacter(
  43646. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43647. {
  43648. front: {
  43649. height: math.unit(5 + 8/12, "feet"),
  43650. name: "Front",
  43651. image: {
  43652. source: "./media/characters/elizabeth/front.svg",
  43653. extra: 1395/1298,
  43654. bottom: 54/1449
  43655. }
  43656. },
  43657. mouth: {
  43658. height: math.unit(1.97, "feet"),
  43659. name: "Mouth",
  43660. image: {
  43661. source: "./media/characters/elizabeth/mouth.svg"
  43662. }
  43663. },
  43664. foot: {
  43665. height: math.unit(1.17, "feet"),
  43666. name: "Foot",
  43667. image: {
  43668. source: "./media/characters/elizabeth/foot.svg"
  43669. }
  43670. },
  43671. },
  43672. [
  43673. {
  43674. name: "Normal",
  43675. height: math.unit(5 + 8/12, "feet"),
  43676. default: true
  43677. },
  43678. {
  43679. name: "Minimacro",
  43680. height: math.unit(18, "feet")
  43681. },
  43682. {
  43683. name: "Macro",
  43684. height: math.unit(180, "feet")
  43685. },
  43686. ]
  43687. ))
  43688. characterMakers.push(() => makeCharacter(
  43689. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43690. {
  43691. front: {
  43692. height: math.unit(5 + 2/12, "feet"),
  43693. name: "Front",
  43694. image: {
  43695. source: "./media/characters/october-gossamer/front.svg",
  43696. extra: 505/454,
  43697. bottom: 7/512
  43698. }
  43699. },
  43700. back: {
  43701. height: math.unit(5 + 2/12, "feet"),
  43702. name: "Back",
  43703. image: {
  43704. source: "./media/characters/october-gossamer/back.svg",
  43705. extra: 501/454,
  43706. bottom: 11/512
  43707. }
  43708. },
  43709. },
  43710. [
  43711. {
  43712. name: "Normal",
  43713. height: math.unit(5 + 2/12, "feet"),
  43714. default: true
  43715. },
  43716. ]
  43717. ))
  43718. characterMakers.push(() => makeCharacter(
  43719. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43720. {
  43721. front: {
  43722. height: math.unit(5, "feet"),
  43723. name: "Front",
  43724. image: {
  43725. source: "./media/characters/epiglottis/front.svg",
  43726. extra: 923/849,
  43727. bottom: 17/940
  43728. }
  43729. },
  43730. },
  43731. [
  43732. {
  43733. name: "Original Size",
  43734. height: math.unit(10, "inches")
  43735. },
  43736. {
  43737. name: "Human Size",
  43738. height: math.unit(5, "feet"),
  43739. default: true
  43740. },
  43741. {
  43742. name: "Big",
  43743. height: math.unit(25, "feet")
  43744. },
  43745. {
  43746. name: "Bigger",
  43747. height: math.unit(50, "feet")
  43748. },
  43749. {
  43750. name: "oh lawd",
  43751. height: math.unit(75, "feet")
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43757. {
  43758. front: {
  43759. height: math.unit(2 + 4/12, "feet"),
  43760. weight: math.unit(60, "lb"),
  43761. name: "Front",
  43762. image: {
  43763. source: "./media/characters/lerm/front.svg",
  43764. extra: 796/790,
  43765. bottom: 79/875
  43766. }
  43767. },
  43768. },
  43769. [
  43770. {
  43771. name: "Normal",
  43772. height: math.unit(2 + 4/12, "feet"),
  43773. default: true
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43779. {
  43780. front: {
  43781. height: math.unit(5.5, "feet"),
  43782. weight: math.unit(130, "lb"),
  43783. name: "Front",
  43784. image: {
  43785. source: "./media/characters/xena-nebadon/front.svg",
  43786. extra: 1828/1730,
  43787. bottom: 79/1907
  43788. }
  43789. },
  43790. },
  43791. [
  43792. {
  43793. name: "Tiny Puppy",
  43794. height: math.unit(3, "inches")
  43795. },
  43796. {
  43797. name: "Normal",
  43798. height: math.unit(5.5, "feet"),
  43799. default: true
  43800. },
  43801. {
  43802. name: "Lotta Lady",
  43803. height: math.unit(12, "feet")
  43804. },
  43805. {
  43806. name: "Pretty Big",
  43807. height: math.unit(100, "feet")
  43808. },
  43809. {
  43810. name: "Big",
  43811. height: math.unit(500, "feet")
  43812. },
  43813. {
  43814. name: "Skyscraper Toys",
  43815. height: math.unit(2500, "feet")
  43816. },
  43817. {
  43818. name: "Plane Catcher",
  43819. height: math.unit(8, "miles")
  43820. },
  43821. {
  43822. name: "Planet Toys",
  43823. height: math.unit(15, "earths")
  43824. },
  43825. {
  43826. name: "Stardust",
  43827. height: math.unit(0.25, "galaxies")
  43828. },
  43829. {
  43830. name: "Snacks",
  43831. height: math.unit(70, "universes")
  43832. },
  43833. ]
  43834. ))
  43835. characterMakers.push(() => makeCharacter(
  43836. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43837. {
  43838. front: {
  43839. height: math.unit(1.6, "meters"),
  43840. weight: math.unit(60, "kg"),
  43841. name: "Front",
  43842. image: {
  43843. source: "./media/characters/bounty/front.svg",
  43844. extra: 1426/1308,
  43845. bottom: 15/1441
  43846. }
  43847. },
  43848. back: {
  43849. height: math.unit(1.6, "meters"),
  43850. weight: math.unit(60, "kg"),
  43851. name: "Back",
  43852. image: {
  43853. source: "./media/characters/bounty/back.svg",
  43854. extra: 1417/1307,
  43855. bottom: 8/1425
  43856. }
  43857. },
  43858. },
  43859. [
  43860. {
  43861. name: "Normal",
  43862. height: math.unit(1.6, "meters"),
  43863. default: true
  43864. },
  43865. {
  43866. name: "Macro",
  43867. height: math.unit(300, "meters")
  43868. },
  43869. ]
  43870. ))
  43871. characterMakers.push(() => makeCharacter(
  43872. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43873. {
  43874. front: {
  43875. height: math.unit(2 + 8/12, "feet"),
  43876. weight: math.unit(15, "lb"),
  43877. name: "Front",
  43878. image: {
  43879. source: "./media/characters/mochi/front.svg",
  43880. extra: 1022/852,
  43881. bottom: 435/1457
  43882. }
  43883. },
  43884. back: {
  43885. height: math.unit(2 + 8/12, "feet"),
  43886. weight: math.unit(15, "lb"),
  43887. name: "Back",
  43888. image: {
  43889. source: "./media/characters/mochi/back.svg",
  43890. extra: 1335/1119,
  43891. bottom: 39/1374
  43892. }
  43893. },
  43894. bird: {
  43895. height: math.unit(2 + 8/12, "feet"),
  43896. weight: math.unit(15, "lb"),
  43897. name: "Bird",
  43898. image: {
  43899. source: "./media/characters/mochi/bird.svg",
  43900. extra: 1251/1113,
  43901. bottom: 178/1429
  43902. }
  43903. },
  43904. kaiju: {
  43905. height: math.unit(154, "feet"),
  43906. weight: math.unit(1e7, "lb"),
  43907. name: "Kaiju",
  43908. image: {
  43909. source: "./media/characters/mochi/kaiju.svg",
  43910. extra: 460/324,
  43911. bottom: 40/500
  43912. }
  43913. },
  43914. head: {
  43915. height: math.unit(1.21, "feet"),
  43916. name: "Head",
  43917. image: {
  43918. source: "./media/characters/mochi/head.svg"
  43919. }
  43920. },
  43921. alternateTail: {
  43922. height: math.unit(2 + 8/12, "feet"),
  43923. weight: math.unit(45, "lb"),
  43924. name: "Alternate Tail",
  43925. image: {
  43926. source: "./media/characters/mochi/alternate-tail.svg",
  43927. extra: 139/76,
  43928. bottom: 45/184
  43929. }
  43930. },
  43931. },
  43932. [
  43933. {
  43934. name: "Micro",
  43935. height: math.unit(2, "inches")
  43936. },
  43937. {
  43938. name: "Normal",
  43939. height: math.unit(2 + 8/12, "feet"),
  43940. default: true
  43941. },
  43942. {
  43943. name: "Macro",
  43944. height: math.unit(106, "feet")
  43945. },
  43946. ]
  43947. ))
  43948. characterMakers.push(() => makeCharacter(
  43949. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43950. {
  43951. front: {
  43952. height: math.unit(5.67, "feet"),
  43953. weight: math.unit(135, "lb"),
  43954. name: "Front",
  43955. image: {
  43956. source: "./media/characters/sarel/front.svg",
  43957. extra: 865/788,
  43958. bottom: 97/962
  43959. }
  43960. },
  43961. back: {
  43962. height: math.unit(5.67, "feet"),
  43963. weight: math.unit(135, "lb"),
  43964. name: "Back",
  43965. image: {
  43966. source: "./media/characters/sarel/back.svg",
  43967. extra: 857/777,
  43968. bottom: 32/889
  43969. }
  43970. },
  43971. chozoan: {
  43972. height: math.unit(5.67, "feet"),
  43973. weight: math.unit(135, "lb"),
  43974. name: "Chozoan",
  43975. image: {
  43976. source: "./media/characters/sarel/chozoan.svg",
  43977. extra: 865/788,
  43978. bottom: 97/962
  43979. }
  43980. },
  43981. current: {
  43982. height: math.unit(5.67, "feet"),
  43983. weight: math.unit(135, "lb"),
  43984. name: "Current",
  43985. image: {
  43986. source: "./media/characters/sarel/current.svg",
  43987. extra: 865/788,
  43988. bottom: 97/962
  43989. }
  43990. },
  43991. head: {
  43992. height: math.unit(1.77, "feet"),
  43993. name: "Head",
  43994. image: {
  43995. source: "./media/characters/sarel/head.svg"
  43996. }
  43997. },
  43998. claws: {
  43999. height: math.unit(1.8, "feet"),
  44000. name: "Claws",
  44001. image: {
  44002. source: "./media/characters/sarel/claws.svg"
  44003. }
  44004. },
  44005. clawsAlt: {
  44006. height: math.unit(1.8, "feet"),
  44007. name: "Claws-alt",
  44008. image: {
  44009. source: "./media/characters/sarel/claws-alt.svg"
  44010. }
  44011. },
  44012. },
  44013. [
  44014. {
  44015. name: "Normal",
  44016. height: math.unit(5.67, "feet"),
  44017. default: true
  44018. },
  44019. ]
  44020. ))
  44021. characterMakers.push(() => makeCharacter(
  44022. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44023. {
  44024. front: {
  44025. height: math.unit(5500, "feet"),
  44026. name: "Front",
  44027. image: {
  44028. source: "./media/characters/alyonia/front.svg",
  44029. extra: 1200/1135,
  44030. bottom: 29/1229
  44031. }
  44032. },
  44033. back: {
  44034. height: math.unit(5500, "feet"),
  44035. name: "Back",
  44036. image: {
  44037. source: "./media/characters/alyonia/back.svg",
  44038. extra: 1205/1138,
  44039. bottom: 10/1215
  44040. }
  44041. },
  44042. },
  44043. [
  44044. {
  44045. name: "Small",
  44046. height: math.unit(10, "feet")
  44047. },
  44048. {
  44049. name: "Macro",
  44050. height: math.unit(500, "feet")
  44051. },
  44052. {
  44053. name: "Mega Macro",
  44054. height: math.unit(5500, "feet"),
  44055. default: true
  44056. },
  44057. {
  44058. name: "Mega Macro+",
  44059. height: math.unit(500000, "feet")
  44060. },
  44061. {
  44062. name: "Giga Macro",
  44063. height: math.unit(3000, "miles")
  44064. },
  44065. {
  44066. name: "Tera Macro",
  44067. height: math.unit(2.8e6, "miles")
  44068. },
  44069. {
  44070. name: "Galactic",
  44071. height: math.unit(120000, "lightyears")
  44072. },
  44073. ]
  44074. ))
  44075. characterMakers.push(() => makeCharacter(
  44076. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44077. {
  44078. werewolf: {
  44079. height: math.unit(8, "feet"),
  44080. weight: math.unit(425, "lb"),
  44081. name: "Werewolf",
  44082. image: {
  44083. source: "./media/characters/autumn/werewolf.svg",
  44084. extra: 2154/2031,
  44085. bottom: 160/2314
  44086. }
  44087. },
  44088. human: {
  44089. height: math.unit(5 + 8/12, "feet"),
  44090. weight: math.unit(150, "lb"),
  44091. name: "Human",
  44092. image: {
  44093. source: "./media/characters/autumn/human.svg",
  44094. extra: 1200/1149,
  44095. bottom: 30/1230
  44096. }
  44097. },
  44098. },
  44099. [
  44100. {
  44101. name: "Normal",
  44102. height: math.unit(8, "feet"),
  44103. default: true
  44104. },
  44105. ]
  44106. ))
  44107. characterMakers.push(() => makeCharacter(
  44108. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44109. {
  44110. front: {
  44111. height: math.unit(8 + 5/12, "feet"),
  44112. weight: math.unit(825, "lb"),
  44113. name: "Front",
  44114. image: {
  44115. source: "./media/characters/cobalt-charizard/front.svg",
  44116. extra: 1268/1155,
  44117. bottom: 122/1390
  44118. }
  44119. },
  44120. side: {
  44121. height: math.unit(8 + 5/12, "feet"),
  44122. weight: math.unit(825, "lb"),
  44123. name: "Side",
  44124. image: {
  44125. source: "./media/characters/cobalt-charizard/side.svg",
  44126. extra: 1348/1257,
  44127. bottom: 58/1406
  44128. }
  44129. },
  44130. gMax: {
  44131. height: math.unit(134 + 11/12, "feet"),
  44132. name: "G-Max",
  44133. image: {
  44134. source: "./media/characters/cobalt-charizard/g-max.svg",
  44135. extra: 1835/1541,
  44136. bottom: 151/1986
  44137. }
  44138. },
  44139. },
  44140. [
  44141. {
  44142. name: "Normal",
  44143. height: math.unit(8 + 5/12, "feet"),
  44144. default: true
  44145. },
  44146. ]
  44147. ))
  44148. characterMakers.push(() => makeCharacter(
  44149. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44150. {
  44151. front: {
  44152. height: math.unit(6 + 3/12, "feet"),
  44153. weight: math.unit(210, "lb"),
  44154. name: "Front",
  44155. image: {
  44156. source: "./media/characters/stella/front.svg",
  44157. extra: 3549/3335,
  44158. bottom: 51/3600
  44159. }
  44160. },
  44161. },
  44162. [
  44163. {
  44164. name: "Normal",
  44165. height: math.unit(6 + 3/12, "feet"),
  44166. default: true
  44167. },
  44168. ]
  44169. ))
  44170. characterMakers.push(() => makeCharacter(
  44171. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44172. {
  44173. front: {
  44174. height: math.unit(5, "feet"),
  44175. weight: math.unit(90, "lb"),
  44176. name: "Front",
  44177. image: {
  44178. source: "./media/characters/riley-bishop/front.svg",
  44179. extra: 1450/1428,
  44180. bottom: 152/1602
  44181. }
  44182. },
  44183. },
  44184. [
  44185. {
  44186. name: "Normal",
  44187. height: math.unit(5, "feet"),
  44188. default: true
  44189. },
  44190. ]
  44191. ))
  44192. characterMakers.push(() => makeCharacter(
  44193. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44194. {
  44195. side: {
  44196. height: math.unit(8 + 2/12, "feet"),
  44197. weight: math.unit(500, "kg"),
  44198. name: "Side",
  44199. image: {
  44200. source: "./media/characters/theo-arcanine/side.svg",
  44201. extra: 1342/1074,
  44202. bottom: 111/1453
  44203. }
  44204. },
  44205. },
  44206. [
  44207. {
  44208. name: "Normal",
  44209. height: math.unit(8 + 2/12, "feet"),
  44210. default: true
  44211. },
  44212. ]
  44213. ))
  44214. characterMakers.push(() => makeCharacter(
  44215. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44216. {
  44217. front: {
  44218. height: math.unit(4, "feet"),
  44219. name: "Front",
  44220. image: {
  44221. source: "./media/characters/kali/front.svg",
  44222. extra: 1921/1357,
  44223. bottom: 70/1991
  44224. }
  44225. },
  44226. },
  44227. [
  44228. {
  44229. name: "Normal",
  44230. height: math.unit(4, "feet"),
  44231. default: true
  44232. },
  44233. {
  44234. name: "Macro",
  44235. height: math.unit(32, "meters")
  44236. },
  44237. {
  44238. name: "Macro+",
  44239. height: math.unit(150, "meters")
  44240. },
  44241. {
  44242. name: "Megamacro",
  44243. height: math.unit(7500, "meters")
  44244. },
  44245. {
  44246. name: "Megamacro+",
  44247. height: math.unit(80, "kilometers")
  44248. },
  44249. ]
  44250. ))
  44251. characterMakers.push(() => makeCharacter(
  44252. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44253. {
  44254. side: {
  44255. height: math.unit(5 + 11/12, "feet"),
  44256. weight: math.unit(236, "lb"),
  44257. name: "Side",
  44258. image: {
  44259. source: "./media/characters/gapp/side.svg",
  44260. extra: 775/340,
  44261. bottom: 58/833
  44262. }
  44263. },
  44264. mouth: {
  44265. height: math.unit(2.98, "feet"),
  44266. name: "Mouth",
  44267. image: {
  44268. source: "./media/characters/gapp/mouth.svg"
  44269. }
  44270. },
  44271. },
  44272. [
  44273. {
  44274. name: "Normal",
  44275. height: math.unit(5 + 1/12, "feet"),
  44276. default: true
  44277. },
  44278. ]
  44279. ))
  44280. characterMakers.push(() => makeCharacter(
  44281. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44282. {
  44283. front: {
  44284. height: math.unit(6, "feet"),
  44285. name: "Front",
  44286. image: {
  44287. source: "./media/characters/persephone/front.svg",
  44288. extra: 1895/1717,
  44289. bottom: 96/1991
  44290. }
  44291. },
  44292. back: {
  44293. height: math.unit(6, "feet"),
  44294. name: "Back",
  44295. image: {
  44296. source: "./media/characters/persephone/back.svg",
  44297. extra: 1868/1679,
  44298. bottom: 26/1894
  44299. }
  44300. },
  44301. casual: {
  44302. height: math.unit(6, "feet"),
  44303. name: "Casual",
  44304. image: {
  44305. source: "./media/characters/persephone/casual.svg",
  44306. extra: 1713/1541,
  44307. bottom: 76/1789
  44308. }
  44309. },
  44310. },
  44311. [
  44312. {
  44313. name: "Human Size",
  44314. height: math.unit(6, "feet")
  44315. },
  44316. {
  44317. name: "Big Steppy",
  44318. height: math.unit(600, "meters"),
  44319. default: true
  44320. },
  44321. {
  44322. name: "Galaxy Brain",
  44323. height: math.unit(1, "zettameter")
  44324. },
  44325. ]
  44326. ))
  44327. characterMakers.push(() => makeCharacter(
  44328. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44329. {
  44330. front: {
  44331. height: math.unit(1.85, "meters"),
  44332. name: "Front",
  44333. image: {
  44334. source: "./media/characters/riley-foxthing/front.svg",
  44335. extra: 1495/1354,
  44336. bottom: 122/1617
  44337. }
  44338. },
  44339. frontAlt: {
  44340. height: math.unit(1.85, "meters"),
  44341. name: "Front (Alt)",
  44342. image: {
  44343. source: "./media/characters/riley-foxthing/front-alt.svg",
  44344. extra: 1572/1389,
  44345. bottom: 116/1688
  44346. }
  44347. },
  44348. },
  44349. [
  44350. {
  44351. name: "Normal Sized",
  44352. height: math.unit(1.85, "meters"),
  44353. default: true
  44354. },
  44355. {
  44356. name: "Quite Sizable",
  44357. height: math.unit(5, "meters")
  44358. },
  44359. {
  44360. name: "Rather Large",
  44361. height: math.unit(20, "meters")
  44362. },
  44363. {
  44364. name: "Macro",
  44365. height: math.unit(450, "meters")
  44366. },
  44367. {
  44368. name: "Giga",
  44369. height: math.unit(5, "km")
  44370. },
  44371. ]
  44372. ))
  44373. characterMakers.push(() => makeCharacter(
  44374. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44375. {
  44376. front: {
  44377. height: math.unit(6, "feet"),
  44378. weight: math.unit(200, "lb"),
  44379. name: "Front",
  44380. image: {
  44381. source: "./media/characters/blizzard/front.svg",
  44382. extra: 1136/990,
  44383. bottom: 136/1272
  44384. }
  44385. },
  44386. back: {
  44387. height: math.unit(6, "feet"),
  44388. weight: math.unit(200, "lb"),
  44389. name: "Back",
  44390. image: {
  44391. source: "./media/characters/blizzard/back.svg",
  44392. extra: 1175/1034,
  44393. bottom: 97/1272
  44394. }
  44395. },
  44396. sitting: {
  44397. height: math.unit(3.725, "feet"),
  44398. weight: math.unit(200, "lb"),
  44399. name: "Sitting",
  44400. image: {
  44401. source: "./media/characters/blizzard/sitting.svg",
  44402. extra: 581/485,
  44403. bottom: 90/671
  44404. }
  44405. },
  44406. frontWizard: {
  44407. height: math.unit(7.9, "feet"),
  44408. weight: math.unit(200, "lb"),
  44409. name: "Front (Wizard)",
  44410. image: {
  44411. source: "./media/characters/blizzard/front-wizard.svg"
  44412. }
  44413. },
  44414. backWizard: {
  44415. height: math.unit(7.9, "feet"),
  44416. weight: math.unit(200, "lb"),
  44417. name: "Back (Wizard)",
  44418. image: {
  44419. source: "./media/characters/blizzard/back-wizard.svg"
  44420. }
  44421. },
  44422. frontNsfw: {
  44423. height: math.unit(6, "feet"),
  44424. weight: math.unit(200, "lb"),
  44425. name: "Front (NSFW)",
  44426. image: {
  44427. source: "./media/characters/blizzard/front-nsfw.svg",
  44428. extra: 1136/990,
  44429. bottom: 136/1272
  44430. }
  44431. },
  44432. backNsfw: {
  44433. height: math.unit(6, "feet"),
  44434. weight: math.unit(200, "lb"),
  44435. name: "Back (NSFW)",
  44436. image: {
  44437. source: "./media/characters/blizzard/back-nsfw.svg",
  44438. extra: 1175/1034,
  44439. bottom: 97/1272
  44440. }
  44441. },
  44442. sittingNsfw: {
  44443. height: math.unit(3.725, "feet"),
  44444. weight: math.unit(200, "lb"),
  44445. name: "Sitting (NSFW)",
  44446. image: {
  44447. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44448. extra: 581/485,
  44449. bottom: 90/671
  44450. }
  44451. },
  44452. wizardFrontNsfw: {
  44453. height: math.unit(7.9, "feet"),
  44454. weight: math.unit(200, "lb"),
  44455. name: "Wizard (Front, NSFW)",
  44456. image: {
  44457. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44458. }
  44459. },
  44460. },
  44461. [
  44462. {
  44463. name: "Normal",
  44464. height: math.unit(6, "feet"),
  44465. default: true
  44466. },
  44467. ]
  44468. ))
  44469. characterMakers.push(() => makeCharacter(
  44470. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44471. {
  44472. front: {
  44473. height: math.unit(5 + 2/12, "feet"),
  44474. name: "Front",
  44475. image: {
  44476. source: "./media/characters/lumi/front.svg",
  44477. extra: 1328/1268,
  44478. bottom: 103/1431
  44479. }
  44480. },
  44481. back: {
  44482. height: math.unit(5 + 2/12, "feet"),
  44483. name: "Back",
  44484. image: {
  44485. source: "./media/characters/lumi/back.svg",
  44486. extra: 1381/1327,
  44487. bottom: 43/1424
  44488. }
  44489. },
  44490. },
  44491. [
  44492. {
  44493. name: "Normal",
  44494. height: math.unit(5 + 2/12, "feet"),
  44495. default: true
  44496. },
  44497. ]
  44498. ))
  44499. characterMakers.push(() => makeCharacter(
  44500. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44501. {
  44502. front: {
  44503. height: math.unit(5 + 9/12, "feet"),
  44504. name: "Front",
  44505. image: {
  44506. source: "./media/characters/aliya-cotton/front.svg",
  44507. extra: 577/564,
  44508. bottom: 29/606
  44509. }
  44510. },
  44511. },
  44512. [
  44513. {
  44514. name: "Normal",
  44515. height: math.unit(5 + 9/12, "feet"),
  44516. default: true
  44517. },
  44518. ]
  44519. ))
  44520. characterMakers.push(() => makeCharacter(
  44521. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44522. {
  44523. front: {
  44524. height: math.unit(2.7, "meters"),
  44525. weight: math.unit(25000, "lb"),
  44526. name: "Front",
  44527. image: {
  44528. source: "./media/characters/noah-luxray/front.svg",
  44529. extra: 1644/825,
  44530. bottom: 339/1983
  44531. }
  44532. },
  44533. side: {
  44534. height: math.unit(2.97, "meters"),
  44535. weight: math.unit(25000, "lb"),
  44536. name: "Side",
  44537. image: {
  44538. source: "./media/characters/noah-luxray/side.svg",
  44539. extra: 1319/650,
  44540. bottom: 163/1482
  44541. }
  44542. },
  44543. dick: {
  44544. height: math.unit(7.4, "feet"),
  44545. weight: math.unit(2500, "lb"),
  44546. name: "Dick",
  44547. image: {
  44548. source: "./media/characters/noah-luxray/dick.svg"
  44549. }
  44550. },
  44551. dickAlt: {
  44552. height: math.unit(10.83, "feet"),
  44553. weight: math.unit(2500, "lb"),
  44554. name: "Dick-alt",
  44555. image: {
  44556. source: "./media/characters/noah-luxray/dick-alt.svg"
  44557. }
  44558. },
  44559. },
  44560. [
  44561. {
  44562. name: "BIG",
  44563. height: math.unit(2.7, "meters"),
  44564. default: true
  44565. },
  44566. ]
  44567. ))
  44568. characterMakers.push(() => makeCharacter(
  44569. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44570. {
  44571. standing: {
  44572. height: math.unit(183, "cm"),
  44573. weight: math.unit(68, "kg"),
  44574. name: "Standing",
  44575. image: {
  44576. source: "./media/characters/arion/standing.svg",
  44577. extra: 1869/1807,
  44578. bottom: 93/1962
  44579. }
  44580. },
  44581. reclining: {
  44582. height: math.unit(70.5, "cm"),
  44583. weight: math.unit(68, "lb"),
  44584. name: "Reclining",
  44585. image: {
  44586. source: "./media/characters/arion/reclining.svg",
  44587. extra: 937/870,
  44588. bottom: 63/1000
  44589. }
  44590. },
  44591. },
  44592. [
  44593. {
  44594. name: "Colossus Size, Low",
  44595. height: math.unit(33, "meters"),
  44596. default: true
  44597. },
  44598. {
  44599. name: "Colossus Size, Mid",
  44600. height: math.unit(52, "meters")
  44601. },
  44602. {
  44603. name: "Colossus Size, High",
  44604. height: math.unit(60, "meters")
  44605. },
  44606. {
  44607. name: "Titan Size, Low",
  44608. height: math.unit(91, "meters"),
  44609. },
  44610. {
  44611. name: "Titan Size, Mid",
  44612. height: math.unit(122, "meters")
  44613. },
  44614. {
  44615. name: "Titan Size, High",
  44616. height: math.unit(162, "meters")
  44617. },
  44618. ]
  44619. ))
  44620. characterMakers.push(() => makeCharacter(
  44621. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44622. {
  44623. front: {
  44624. height: math.unit(53, "meters"),
  44625. name: "Front",
  44626. image: {
  44627. source: "./media/characters/stellar-marbey/front.svg",
  44628. extra: 1913/1805,
  44629. bottom: 92/2005
  44630. }
  44631. },
  44632. back: {
  44633. height: math.unit(53, "meters"),
  44634. name: "Back",
  44635. image: {
  44636. source: "./media/characters/stellar-marbey/back.svg",
  44637. extra: 1960/1851,
  44638. bottom: 28/1988
  44639. }
  44640. },
  44641. mouth: {
  44642. height: math.unit(3.5, "meters"),
  44643. name: "Mouth",
  44644. image: {
  44645. source: "./media/characters/stellar-marbey/mouth.svg"
  44646. }
  44647. },
  44648. },
  44649. [
  44650. {
  44651. name: "Macro",
  44652. height: math.unit(53, "meters"),
  44653. default: true
  44654. },
  44655. ]
  44656. ))
  44657. characterMakers.push(() => makeCharacter(
  44658. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44659. {
  44660. front: {
  44661. height: math.unit(8 + 1/12, "feet"),
  44662. weight: math.unit(233, "lb"),
  44663. name: "Front",
  44664. image: {
  44665. source: "./media/characters/matsu/front.svg",
  44666. extra: 832/772,
  44667. bottom: 40/872
  44668. }
  44669. },
  44670. back: {
  44671. height: math.unit(8 + 1/12, "feet"),
  44672. weight: math.unit(233, "lb"),
  44673. name: "Back",
  44674. image: {
  44675. source: "./media/characters/matsu/back.svg",
  44676. extra: 839/780,
  44677. bottom: 47/886
  44678. }
  44679. },
  44680. },
  44681. [
  44682. {
  44683. name: "Normal",
  44684. height: math.unit(8 + 1/12, "feet"),
  44685. default: true
  44686. },
  44687. ]
  44688. ))
  44689. characterMakers.push(() => makeCharacter(
  44690. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44691. {
  44692. front: {
  44693. height: math.unit(4, "feet"),
  44694. weight: math.unit(148, "lb"),
  44695. name: "Front",
  44696. image: {
  44697. source: "./media/characters/thiz/front.svg",
  44698. extra: 1913/1748,
  44699. bottom: 62/1975
  44700. }
  44701. },
  44702. },
  44703. [
  44704. {
  44705. name: "Normal",
  44706. height: math.unit(4, "feet"),
  44707. default: true
  44708. },
  44709. ]
  44710. ))
  44711. characterMakers.push(() => makeCharacter(
  44712. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44713. {
  44714. front: {
  44715. height: math.unit(7 + 6/12, "feet"),
  44716. weight: math.unit(267, "lb"),
  44717. name: "Front",
  44718. image: {
  44719. source: "./media/characters/marcel/front.svg",
  44720. extra: 1221/1096,
  44721. bottom: 76/1297
  44722. }
  44723. },
  44724. },
  44725. [
  44726. {
  44727. name: "Normal",
  44728. height: math.unit(7 + 6/12, "feet"),
  44729. default: true
  44730. },
  44731. ]
  44732. ))
  44733. characterMakers.push(() => makeCharacter(
  44734. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44735. {
  44736. side: {
  44737. height: math.unit(42, "meters"),
  44738. name: "Side",
  44739. image: {
  44740. source: "./media/characters/flake/side.svg",
  44741. extra: 1525/1306,
  44742. bottom: 209/1734
  44743. }
  44744. },
  44745. },
  44746. [
  44747. {
  44748. name: "Normal",
  44749. height: math.unit(42, "meters"),
  44750. default: true
  44751. },
  44752. ]
  44753. ))
  44754. characterMakers.push(() => makeCharacter(
  44755. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44756. {
  44757. dressed: {
  44758. height: math.unit(6 + 4/12, "feet"),
  44759. weight: math.unit(520, "lb"),
  44760. name: "Dressed",
  44761. image: {
  44762. source: "./media/characters/someonne/dressed.svg",
  44763. extra: 1020/1010,
  44764. bottom: 178/1198
  44765. }
  44766. },
  44767. undressed: {
  44768. height: math.unit(6 + 4/12, "feet"),
  44769. weight: math.unit(520, "lb"),
  44770. name: "Undressed",
  44771. image: {
  44772. source: "./media/characters/someonne/undressed.svg",
  44773. extra: 1019/1014,
  44774. bottom: 169/1188
  44775. }
  44776. },
  44777. },
  44778. [
  44779. {
  44780. name: "Normal",
  44781. height: math.unit(6 + 4/12, "feet"),
  44782. default: true
  44783. },
  44784. ]
  44785. ))
  44786. characterMakers.push(() => makeCharacter(
  44787. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44788. {
  44789. front: {
  44790. height: math.unit(3, "feet"),
  44791. weight: math.unit(30, "lb"),
  44792. name: "Front",
  44793. image: {
  44794. source: "./media/characters/till/front.svg",
  44795. extra: 892/823,
  44796. bottom: 55/947
  44797. }
  44798. },
  44799. },
  44800. [
  44801. {
  44802. name: "Normal",
  44803. height: math.unit(3, "feet"),
  44804. default: true
  44805. },
  44806. ]
  44807. ))
  44808. characterMakers.push(() => makeCharacter(
  44809. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44810. {
  44811. front: {
  44812. height: math.unit(9 + 8/12, "feet"),
  44813. weight: math.unit(800, "lb"),
  44814. name: "Front",
  44815. image: {
  44816. source: "./media/characters/sydney-heki/front.svg",
  44817. extra: 1360/1300,
  44818. bottom: 22/1382
  44819. }
  44820. },
  44821. back: {
  44822. height: math.unit(9 + 8/12, "feet"),
  44823. weight: math.unit(800, "lb"),
  44824. name: "Back",
  44825. image: {
  44826. source: "./media/characters/sydney-heki/back.svg",
  44827. extra: 1356/1293,
  44828. bottom: 12/1368
  44829. }
  44830. },
  44831. frontDressed: {
  44832. height: math.unit(9 + 8/12, "feet"),
  44833. weight: math.unit(800, "lb"),
  44834. name: "Front-dressed",
  44835. image: {
  44836. source: "./media/characters/sydney-heki/front-dressed.svg",
  44837. extra: 1360/1300,
  44838. bottom: 22/1382
  44839. }
  44840. },
  44841. },
  44842. [
  44843. {
  44844. name: "Normal",
  44845. height: math.unit(9 + 8/12, "feet"),
  44846. default: true
  44847. },
  44848. {
  44849. name: "Macro",
  44850. height: math.unit(500, "feet")
  44851. },
  44852. {
  44853. name: "Megamacro",
  44854. height: math.unit(3.6, "miles")
  44855. },
  44856. ]
  44857. ))
  44858. characterMakers.push(() => makeCharacter(
  44859. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44860. {
  44861. front: {
  44862. height: math.unit(200, "cm"),
  44863. weight: math.unit(250, "lb"),
  44864. name: "Front",
  44865. image: {
  44866. source: "./media/characters/fowler-karlsson/front.svg",
  44867. extra: 897/845,
  44868. bottom: 123/1020
  44869. }
  44870. },
  44871. back: {
  44872. height: math.unit(200, "cm"),
  44873. weight: math.unit(250, "lb"),
  44874. name: "Back",
  44875. image: {
  44876. source: "./media/characters/fowler-karlsson/back.svg",
  44877. extra: 999/944,
  44878. bottom: 26/1025
  44879. }
  44880. },
  44881. dick: {
  44882. height: math.unit(1.92, "feet"),
  44883. weight: math.unit(150, "lb"),
  44884. name: "Dick",
  44885. image: {
  44886. source: "./media/characters/fowler-karlsson/dick.svg"
  44887. }
  44888. },
  44889. },
  44890. [
  44891. {
  44892. name: "Normal",
  44893. height: math.unit(200, "cm"),
  44894. default: true
  44895. },
  44896. {
  44897. name: "Smaller Macro",
  44898. height: math.unit(90, "m")
  44899. },
  44900. {
  44901. name: "Macro",
  44902. height: math.unit(150, "m")
  44903. },
  44904. {
  44905. name: "Bigger Macro",
  44906. height: math.unit(300, "m")
  44907. },
  44908. ]
  44909. ))
  44910. characterMakers.push(() => makeCharacter(
  44911. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44912. {
  44913. side: {
  44914. height: math.unit(8 + 2/12, "feet"),
  44915. weight: math.unit(1, "tonne"),
  44916. name: "Side",
  44917. image: {
  44918. source: "./media/characters/rylide/side.svg",
  44919. extra: 1318/1034,
  44920. bottom: 106/1424
  44921. }
  44922. },
  44923. sitting: {
  44924. height: math.unit(303, "cm"),
  44925. weight: math.unit(1, "tonne"),
  44926. name: "Sitting",
  44927. image: {
  44928. source: "./media/characters/rylide/sitting.svg",
  44929. extra: 1303/1103,
  44930. bottom: 36/1339
  44931. }
  44932. },
  44933. },
  44934. [
  44935. {
  44936. name: "Normal",
  44937. height: math.unit(8 + 2/12, "feet"),
  44938. default: true
  44939. },
  44940. ]
  44941. ))
  44942. characterMakers.push(() => makeCharacter(
  44943. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44944. {
  44945. front: {
  44946. height: math.unit(5 + 10/12, "feet"),
  44947. weight: math.unit(160, "lb"),
  44948. name: "Front",
  44949. image: {
  44950. source: "./media/characters/pudask/front.svg",
  44951. extra: 1616/1590,
  44952. bottom: 161/1777
  44953. }
  44954. },
  44955. },
  44956. [
  44957. {
  44958. name: "Ferret Height",
  44959. height: math.unit(2 + 5/12, "feet")
  44960. },
  44961. {
  44962. name: "Canon Height",
  44963. height: math.unit(5 + 10/12, "feet"),
  44964. default: true
  44965. },
  44966. ]
  44967. ))
  44968. characterMakers.push(() => makeCharacter(
  44969. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44970. {
  44971. front: {
  44972. height: math.unit(3 + 6/12, "feet"),
  44973. weight: math.unit(60, "lb"),
  44974. name: "Front",
  44975. image: {
  44976. source: "./media/characters/ramita/front.svg",
  44977. extra: 1402/1232,
  44978. bottom: 62/1464
  44979. }
  44980. },
  44981. dressed: {
  44982. height: math.unit(3 + 6/12, "feet"),
  44983. weight: math.unit(60, "lb"),
  44984. name: "Dressed",
  44985. image: {
  44986. source: "./media/characters/ramita/dressed.svg",
  44987. extra: 1534/1249,
  44988. bottom: 50/1584
  44989. }
  44990. },
  44991. },
  44992. [
  44993. {
  44994. name: "Normal",
  44995. height: math.unit(3 + 6/12, "feet"),
  44996. default: true
  44997. },
  44998. ]
  44999. ))
  45000. characterMakers.push(() => makeCharacter(
  45001. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45002. {
  45003. front: {
  45004. height: math.unit(8, "feet"),
  45005. name: "Front",
  45006. image: {
  45007. source: "./media/characters/ark/front.svg",
  45008. extra: 772/693,
  45009. bottom: 45/817
  45010. }
  45011. },
  45012. },
  45013. [
  45014. {
  45015. name: "Normal",
  45016. height: math.unit(8, "feet"),
  45017. default: true
  45018. },
  45019. ]
  45020. ))
  45021. characterMakers.push(() => makeCharacter(
  45022. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45023. {
  45024. front: {
  45025. height: math.unit(6, "feet"),
  45026. weight: math.unit(250, "lb"),
  45027. volume: math.unit(5/8, "gallons"),
  45028. name: "Front",
  45029. image: {
  45030. source: "./media/characters/ludwig-horn/front.svg",
  45031. extra: 1782/1635,
  45032. bottom: 96/1878
  45033. }
  45034. },
  45035. back: {
  45036. height: math.unit(6, "feet"),
  45037. weight: math.unit(250, "lb"),
  45038. volume: math.unit(5/8, "gallons"),
  45039. name: "Back",
  45040. image: {
  45041. source: "./media/characters/ludwig-horn/back.svg",
  45042. extra: 1874/1729,
  45043. bottom: 27/1901
  45044. }
  45045. },
  45046. dick: {
  45047. height: math.unit(1.05, "feet"),
  45048. weight: math.unit(15, "lb"),
  45049. volume: math.unit(5/8, "gallons"),
  45050. name: "Dick",
  45051. image: {
  45052. source: "./media/characters/ludwig-horn/dick.svg"
  45053. }
  45054. },
  45055. },
  45056. [
  45057. {
  45058. name: "Small",
  45059. height: math.unit(6, "feet")
  45060. },
  45061. {
  45062. name: "Typical",
  45063. height: math.unit(12, "feet"),
  45064. default: true
  45065. },
  45066. {
  45067. name: "Building",
  45068. height: math.unit(80, "feet")
  45069. },
  45070. {
  45071. name: "Town",
  45072. height: math.unit(800, "feet")
  45073. },
  45074. {
  45075. name: "Kingdom",
  45076. height: math.unit(80000, "feet")
  45077. },
  45078. {
  45079. name: "Planet",
  45080. height: math.unit(8000000, "feet")
  45081. },
  45082. {
  45083. name: "Universe",
  45084. height: math.unit(8000000000, "feet")
  45085. },
  45086. {
  45087. name: "Transcended",
  45088. height: math.unit(8e27, "feet")
  45089. },
  45090. ]
  45091. ))
  45092. characterMakers.push(() => makeCharacter(
  45093. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45094. {
  45095. front: {
  45096. height: math.unit(5, "feet"),
  45097. weight: math.unit(50, "kg"),
  45098. name: "Front",
  45099. image: {
  45100. source: "./media/characters/biot-avery/front.svg",
  45101. extra: 1295/1232,
  45102. bottom: 86/1381
  45103. }
  45104. },
  45105. },
  45106. [
  45107. {
  45108. name: "Normal",
  45109. height: math.unit(5, "feet"),
  45110. default: true
  45111. },
  45112. ]
  45113. ))
  45114. characterMakers.push(() => makeCharacter(
  45115. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45116. {
  45117. front: {
  45118. height: math.unit(6, "feet"),
  45119. name: "Front",
  45120. image: {
  45121. source: "./media/characters/kitsune-kiro/front.svg",
  45122. extra: 1270/1158,
  45123. bottom: 42/1312
  45124. }
  45125. },
  45126. frontAlt: {
  45127. height: math.unit(6, "feet"),
  45128. name: "Front-alt",
  45129. image: {
  45130. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45131. extra: 1130/1081,
  45132. bottom: 36/1166
  45133. }
  45134. },
  45135. },
  45136. [
  45137. {
  45138. name: "Smol",
  45139. height: math.unit(3, "feet")
  45140. },
  45141. {
  45142. name: "Normal",
  45143. height: math.unit(6, "feet"),
  45144. default: true
  45145. },
  45146. ]
  45147. ))
  45148. characterMakers.push(() => makeCharacter(
  45149. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45150. {
  45151. front: {
  45152. height: math.unit(6, "feet"),
  45153. weight: math.unit(125, "lb"),
  45154. name: "Front",
  45155. image: {
  45156. source: "./media/characters/jack-thatcher/front.svg",
  45157. extra: 1474/1370,
  45158. bottom: 26/1500
  45159. }
  45160. },
  45161. back: {
  45162. height: math.unit(6, "feet"),
  45163. weight: math.unit(125, "lb"),
  45164. name: "Back",
  45165. image: {
  45166. source: "./media/characters/jack-thatcher/back.svg",
  45167. extra: 1489/1384,
  45168. bottom: 18/1507
  45169. }
  45170. },
  45171. },
  45172. [
  45173. {
  45174. name: "Normal",
  45175. height: math.unit(6, "feet"),
  45176. default: true
  45177. },
  45178. {
  45179. name: "Macro",
  45180. height: math.unit(75, "feet")
  45181. },
  45182. {
  45183. name: "Macro-er",
  45184. height: math.unit(250, "feet")
  45185. },
  45186. ]
  45187. ))
  45188. characterMakers.push(() => makeCharacter(
  45189. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45190. {
  45191. front: {
  45192. height: math.unit(7, "feet"),
  45193. weight: math.unit(110, "kg"),
  45194. name: "Front",
  45195. image: {
  45196. source: "./media/characters/max-hyper/front.svg",
  45197. extra: 1969/1881,
  45198. bottom: 49/2018
  45199. }
  45200. },
  45201. },
  45202. [
  45203. {
  45204. name: "Normal",
  45205. height: math.unit(7, "feet"),
  45206. default: true
  45207. },
  45208. ]
  45209. ))
  45210. characterMakers.push(() => makeCharacter(
  45211. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45212. {
  45213. front: {
  45214. height: math.unit(5 + 5/12, "feet"),
  45215. weight: math.unit(160, "lb"),
  45216. name: "Front",
  45217. image: {
  45218. source: "./media/characters/spook/front.svg",
  45219. extra: 794/791,
  45220. bottom: 54/848
  45221. }
  45222. },
  45223. back: {
  45224. height: math.unit(5 + 5/12, "feet"),
  45225. weight: math.unit(160, "lb"),
  45226. name: "Back",
  45227. image: {
  45228. source: "./media/characters/spook/back.svg",
  45229. extra: 812/798,
  45230. bottom: 32/844
  45231. }
  45232. },
  45233. },
  45234. [
  45235. {
  45236. name: "Normal",
  45237. height: math.unit(5 + 5/12, "feet"),
  45238. default: true
  45239. },
  45240. ]
  45241. ))
  45242. characterMakers.push(() => makeCharacter(
  45243. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45244. {
  45245. front: {
  45246. height: math.unit(18, "feet"),
  45247. name: "Front",
  45248. image: {
  45249. source: "./media/characters/xeaduulix/front.svg",
  45250. extra: 1380/1166,
  45251. bottom: 110/1490
  45252. }
  45253. },
  45254. back: {
  45255. height: math.unit(18, "feet"),
  45256. name: "Back",
  45257. image: {
  45258. source: "./media/characters/xeaduulix/back.svg",
  45259. extra: 1592/1170,
  45260. bottom: 128/1720
  45261. }
  45262. },
  45263. frontNsfw: {
  45264. height: math.unit(18, "feet"),
  45265. name: "Front (NSFW)",
  45266. image: {
  45267. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45268. extra: 1380/1166,
  45269. bottom: 110/1490
  45270. }
  45271. },
  45272. backNsfw: {
  45273. height: math.unit(18, "feet"),
  45274. name: "Back (NSFW)",
  45275. image: {
  45276. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45277. extra: 1592/1170,
  45278. bottom: 128/1720
  45279. }
  45280. },
  45281. },
  45282. [
  45283. {
  45284. name: "Normal",
  45285. height: math.unit(18, "feet"),
  45286. default: true
  45287. },
  45288. ]
  45289. ))
  45290. characterMakers.push(() => makeCharacter(
  45291. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45292. {
  45293. spreadWings: {
  45294. height: math.unit(20, "feet"),
  45295. name: "Spread Wings",
  45296. image: {
  45297. source: "./media/characters/fledge/spread-wings.svg",
  45298. extra: 693/635,
  45299. bottom: 26/719
  45300. }
  45301. },
  45302. front: {
  45303. height: math.unit(20, "feet"),
  45304. name: "Front",
  45305. image: {
  45306. source: "./media/characters/fledge/front.svg",
  45307. extra: 684/637,
  45308. bottom: 18/702
  45309. }
  45310. },
  45311. frontAlt: {
  45312. height: math.unit(20, "feet"),
  45313. name: "Front (Alt)",
  45314. image: {
  45315. source: "./media/characters/fledge/front-alt.svg",
  45316. extra: 708/664,
  45317. bottom: 13/721
  45318. }
  45319. },
  45320. back: {
  45321. height: math.unit(20, "feet"),
  45322. name: "Back",
  45323. image: {
  45324. source: "./media/characters/fledge/back.svg",
  45325. extra: 718/634,
  45326. bottom: 22/740
  45327. }
  45328. },
  45329. head: {
  45330. height: math.unit(5.55, "feet"),
  45331. name: "Head",
  45332. image: {
  45333. source: "./media/characters/fledge/head.svg"
  45334. }
  45335. },
  45336. headAlt: {
  45337. height: math.unit(5.1, "feet"),
  45338. name: "Head (Alt)",
  45339. image: {
  45340. source: "./media/characters/fledge/head-alt.svg"
  45341. }
  45342. },
  45343. },
  45344. [
  45345. {
  45346. name: "Small",
  45347. height: math.unit(6 + 2/12, "feet")
  45348. },
  45349. {
  45350. name: "Big",
  45351. height: math.unit(20, "feet"),
  45352. default: true
  45353. },
  45354. {
  45355. name: "Giant",
  45356. height: math.unit(100, "feet")
  45357. },
  45358. {
  45359. name: "Macro",
  45360. height: math.unit(200, "feet")
  45361. },
  45362. ]
  45363. ))
  45364. characterMakers.push(() => makeCharacter(
  45365. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45366. {
  45367. front: {
  45368. height: math.unit(1, "meter"),
  45369. name: "Front",
  45370. image: {
  45371. source: "./media/characters/atlas-morenai/front.svg",
  45372. extra: 1275/1043,
  45373. bottom: 19/1294
  45374. }
  45375. },
  45376. back: {
  45377. height: math.unit(1, "meter"),
  45378. name: "Back",
  45379. image: {
  45380. source: "./media/characters/atlas-morenai/back.svg",
  45381. extra: 1141/1001,
  45382. bottom: 25/1166
  45383. }
  45384. },
  45385. },
  45386. [
  45387. {
  45388. name: "Normal",
  45389. height: math.unit(1, "meter"),
  45390. default: true
  45391. },
  45392. {
  45393. name: "Magic-Infused",
  45394. height: math.unit(5, "meters")
  45395. },
  45396. ]
  45397. ))
  45398. characterMakers.push(() => makeCharacter(
  45399. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45400. {
  45401. front: {
  45402. height: math.unit(5, "meters"),
  45403. name: "Front",
  45404. image: {
  45405. source: "./media/characters/cintia/front.svg",
  45406. extra: 1312/1228,
  45407. bottom: 38/1350
  45408. }
  45409. },
  45410. back: {
  45411. height: math.unit(5, "meters"),
  45412. name: "Back",
  45413. image: {
  45414. source: "./media/characters/cintia/back.svg",
  45415. extra: 1260/1166,
  45416. bottom: 98/1358
  45417. }
  45418. },
  45419. frontDick: {
  45420. height: math.unit(5, "meters"),
  45421. name: "Front (Dick)",
  45422. image: {
  45423. source: "./media/characters/cintia/front-dick.svg",
  45424. extra: 1312/1228,
  45425. bottom: 38/1350
  45426. }
  45427. },
  45428. backDick: {
  45429. height: math.unit(5, "meters"),
  45430. name: "Back (Dick)",
  45431. image: {
  45432. source: "./media/characters/cintia/back-dick.svg",
  45433. extra: 1260/1166,
  45434. bottom: 98/1358
  45435. }
  45436. },
  45437. bust: {
  45438. height: math.unit(1.97, "meters"),
  45439. name: "Bust",
  45440. image: {
  45441. source: "./media/characters/cintia/bust.svg",
  45442. extra: 617/565,
  45443. bottom: 0/617
  45444. }
  45445. },
  45446. },
  45447. [
  45448. {
  45449. name: "Normal",
  45450. height: math.unit(5, "meters"),
  45451. default: true
  45452. },
  45453. ]
  45454. ))
  45455. characterMakers.push(() => makeCharacter(
  45456. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45457. {
  45458. side: {
  45459. height: math.unit(100, "feet"),
  45460. name: "Side",
  45461. image: {
  45462. source: "./media/characters/denora/side.svg",
  45463. extra: 875/803,
  45464. bottom: 9/884
  45465. }
  45466. },
  45467. },
  45468. [
  45469. {
  45470. name: "Standard",
  45471. height: math.unit(100, "feet"),
  45472. default: true
  45473. },
  45474. {
  45475. name: "Grand",
  45476. height: math.unit(1000, "feet")
  45477. },
  45478. {
  45479. name: "Conquering",
  45480. height: math.unit(10000, "feet")
  45481. },
  45482. ]
  45483. ))
  45484. characterMakers.push(() => makeCharacter(
  45485. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45486. {
  45487. dressed: {
  45488. height: math.unit(8 + 5/12, "feet"),
  45489. weight: math.unit(700, "lb"),
  45490. name: "Dressed",
  45491. image: {
  45492. source: "./media/characters/kiva/dressed.svg",
  45493. extra: 1102/1055,
  45494. bottom: 60/1162
  45495. }
  45496. },
  45497. nude: {
  45498. height: math.unit(8 + 5/12, "feet"),
  45499. weight: math.unit(700, "lb"),
  45500. name: "Nude",
  45501. image: {
  45502. source: "./media/characters/kiva/nude.svg",
  45503. extra: 1102/1055,
  45504. bottom: 60/1162
  45505. }
  45506. },
  45507. },
  45508. [
  45509. {
  45510. name: "Base Height",
  45511. height: math.unit(8 + 5/12, "feet"),
  45512. default: true
  45513. },
  45514. {
  45515. name: "Macro",
  45516. height: math.unit(100, "feet")
  45517. },
  45518. {
  45519. name: "Max",
  45520. height: math.unit(3280, "feet")
  45521. },
  45522. ]
  45523. ))
  45524. characterMakers.push(() => makeCharacter(
  45525. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45526. {
  45527. front: {
  45528. height: math.unit(6 + 8/12, "feet"),
  45529. weight: math.unit(250, "lb"),
  45530. name: "Front",
  45531. image: {
  45532. source: "./media/characters/ztragon/front.svg",
  45533. extra: 1825/1684,
  45534. bottom: 98/1923
  45535. }
  45536. },
  45537. },
  45538. [
  45539. {
  45540. name: "Normal",
  45541. height: math.unit(6 + 8/12, "feet"),
  45542. default: true
  45543. },
  45544. {
  45545. name: "Macro",
  45546. height: math.unit(80, "feet")
  45547. },
  45548. ]
  45549. ))
  45550. characterMakers.push(() => makeCharacter(
  45551. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45552. {
  45553. front: {
  45554. height: math.unit(10.4, "feet"),
  45555. weight: math.unit(2, "tons"),
  45556. name: "Front",
  45557. image: {
  45558. source: "./media/characters/yesenia/front.svg",
  45559. extra: 1479/1474,
  45560. bottom: 233/1712
  45561. }
  45562. },
  45563. },
  45564. [
  45565. {
  45566. name: "Normal",
  45567. height: math.unit(10.4, "feet"),
  45568. default: true
  45569. },
  45570. ]
  45571. ))
  45572. characterMakers.push(() => makeCharacter(
  45573. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45574. {
  45575. normal: {
  45576. height: math.unit(6 + 1/12, "feet"),
  45577. weight: math.unit(180, "lb"),
  45578. name: "Normal",
  45579. image: {
  45580. source: "./media/characters/leanne-lycheborne/normal.svg",
  45581. extra: 1748/1660,
  45582. bottom: 98/1846
  45583. }
  45584. },
  45585. were: {
  45586. height: math.unit(12, "feet"),
  45587. weight: math.unit(1600, "lb"),
  45588. name: "Were",
  45589. image: {
  45590. source: "./media/characters/leanne-lycheborne/were.svg",
  45591. extra: 1485/1432,
  45592. bottom: 66/1551
  45593. }
  45594. },
  45595. },
  45596. [
  45597. {
  45598. name: "Normal",
  45599. height: math.unit(6 + 1/12, "feet"),
  45600. default: true
  45601. },
  45602. ]
  45603. ))
  45604. characterMakers.push(() => makeCharacter(
  45605. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45606. {
  45607. side: {
  45608. height: math.unit(13, "feet"),
  45609. name: "Side",
  45610. image: {
  45611. source: "./media/characters/kira-tyler/side.svg",
  45612. extra: 693/393,
  45613. bottom: 58/751
  45614. }
  45615. },
  45616. },
  45617. [
  45618. {
  45619. name: "Normal",
  45620. height: math.unit(13, "feet"),
  45621. default: true
  45622. },
  45623. ]
  45624. ))
  45625. characterMakers.push(() => makeCharacter(
  45626. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45627. {
  45628. front: {
  45629. height: math.unit(10.3, "feet"),
  45630. weight: math.unit(150, "lb"),
  45631. name: "Front",
  45632. image: {
  45633. source: "./media/characters/blaze/front.svg",
  45634. extra: 1378/1286,
  45635. bottom: 172/1550
  45636. }
  45637. },
  45638. },
  45639. [
  45640. {
  45641. name: "Normal",
  45642. height: math.unit(10.3, "feet"),
  45643. default: true
  45644. },
  45645. ]
  45646. ))
  45647. characterMakers.push(() => makeCharacter(
  45648. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45649. {
  45650. side: {
  45651. height: math.unit(2, "meters"),
  45652. weight: math.unit(400, "kg"),
  45653. name: "Side",
  45654. image: {
  45655. source: "./media/characters/anu/side.svg",
  45656. extra: 506/394,
  45657. bottom: 18/524
  45658. }
  45659. },
  45660. },
  45661. [
  45662. {
  45663. name: "Humanoid",
  45664. height: math.unit(2, "meters")
  45665. },
  45666. {
  45667. name: "Normal",
  45668. height: math.unit(5, "meters"),
  45669. default: true
  45670. },
  45671. ]
  45672. ))
  45673. characterMakers.push(() => makeCharacter(
  45674. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45675. {
  45676. front: {
  45677. height: math.unit(5 + 5/12, "feet"),
  45678. weight: math.unit(170, "lb"),
  45679. name: "Front",
  45680. image: {
  45681. source: "./media/characters/synx-the-lynx/front.svg",
  45682. extra: 1893/1745,
  45683. bottom: 17/1910
  45684. }
  45685. },
  45686. side: {
  45687. height: math.unit(5 + 5/12, "feet"),
  45688. weight: math.unit(170, "lb"),
  45689. name: "Side",
  45690. image: {
  45691. source: "./media/characters/synx-the-lynx/side.svg",
  45692. extra: 1884/1740,
  45693. bottom: 39/1923
  45694. }
  45695. },
  45696. back: {
  45697. height: math.unit(5 + 5/12, "feet"),
  45698. weight: math.unit(170, "lb"),
  45699. name: "Back",
  45700. image: {
  45701. source: "./media/characters/synx-the-lynx/back.svg",
  45702. extra: 1903/1755,
  45703. bottom: 14/1917
  45704. }
  45705. },
  45706. },
  45707. [
  45708. {
  45709. name: "Normal",
  45710. height: math.unit(5 + 5/12, "feet"),
  45711. default: true
  45712. },
  45713. ]
  45714. ))
  45715. characterMakers.push(() => makeCharacter(
  45716. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45717. {
  45718. back: {
  45719. height: math.unit(15, "feet"),
  45720. name: "Back",
  45721. image: {
  45722. source: "./media/characters/nadezda-fex/back.svg",
  45723. extra: 1695/1481,
  45724. bottom: 25/1720
  45725. }
  45726. },
  45727. },
  45728. [
  45729. {
  45730. name: "Normal",
  45731. height: math.unit(15, "feet"),
  45732. default: true
  45733. },
  45734. {
  45735. name: "Macro",
  45736. height: math.unit(2.5, "miles")
  45737. },
  45738. {
  45739. name: "Goddess",
  45740. height: math.unit(2, "multiverses")
  45741. },
  45742. ]
  45743. ))
  45744. characterMakers.push(() => makeCharacter(
  45745. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45746. {
  45747. front: {
  45748. height: math.unit(216, "cm"),
  45749. name: "Front",
  45750. image: {
  45751. source: "./media/characters/lev/front.svg",
  45752. extra: 1728/1670,
  45753. bottom: 82/1810
  45754. }
  45755. },
  45756. back: {
  45757. height: math.unit(216, "cm"),
  45758. name: "Back",
  45759. image: {
  45760. source: "./media/characters/lev/back.svg",
  45761. extra: 1738/1675,
  45762. bottom: 24/1762
  45763. }
  45764. },
  45765. dressed: {
  45766. height: math.unit(216, "cm"),
  45767. name: "Dressed",
  45768. image: {
  45769. source: "./media/characters/lev/dressed.svg",
  45770. extra: 1397/1351,
  45771. bottom: 73/1470
  45772. }
  45773. },
  45774. head: {
  45775. height: math.unit(0.51, "meter"),
  45776. name: "Head",
  45777. image: {
  45778. source: "./media/characters/lev/head.svg"
  45779. }
  45780. },
  45781. },
  45782. [
  45783. {
  45784. name: "Normal",
  45785. height: math.unit(216, "cm"),
  45786. default: true
  45787. },
  45788. {
  45789. name: "Relatively Macro",
  45790. height: math.unit(80, "meters")
  45791. },
  45792. {
  45793. name: "Megamacro",
  45794. height: math.unit(21600, "meters")
  45795. },
  45796. {
  45797. name: "Megamacro+",
  45798. height: math.unit(64800, "meters")
  45799. },
  45800. ]
  45801. ))
  45802. characterMakers.push(() => makeCharacter(
  45803. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45804. {
  45805. front: {
  45806. height: math.unit(2, "meters"),
  45807. weight: math.unit(80, "kg"),
  45808. name: "Front",
  45809. image: {
  45810. source: "./media/characters/moka/front.svg",
  45811. extra: 1337/1255,
  45812. bottom: 58/1395
  45813. }
  45814. },
  45815. },
  45816. [
  45817. {
  45818. name: "Micro",
  45819. height: math.unit(15, "cm")
  45820. },
  45821. {
  45822. name: "Normal",
  45823. height: math.unit(2, "meters"),
  45824. default: true
  45825. },
  45826. {
  45827. name: "Macro",
  45828. height: math.unit(20, "meters"),
  45829. },
  45830. ]
  45831. ))
  45832. characterMakers.push(() => makeCharacter(
  45833. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45834. {
  45835. front: {
  45836. height: math.unit(9, "feet"),
  45837. weight: math.unit(240, "lb"),
  45838. name: "Front",
  45839. image: {
  45840. source: "./media/characters/kuzco/front.svg",
  45841. extra: 1593/1487,
  45842. bottom: 32/1625
  45843. }
  45844. },
  45845. side: {
  45846. height: math.unit(9, "feet"),
  45847. weight: math.unit(240, "lb"),
  45848. name: "Side",
  45849. image: {
  45850. source: "./media/characters/kuzco/side.svg",
  45851. extra: 1575/1485,
  45852. bottom: 30/1605
  45853. }
  45854. },
  45855. back: {
  45856. height: math.unit(9, "feet"),
  45857. weight: math.unit(240, "lb"),
  45858. name: "Back",
  45859. image: {
  45860. source: "./media/characters/kuzco/back.svg",
  45861. extra: 1603/1514,
  45862. bottom: 14/1617
  45863. }
  45864. },
  45865. },
  45866. [
  45867. {
  45868. name: "Normal",
  45869. height: math.unit(9, "feet"),
  45870. default: true
  45871. },
  45872. ]
  45873. ))
  45874. characterMakers.push(() => makeCharacter(
  45875. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45876. {
  45877. side: {
  45878. height: math.unit(2, "meters"),
  45879. weight: math.unit(300, "kg"),
  45880. name: "Side",
  45881. image: {
  45882. source: "./media/characters/ceruleus/side.svg",
  45883. extra: 1068/974,
  45884. bottom: 126/1194
  45885. }
  45886. },
  45887. },
  45888. [
  45889. {
  45890. name: "Normal",
  45891. height: math.unit(16, "meters"),
  45892. default: true
  45893. },
  45894. ]
  45895. ))
  45896. characterMakers.push(() => makeCharacter(
  45897. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45898. {
  45899. front: {
  45900. height: math.unit(9, "feet"),
  45901. weight: math.unit(500, "kg"),
  45902. name: "Front",
  45903. image: {
  45904. source: "./media/characters/acouya/front.svg",
  45905. extra: 1660/1473,
  45906. bottom: 28/1688
  45907. }
  45908. },
  45909. },
  45910. [
  45911. {
  45912. name: "Normal",
  45913. height: math.unit(9, "feet"),
  45914. default: true
  45915. },
  45916. ]
  45917. ))
  45918. characterMakers.push(() => makeCharacter(
  45919. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45920. {
  45921. front: {
  45922. height: math.unit(5 + 6/12, "feet"),
  45923. weight: math.unit(195, "lb"),
  45924. name: "Front",
  45925. image: {
  45926. source: "./media/characters/vant/front.svg",
  45927. extra: 1396/1320,
  45928. bottom: 20/1416
  45929. }
  45930. },
  45931. back: {
  45932. height: math.unit(5 + 6/12, "feet"),
  45933. weight: math.unit(195, "lb"),
  45934. name: "Back",
  45935. image: {
  45936. source: "./media/characters/vant/back.svg",
  45937. extra: 1396/1320,
  45938. bottom: 20/1416
  45939. }
  45940. },
  45941. maw: {
  45942. height: math.unit(0.75, "feet"),
  45943. name: "Maw",
  45944. image: {
  45945. source: "./media/characters/vant/maw.svg"
  45946. }
  45947. },
  45948. paw: {
  45949. height: math.unit(1.07, "feet"),
  45950. name: "Paw",
  45951. image: {
  45952. source: "./media/characters/vant/paw.svg"
  45953. }
  45954. },
  45955. },
  45956. [
  45957. {
  45958. name: "Micro",
  45959. height: math.unit(0.25, "inches")
  45960. },
  45961. {
  45962. name: "Normal",
  45963. height: math.unit(5 + 6/12, "feet"),
  45964. default: true
  45965. },
  45966. {
  45967. name: "Macro",
  45968. height: math.unit(75, "feet")
  45969. },
  45970. ]
  45971. ))
  45972. characterMakers.push(() => makeCharacter(
  45973. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45974. {
  45975. front: {
  45976. height: math.unit(30, "meters"),
  45977. weight: math.unit(363, "tons"),
  45978. name: "Front",
  45979. image: {
  45980. source: "./media/characters/ahra/front.svg",
  45981. extra: 1914/1814,
  45982. bottom: 46/1960
  45983. }
  45984. },
  45985. },
  45986. [
  45987. {
  45988. name: "Macro",
  45989. height: math.unit(30, "meters"),
  45990. default: true
  45991. },
  45992. ]
  45993. ))
  45994. characterMakers.push(() => makeCharacter(
  45995. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45996. {
  45997. undressed: {
  45998. height: math.unit(2, "m"),
  45999. weight: math.unit(250, "kg"),
  46000. name: "Undressed",
  46001. image: {
  46002. source: "./media/characters/coriander/undressed.svg",
  46003. extra: 1757/1606,
  46004. bottom: 107/1864
  46005. }
  46006. },
  46007. dressed: {
  46008. height: math.unit(2, "m"),
  46009. weight: math.unit(250, "kg"),
  46010. name: "Dressed",
  46011. image: {
  46012. source: "./media/characters/coriander/dressed.svg",
  46013. extra: 1757/1606,
  46014. bottom: 107/1864
  46015. }
  46016. },
  46017. },
  46018. [
  46019. {
  46020. name: "Normal",
  46021. height: math.unit(4, "meters"),
  46022. default: true
  46023. },
  46024. {
  46025. name: "XL",
  46026. height: math.unit(6, "meters")
  46027. },
  46028. {
  46029. name: "XXL",
  46030. height: math.unit(8, "meters")
  46031. },
  46032. ]
  46033. ))
  46034. characterMakers.push(() => makeCharacter(
  46035. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46036. {
  46037. front: {
  46038. height: math.unit(6, "feet"),
  46039. name: "Front",
  46040. image: {
  46041. source: "./media/characters/syrinx/front.svg",
  46042. extra: 1557/1259,
  46043. bottom: 171/1728
  46044. }
  46045. },
  46046. },
  46047. [
  46048. {
  46049. name: "Normal",
  46050. height: math.unit(6 + 3/12, "feet"),
  46051. default: true
  46052. },
  46053. ]
  46054. ))
  46055. characterMakers.push(() => makeCharacter(
  46056. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46057. {
  46058. front: {
  46059. height: math.unit(11 + 6/12, "feet"),
  46060. weight: math.unit(1.5, "tons"),
  46061. name: "Front",
  46062. image: {
  46063. source: "./media/characters/bor/front.svg",
  46064. extra: 1189/1109,
  46065. bottom: 170/1359
  46066. }
  46067. },
  46068. },
  46069. [
  46070. {
  46071. name: "Normal",
  46072. height: math.unit(11 + 6/12, "feet"),
  46073. default: true
  46074. },
  46075. {
  46076. name: "Macro",
  46077. height: math.unit(32 + 9/12, "feet")
  46078. },
  46079. ]
  46080. ))
  46081. characterMakers.push(() => makeCharacter(
  46082. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46083. {
  46084. anthro: {
  46085. height: math.unit(9, "feet"),
  46086. weight: math.unit(2076, "lb"),
  46087. name: "Anthro",
  46088. image: {
  46089. source: "./media/characters/abacus/anthro.svg",
  46090. extra: 1540/1494,
  46091. bottom: 233/1773
  46092. }
  46093. },
  46094. pigeon: {
  46095. height: math.unit(1, "feet"),
  46096. name: "Pigeon",
  46097. image: {
  46098. source: "./media/characters/abacus/pigeon.svg",
  46099. extra: 528/525,
  46100. bottom: 46/574
  46101. }
  46102. },
  46103. },
  46104. [
  46105. {
  46106. name: "Normal",
  46107. height: math.unit(9, "feet"),
  46108. default: true
  46109. },
  46110. ]
  46111. ))
  46112. characterMakers.push(() => makeCharacter(
  46113. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46114. {
  46115. side: {
  46116. height: math.unit(6, "feet"),
  46117. name: "Side",
  46118. image: {
  46119. source: "./media/characters/delkhan/side.svg",
  46120. extra: 1884/1786,
  46121. bottom: 308/2192
  46122. }
  46123. },
  46124. head: {
  46125. height: math.unit(3.38, "feet"),
  46126. name: "Head",
  46127. image: {
  46128. source: "./media/characters/delkhan/head.svg"
  46129. }
  46130. },
  46131. },
  46132. [
  46133. {
  46134. name: "Normal",
  46135. height: math.unit(72, "feet"),
  46136. default: true
  46137. },
  46138. {
  46139. name: "Giant",
  46140. height: math.unit(172, "feet")
  46141. },
  46142. ]
  46143. ))
  46144. characterMakers.push(() => makeCharacter(
  46145. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46146. {
  46147. standing: {
  46148. height: math.unit(6, "feet"),
  46149. name: "Standing",
  46150. image: {
  46151. source: "./media/characters/euchidat/standing.svg",
  46152. extra: 1612/1553,
  46153. bottom: 116/1728
  46154. }
  46155. },
  46156. leaning: {
  46157. height: math.unit(6, "feet"),
  46158. name: "Leaning",
  46159. image: {
  46160. source: "./media/characters/euchidat/leaning.svg",
  46161. extra: 1719/1674,
  46162. bottom: 27/1746
  46163. }
  46164. },
  46165. },
  46166. [
  46167. {
  46168. name: "Normal",
  46169. height: math.unit(175, "feet"),
  46170. default: true
  46171. },
  46172. {
  46173. name: "Megamacro",
  46174. height: math.unit(190, "miles")
  46175. },
  46176. {
  46177. name: "Gigamacro",
  46178. height: math.unit(190000, "miles")
  46179. },
  46180. ]
  46181. ))
  46182. characterMakers.push(() => makeCharacter(
  46183. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46184. {
  46185. front: {
  46186. height: math.unit(6, "feet"),
  46187. weight: math.unit(150, "lb"),
  46188. name: "Front",
  46189. image: {
  46190. source: "./media/characters/rebecca-stack/front.svg",
  46191. extra: 1256/1201,
  46192. bottom: 18/1274
  46193. }
  46194. },
  46195. },
  46196. [
  46197. {
  46198. name: "Normal",
  46199. height: math.unit(5 + 8/12, "feet"),
  46200. default: true
  46201. },
  46202. {
  46203. name: "Demolitionist",
  46204. height: math.unit(200, "feet")
  46205. },
  46206. {
  46207. name: "Out of Control",
  46208. height: math.unit(2, "miles")
  46209. },
  46210. {
  46211. name: "Giga",
  46212. height: math.unit(7200, "miles")
  46213. },
  46214. ]
  46215. ))
  46216. characterMakers.push(() => makeCharacter(
  46217. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46218. {
  46219. front: {
  46220. height: math.unit(6, "feet"),
  46221. weight: math.unit(150, "lb"),
  46222. name: "Front",
  46223. image: {
  46224. source: "./media/characters/jenny-cartwright/front.svg",
  46225. extra: 1384/1376,
  46226. bottom: 58/1442
  46227. }
  46228. },
  46229. },
  46230. [
  46231. {
  46232. name: "Normal",
  46233. height: math.unit(6 + 7/12, "feet"),
  46234. default: true
  46235. },
  46236. {
  46237. name: "Librarian",
  46238. height: math.unit(55, "feet")
  46239. },
  46240. {
  46241. name: "Sightseer",
  46242. height: math.unit(50, "miles")
  46243. },
  46244. {
  46245. name: "Giga",
  46246. height: math.unit(30000, "miles")
  46247. },
  46248. ]
  46249. ))
  46250. characterMakers.push(() => makeCharacter(
  46251. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46252. {
  46253. nude: {
  46254. height: math.unit(8, "feet"),
  46255. weight: math.unit(225, "lb"),
  46256. name: "Nude",
  46257. image: {
  46258. source: "./media/characters/marvy/nude.svg",
  46259. extra: 1900/1683,
  46260. bottom: 89/1989
  46261. }
  46262. },
  46263. dressed: {
  46264. height: math.unit(8, "feet"),
  46265. weight: math.unit(225, "lb"),
  46266. name: "Dressed",
  46267. image: {
  46268. source: "./media/characters/marvy/dressed.svg",
  46269. extra: 1900/1683,
  46270. bottom: 89/1989
  46271. }
  46272. },
  46273. head: {
  46274. height: math.unit(2.85, "feet"),
  46275. name: "Head",
  46276. image: {
  46277. source: "./media/characters/marvy/head.svg"
  46278. }
  46279. },
  46280. },
  46281. [
  46282. {
  46283. name: "Normal",
  46284. height: math.unit(8, "feet"),
  46285. default: true
  46286. },
  46287. ]
  46288. ))
  46289. characterMakers.push(() => makeCharacter(
  46290. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46291. {
  46292. front: {
  46293. height: math.unit(8, "feet"),
  46294. weight: math.unit(250, "lb"),
  46295. name: "Front",
  46296. image: {
  46297. source: "./media/characters/leah/front.svg",
  46298. extra: 1257/1149,
  46299. bottom: 109/1366
  46300. }
  46301. },
  46302. },
  46303. [
  46304. {
  46305. name: "Normal",
  46306. height: math.unit(8, "feet"),
  46307. default: true
  46308. },
  46309. {
  46310. name: "Minimacro",
  46311. height: math.unit(40, "feet")
  46312. },
  46313. {
  46314. name: "Macro",
  46315. height: math.unit(124, "feet")
  46316. },
  46317. {
  46318. name: "Megamacro",
  46319. height: math.unit(850, "feet")
  46320. },
  46321. ]
  46322. ))
  46323. characterMakers.push(() => makeCharacter(
  46324. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46325. {
  46326. side: {
  46327. height: math.unit(13 + 6/12, "feet"),
  46328. weight: math.unit(3200, "lb"),
  46329. name: "Side",
  46330. image: {
  46331. source: "./media/characters/alvir/side.svg",
  46332. extra: 896/589,
  46333. bottom: 26/922
  46334. }
  46335. },
  46336. },
  46337. [
  46338. {
  46339. name: "Normal",
  46340. height: math.unit(13 + 6/12, "feet"),
  46341. default: true
  46342. },
  46343. ]
  46344. ))
  46345. characterMakers.push(() => makeCharacter(
  46346. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46347. {
  46348. front: {
  46349. height: math.unit(5 + 4/12, "feet"),
  46350. weight: math.unit(236, "lb"),
  46351. name: "Front",
  46352. image: {
  46353. source: "./media/characters/zaina-khalil/front.svg",
  46354. extra: 1533/1485,
  46355. bottom: 94/1627
  46356. }
  46357. },
  46358. side: {
  46359. height: math.unit(5 + 4/12, "feet"),
  46360. weight: math.unit(236, "lb"),
  46361. name: "Side",
  46362. image: {
  46363. source: "./media/characters/zaina-khalil/side.svg",
  46364. extra: 1537/1498,
  46365. bottom: 66/1603
  46366. }
  46367. },
  46368. back: {
  46369. height: math.unit(5 + 4/12, "feet"),
  46370. weight: math.unit(236, "lb"),
  46371. name: "Back",
  46372. image: {
  46373. source: "./media/characters/zaina-khalil/back.svg",
  46374. extra: 1546/1494,
  46375. bottom: 89/1635
  46376. }
  46377. },
  46378. },
  46379. [
  46380. {
  46381. name: "Normal",
  46382. height: math.unit(5 + 4/12, "feet"),
  46383. default: true
  46384. },
  46385. ]
  46386. ))
  46387. characterMakers.push(() => makeCharacter(
  46388. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46389. {
  46390. side: {
  46391. height: math.unit(12, "feet"),
  46392. weight: math.unit(4000, "lb"),
  46393. name: "Side",
  46394. image: {
  46395. source: "./media/characters/terry/side.svg",
  46396. extra: 1518/1439,
  46397. bottom: 149/1667
  46398. }
  46399. },
  46400. },
  46401. [
  46402. {
  46403. name: "Normal",
  46404. height: math.unit(12, "feet"),
  46405. default: true
  46406. },
  46407. ]
  46408. ))
  46409. characterMakers.push(() => makeCharacter(
  46410. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46411. {
  46412. front: {
  46413. height: math.unit(12, "feet"),
  46414. weight: math.unit(1500, "lb"),
  46415. name: "Front",
  46416. image: {
  46417. source: "./media/characters/kahea/front.svg",
  46418. extra: 1722/1617,
  46419. bottom: 179/1901
  46420. }
  46421. },
  46422. },
  46423. [
  46424. {
  46425. name: "Normal",
  46426. height: math.unit(12, "feet"),
  46427. default: true
  46428. },
  46429. ]
  46430. ))
  46431. characterMakers.push(() => makeCharacter(
  46432. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46433. {
  46434. demonFront: {
  46435. height: math.unit(36, "feet"),
  46436. name: "Front",
  46437. image: {
  46438. source: "./media/characters/alex-xuria/demon-front.svg",
  46439. extra: 1705/1673,
  46440. bottom: 198/1903
  46441. },
  46442. form: "demon",
  46443. default: true
  46444. },
  46445. demonBack: {
  46446. height: math.unit(36, "feet"),
  46447. name: "Back",
  46448. image: {
  46449. source: "./media/characters/alex-xuria/demon-back.svg",
  46450. extra: 1725/1693,
  46451. bottom: 70/1795
  46452. },
  46453. form: "demon"
  46454. },
  46455. demonHead: {
  46456. height: math.unit(2.14, "meters"),
  46457. name: "Head",
  46458. image: {
  46459. source: "./media/characters/alex-xuria/demon-head.svg"
  46460. },
  46461. form: "demon"
  46462. },
  46463. demonHand: {
  46464. height: math.unit(1.61, "meters"),
  46465. name: "Hand",
  46466. image: {
  46467. source: "./media/characters/alex-xuria/demon-hand.svg"
  46468. },
  46469. form: "demon"
  46470. },
  46471. demonPaw: {
  46472. height: math.unit(1.35, "meters"),
  46473. name: "Paw",
  46474. image: {
  46475. source: "./media/characters/alex-xuria/demon-paw.svg"
  46476. },
  46477. form: "demon"
  46478. },
  46479. demonFoot: {
  46480. height: math.unit(2.2, "meters"),
  46481. name: "Foot",
  46482. image: {
  46483. source: "./media/characters/alex-xuria/demon-foot.svg"
  46484. },
  46485. form: "demon"
  46486. },
  46487. demonCock: {
  46488. height: math.unit(1.74, "meters"),
  46489. name: "Cock",
  46490. image: {
  46491. source: "./media/characters/alex-xuria/demon-cock.svg"
  46492. },
  46493. form: "demon"
  46494. },
  46495. demonTailClosed: {
  46496. height: math.unit(1.47, "meters"),
  46497. name: "Tail (Closed)",
  46498. image: {
  46499. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46500. },
  46501. form: "demon"
  46502. },
  46503. demonTailOpen: {
  46504. height: math.unit(2.85, "meters"),
  46505. name: "Tail (Open)",
  46506. image: {
  46507. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46508. },
  46509. form: "demon"
  46510. },
  46511. incubusFront: {
  46512. height: math.unit(12, "feet"),
  46513. name: "Front",
  46514. image: {
  46515. source: "./media/characters/alex-xuria/incubus-front.svg",
  46516. extra: 1754/1677,
  46517. bottom: 125/1879
  46518. },
  46519. form: "incubus",
  46520. default: true
  46521. },
  46522. incubusBack: {
  46523. height: math.unit(12, "feet"),
  46524. name: "Back",
  46525. image: {
  46526. source: "./media/characters/alex-xuria/incubus-back.svg",
  46527. extra: 1702/1647,
  46528. bottom: 30/1732
  46529. },
  46530. form: "incubus"
  46531. },
  46532. incubusHead: {
  46533. height: math.unit(3.45, "feet"),
  46534. name: "Head",
  46535. image: {
  46536. source: "./media/characters/alex-xuria/incubus-head.svg"
  46537. },
  46538. form: "incubus"
  46539. },
  46540. rabbitFront: {
  46541. height: math.unit(6, "feet"),
  46542. name: "Front",
  46543. image: {
  46544. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46545. extra: 1369/1349,
  46546. bottom: 45/1414
  46547. },
  46548. form: "rabbit",
  46549. default: true
  46550. },
  46551. rabbitSide: {
  46552. height: math.unit(6, "feet"),
  46553. name: "Side",
  46554. image: {
  46555. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46556. extra: 1370/1356,
  46557. bottom: 37/1407
  46558. },
  46559. form: "rabbit"
  46560. },
  46561. rabbitBack: {
  46562. height: math.unit(6, "feet"),
  46563. name: "Back",
  46564. image: {
  46565. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46566. extra: 1375/1358,
  46567. bottom: 43/1418
  46568. },
  46569. form: "rabbit"
  46570. },
  46571. },
  46572. [
  46573. {
  46574. name: "Normal",
  46575. height: math.unit(6, "feet"),
  46576. default: true,
  46577. form: "rabbit"
  46578. },
  46579. {
  46580. name: "Incubus",
  46581. height: math.unit(12, "feet"),
  46582. default: true,
  46583. form: "incubus"
  46584. },
  46585. {
  46586. name: "Demon",
  46587. height: math.unit(36, "feet"),
  46588. default: true,
  46589. form: "demon"
  46590. }
  46591. ],
  46592. {
  46593. "demon": {
  46594. name: "Demon",
  46595. default: true
  46596. },
  46597. "incubus": {
  46598. name: "Incubus",
  46599. },
  46600. "rabbit": {
  46601. name: "Rabbit"
  46602. }
  46603. }
  46604. ))
  46605. characterMakers.push(() => makeCharacter(
  46606. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46607. {
  46608. front: {
  46609. height: math.unit(7 + 5/12, "feet"),
  46610. weight: math.unit(510, "lb"),
  46611. name: "Front",
  46612. image: {
  46613. source: "./media/characters/syrup/front.svg",
  46614. extra: 932/916,
  46615. bottom: 26/958
  46616. }
  46617. },
  46618. },
  46619. [
  46620. {
  46621. name: "Normal",
  46622. height: math.unit(7 + 5/12, "feet"),
  46623. default: true
  46624. },
  46625. {
  46626. name: "Big",
  46627. height: math.unit(50, "feet")
  46628. },
  46629. {
  46630. name: "Macro",
  46631. height: math.unit(300, "feet")
  46632. },
  46633. {
  46634. name: "Megamacro",
  46635. height: math.unit(1, "mile")
  46636. },
  46637. ]
  46638. ))
  46639. characterMakers.push(() => makeCharacter(
  46640. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46641. {
  46642. front: {
  46643. height: math.unit(6 + 9/12, "feet"),
  46644. name: "Front",
  46645. image: {
  46646. source: "./media/characters/zeimne/front.svg",
  46647. extra: 1969/1806,
  46648. bottom: 53/2022
  46649. }
  46650. },
  46651. },
  46652. [
  46653. {
  46654. name: "Normal",
  46655. height: math.unit(6 + 9/12, "feet"),
  46656. default: true
  46657. },
  46658. {
  46659. name: "Giant",
  46660. height: math.unit(550, "feet")
  46661. },
  46662. {
  46663. name: "Mega",
  46664. height: math.unit(3, "miles")
  46665. },
  46666. {
  46667. name: "Giga",
  46668. height: math.unit(250, "miles")
  46669. },
  46670. {
  46671. name: "Tera",
  46672. height: math.unit(1, "AU")
  46673. },
  46674. ]
  46675. ))
  46676. characterMakers.push(() => makeCharacter(
  46677. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46678. {
  46679. front: {
  46680. height: math.unit(5 + 2/12, "feet"),
  46681. name: "Front",
  46682. image: {
  46683. source: "./media/characters/grar/front.svg",
  46684. extra: 1331/1119,
  46685. bottom: 60/1391
  46686. }
  46687. },
  46688. back: {
  46689. height: math.unit(5 + 2/12, "feet"),
  46690. name: "Back",
  46691. image: {
  46692. source: "./media/characters/grar/back.svg",
  46693. extra: 1385/1169,
  46694. bottom: 23/1408
  46695. }
  46696. },
  46697. },
  46698. [
  46699. {
  46700. name: "Normal",
  46701. height: math.unit(5 + 2/12, "feet"),
  46702. default: true
  46703. },
  46704. ]
  46705. ))
  46706. characterMakers.push(() => makeCharacter(
  46707. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46708. {
  46709. front: {
  46710. height: math.unit(13 + 7/12, "feet"),
  46711. weight: math.unit(2200, "lb"),
  46712. name: "Front",
  46713. image: {
  46714. source: "./media/characters/endraya/front.svg",
  46715. extra: 1289/1215,
  46716. bottom: 50/1339
  46717. }
  46718. },
  46719. nude: {
  46720. height: math.unit(13 + 7/12, "feet"),
  46721. weight: math.unit(2200, "lb"),
  46722. name: "Nude",
  46723. image: {
  46724. source: "./media/characters/endraya/nude.svg",
  46725. extra: 1247/1171,
  46726. bottom: 40/1287
  46727. }
  46728. },
  46729. head: {
  46730. height: math.unit(2.6, "feet"),
  46731. name: "Head",
  46732. image: {
  46733. source: "./media/characters/endraya/head.svg"
  46734. }
  46735. },
  46736. slit: {
  46737. height: math.unit(3.4, "feet"),
  46738. name: "Slit",
  46739. image: {
  46740. source: "./media/characters/endraya/slit.svg"
  46741. }
  46742. },
  46743. },
  46744. [
  46745. {
  46746. name: "Normal",
  46747. height: math.unit(13 + 7/12, "feet"),
  46748. default: true
  46749. },
  46750. {
  46751. name: "Macro",
  46752. height: math.unit(200, "feet")
  46753. },
  46754. ]
  46755. ))
  46756. characterMakers.push(() => makeCharacter(
  46757. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46758. {
  46759. front: {
  46760. height: math.unit(1.81, "meters"),
  46761. weight: math.unit(69, "kg"),
  46762. name: "Front",
  46763. image: {
  46764. source: "./media/characters/rodryana/front.svg",
  46765. extra: 2002/1921,
  46766. bottom: 53/2055
  46767. }
  46768. },
  46769. back: {
  46770. height: math.unit(1.81, "meters"),
  46771. weight: math.unit(69, "kg"),
  46772. name: "Back",
  46773. image: {
  46774. source: "./media/characters/rodryana/back.svg",
  46775. extra: 1993/1926,
  46776. bottom: 48/2041
  46777. }
  46778. },
  46779. maw: {
  46780. height: math.unit(0.19769417475, "meters"),
  46781. name: "Maw",
  46782. image: {
  46783. source: "./media/characters/rodryana/maw.svg"
  46784. }
  46785. },
  46786. slit: {
  46787. height: math.unit(0.31631067961, "meters"),
  46788. name: "Slit",
  46789. image: {
  46790. source: "./media/characters/rodryana/slit.svg"
  46791. }
  46792. },
  46793. },
  46794. [
  46795. {
  46796. name: "Normal",
  46797. height: math.unit(1.81, "meters")
  46798. },
  46799. {
  46800. name: "Mini Macro",
  46801. height: math.unit(181, "meters")
  46802. },
  46803. {
  46804. name: "Macro",
  46805. height: math.unit(452, "meters"),
  46806. default: true
  46807. },
  46808. {
  46809. name: "Mega Macro",
  46810. height: math.unit(1.375, "km")
  46811. },
  46812. {
  46813. name: "Giga Macro",
  46814. height: math.unit(13.575, "km")
  46815. },
  46816. ]
  46817. ))
  46818. characterMakers.push(() => makeCharacter(
  46819. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46820. {
  46821. front: {
  46822. height: math.unit(6, "feet"),
  46823. weight: math.unit(1000, "lb"),
  46824. name: "Front",
  46825. image: {
  46826. source: "./media/characters/asaya/front.svg",
  46827. extra: 1460/1200,
  46828. bottom: 71/1531
  46829. }
  46830. },
  46831. },
  46832. [
  46833. {
  46834. name: "Normal",
  46835. height: math.unit(8, "km"),
  46836. default: true
  46837. },
  46838. ]
  46839. ))
  46840. characterMakers.push(() => makeCharacter(
  46841. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46842. {
  46843. front: {
  46844. height: math.unit(3.5, "meters"),
  46845. name: "Front",
  46846. image: {
  46847. source: "./media/characters/sarzu-and-israz/front.svg",
  46848. extra: 1570/1558,
  46849. bottom: 150/1720
  46850. },
  46851. },
  46852. back: {
  46853. height: math.unit(3.5, "meters"),
  46854. name: "Back",
  46855. image: {
  46856. source: "./media/characters/sarzu-and-israz/back.svg",
  46857. extra: 1523/1509,
  46858. bottom: 132/1655
  46859. },
  46860. },
  46861. frontFemale: {
  46862. height: math.unit(3.5, "meters"),
  46863. name: "Front (Female)",
  46864. image: {
  46865. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46866. extra: 1570/1558,
  46867. bottom: 150/1720
  46868. },
  46869. },
  46870. frontHerm: {
  46871. height: math.unit(3.5, "meters"),
  46872. name: "Front (Herm)",
  46873. image: {
  46874. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46875. extra: 1570/1558,
  46876. bottom: 150/1720
  46877. },
  46878. },
  46879. },
  46880. [
  46881. {
  46882. name: "Normal",
  46883. height: math.unit(3.5, "meters"),
  46884. default: true,
  46885. },
  46886. {
  46887. name: "Macro",
  46888. height: math.unit(65.5, "meters"),
  46889. },
  46890. ],
  46891. ))
  46892. characterMakers.push(() => makeCharacter(
  46893. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46894. {
  46895. front: {
  46896. height: math.unit(6, "feet"),
  46897. weight: math.unit(250, "lb"),
  46898. name: "Front",
  46899. image: {
  46900. source: "./media/characters/zenimma/front.svg",
  46901. extra: 1346/1320,
  46902. bottom: 58/1404
  46903. }
  46904. },
  46905. back: {
  46906. height: math.unit(6, "feet"),
  46907. weight: math.unit(250, "lb"),
  46908. name: "Back",
  46909. image: {
  46910. source: "./media/characters/zenimma/back.svg",
  46911. extra: 1324/1308,
  46912. bottom: 44/1368
  46913. }
  46914. },
  46915. dick: {
  46916. height: math.unit(1.44, "feet"),
  46917. name: "Dick",
  46918. image: {
  46919. source: "./media/characters/zenimma/dick.svg"
  46920. }
  46921. },
  46922. },
  46923. [
  46924. {
  46925. name: "Canon Height",
  46926. height: math.unit(66, "miles"),
  46927. default: true
  46928. },
  46929. ]
  46930. ))
  46931. characterMakers.push(() => makeCharacter(
  46932. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46933. {
  46934. nude: {
  46935. height: math.unit(6, "feet"),
  46936. weight: math.unit(150, "lb"),
  46937. name: "Nude",
  46938. image: {
  46939. source: "./media/characters/shavon/nude.svg",
  46940. extra: 1242/1096,
  46941. bottom: 98/1340
  46942. }
  46943. },
  46944. dressed: {
  46945. height: math.unit(6, "feet"),
  46946. weight: math.unit(150, "lb"),
  46947. name: "Dressed",
  46948. image: {
  46949. source: "./media/characters/shavon/dressed.svg",
  46950. extra: 1242/1096,
  46951. bottom: 98/1340
  46952. }
  46953. },
  46954. },
  46955. [
  46956. {
  46957. name: "Macro",
  46958. height: math.unit(255, "feet"),
  46959. default: true
  46960. },
  46961. ]
  46962. ))
  46963. characterMakers.push(() => makeCharacter(
  46964. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46965. {
  46966. front: {
  46967. height: math.unit(6, "feet"),
  46968. name: "Front",
  46969. image: {
  46970. source: "./media/characters/steph/front.svg",
  46971. extra: 1430/1330,
  46972. bottom: 54/1484
  46973. }
  46974. },
  46975. },
  46976. [
  46977. {
  46978. name: "Normal",
  46979. height: math.unit(6, "feet"),
  46980. default: true
  46981. },
  46982. ]
  46983. ))
  46984. characterMakers.push(() => makeCharacter(
  46985. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46986. {
  46987. front: {
  46988. height: math.unit(9, "feet"),
  46989. weight: math.unit(400, "lb"),
  46990. name: "Front",
  46991. image: {
  46992. source: "./media/characters/kil'aman/front.svg",
  46993. extra: 1210/1159,
  46994. bottom: 109/1319
  46995. }
  46996. },
  46997. head: {
  46998. height: math.unit(2.14, "feet"),
  46999. name: "Head",
  47000. image: {
  47001. source: "./media/characters/kil'aman/head.svg"
  47002. }
  47003. },
  47004. maw: {
  47005. height: math.unit(1.21, "feet"),
  47006. name: "Maw",
  47007. image: {
  47008. source: "./media/characters/kil'aman/maw.svg"
  47009. }
  47010. },
  47011. foot: {
  47012. height: math.unit(1.7, "feet"),
  47013. name: "Foot",
  47014. image: {
  47015. source: "./media/characters/kil'aman/foot.svg"
  47016. }
  47017. },
  47018. dick: {
  47019. height: math.unit(2.1, "feet"),
  47020. name: "Dick",
  47021. image: {
  47022. source: "./media/characters/kil'aman/dick.svg"
  47023. }
  47024. },
  47025. },
  47026. [
  47027. {
  47028. name: "Normal",
  47029. height: math.unit(9, "feet")
  47030. },
  47031. {
  47032. name: "Canon Height",
  47033. height: math.unit(10, "miles"),
  47034. default: true
  47035. },
  47036. {
  47037. name: "Maximum",
  47038. height: math.unit(6e9, "miles")
  47039. },
  47040. ]
  47041. ))
  47042. characterMakers.push(() => makeCharacter(
  47043. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47044. {
  47045. front: {
  47046. height: math.unit(90, "feet"),
  47047. weight: math.unit(675000, "lb"),
  47048. name: "Front",
  47049. image: {
  47050. source: "./media/characters/qadan/front.svg",
  47051. extra: 1012/1004,
  47052. bottom: 78/1090
  47053. }
  47054. },
  47055. back: {
  47056. height: math.unit(90, "feet"),
  47057. weight: math.unit(675000, "lb"),
  47058. name: "Back",
  47059. image: {
  47060. source: "./media/characters/qadan/back.svg",
  47061. extra: 1042/1031,
  47062. bottom: 55/1097
  47063. }
  47064. },
  47065. armored: {
  47066. height: math.unit(90, "feet"),
  47067. weight: math.unit(675000, "lb"),
  47068. name: "Armored",
  47069. image: {
  47070. source: "./media/characters/qadan/armored.svg",
  47071. extra: 1047/1037,
  47072. bottom: 48/1095
  47073. }
  47074. },
  47075. },
  47076. [
  47077. {
  47078. name: "Normal",
  47079. height: math.unit(90, "feet"),
  47080. default: true
  47081. },
  47082. ]
  47083. ))
  47084. characterMakers.push(() => makeCharacter(
  47085. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47086. {
  47087. front: {
  47088. height: math.unit(6, "feet"),
  47089. weight: math.unit(225, "lb"),
  47090. name: "Front",
  47091. image: {
  47092. source: "./media/characters/brooke/front.svg",
  47093. extra: 1050/1010,
  47094. bottom: 66/1116
  47095. }
  47096. },
  47097. back: {
  47098. height: math.unit(6, "feet"),
  47099. weight: math.unit(225, "lb"),
  47100. name: "Back",
  47101. image: {
  47102. source: "./media/characters/brooke/back.svg",
  47103. extra: 1053/1013,
  47104. bottom: 41/1094
  47105. }
  47106. },
  47107. dressed: {
  47108. height: math.unit(6, "feet"),
  47109. weight: math.unit(225, "lb"),
  47110. name: "Dressed",
  47111. image: {
  47112. source: "./media/characters/brooke/dressed.svg",
  47113. extra: 1050/1010,
  47114. bottom: 66/1116
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Canon Height",
  47121. height: math.unit(500, "miles"),
  47122. default: true
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(6 + 2/12, "feet"),
  47131. weight: math.unit(210, "lb"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/wubs/front.svg",
  47135. extra: 1345/1325,
  47136. bottom: 70/1415
  47137. }
  47138. },
  47139. back: {
  47140. height: math.unit(6 + 2/12, "feet"),
  47141. weight: math.unit(210, "lb"),
  47142. name: "Back",
  47143. image: {
  47144. source: "./media/characters/wubs/back.svg",
  47145. extra: 1296/1275,
  47146. bottom: 58/1354
  47147. }
  47148. },
  47149. },
  47150. [
  47151. {
  47152. name: "Normal",
  47153. height: math.unit(6 + 2/12, "feet"),
  47154. default: true
  47155. },
  47156. {
  47157. name: "Macro",
  47158. height: math.unit(1000, "feet")
  47159. },
  47160. {
  47161. name: "Megamacro",
  47162. height: math.unit(1, "mile")
  47163. },
  47164. ]
  47165. ))
  47166. characterMakers.push(() => makeCharacter(
  47167. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47168. {
  47169. front: {
  47170. height: math.unit(4, "feet"),
  47171. weight: math.unit(120, "lb"),
  47172. name: "Front",
  47173. image: {
  47174. source: "./media/characters/blue/front.svg",
  47175. extra: 1636/1525,
  47176. bottom: 43/1679
  47177. }
  47178. },
  47179. back: {
  47180. height: math.unit(4, "feet"),
  47181. weight: math.unit(120, "lb"),
  47182. name: "Back",
  47183. image: {
  47184. source: "./media/characters/blue/back.svg",
  47185. extra: 1660/1560,
  47186. bottom: 57/1717
  47187. }
  47188. },
  47189. paws: {
  47190. height: math.unit(0.826, "feet"),
  47191. name: "Paws",
  47192. image: {
  47193. source: "./media/characters/blue/paws.svg"
  47194. }
  47195. },
  47196. },
  47197. [
  47198. {
  47199. name: "Micro",
  47200. height: math.unit(3, "inches")
  47201. },
  47202. {
  47203. name: "Normal",
  47204. height: math.unit(4, "feet"),
  47205. default: true
  47206. },
  47207. {
  47208. name: "Femenine Form",
  47209. height: math.unit(14, "feet")
  47210. },
  47211. {
  47212. name: "Werebat Form",
  47213. height: math.unit(18, "feet")
  47214. },
  47215. ]
  47216. ))
  47217. characterMakers.push(() => makeCharacter(
  47218. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47219. {
  47220. female: {
  47221. height: math.unit(7 + 4/12, "feet"),
  47222. weight: math.unit(243, "lb"),
  47223. name: "Female",
  47224. image: {
  47225. source: "./media/characters/kaya/female.svg",
  47226. extra: 975/898,
  47227. bottom: 34/1009
  47228. }
  47229. },
  47230. herm: {
  47231. height: math.unit(7 + 4/12, "feet"),
  47232. weight: math.unit(243, "lb"),
  47233. name: "Herm",
  47234. image: {
  47235. source: "./media/characters/kaya/herm.svg",
  47236. extra: 975/898,
  47237. bottom: 34/1009
  47238. }
  47239. },
  47240. },
  47241. [
  47242. {
  47243. name: "Normal",
  47244. height: math.unit(7 + 4/12, "feet"),
  47245. default: true
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47251. {
  47252. female: {
  47253. height: math.unit(9 + 4/12, "feet"),
  47254. weight: math.unit(398, "lb"),
  47255. name: "Female",
  47256. image: {
  47257. source: "./media/characters/kassandra/female.svg",
  47258. extra: 908/839,
  47259. bottom: 61/969
  47260. }
  47261. },
  47262. intersex: {
  47263. height: math.unit(9 + 4/12, "feet"),
  47264. weight: math.unit(398, "lb"),
  47265. name: "Intersex",
  47266. image: {
  47267. source: "./media/characters/kassandra/intersex.svg",
  47268. extra: 908/839,
  47269. bottom: 61/969
  47270. }
  47271. },
  47272. },
  47273. [
  47274. {
  47275. name: "Normal",
  47276. height: math.unit(9 + 4/12, "feet"),
  47277. default: true
  47278. },
  47279. ]
  47280. ))
  47281. characterMakers.push(() => makeCharacter(
  47282. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47283. {
  47284. front: {
  47285. height: math.unit(3, "meters"),
  47286. name: "Front",
  47287. image: {
  47288. source: "./media/characters/amy/front.svg",
  47289. extra: 1380/1343,
  47290. bottom: 70/1450
  47291. }
  47292. },
  47293. back: {
  47294. height: math.unit(3, "meters"),
  47295. name: "Back",
  47296. image: {
  47297. source: "./media/characters/amy/back.svg",
  47298. extra: 1380/1347,
  47299. bottom: 66/1446
  47300. }
  47301. },
  47302. },
  47303. [
  47304. {
  47305. name: "Normal",
  47306. height: math.unit(3, "meters"),
  47307. default: true
  47308. },
  47309. ]
  47310. ))
  47311. characterMakers.push(() => makeCharacter(
  47312. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47313. {
  47314. side: {
  47315. height: math.unit(47, "cm"),
  47316. weight: math.unit(10.8, "kg"),
  47317. name: "Side",
  47318. image: {
  47319. source: "./media/characters/alphaschakal/side.svg",
  47320. extra: 1058/568,
  47321. bottom: 62/1120
  47322. }
  47323. },
  47324. back: {
  47325. height: math.unit(78, "cm"),
  47326. weight: math.unit(10.8, "kg"),
  47327. name: "Back",
  47328. image: {
  47329. source: "./media/characters/alphaschakal/back.svg",
  47330. extra: 1102/942,
  47331. bottom: 185/1287
  47332. }
  47333. },
  47334. head: {
  47335. height: math.unit(28, "cm"),
  47336. name: "Head",
  47337. image: {
  47338. source: "./media/characters/alphaschakal/head.svg",
  47339. extra: 696/508,
  47340. bottom: 0/696
  47341. }
  47342. },
  47343. paw: {
  47344. height: math.unit(16, "cm"),
  47345. name: "Paw",
  47346. image: {
  47347. source: "./media/characters/alphaschakal/paw.svg"
  47348. }
  47349. },
  47350. },
  47351. [
  47352. {
  47353. name: "Normal",
  47354. height: math.unit(47, "cm"),
  47355. default: true
  47356. },
  47357. {
  47358. name: "Macro",
  47359. height: math.unit(340, "cm")
  47360. },
  47361. ]
  47362. ))
  47363. characterMakers.push(() => makeCharacter(
  47364. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47365. {
  47366. front: {
  47367. height: math.unit(36, "earths"),
  47368. name: "Front",
  47369. image: {
  47370. source: "./media/characters/ecobyss/front.svg",
  47371. extra: 1282/1215,
  47372. bottom: 11/1293
  47373. }
  47374. },
  47375. back: {
  47376. height: math.unit(36, "earths"),
  47377. name: "Back",
  47378. image: {
  47379. source: "./media/characters/ecobyss/back.svg",
  47380. extra: 1291/1222,
  47381. bottom: 8/1299
  47382. }
  47383. },
  47384. },
  47385. [
  47386. {
  47387. name: "Normal",
  47388. height: math.unit(36, "earths"),
  47389. default: true
  47390. },
  47391. ]
  47392. ))
  47393. characterMakers.push(() => makeCharacter(
  47394. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47395. {
  47396. front: {
  47397. height: math.unit(12, "feet"),
  47398. name: "Front",
  47399. image: {
  47400. source: "./media/characters/vasuk/front.svg",
  47401. extra: 1326/1207,
  47402. bottom: 64/1390
  47403. }
  47404. },
  47405. },
  47406. [
  47407. {
  47408. name: "Normal",
  47409. height: math.unit(12, "feet"),
  47410. default: true
  47411. },
  47412. ]
  47413. ))
  47414. characterMakers.push(() => makeCharacter(
  47415. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47416. {
  47417. side: {
  47418. height: math.unit(100, "feet"),
  47419. name: "Side",
  47420. image: {
  47421. source: "./media/characters/linneaus/side.svg",
  47422. extra: 987/807,
  47423. bottom: 47/1034
  47424. }
  47425. },
  47426. },
  47427. [
  47428. {
  47429. name: "Macro",
  47430. height: math.unit(100, "feet"),
  47431. default: true
  47432. },
  47433. ]
  47434. ))
  47435. characterMakers.push(() => makeCharacter(
  47436. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47437. {
  47438. front: {
  47439. height: math.unit(8, "feet"),
  47440. weight: math.unit(1200, "lb"),
  47441. name: "Front",
  47442. image: {
  47443. source: "./media/characters/nyterious-daligdig/front.svg",
  47444. extra: 1284/1094,
  47445. bottom: 84/1368
  47446. }
  47447. },
  47448. back: {
  47449. height: math.unit(8, "feet"),
  47450. weight: math.unit(1200, "lb"),
  47451. name: "Back",
  47452. image: {
  47453. source: "./media/characters/nyterious-daligdig/back.svg",
  47454. extra: 1301/1121,
  47455. bottom: 129/1430
  47456. }
  47457. },
  47458. mouth: {
  47459. height: math.unit(1.464, "feet"),
  47460. name: "Mouth",
  47461. image: {
  47462. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47463. }
  47464. },
  47465. },
  47466. [
  47467. {
  47468. name: "Small",
  47469. height: math.unit(8, "feet"),
  47470. default: true
  47471. },
  47472. {
  47473. name: "Normal",
  47474. height: math.unit(15, "feet")
  47475. },
  47476. {
  47477. name: "Macro",
  47478. height: math.unit(90, "feet")
  47479. },
  47480. ]
  47481. ))
  47482. characterMakers.push(() => makeCharacter(
  47483. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47484. {
  47485. front: {
  47486. height: math.unit(7 + 4/12, "feet"),
  47487. weight: math.unit(252, "lb"),
  47488. name: "Front",
  47489. image: {
  47490. source: "./media/characters/bandel/front.svg",
  47491. extra: 1946/1775,
  47492. bottom: 26/1972
  47493. }
  47494. },
  47495. back: {
  47496. height: math.unit(7 + 4/12, "feet"),
  47497. weight: math.unit(252, "lb"),
  47498. name: "Back",
  47499. image: {
  47500. source: "./media/characters/bandel/back.svg",
  47501. extra: 1940/1770,
  47502. bottom: 25/1965
  47503. }
  47504. },
  47505. maw: {
  47506. height: math.unit(2.15, "feet"),
  47507. name: "Maw",
  47508. image: {
  47509. source: "./media/characters/bandel/maw.svg"
  47510. }
  47511. },
  47512. stomach: {
  47513. height: math.unit(1.95, "feet"),
  47514. name: "Stomach",
  47515. image: {
  47516. source: "./media/characters/bandel/stomach.svg"
  47517. }
  47518. },
  47519. },
  47520. [
  47521. {
  47522. name: "Normal",
  47523. height: math.unit(7 + 4/12, "feet"),
  47524. default: true
  47525. },
  47526. ]
  47527. ))
  47528. characterMakers.push(() => makeCharacter(
  47529. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47530. {
  47531. front: {
  47532. height: math.unit(10 + 5/12, "feet"),
  47533. weight: math.unit(773.5, "kg"),
  47534. name: "Front",
  47535. image: {
  47536. source: "./media/characters/zed/front.svg",
  47537. extra: 987/941,
  47538. bottom: 52/1039
  47539. }
  47540. },
  47541. },
  47542. [
  47543. {
  47544. name: "Short",
  47545. height: math.unit(5 + 4/12, "feet")
  47546. },
  47547. {
  47548. name: "Average",
  47549. height: math.unit(10 + 5/12, "feet"),
  47550. default: true
  47551. },
  47552. {
  47553. name: "Mini-Macro",
  47554. height: math.unit(24 + 9/12, "feet")
  47555. },
  47556. {
  47557. name: "Macro",
  47558. height: math.unit(249, "feet")
  47559. },
  47560. {
  47561. name: "Mega-Macro",
  47562. height: math.unit(12490, "feet")
  47563. },
  47564. {
  47565. name: "Giga-Macro",
  47566. height: math.unit(24.9, "miles")
  47567. },
  47568. {
  47569. name: "Tera-Macro",
  47570. height: math.unit(24900, "miles")
  47571. },
  47572. {
  47573. name: "Cosmic Scale",
  47574. height: math.unit(38.9, "lightyears")
  47575. },
  47576. {
  47577. name: "Universal Scale",
  47578. height: math.unit(138e12, "lightyears")
  47579. },
  47580. ]
  47581. ))
  47582. characterMakers.push(() => makeCharacter(
  47583. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47584. {
  47585. front: {
  47586. height: math.unit(1561, "inches"),
  47587. name: "Front",
  47588. image: {
  47589. source: "./media/characters/ivan/front.svg",
  47590. extra: 1126/1071,
  47591. bottom: 26/1152
  47592. }
  47593. },
  47594. back: {
  47595. height: math.unit(1561, "inches"),
  47596. name: "Back",
  47597. image: {
  47598. source: "./media/characters/ivan/back.svg",
  47599. extra: 1134/1079,
  47600. bottom: 30/1164
  47601. }
  47602. },
  47603. },
  47604. [
  47605. {
  47606. name: "Normal",
  47607. height: math.unit(1561, "inches"),
  47608. default: true
  47609. },
  47610. ]
  47611. ))
  47612. characterMakers.push(() => makeCharacter(
  47613. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47614. {
  47615. front: {
  47616. height: math.unit(5 + 7/12, "feet"),
  47617. weight: math.unit(150, "lb"),
  47618. name: "Front",
  47619. image: {
  47620. source: "./media/characters/robin-arctic-hare/front.svg",
  47621. extra: 1148/974,
  47622. bottom: 20/1168
  47623. }
  47624. },
  47625. },
  47626. [
  47627. {
  47628. name: "Normal",
  47629. height: math.unit(5 + 7/12, "feet"),
  47630. default: true
  47631. },
  47632. ]
  47633. ))
  47634. characterMakers.push(() => makeCharacter(
  47635. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47636. {
  47637. side: {
  47638. height: math.unit(5, "feet"),
  47639. name: "Side",
  47640. image: {
  47641. source: "./media/characters/birch/side.svg",
  47642. extra: 985/796,
  47643. bottom: 111/1096
  47644. }
  47645. },
  47646. },
  47647. [
  47648. {
  47649. name: "Normal",
  47650. height: math.unit(5, "feet"),
  47651. default: true
  47652. },
  47653. ]
  47654. ))
  47655. characterMakers.push(() => makeCharacter(
  47656. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47657. {
  47658. front: {
  47659. height: math.unit(4, "feet"),
  47660. name: "Front",
  47661. image: {
  47662. source: "./media/characters/rasp/front.svg",
  47663. extra: 561/478,
  47664. bottom: 74/635
  47665. }
  47666. },
  47667. },
  47668. [
  47669. {
  47670. name: "Normal",
  47671. height: math.unit(4, "feet"),
  47672. default: true
  47673. },
  47674. ]
  47675. ))
  47676. characterMakers.push(() => makeCharacter(
  47677. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47678. {
  47679. front: {
  47680. height: math.unit(4 + 6/12, "feet"),
  47681. name: "Front",
  47682. image: {
  47683. source: "./media/characters/agatha/front.svg",
  47684. extra: 947/933,
  47685. bottom: 42/989
  47686. }
  47687. },
  47688. back: {
  47689. height: math.unit(4 + 6/12, "feet"),
  47690. name: "Back",
  47691. image: {
  47692. source: "./media/characters/agatha/back.svg",
  47693. extra: 935/922,
  47694. bottom: 48/983
  47695. }
  47696. },
  47697. },
  47698. [
  47699. {
  47700. name: "Normal",
  47701. height: math.unit(4 + 6 /12, "feet"),
  47702. default: true
  47703. },
  47704. {
  47705. name: "Max Size",
  47706. height: math.unit(500, "feet")
  47707. },
  47708. ]
  47709. ))
  47710. characterMakers.push(() => makeCharacter(
  47711. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47712. {
  47713. side: {
  47714. height: math.unit(30, "feet"),
  47715. name: "Side",
  47716. image: {
  47717. source: "./media/characters/roggy/side.svg",
  47718. extra: 909/643,
  47719. bottom: 63/972
  47720. }
  47721. },
  47722. lounging: {
  47723. height: math.unit(20, "feet"),
  47724. name: "Lounging",
  47725. image: {
  47726. source: "./media/characters/roggy/lounging.svg",
  47727. extra: 643/479,
  47728. bottom: 145/788
  47729. }
  47730. },
  47731. handpaw: {
  47732. height: math.unit(13.1, "feet"),
  47733. name: "Handpaw",
  47734. image: {
  47735. source: "./media/characters/roggy/handpaw.svg"
  47736. }
  47737. },
  47738. footpaw: {
  47739. height: math.unit(15.8, "feet"),
  47740. name: "Footpaw",
  47741. image: {
  47742. source: "./media/characters/roggy/footpaw.svg"
  47743. }
  47744. },
  47745. },
  47746. [
  47747. {
  47748. name: "Menacing",
  47749. height: math.unit(30, "feet"),
  47750. default: true
  47751. },
  47752. ]
  47753. ))
  47754. characterMakers.push(() => makeCharacter(
  47755. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47756. {
  47757. front: {
  47758. height: math.unit(5 + 7/12, "feet"),
  47759. weight: math.unit(135, "lb"),
  47760. name: "Front",
  47761. image: {
  47762. source: "./media/characters/naomi/front.svg",
  47763. extra: 1209/1154,
  47764. bottom: 129/1338
  47765. }
  47766. },
  47767. back: {
  47768. height: math.unit(5 + 7/12, "feet"),
  47769. weight: math.unit(135, "lb"),
  47770. name: "Back",
  47771. image: {
  47772. source: "./media/characters/naomi/back.svg",
  47773. extra: 1252/1190,
  47774. bottom: 23/1275
  47775. }
  47776. },
  47777. },
  47778. [
  47779. {
  47780. name: "Normal",
  47781. height: math.unit(5 + 7 /12, "feet"),
  47782. default: true
  47783. },
  47784. ]
  47785. ))
  47786. characterMakers.push(() => makeCharacter(
  47787. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47788. {
  47789. side: {
  47790. height: math.unit(35, "meters"),
  47791. name: "Side",
  47792. image: {
  47793. source: "./media/characters/kimpi/side.svg",
  47794. extra: 419/382,
  47795. bottom: 63/482
  47796. }
  47797. },
  47798. hand: {
  47799. height: math.unit(8.96, "meters"),
  47800. name: "Hand",
  47801. image: {
  47802. source: "./media/characters/kimpi/hand.svg"
  47803. }
  47804. },
  47805. },
  47806. [
  47807. {
  47808. name: "Normal",
  47809. height: math.unit(35, "meters"),
  47810. default: true
  47811. },
  47812. ]
  47813. ))
  47814. characterMakers.push(() => makeCharacter(
  47815. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47816. {
  47817. front: {
  47818. height: math.unit(4 + 4/12, "feet"),
  47819. name: "Front",
  47820. image: {
  47821. source: "./media/characters/pepper-purrloin/front.svg",
  47822. extra: 1141/1024,
  47823. bottom: 21/1162
  47824. }
  47825. },
  47826. },
  47827. [
  47828. {
  47829. name: "Normal",
  47830. height: math.unit(4 + 4/12, "feet"),
  47831. default: true
  47832. },
  47833. ]
  47834. ))
  47835. characterMakers.push(() => makeCharacter(
  47836. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47837. {
  47838. front: {
  47839. height: math.unit(6 + 2/12, "feet"),
  47840. name: "Front",
  47841. image: {
  47842. source: "./media/characters/raphael/front.svg",
  47843. extra: 1101/962,
  47844. bottom: 59/1160
  47845. }
  47846. },
  47847. },
  47848. [
  47849. {
  47850. name: "Normal",
  47851. height: math.unit(6 + 2/12, "feet"),
  47852. default: true
  47853. },
  47854. ]
  47855. ))
  47856. characterMakers.push(() => makeCharacter(
  47857. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47858. {
  47859. front: {
  47860. height: math.unit(6, "feet"),
  47861. weight: math.unit(150, "lb"),
  47862. name: "Front",
  47863. image: {
  47864. source: "./media/characters/victor-williams/front.svg",
  47865. extra: 1894/1825,
  47866. bottom: 67/1961
  47867. }
  47868. },
  47869. },
  47870. [
  47871. {
  47872. name: "Normal",
  47873. height: math.unit(6, "feet"),
  47874. default: true
  47875. },
  47876. ]
  47877. ))
  47878. characterMakers.push(() => makeCharacter(
  47879. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47880. {
  47881. front: {
  47882. height: math.unit(5 + 8/12, "feet"),
  47883. weight: math.unit(150, "lb"),
  47884. name: "Front",
  47885. image: {
  47886. source: "./media/characters/rachel/front.svg",
  47887. extra: 1902/1787,
  47888. bottom: 46/1948
  47889. }
  47890. },
  47891. },
  47892. [
  47893. {
  47894. name: "Base Height",
  47895. height: math.unit(5 + 8/12, "feet"),
  47896. default: true
  47897. },
  47898. {
  47899. name: "Macro",
  47900. height: math.unit(200, "feet")
  47901. },
  47902. {
  47903. name: "Mega Macro",
  47904. height: math.unit(1, "mile")
  47905. },
  47906. {
  47907. name: "Giga Macro",
  47908. height: math.unit(1500, "miles")
  47909. },
  47910. {
  47911. name: "Tera Macro",
  47912. height: math.unit(8000, "miles")
  47913. },
  47914. {
  47915. name: "Tera Macro+",
  47916. height: math.unit(2e5, "miles")
  47917. },
  47918. ]
  47919. ))
  47920. characterMakers.push(() => makeCharacter(
  47921. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47922. {
  47923. front: {
  47924. height: math.unit(6.5, "feet"),
  47925. name: "Front",
  47926. image: {
  47927. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47928. extra: 860/819,
  47929. bottom: 307/1167
  47930. }
  47931. },
  47932. back: {
  47933. height: math.unit(6.5, "feet"),
  47934. name: "Back",
  47935. image: {
  47936. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47937. extra: 880/837,
  47938. bottom: 395/1275
  47939. }
  47940. },
  47941. sleeping: {
  47942. height: math.unit(2.79, "feet"),
  47943. name: "Sleeping",
  47944. image: {
  47945. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47946. extra: 465/383,
  47947. bottom: 263/728
  47948. }
  47949. },
  47950. maw: {
  47951. height: math.unit(2.52, "feet"),
  47952. name: "Maw",
  47953. image: {
  47954. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47955. }
  47956. },
  47957. },
  47958. [
  47959. {
  47960. name: "Normal",
  47961. height: math.unit(6.5, "feet"),
  47962. default: true
  47963. },
  47964. ]
  47965. ))
  47966. characterMakers.push(() => makeCharacter(
  47967. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47968. {
  47969. front: {
  47970. height: math.unit(5, "feet"),
  47971. name: "Front",
  47972. image: {
  47973. source: "./media/characters/nova-nerium/front.svg",
  47974. extra: 1548/1392,
  47975. bottom: 374/1922
  47976. }
  47977. },
  47978. back: {
  47979. height: math.unit(5, "feet"),
  47980. name: "Back",
  47981. image: {
  47982. source: "./media/characters/nova-nerium/back.svg",
  47983. extra: 1658/1468,
  47984. bottom: 257/1915
  47985. }
  47986. },
  47987. },
  47988. [
  47989. {
  47990. name: "Normal",
  47991. height: math.unit(5, "feet"),
  47992. default: true
  47993. },
  47994. ]
  47995. ))
  47996. characterMakers.push(() => makeCharacter(
  47997. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47998. {
  47999. front: {
  48000. height: math.unit(5 + 4/12, "feet"),
  48001. name: "Front",
  48002. image: {
  48003. source: "./media/characters/ashe-pyriph/front.svg",
  48004. extra: 1935/1747,
  48005. bottom: 60/1995
  48006. }
  48007. },
  48008. },
  48009. [
  48010. {
  48011. name: "Normal",
  48012. height: math.unit(5 + 4/12, "feet"),
  48013. default: true
  48014. },
  48015. ]
  48016. ))
  48017. characterMakers.push(() => makeCharacter(
  48018. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48019. {
  48020. front: {
  48021. height: math.unit(8.7, "feet"),
  48022. name: "Front",
  48023. image: {
  48024. source: "./media/characters/flicker-wisp/front.svg",
  48025. extra: 1835/1613,
  48026. bottom: 449/2284
  48027. }
  48028. },
  48029. side: {
  48030. height: math.unit(8.7, "feet"),
  48031. name: "Side",
  48032. image: {
  48033. source: "./media/characters/flicker-wisp/side.svg",
  48034. extra: 1841/1642,
  48035. bottom: 336/2177
  48036. },
  48037. default: true
  48038. },
  48039. maw: {
  48040. height: math.unit(3.35, "feet"),
  48041. name: "Maw",
  48042. image: {
  48043. source: "./media/characters/flicker-wisp/maw.svg",
  48044. extra: 2338/1506,
  48045. bottom: 0/2338
  48046. }
  48047. },
  48048. ovipositor: {
  48049. height: math.unit(4.95, "feet"),
  48050. name: "Ovipositor",
  48051. image: {
  48052. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48053. }
  48054. },
  48055. egg: {
  48056. height: math.unit(0.385, "feet"),
  48057. weight: math.unit(2, "lb"),
  48058. name: "Egg",
  48059. image: {
  48060. source: "./media/characters/flicker-wisp/egg.svg"
  48061. }
  48062. },
  48063. },
  48064. [
  48065. {
  48066. name: "Normal",
  48067. height: math.unit(8.7, "feet"),
  48068. default: true
  48069. },
  48070. ]
  48071. ))
  48072. characterMakers.push(() => makeCharacter(
  48073. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48074. {
  48075. side: {
  48076. height: math.unit(11, "feet"),
  48077. name: "Side",
  48078. image: {
  48079. source: "./media/characters/faefnul/side.svg",
  48080. extra: 1100/1007,
  48081. bottom: 0/1100
  48082. }
  48083. },
  48084. },
  48085. [
  48086. {
  48087. name: "Normal",
  48088. height: math.unit(11, "feet"),
  48089. default: true
  48090. },
  48091. ]
  48092. ))
  48093. characterMakers.push(() => makeCharacter(
  48094. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48095. {
  48096. front: {
  48097. height: math.unit(6 + 2/12, "feet"),
  48098. name: "Front",
  48099. image: {
  48100. source: "./media/characters/shady/front.svg",
  48101. extra: 502/461,
  48102. bottom: 9/511
  48103. }
  48104. },
  48105. kneeling: {
  48106. height: math.unit(4.6, "feet"),
  48107. name: "Kneeling",
  48108. image: {
  48109. source: "./media/characters/shady/kneeling.svg",
  48110. extra: 1328/1219,
  48111. bottom: 117/1445
  48112. }
  48113. },
  48114. maw: {
  48115. height: math.unit(2, "feet"),
  48116. name: "Maw",
  48117. image: {
  48118. source: "./media/characters/shady/maw.svg"
  48119. }
  48120. },
  48121. },
  48122. [
  48123. {
  48124. name: "Nano",
  48125. height: math.unit(1, "mm")
  48126. },
  48127. {
  48128. name: "Micro",
  48129. height: math.unit(12, "mm")
  48130. },
  48131. {
  48132. name: "Tiny",
  48133. height: math.unit(3, "inches")
  48134. },
  48135. {
  48136. name: "Normal",
  48137. height: math.unit(6 + 2/12, "feet"),
  48138. default: true
  48139. },
  48140. {
  48141. name: "Big",
  48142. height: math.unit(15, "feet")
  48143. },
  48144. {
  48145. name: "Macro",
  48146. height: math.unit(150, "feet")
  48147. },
  48148. {
  48149. name: "Titanic",
  48150. height: math.unit(500, "feet")
  48151. },
  48152. ]
  48153. ))
  48154. characterMakers.push(() => makeCharacter(
  48155. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48156. {
  48157. front: {
  48158. height: math.unit(12, "feet"),
  48159. name: "Front",
  48160. image: {
  48161. source: "./media/characters/fenrir/front.svg",
  48162. extra: 968/875,
  48163. bottom: 22/990
  48164. }
  48165. },
  48166. },
  48167. [
  48168. {
  48169. name: "Big",
  48170. height: math.unit(12, "feet"),
  48171. default: true
  48172. },
  48173. ]
  48174. ))
  48175. characterMakers.push(() => makeCharacter(
  48176. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48177. {
  48178. front: {
  48179. height: math.unit(5 + 4/12, "feet"),
  48180. name: "Front",
  48181. image: {
  48182. source: "./media/characters/makar/front.svg",
  48183. extra: 1181/1112,
  48184. bottom: 78/1259
  48185. }
  48186. },
  48187. },
  48188. [
  48189. {
  48190. name: "Normal",
  48191. height: math.unit(5 + 4/12, "feet"),
  48192. default: true
  48193. },
  48194. ]
  48195. ))
  48196. characterMakers.push(() => makeCharacter(
  48197. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48198. {
  48199. front: {
  48200. height: math.unit(5 + 7/12, "feet"),
  48201. name: "Front",
  48202. image: {
  48203. source: "./media/characters/callow/front.svg",
  48204. extra: 1482/1304,
  48205. bottom: 23/1505
  48206. }
  48207. },
  48208. back: {
  48209. height: math.unit(5 + 7/12, "feet"),
  48210. name: "Back",
  48211. image: {
  48212. source: "./media/characters/callow/back.svg",
  48213. extra: 1484/1296,
  48214. bottom: 25/1509
  48215. }
  48216. },
  48217. },
  48218. [
  48219. {
  48220. name: "Micro",
  48221. height: math.unit(3, "inches"),
  48222. default: true
  48223. },
  48224. {
  48225. name: "Normal",
  48226. height: math.unit(5 + 7/12, "feet")
  48227. },
  48228. ]
  48229. ))
  48230. characterMakers.push(() => makeCharacter(
  48231. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48232. {
  48233. front: {
  48234. height: math.unit(6 + 2/12, "feet"),
  48235. name: "Front",
  48236. image: {
  48237. source: "./media/characters/natel/front.svg",
  48238. extra: 1833/1692,
  48239. bottom: 166/1999
  48240. }
  48241. },
  48242. },
  48243. [
  48244. {
  48245. name: "Normal",
  48246. height: math.unit(6 + 2/12, "feet"),
  48247. default: true
  48248. },
  48249. ]
  48250. ))
  48251. characterMakers.push(() => makeCharacter(
  48252. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48253. {
  48254. front: {
  48255. height: math.unit(1.75, "meters"),
  48256. name: "Front",
  48257. image: {
  48258. source: "./media/characters/misu/front.svg",
  48259. extra: 1690/1558,
  48260. bottom: 234/1924
  48261. }
  48262. },
  48263. back: {
  48264. height: math.unit(1.75, "meters"),
  48265. name: "Back",
  48266. image: {
  48267. source: "./media/characters/misu/back.svg",
  48268. extra: 1762/1618,
  48269. bottom: 146/1908
  48270. }
  48271. },
  48272. frontNude: {
  48273. height: math.unit(1.75, "meters"),
  48274. name: "Front (Nude)",
  48275. image: {
  48276. source: "./media/characters/misu/front-nude.svg",
  48277. extra: 1690/1558,
  48278. bottom: 234/1924
  48279. }
  48280. },
  48281. backNude: {
  48282. height: math.unit(1.75, "meters"),
  48283. name: "Back (Nude)",
  48284. image: {
  48285. source: "./media/characters/misu/back-nude.svg",
  48286. extra: 1762/1618,
  48287. bottom: 146/1908
  48288. }
  48289. },
  48290. frontErect: {
  48291. height: math.unit(1.75, "meters"),
  48292. name: "Front (Erect)",
  48293. image: {
  48294. source: "./media/characters/misu/front-erect.svg",
  48295. extra: 1690/1558,
  48296. bottom: 234/1924
  48297. }
  48298. },
  48299. maw: {
  48300. height: math.unit(0.47, "meters"),
  48301. name: "Maw",
  48302. image: {
  48303. source: "./media/characters/misu/maw.svg"
  48304. }
  48305. },
  48306. head: {
  48307. height: math.unit(0.35, "meters"),
  48308. name: "Head",
  48309. image: {
  48310. source: "./media/characters/misu/head.svg"
  48311. }
  48312. },
  48313. rear: {
  48314. height: math.unit(0.47, "meters"),
  48315. name: "Rear",
  48316. image: {
  48317. source: "./media/characters/misu/rear.svg"
  48318. }
  48319. },
  48320. },
  48321. [
  48322. {
  48323. name: "Normal",
  48324. height: math.unit(1.75, "meters")
  48325. },
  48326. {
  48327. name: "Not good for the people",
  48328. height: math.unit(42, "meters")
  48329. },
  48330. {
  48331. name: "Not good for the neighborhood",
  48332. height: math.unit(135, "meters")
  48333. },
  48334. {
  48335. name: "Bit bigger problem",
  48336. height: math.unit(380, "meters"),
  48337. default: true
  48338. },
  48339. {
  48340. name: "Not good for the city",
  48341. height: math.unit(1.5, "km")
  48342. },
  48343. {
  48344. name: "Not good for the county",
  48345. height: math.unit(5.5, "km")
  48346. },
  48347. {
  48348. name: "Not good for the state",
  48349. height: math.unit(25, "km")
  48350. },
  48351. {
  48352. name: "Not good for the country",
  48353. height: math.unit(125, "km")
  48354. },
  48355. {
  48356. name: "Not good for the continent",
  48357. height: math.unit(2100, "km")
  48358. },
  48359. {
  48360. name: "Not good for the planet",
  48361. height: math.unit(35000, "km")
  48362. },
  48363. {
  48364. name: "Just no",
  48365. height: math.unit(8.5e18, "km")
  48366. },
  48367. ]
  48368. ))
  48369. characterMakers.push(() => makeCharacter(
  48370. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48371. {
  48372. front: {
  48373. height: math.unit(6.5, "feet"),
  48374. name: "Front",
  48375. image: {
  48376. source: "./media/characters/poppy/front.svg",
  48377. extra: 1878/1812,
  48378. bottom: 43/1921
  48379. }
  48380. },
  48381. feet: {
  48382. height: math.unit(1.06, "feet"),
  48383. name: "Feet",
  48384. image: {
  48385. source: "./media/characters/poppy/feet.svg",
  48386. extra: 1083/1083,
  48387. bottom: 87/1170
  48388. }
  48389. },
  48390. },
  48391. [
  48392. {
  48393. name: "Human",
  48394. height: math.unit(6.5, "feet")
  48395. },
  48396. {
  48397. name: "Default",
  48398. height: math.unit(300, "feet"),
  48399. default: true
  48400. },
  48401. {
  48402. name: "Huge",
  48403. height: math.unit(850, "feet")
  48404. },
  48405. {
  48406. name: "Mega",
  48407. height: math.unit(8000, "feet")
  48408. },
  48409. {
  48410. name: "Giga",
  48411. height: math.unit(300, "miles")
  48412. },
  48413. ]
  48414. ))
  48415. characterMakers.push(() => makeCharacter(
  48416. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48417. {
  48418. bipedal: {
  48419. height: math.unit(7, "feet"),
  48420. name: "Bipedal",
  48421. image: {
  48422. source: "./media/characters/zener/bipedal.svg",
  48423. extra: 874/805,
  48424. bottom: 109/983
  48425. }
  48426. },
  48427. quadrupedal: {
  48428. height: math.unit(4.64, "feet"),
  48429. name: "Quadrupedal",
  48430. image: {
  48431. source: "./media/characters/zener/quadrupedal.svg",
  48432. extra: 638/507,
  48433. bottom: 190/828
  48434. }
  48435. },
  48436. cock: {
  48437. height: math.unit(18, "inches"),
  48438. name: "Cock",
  48439. image: {
  48440. source: "./media/characters/zener/cock.svg"
  48441. }
  48442. },
  48443. },
  48444. [
  48445. {
  48446. name: "Normal",
  48447. height: math.unit(7, "feet"),
  48448. default: true
  48449. },
  48450. ]
  48451. ))
  48452. characterMakers.push(() => makeCharacter(
  48453. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48454. {
  48455. nude: {
  48456. height: math.unit(5 + 6/12, "feet"),
  48457. name: "Nude",
  48458. image: {
  48459. source: "./media/characters/charlie-dog/nude.svg",
  48460. extra: 768/734,
  48461. bottom: 26/794
  48462. }
  48463. },
  48464. dressed: {
  48465. height: math.unit(5 + 6/12, "feet"),
  48466. name: "Dressed",
  48467. image: {
  48468. source: "./media/characters/charlie-dog/dressed.svg",
  48469. extra: 768/734,
  48470. bottom: 26/794
  48471. }
  48472. },
  48473. },
  48474. [
  48475. {
  48476. name: "Normal",
  48477. height: math.unit(5 + 6/12, "feet"),
  48478. default: true
  48479. },
  48480. ]
  48481. ))
  48482. characterMakers.push(() => makeCharacter(
  48483. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48484. {
  48485. front: {
  48486. height: math.unit(6 + 4/12, "feet"),
  48487. name: "Front",
  48488. image: {
  48489. source: "./media/characters/ir'istrasz/front.svg",
  48490. extra: 1014/977,
  48491. bottom: 65/1079
  48492. }
  48493. },
  48494. back: {
  48495. height: math.unit(6 + 4/12, "feet"),
  48496. name: "Back",
  48497. image: {
  48498. source: "./media/characters/ir'istrasz/back.svg",
  48499. extra: 1024/992,
  48500. bottom: 34/1058
  48501. }
  48502. },
  48503. },
  48504. [
  48505. {
  48506. name: "Normal",
  48507. height: math.unit(6 + 4/12, "feet"),
  48508. default: true
  48509. },
  48510. ]
  48511. ))
  48512. characterMakers.push(() => makeCharacter(
  48513. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48514. {
  48515. front: {
  48516. height: math.unit(5 + 8/12, "feet"),
  48517. name: "Front",
  48518. image: {
  48519. source: "./media/characters/dee-ditto/front.svg",
  48520. extra: 1874/1785,
  48521. bottom: 68/1942
  48522. }
  48523. },
  48524. back: {
  48525. height: math.unit(5 + 8/12, "feet"),
  48526. name: "Back",
  48527. image: {
  48528. source: "./media/characters/dee-ditto/back.svg",
  48529. extra: 1870/1783,
  48530. bottom: 77/1947
  48531. }
  48532. },
  48533. },
  48534. [
  48535. {
  48536. name: "Normal",
  48537. height: math.unit(5 + 8/12, "feet"),
  48538. default: true
  48539. },
  48540. ]
  48541. ))
  48542. characterMakers.push(() => makeCharacter(
  48543. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48544. {
  48545. front: {
  48546. height: math.unit(7 + 6/12, "feet"),
  48547. name: "Front",
  48548. image: {
  48549. source: "./media/characters/fey/front.svg",
  48550. extra: 995/979,
  48551. bottom: 30/1025
  48552. }
  48553. },
  48554. back: {
  48555. height: math.unit(7 + 6/12, "feet"),
  48556. name: "Back",
  48557. image: {
  48558. source: "./media/characters/fey/back.svg",
  48559. extra: 1079/1008,
  48560. bottom: 5/1084
  48561. }
  48562. },
  48563. dressed: {
  48564. height: math.unit(7 + 6/12, "feet"),
  48565. name: "Dressed",
  48566. image: {
  48567. source: "./media/characters/fey/dressed.svg",
  48568. extra: 995/979,
  48569. bottom: 30/1025
  48570. }
  48571. },
  48572. },
  48573. [
  48574. {
  48575. name: "Normal",
  48576. height: math.unit(7 + 6/12, "feet"),
  48577. default: true
  48578. },
  48579. ]
  48580. ))
  48581. characterMakers.push(() => makeCharacter(
  48582. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48583. {
  48584. standing: {
  48585. height: math.unit(17, "feet"),
  48586. name: "Standing",
  48587. image: {
  48588. source: "./media/characters/aster/standing.svg",
  48589. extra: 1798/1598,
  48590. bottom: 117/1915
  48591. }
  48592. },
  48593. },
  48594. [
  48595. {
  48596. name: "Normal",
  48597. height: math.unit(17, "feet"),
  48598. default: true
  48599. },
  48600. {
  48601. name: "Homewrecker",
  48602. height: math.unit(95, "feet")
  48603. },
  48604. {
  48605. name: "Planet Devourer",
  48606. height: math.unit(1008000, "miles")
  48607. },
  48608. ]
  48609. ))
  48610. characterMakers.push(() => makeCharacter(
  48611. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48612. {
  48613. front: {
  48614. height: math.unit(6 + 5/12, "feet"),
  48615. weight: math.unit(265, "lb"),
  48616. name: "Front",
  48617. image: {
  48618. source: "./media/characters/devon-childs/front.svg",
  48619. extra: 1795/1721,
  48620. bottom: 41/1836
  48621. }
  48622. },
  48623. side: {
  48624. height: math.unit(6 + 5/12, "feet"),
  48625. weight: math.unit(265, "lb"),
  48626. name: "Side",
  48627. image: {
  48628. source: "./media/characters/devon-childs/side.svg",
  48629. extra: 1812/1738,
  48630. bottom: 30/1842
  48631. }
  48632. },
  48633. back: {
  48634. height: math.unit(6 + 5/12, "feet"),
  48635. weight: math.unit(265, "lb"),
  48636. name: "Back",
  48637. image: {
  48638. source: "./media/characters/devon-childs/back.svg",
  48639. extra: 1808/1735,
  48640. bottom: 23/1831
  48641. }
  48642. },
  48643. hand: {
  48644. height: math.unit(1.464, "feet"),
  48645. name: "Hand",
  48646. image: {
  48647. source: "./media/characters/devon-childs/hand.svg"
  48648. }
  48649. },
  48650. foot: {
  48651. height: math.unit(1.6, "feet"),
  48652. name: "Foot",
  48653. image: {
  48654. source: "./media/characters/devon-childs/foot.svg"
  48655. }
  48656. },
  48657. },
  48658. [
  48659. {
  48660. name: "Micro",
  48661. height: math.unit(7, "cm")
  48662. },
  48663. {
  48664. name: "Normal",
  48665. height: math.unit(6 + 5/12, "feet"),
  48666. default: true
  48667. },
  48668. {
  48669. name: "Macro",
  48670. height: math.unit(154, "feet")
  48671. },
  48672. ]
  48673. ))
  48674. characterMakers.push(() => makeCharacter(
  48675. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48676. {
  48677. front: {
  48678. height: math.unit(6, "feet"),
  48679. weight: math.unit(180, "lb"),
  48680. name: "Front",
  48681. image: {
  48682. source: "./media/characters/lydemox-vir/front.svg",
  48683. extra: 1632/1435,
  48684. bottom: 58/1690
  48685. }
  48686. },
  48687. frontSFW: {
  48688. height: math.unit(6, "feet"),
  48689. weight: math.unit(180, "lb"),
  48690. name: "Front (SFW)",
  48691. image: {
  48692. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48693. extra: 1632/1435,
  48694. bottom: 58/1690
  48695. }
  48696. },
  48697. back: {
  48698. height: math.unit(6, "feet"),
  48699. weight: math.unit(180, "lb"),
  48700. name: "Back",
  48701. image: {
  48702. source: "./media/characters/lydemox-vir/back.svg",
  48703. extra: 1593/1408,
  48704. bottom: 31/1624
  48705. }
  48706. },
  48707. paw: {
  48708. height: math.unit(1.85, "feet"),
  48709. name: "Paw",
  48710. image: {
  48711. source: "./media/characters/lydemox-vir/paw.svg"
  48712. }
  48713. },
  48714. dick: {
  48715. height: math.unit(1.8, "feet"),
  48716. name: "Dick",
  48717. image: {
  48718. source: "./media/characters/lydemox-vir/dick.svg"
  48719. }
  48720. },
  48721. },
  48722. [
  48723. {
  48724. name: "Macro",
  48725. height: math.unit(100, "feet"),
  48726. default: true
  48727. },
  48728. {
  48729. name: "Teramacro",
  48730. height: math.unit(1, "earth")
  48731. },
  48732. {
  48733. name: "Planetary",
  48734. height: math.unit(20, "earths")
  48735. },
  48736. ]
  48737. ))
  48738. characterMakers.push(() => makeCharacter(
  48739. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48740. {
  48741. front: {
  48742. height: math.unit(15 + 8/12, "feet"),
  48743. weight: math.unit(1237, "kg"),
  48744. name: "Front",
  48745. image: {
  48746. source: "./media/characters/mia/front.svg",
  48747. extra: 1573/1446,
  48748. bottom: 58/1631
  48749. }
  48750. },
  48751. },
  48752. [
  48753. {
  48754. name: "Small",
  48755. height: math.unit(9 + 5/12, "feet")
  48756. },
  48757. {
  48758. name: "Normal",
  48759. height: math.unit(15 + 8/12, "feet"),
  48760. default: true
  48761. },
  48762. ]
  48763. ))
  48764. characterMakers.push(() => makeCharacter(
  48765. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48766. {
  48767. front: {
  48768. height: math.unit(10 + 6/12, "feet"),
  48769. weight: math.unit(1.3, "tons"),
  48770. name: "Front",
  48771. image: {
  48772. source: "./media/characters/mr-graves/front.svg",
  48773. extra: 1779/1695,
  48774. bottom: 198/1977
  48775. }
  48776. },
  48777. },
  48778. [
  48779. {
  48780. name: "Normal",
  48781. height: math.unit(10 + 6 /12, "feet"),
  48782. default: true
  48783. },
  48784. ]
  48785. ))
  48786. characterMakers.push(() => makeCharacter(
  48787. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48788. {
  48789. dressedFront: {
  48790. height: math.unit(5 + 8/12, "feet"),
  48791. weight: math.unit(125, "lb"),
  48792. name: "Dressed (Front)",
  48793. image: {
  48794. source: "./media/characters/jess/dressed-front.svg",
  48795. extra: 1176/1152,
  48796. bottom: 42/1218
  48797. }
  48798. },
  48799. dressedSide: {
  48800. height: math.unit(5 + 8/12, "feet"),
  48801. weight: math.unit(125, "lb"),
  48802. name: "Dressed (Side)",
  48803. image: {
  48804. source: "./media/characters/jess/dressed-side.svg",
  48805. extra: 1204/1190,
  48806. bottom: 6/1210
  48807. }
  48808. },
  48809. nudeFront: {
  48810. height: math.unit(5 + 8/12, "feet"),
  48811. weight: math.unit(125, "lb"),
  48812. name: "Nude (Front)",
  48813. image: {
  48814. source: "./media/characters/jess/nude-front.svg",
  48815. extra: 1176/1152,
  48816. bottom: 42/1218
  48817. }
  48818. },
  48819. nudeSide: {
  48820. height: math.unit(5 + 8/12, "feet"),
  48821. weight: math.unit(125, "lb"),
  48822. name: "Nude (Side)",
  48823. image: {
  48824. source: "./media/characters/jess/nude-side.svg",
  48825. extra: 1204/1190,
  48826. bottom: 6/1210
  48827. }
  48828. },
  48829. organsFront: {
  48830. height: math.unit(2.83799342105, "feet"),
  48831. name: "Organs (Front)",
  48832. image: {
  48833. source: "./media/characters/jess/organs-front.svg"
  48834. }
  48835. },
  48836. organsSide: {
  48837. height: math.unit(2.64225290474, "feet"),
  48838. name: "Organs (Side)",
  48839. image: {
  48840. source: "./media/characters/jess/organs-side.svg"
  48841. }
  48842. },
  48843. digestiveTractFront: {
  48844. height: math.unit(2.8106580871, "feet"),
  48845. name: "Digestive Tract (Front)",
  48846. image: {
  48847. source: "./media/characters/jess/digestive-tract-front.svg"
  48848. }
  48849. },
  48850. digestiveTractSide: {
  48851. height: math.unit(2.54365045014, "feet"),
  48852. name: "Digestive Tract (Side)",
  48853. image: {
  48854. source: "./media/characters/jess/digestive-tract-side.svg"
  48855. }
  48856. },
  48857. respiratorySystemFront: {
  48858. height: math.unit(1.11196233456, "feet"),
  48859. name: "Respiratory System (Front)",
  48860. image: {
  48861. source: "./media/characters/jess/respiratory-system-front.svg"
  48862. }
  48863. },
  48864. respiratorySystemSide: {
  48865. height: math.unit(0.89327966297, "feet"),
  48866. name: "Respiratory System (Side)",
  48867. image: {
  48868. source: "./media/characters/jess/respiratory-system-side.svg"
  48869. }
  48870. },
  48871. urinaryTractFront: {
  48872. height: math.unit(1.16126356186, "feet"),
  48873. name: "Urinary Tract (Front)",
  48874. image: {
  48875. source: "./media/characters/jess/urinary-tract-front.svg"
  48876. }
  48877. },
  48878. urinaryTractSide: {
  48879. height: math.unit(1.20910039627, "feet"),
  48880. name: "Urinary Tract (Side)",
  48881. image: {
  48882. source: "./media/characters/jess/urinary-tract-side.svg"
  48883. }
  48884. },
  48885. reproductiveOrgansFront: {
  48886. height: math.unit(0.48422591566, "feet"),
  48887. name: "Reproductive Organs (Front)",
  48888. image: {
  48889. source: "./media/characters/jess/reproductive-organs-front.svg"
  48890. }
  48891. },
  48892. reproductiveOrgansSide: {
  48893. height: math.unit(0.61553314481, "feet"),
  48894. name: "Reproductive Organs (Side)",
  48895. image: {
  48896. source: "./media/characters/jess/reproductive-organs-side.svg"
  48897. }
  48898. },
  48899. breastsFront: {
  48900. height: math.unit(0.47690395121, "feet"),
  48901. name: "Breasts (Front)",
  48902. image: {
  48903. source: "./media/characters/jess/breasts-front.svg"
  48904. }
  48905. },
  48906. breastsSide: {
  48907. height: math.unit(0.30556998307, "feet"),
  48908. name: "Breasts (Side)",
  48909. image: {
  48910. source: "./media/characters/jess/breasts-side.svg"
  48911. }
  48912. },
  48913. heartFront: {
  48914. height: math.unit(0.53011022622, "feet"),
  48915. name: "Heart (Front)",
  48916. image: {
  48917. source: "./media/characters/jess/heart-front.svg"
  48918. }
  48919. },
  48920. heartSide: {
  48921. height: math.unit(0.51790695213, "feet"),
  48922. name: "Heart (Side)",
  48923. image: {
  48924. source: "./media/characters/jess/heart-side.svg"
  48925. }
  48926. },
  48927. earsAndNoseFront: {
  48928. height: math.unit(0.29385483995, "feet"),
  48929. name: "Ears and Nose (Front)",
  48930. image: {
  48931. source: "./media/characters/jess/ears-and-nose-front.svg"
  48932. }
  48933. },
  48934. earsAndNoseSide: {
  48935. height: math.unit(0.18109658741, "feet"),
  48936. name: "Ears and Nose (Side)",
  48937. image: {
  48938. source: "./media/characters/jess/ears-and-nose-side.svg"
  48939. }
  48940. },
  48941. },
  48942. [
  48943. {
  48944. name: "Normal",
  48945. height: math.unit(5 + 8/12, "feet"),
  48946. default: true
  48947. },
  48948. ]
  48949. ))
  48950. characterMakers.push(() => makeCharacter(
  48951. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48952. {
  48953. front: {
  48954. height: math.unit(6, "feet"),
  48955. weight: math.unit(6.64467e-7, "grams"),
  48956. name: "Front",
  48957. image: {
  48958. source: "./media/characters/wimpering/front.svg",
  48959. extra: 597/587,
  48960. bottom: 34/631
  48961. }
  48962. },
  48963. },
  48964. [
  48965. {
  48966. name: "Micro",
  48967. height: math.unit(0.4, "mm"),
  48968. default: true
  48969. },
  48970. ]
  48971. ))
  48972. characterMakers.push(() => makeCharacter(
  48973. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48974. {
  48975. front: {
  48976. height: math.unit(5 + 2/12, "feet"),
  48977. weight: math.unit(110, "lb"),
  48978. name: "Front",
  48979. image: {
  48980. source: "./media/characters/keltre/front.svg",
  48981. extra: 1099/1057,
  48982. bottom: 22/1121
  48983. }
  48984. },
  48985. back: {
  48986. height: math.unit(5 + 2/12, "feet"),
  48987. weight: math.unit(110, "lb"),
  48988. name: "Back",
  48989. image: {
  48990. source: "./media/characters/keltre/back.svg",
  48991. extra: 1095/1053,
  48992. bottom: 17/1112
  48993. }
  48994. },
  48995. dressed: {
  48996. height: math.unit(5 + 2/12, "feet"),
  48997. weight: math.unit(110, "lb"),
  48998. name: "Dressed",
  48999. image: {
  49000. source: "./media/characters/keltre/dressed.svg",
  49001. extra: 1099/1057,
  49002. bottom: 22/1121
  49003. }
  49004. },
  49005. winter: {
  49006. height: math.unit(5 + 2/12, "feet"),
  49007. weight: math.unit(110, "lb"),
  49008. name: "Winter",
  49009. image: {
  49010. source: "./media/characters/keltre/winter.svg",
  49011. extra: 1099/1057,
  49012. bottom: 22/1121
  49013. }
  49014. },
  49015. head: {
  49016. height: math.unit(1.61 * 0.86, "feet"),
  49017. name: "Head",
  49018. image: {
  49019. source: "./media/characters/keltre/head.svg",
  49020. extra: 534/421,
  49021. bottom: 0/534
  49022. }
  49023. },
  49024. hand: {
  49025. height: math.unit(1.3 * 0.86, "feet"),
  49026. name: "Hand",
  49027. image: {
  49028. source: "./media/characters/keltre/hand.svg"
  49029. }
  49030. },
  49031. foot: {
  49032. height: math.unit(1.8 * 0.86, "feet"),
  49033. name: "Foot",
  49034. image: {
  49035. source: "./media/characters/keltre/foot.svg"
  49036. }
  49037. },
  49038. },
  49039. [
  49040. {
  49041. name: "Fine",
  49042. height: math.unit(1, "inch")
  49043. },
  49044. {
  49045. name: "Dimnutive",
  49046. height: math.unit(4, "inches")
  49047. },
  49048. {
  49049. name: "Tiny",
  49050. height: math.unit(1, "foot")
  49051. },
  49052. {
  49053. name: "Small",
  49054. height: math.unit(3, "feet")
  49055. },
  49056. {
  49057. name: "Normal",
  49058. height: math.unit(5 + 2/12, "feet"),
  49059. default: true
  49060. },
  49061. ]
  49062. ))
  49063. characterMakers.push(() => makeCharacter(
  49064. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49065. {
  49066. front: {
  49067. height: math.unit(6 + 2/12, "feet"),
  49068. name: "Front",
  49069. image: {
  49070. source: "./media/characters/nox/front.svg",
  49071. extra: 1917/1830,
  49072. bottom: 74/1991
  49073. }
  49074. },
  49075. back: {
  49076. height: math.unit(6 + 2/12, "feet"),
  49077. name: "Back",
  49078. image: {
  49079. source: "./media/characters/nox/back.svg",
  49080. extra: 1896/1815,
  49081. bottom: 21/1917
  49082. }
  49083. },
  49084. head: {
  49085. height: math.unit(1.1, "feet"),
  49086. name: "Head",
  49087. image: {
  49088. source: "./media/characters/nox/head.svg",
  49089. extra: 874/704,
  49090. bottom: 0/874
  49091. }
  49092. },
  49093. tattoo: {
  49094. height: math.unit(0.729, "feet"),
  49095. name: "Tattoo",
  49096. image: {
  49097. source: "./media/characters/nox/tattoo.svg"
  49098. }
  49099. },
  49100. },
  49101. [
  49102. {
  49103. name: "Normal",
  49104. height: math.unit(6 + 2/12, "feet")
  49105. },
  49106. {
  49107. name: "Gigamacro",
  49108. height: math.unit(2, "earths"),
  49109. default: true
  49110. },
  49111. {
  49112. name: "Cosmic",
  49113. height: math.unit(867, "yottameters")
  49114. },
  49115. ]
  49116. ))
  49117. characterMakers.push(() => makeCharacter(
  49118. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49119. {
  49120. front: {
  49121. height: math.unit(6, "feet"),
  49122. weight: math.unit(150, "lb"),
  49123. name: "Front",
  49124. image: {
  49125. source: "./media/characters/caspian/front.svg",
  49126. extra: 1443/1359,
  49127. bottom: 0/1443
  49128. }
  49129. },
  49130. back: {
  49131. height: math.unit(6, "feet"),
  49132. weight: math.unit(150, "lb"),
  49133. name: "Back",
  49134. image: {
  49135. source: "./media/characters/caspian/back.svg",
  49136. extra: 1379/1309,
  49137. bottom: 0/1379
  49138. }
  49139. },
  49140. head: {
  49141. height: math.unit(0.9, "feet"),
  49142. name: "Head",
  49143. image: {
  49144. source: "./media/characters/caspian/head.svg",
  49145. extra: 692/492,
  49146. bottom: 0/692
  49147. }
  49148. },
  49149. headAlt: {
  49150. height: math.unit(0.95, "feet"),
  49151. name: "Head (Alt)",
  49152. image: {
  49153. source: "./media/characters/caspian/head-alt.svg",
  49154. extra: 668/508,
  49155. bottom: 0/668
  49156. }
  49157. },
  49158. hand: {
  49159. height: math.unit(0.8, "feet"),
  49160. name: "Hand",
  49161. image: {
  49162. source: "./media/characters/caspian/hand.svg"
  49163. }
  49164. },
  49165. paw: {
  49166. height: math.unit(0.95, "feet"),
  49167. name: "Paw",
  49168. image: {
  49169. source: "./media/characters/caspian/paw.svg"
  49170. }
  49171. },
  49172. },
  49173. [
  49174. {
  49175. name: "Normal",
  49176. height: math.unit(162, "feet"),
  49177. default: true
  49178. },
  49179. ]
  49180. ))
  49181. characterMakers.push(() => makeCharacter(
  49182. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49183. {
  49184. front: {
  49185. height: math.unit(6, "feet"),
  49186. name: "Front",
  49187. image: {
  49188. source: "./media/characters/myra-aisling/front.svg",
  49189. extra: 1268/1166,
  49190. bottom: 73/1341
  49191. }
  49192. },
  49193. back: {
  49194. height: math.unit(6, "feet"),
  49195. name: "Back",
  49196. image: {
  49197. source: "./media/characters/myra-aisling/back.svg",
  49198. extra: 1249/1149,
  49199. bottom: 79/1328
  49200. }
  49201. },
  49202. dressed: {
  49203. height: math.unit(6, "feet"),
  49204. name: "Dressed",
  49205. image: {
  49206. source: "./media/characters/myra-aisling/dressed.svg",
  49207. extra: 1290/1189,
  49208. bottom: 47/1337
  49209. }
  49210. },
  49211. hand: {
  49212. height: math.unit(1.1, "feet"),
  49213. name: "Hand",
  49214. image: {
  49215. source: "./media/characters/myra-aisling/hand.svg"
  49216. }
  49217. },
  49218. paw: {
  49219. height: math.unit(1.23, "feet"),
  49220. name: "Paw",
  49221. image: {
  49222. source: "./media/characters/myra-aisling/paw.svg"
  49223. }
  49224. },
  49225. },
  49226. [
  49227. {
  49228. name: "Normal",
  49229. height: math.unit(160, "feet"),
  49230. default: true
  49231. },
  49232. ]
  49233. ))
  49234. characterMakers.push(() => makeCharacter(
  49235. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49236. {
  49237. front: {
  49238. height: math.unit(6, "feet"),
  49239. name: "Front",
  49240. image: {
  49241. source: "./media/characters/tenley-sidero/front.svg",
  49242. extra: 1365/1276,
  49243. bottom: 47/1412
  49244. }
  49245. },
  49246. back: {
  49247. height: math.unit(6, "feet"),
  49248. name: "Back",
  49249. image: {
  49250. source: "./media/characters/tenley-sidero/back.svg",
  49251. extra: 1383/1283,
  49252. bottom: 35/1418
  49253. }
  49254. },
  49255. dressed: {
  49256. height: math.unit(6, "feet"),
  49257. name: "Dressed",
  49258. image: {
  49259. source: "./media/characters/tenley-sidero/dressed.svg",
  49260. extra: 1364/1275,
  49261. bottom: 42/1406
  49262. }
  49263. },
  49264. head: {
  49265. height: math.unit(1.47, "feet"),
  49266. name: "Head",
  49267. image: {
  49268. source: "./media/characters/tenley-sidero/head.svg",
  49269. extra: 610/490,
  49270. bottom: 0/610
  49271. }
  49272. },
  49273. },
  49274. [
  49275. {
  49276. name: "Normal",
  49277. height: math.unit(154, "feet"),
  49278. default: true
  49279. },
  49280. ]
  49281. ))
  49282. characterMakers.push(() => makeCharacter(
  49283. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49284. {
  49285. front: {
  49286. height: math.unit(5, "inches"),
  49287. name: "Front",
  49288. image: {
  49289. source: "./media/characters/mallory/front.svg",
  49290. extra: 1919/1678,
  49291. bottom: 29/1948
  49292. }
  49293. },
  49294. hand: {
  49295. height: math.unit(0.73, "inches"),
  49296. name: "Hand",
  49297. image: {
  49298. source: "./media/characters/mallory/hand.svg"
  49299. }
  49300. },
  49301. paw: {
  49302. height: math.unit(0.68, "inches"),
  49303. name: "Paw",
  49304. image: {
  49305. source: "./media/characters/mallory/paw.svg"
  49306. }
  49307. },
  49308. },
  49309. [
  49310. {
  49311. name: "Small",
  49312. height: math.unit(5, "inches"),
  49313. default: true
  49314. },
  49315. ]
  49316. ))
  49317. characterMakers.push(() => makeCharacter(
  49318. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49319. {
  49320. naked: {
  49321. height: math.unit(6, "feet"),
  49322. name: "Naked",
  49323. image: {
  49324. source: "./media/characters/mab/naked.svg",
  49325. extra: 1855/1757,
  49326. bottom: 208/2063
  49327. }
  49328. },
  49329. outside: {
  49330. height: math.unit(6, "feet"),
  49331. name: "Outside",
  49332. image: {
  49333. source: "./media/characters/mab/outside.svg",
  49334. extra: 1855/1757,
  49335. bottom: 208/2063
  49336. }
  49337. },
  49338. party: {
  49339. height: math.unit(6, "feet"),
  49340. name: "Party",
  49341. image: {
  49342. source: "./media/characters/mab/party.svg",
  49343. extra: 1855/1757,
  49344. bottom: 208/2063
  49345. }
  49346. },
  49347. },
  49348. [
  49349. {
  49350. name: "Normal",
  49351. height: math.unit(165, "feet"),
  49352. default: true
  49353. },
  49354. ]
  49355. ))
  49356. characterMakers.push(() => makeCharacter(
  49357. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49358. {
  49359. front: {
  49360. height: math.unit(12, "feet"),
  49361. weight: math.unit(4000, "lb"),
  49362. name: "Front",
  49363. image: {
  49364. source: "./media/characters/winter/front.svg",
  49365. extra: 1286/943,
  49366. bottom: 112/1398
  49367. }
  49368. },
  49369. frontNsfw: {
  49370. height: math.unit(12, "feet"),
  49371. weight: math.unit(4000, "lb"),
  49372. name: "Front (NSFW)",
  49373. image: {
  49374. source: "./media/characters/winter/front-nsfw.svg",
  49375. extra: 1286/943,
  49376. bottom: 112/1398
  49377. }
  49378. },
  49379. dick: {
  49380. height: math.unit(3.79, "feet"),
  49381. name: "Dick",
  49382. image: {
  49383. source: "./media/characters/winter/dick.svg"
  49384. }
  49385. },
  49386. },
  49387. [
  49388. {
  49389. name: "Big",
  49390. height: math.unit(12, "feet"),
  49391. default: true
  49392. },
  49393. ]
  49394. ))
  49395. characterMakers.push(() => makeCharacter(
  49396. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49397. {
  49398. front: {
  49399. height: math.unit(4.1, "inches"),
  49400. name: "Front",
  49401. image: {
  49402. source: "./media/characters/alto/front.svg",
  49403. extra: 736/627,
  49404. bottom: 90/826
  49405. }
  49406. },
  49407. },
  49408. [
  49409. {
  49410. name: "Normal",
  49411. height: math.unit(4.1, "inches"),
  49412. default: true
  49413. },
  49414. ]
  49415. ))
  49416. characterMakers.push(() => makeCharacter(
  49417. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49418. {
  49419. sitting: {
  49420. height: math.unit(3, "feet"),
  49421. name: "Sitting",
  49422. image: {
  49423. source: "./media/characters/ratstrid-v/sitting.svg",
  49424. extra: 355/310,
  49425. bottom: 136/491
  49426. }
  49427. },
  49428. },
  49429. [
  49430. {
  49431. name: "Normal",
  49432. height: math.unit(3, "feet"),
  49433. default: true
  49434. },
  49435. ]
  49436. ))
  49437. characterMakers.push(() => makeCharacter(
  49438. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49439. {
  49440. back: {
  49441. height: math.unit(6, "feet"),
  49442. weight: math.unit(350, "lb"),
  49443. name: "Back",
  49444. image: {
  49445. source: "./media/characters/siz/back.svg",
  49446. extra: 1449/1274,
  49447. bottom: 13/1462
  49448. }
  49449. },
  49450. },
  49451. [
  49452. {
  49453. name: "Over-Overcompressed",
  49454. height: math.unit(8, "feet")
  49455. },
  49456. {
  49457. name: "Overcompressed",
  49458. height: math.unit(32, "feet")
  49459. },
  49460. {
  49461. name: "Compressed",
  49462. height: math.unit(128, "feet"),
  49463. default: true
  49464. },
  49465. {
  49466. name: "Half-Compressed",
  49467. height: math.unit(512, "feet")
  49468. },
  49469. {
  49470. name: "Quarter-Compressed",
  49471. height: math.unit(2048, "feet")
  49472. },
  49473. {
  49474. name: "Uncompressed?",
  49475. height: math.unit(8192, "feet")
  49476. },
  49477. ]
  49478. ))
  49479. characterMakers.push(() => makeCharacter(
  49480. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49481. {
  49482. front: {
  49483. height: math.unit(5 + 9/12, "feet"),
  49484. weight: math.unit(150, "lb"),
  49485. name: "Front",
  49486. image: {
  49487. source: "./media/characters/ven/front.svg",
  49488. extra: 1372/1320,
  49489. bottom: 73/1445
  49490. }
  49491. },
  49492. side: {
  49493. height: math.unit(5 + 9/12, "feet"),
  49494. weight: math.unit(1150, "lb"),
  49495. name: "Side",
  49496. image: {
  49497. source: "./media/characters/ven/side.svg",
  49498. extra: 1119/1070,
  49499. bottom: 42/1161
  49500. },
  49501. default: true
  49502. },
  49503. },
  49504. [
  49505. {
  49506. name: "Normal",
  49507. height: math.unit(5 + 9/12, "feet"),
  49508. default: true
  49509. },
  49510. ]
  49511. ))
  49512. characterMakers.push(() => makeCharacter(
  49513. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49514. {
  49515. front: {
  49516. height: math.unit(12, "feet"),
  49517. weight: math.unit(1000, "kg"),
  49518. name: "Front",
  49519. image: {
  49520. source: "./media/characters/maple/front.svg",
  49521. extra: 1193/1081,
  49522. bottom: 22/1215
  49523. }
  49524. },
  49525. },
  49526. [
  49527. {
  49528. name: "Compressed",
  49529. height: math.unit(7, "feet")
  49530. },
  49531. {
  49532. name: "Normal",
  49533. height: math.unit(12, "feet"),
  49534. default: true
  49535. },
  49536. ]
  49537. ))
  49538. characterMakers.push(() => makeCharacter(
  49539. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49540. {
  49541. front: {
  49542. height: math.unit(9, "feet"),
  49543. weight: math.unit(1500, "lb"),
  49544. name: "Front",
  49545. image: {
  49546. source: "./media/characters/nora/front.svg",
  49547. extra: 1348/1286,
  49548. bottom: 218/1566
  49549. }
  49550. },
  49551. erect: {
  49552. height: math.unit(9, "feet"),
  49553. weight: math.unit(11500, "lb"),
  49554. name: "Erect",
  49555. image: {
  49556. source: "./media/characters/nora/erect.svg",
  49557. extra: 1488/1433,
  49558. bottom: 133/1621
  49559. }
  49560. },
  49561. },
  49562. [
  49563. {
  49564. name: "Normal",
  49565. height: math.unit(9, "feet"),
  49566. default: true
  49567. },
  49568. ]
  49569. ))
  49570. characterMakers.push(() => makeCharacter(
  49571. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49572. {
  49573. front: {
  49574. height: math.unit(25, "feet"),
  49575. weight: math.unit(27500, "lb"),
  49576. name: "Front",
  49577. image: {
  49578. source: "./media/characters/north-caudin/front.svg",
  49579. extra: 1184/1082,
  49580. bottom: 23/1207
  49581. }
  49582. },
  49583. },
  49584. [
  49585. {
  49586. name: "Compressed",
  49587. height: math.unit(10, "feet")
  49588. },
  49589. {
  49590. name: "Normal",
  49591. height: math.unit(25, "feet"),
  49592. default: true
  49593. },
  49594. ]
  49595. ))
  49596. characterMakers.push(() => makeCharacter(
  49597. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49598. {
  49599. front: {
  49600. height: math.unit(9, "feet"),
  49601. weight: math.unit(1250, "lb"),
  49602. name: "Front",
  49603. image: {
  49604. source: "./media/characters/merrian/front.svg",
  49605. extra: 2393/2304,
  49606. bottom: 40/2433
  49607. }
  49608. },
  49609. },
  49610. [
  49611. {
  49612. name: "Normal",
  49613. height: math.unit(9, "feet"),
  49614. default: true
  49615. },
  49616. ]
  49617. ))
  49618. characterMakers.push(() => makeCharacter(
  49619. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49620. {
  49621. front: {
  49622. height: math.unit(9, "feet"),
  49623. weight: math.unit(1000, "lb"),
  49624. name: "Front",
  49625. image: {
  49626. source: "./media/characters/hazel/front.svg",
  49627. extra: 2351/2298,
  49628. bottom: 38/2389
  49629. }
  49630. },
  49631. },
  49632. [
  49633. {
  49634. name: "Normal",
  49635. height: math.unit(9, "feet"),
  49636. default: true
  49637. },
  49638. ]
  49639. ))
  49640. characterMakers.push(() => makeCharacter(
  49641. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49642. {
  49643. front: {
  49644. height: math.unit(13, "feet"),
  49645. weight: math.unit(3200, "lb"),
  49646. name: "Front",
  49647. image: {
  49648. source: "./media/characters/emma/front.svg",
  49649. extra: 2263/2029,
  49650. bottom: 68/2331
  49651. }
  49652. },
  49653. },
  49654. [
  49655. {
  49656. name: "Normal",
  49657. height: math.unit(13, "feet"),
  49658. default: true
  49659. },
  49660. ]
  49661. ))
  49662. characterMakers.push(() => makeCharacter(
  49663. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49664. {
  49665. front: {
  49666. height: math.unit(11 + 9/12, "feet"),
  49667. weight: math.unit(2500, "lb"),
  49668. name: "Front",
  49669. image: {
  49670. source: "./media/characters/ilumina/front.svg",
  49671. extra: 2248/2209,
  49672. bottom: 164/2412
  49673. }
  49674. },
  49675. },
  49676. [
  49677. {
  49678. name: "Normal",
  49679. height: math.unit(11 + 9/12, "feet"),
  49680. default: true
  49681. },
  49682. ]
  49683. ))
  49684. characterMakers.push(() => makeCharacter(
  49685. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49686. {
  49687. front: {
  49688. height: math.unit(8 + 10/12, "feet"),
  49689. weight: math.unit(1350, "lb"),
  49690. name: "Front",
  49691. image: {
  49692. source: "./media/characters/moonshine/front.svg",
  49693. extra: 2395/2288,
  49694. bottom: 40/2435
  49695. }
  49696. },
  49697. },
  49698. [
  49699. {
  49700. name: "Normal",
  49701. height: math.unit(8 + 10/12, "feet"),
  49702. default: true
  49703. },
  49704. ]
  49705. ))
  49706. characterMakers.push(() => makeCharacter(
  49707. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49708. {
  49709. front: {
  49710. height: math.unit(14, "feet"),
  49711. weight: math.unit(3400, "lb"),
  49712. name: "Front",
  49713. image: {
  49714. source: "./media/characters/aletia/front.svg",
  49715. extra: 1185/1052,
  49716. bottom: 21/1206
  49717. }
  49718. },
  49719. },
  49720. [
  49721. {
  49722. name: "Compressed",
  49723. height: math.unit(8, "feet")
  49724. },
  49725. {
  49726. name: "Normal",
  49727. height: math.unit(14, "feet"),
  49728. default: true
  49729. },
  49730. ]
  49731. ))
  49732. characterMakers.push(() => makeCharacter(
  49733. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49734. {
  49735. front: {
  49736. height: math.unit(17, "feet"),
  49737. weight: math.unit(6500, "lb"),
  49738. name: "Front",
  49739. image: {
  49740. source: "./media/characters/deidra/front.svg",
  49741. extra: 1201/1081,
  49742. bottom: 16/1217
  49743. }
  49744. },
  49745. },
  49746. [
  49747. {
  49748. name: "Compressed",
  49749. height: math.unit(9 + 6/12, "feet")
  49750. },
  49751. {
  49752. name: "Normal",
  49753. height: math.unit(17, "feet"),
  49754. default: true
  49755. },
  49756. ]
  49757. ))
  49758. characterMakers.push(() => makeCharacter(
  49759. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49760. {
  49761. front: {
  49762. height: math.unit(7 + 4/12, "feet"),
  49763. weight: math.unit(280, "lb"),
  49764. name: "Front",
  49765. image: {
  49766. source: "./media/characters/freki-yrmori/front.svg",
  49767. extra: 1286/1182,
  49768. bottom: 29/1315
  49769. }
  49770. },
  49771. maw: {
  49772. height: math.unit(0.9, "feet"),
  49773. name: "Maw",
  49774. image: {
  49775. source: "./media/characters/freki-yrmori/maw.svg"
  49776. }
  49777. },
  49778. },
  49779. [
  49780. {
  49781. name: "Normal",
  49782. height: math.unit(7 + 4/12, "feet"),
  49783. default: true
  49784. },
  49785. {
  49786. name: "Macro",
  49787. height: math.unit(38.5, "meters")
  49788. },
  49789. ]
  49790. ))
  49791. characterMakers.push(() => makeCharacter(
  49792. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49793. {
  49794. side: {
  49795. height: math.unit(47.2, "meters"),
  49796. weight: math.unit(10000, "tons"),
  49797. name: "Side",
  49798. image: {
  49799. source: "./media/characters/aetherios/side.svg",
  49800. extra: 2363/642,
  49801. bottom: 221/2584
  49802. }
  49803. },
  49804. top: {
  49805. height: math.unit(240, "meters"),
  49806. weight: math.unit(10000, "tons"),
  49807. name: "Top",
  49808. image: {
  49809. source: "./media/characters/aetherios/top.svg"
  49810. }
  49811. },
  49812. bottom: {
  49813. height: math.unit(240, "meters"),
  49814. weight: math.unit(10000, "tons"),
  49815. name: "Bottom",
  49816. image: {
  49817. source: "./media/characters/aetherios/bottom.svg"
  49818. }
  49819. },
  49820. head: {
  49821. height: math.unit(38.6, "meters"),
  49822. name: "Head",
  49823. image: {
  49824. source: "./media/characters/aetherios/head.svg",
  49825. extra: 1335/1112,
  49826. bottom: 0/1335
  49827. }
  49828. },
  49829. front: {
  49830. height: math.unit(29, "meters"),
  49831. name: "Front",
  49832. image: {
  49833. source: "./media/characters/aetherios/front.svg",
  49834. extra: 1266/953,
  49835. bottom: 158/1424
  49836. }
  49837. },
  49838. maw: {
  49839. height: math.unit(16.37, "meters"),
  49840. name: "Maw",
  49841. image: {
  49842. source: "./media/characters/aetherios/maw.svg",
  49843. extra: 748/637,
  49844. bottom: 0/748
  49845. },
  49846. extraAttributes: {
  49847. preyCapacity: {
  49848. name: "Capacity",
  49849. power: 3,
  49850. type: "volume",
  49851. base: math.unit(1000, "people")
  49852. },
  49853. tongueSize: {
  49854. name: "Tongue Size",
  49855. power: 2,
  49856. type: "area",
  49857. base: math.unit(21, "m^2")
  49858. }
  49859. }
  49860. },
  49861. forepaw: {
  49862. height: math.unit(18, "meters"),
  49863. name: "Forepaw",
  49864. image: {
  49865. source: "./media/characters/aetherios/forepaw.svg"
  49866. }
  49867. },
  49868. hindpaw: {
  49869. height: math.unit(23, "meters"),
  49870. name: "Hindpaw",
  49871. image: {
  49872. source: "./media/characters/aetherios/hindpaw.svg"
  49873. }
  49874. },
  49875. genitals: {
  49876. height: math.unit(42, "meters"),
  49877. name: "Genitals",
  49878. image: {
  49879. source: "./media/characters/aetherios/genitals.svg"
  49880. }
  49881. },
  49882. },
  49883. [
  49884. {
  49885. name: "Normal",
  49886. height: math.unit(47.2, "meters"),
  49887. default: true
  49888. },
  49889. {
  49890. name: "Macro",
  49891. height: math.unit(160, "meters")
  49892. },
  49893. {
  49894. name: "Mega",
  49895. height: math.unit(1.87, "km")
  49896. },
  49897. {
  49898. name: "Giga",
  49899. height: math.unit(40000, "km")
  49900. },
  49901. {
  49902. name: "Stellar",
  49903. height: math.unit(158000000, "km")
  49904. },
  49905. {
  49906. name: "Cosmic",
  49907. height: math.unit(9.46e12, "km")
  49908. },
  49909. ]
  49910. ))
  49911. characterMakers.push(() => makeCharacter(
  49912. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49913. {
  49914. front: {
  49915. height: math.unit(5 + 4/12, "feet"),
  49916. weight: math.unit(80, "lb"),
  49917. name: "Front",
  49918. image: {
  49919. source: "./media/characters/mizu-gieeg/front.svg",
  49920. extra: 850/709,
  49921. bottom: 52/902
  49922. }
  49923. },
  49924. back: {
  49925. height: math.unit(5 + 4/12, "feet"),
  49926. weight: math.unit(80, "lb"),
  49927. name: "Back",
  49928. image: {
  49929. source: "./media/characters/mizu-gieeg/back.svg",
  49930. extra: 882/745,
  49931. bottom: 25/907
  49932. }
  49933. },
  49934. },
  49935. [
  49936. {
  49937. name: "Normal",
  49938. height: math.unit(5 + 4/12, "feet"),
  49939. default: true
  49940. },
  49941. ]
  49942. ))
  49943. characterMakers.push(() => makeCharacter(
  49944. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49945. {
  49946. front: {
  49947. height: math.unit(6, "feet"),
  49948. name: "Front",
  49949. image: {
  49950. source: "./media/characters/roselle-st-papier/front.svg",
  49951. extra: 1430/1280,
  49952. bottom: 37/1467
  49953. }
  49954. },
  49955. back: {
  49956. height: math.unit(6, "feet"),
  49957. name: "Back",
  49958. image: {
  49959. source: "./media/characters/roselle-st-papier/back.svg",
  49960. extra: 1491/1296,
  49961. bottom: 23/1514
  49962. }
  49963. },
  49964. ear: {
  49965. height: math.unit(1.26, "feet"),
  49966. name: "Ear",
  49967. image: {
  49968. source: "./media/characters/roselle-st-papier/ear.svg"
  49969. }
  49970. },
  49971. },
  49972. [
  49973. {
  49974. name: "Normal",
  49975. height: math.unit(150, "feet"),
  49976. default: true
  49977. },
  49978. ]
  49979. ))
  49980. characterMakers.push(() => makeCharacter(
  49981. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49982. {
  49983. front: {
  49984. height: math.unit(1, "inches"),
  49985. name: "Front",
  49986. image: {
  49987. source: "./media/characters/valargent/front.svg",
  49988. extra: 1825/1694,
  49989. bottom: 62/1887
  49990. }
  49991. },
  49992. back: {
  49993. height: math.unit(1, "inches"),
  49994. name: "Back",
  49995. image: {
  49996. source: "./media/characters/valargent/back.svg",
  49997. extra: 1775/1682,
  49998. bottom: 88/1863
  49999. }
  50000. },
  50001. },
  50002. [
  50003. {
  50004. name: "Micro",
  50005. height: math.unit(1, "inch"),
  50006. default: true
  50007. },
  50008. ]
  50009. ))
  50010. characterMakers.push(() => makeCharacter(
  50011. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50012. {
  50013. front: {
  50014. height: math.unit(3.4, "meters"),
  50015. name: "Front",
  50016. image: {
  50017. source: "./media/characters/zarina/front.svg",
  50018. extra: 1733/1425,
  50019. bottom: 93/1826
  50020. }
  50021. },
  50022. squatting: {
  50023. height: math.unit(2.14, "meters"),
  50024. name: "Squatting",
  50025. image: {
  50026. source: "./media/characters/zarina/squatting.svg",
  50027. extra: 1073/788,
  50028. bottom: 63/1136
  50029. }
  50030. },
  50031. back: {
  50032. height: math.unit(2.14, "meters"),
  50033. name: "Back",
  50034. image: {
  50035. source: "./media/characters/zarina/back.svg",
  50036. extra: 1128/885,
  50037. bottom: 0/1128
  50038. }
  50039. },
  50040. },
  50041. [
  50042. {
  50043. name: "Normal",
  50044. height: math.unit(3.4, "meters"),
  50045. default: true
  50046. },
  50047. {
  50048. name: "Big",
  50049. height: math.unit(5, "meters")
  50050. },
  50051. {
  50052. name: "Macro",
  50053. height: math.unit(110, "meters")
  50054. },
  50055. ]
  50056. ))
  50057. characterMakers.push(() => makeCharacter(
  50058. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50059. {
  50060. front: {
  50061. height: math.unit(7, "feet"),
  50062. name: "Front",
  50063. image: {
  50064. source: "./media/characters/ventus-astro-fox/front.svg",
  50065. extra: 1792/1623,
  50066. bottom: 28/1820
  50067. }
  50068. },
  50069. back: {
  50070. height: math.unit(7, "feet"),
  50071. name: "Back",
  50072. image: {
  50073. source: "./media/characters/ventus-astro-fox/back.svg",
  50074. extra: 1789/1620,
  50075. bottom: 31/1820
  50076. }
  50077. },
  50078. outfit: {
  50079. height: math.unit(7, "feet"),
  50080. name: "Outfit",
  50081. image: {
  50082. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50083. extra: 1054/925,
  50084. bottom: 15/1069
  50085. }
  50086. },
  50087. head: {
  50088. height: math.unit(1.12, "feet"),
  50089. name: "Head",
  50090. image: {
  50091. source: "./media/characters/ventus-astro-fox/head.svg",
  50092. extra: 866/504,
  50093. bottom: 0/866
  50094. }
  50095. },
  50096. hand: {
  50097. height: math.unit(1, "feet"),
  50098. name: "Hand",
  50099. image: {
  50100. source: "./media/characters/ventus-astro-fox/hand.svg"
  50101. }
  50102. },
  50103. paw: {
  50104. height: math.unit(1.5, "feet"),
  50105. name: "Paw",
  50106. image: {
  50107. source: "./media/characters/ventus-astro-fox/paw.svg"
  50108. }
  50109. },
  50110. },
  50111. [
  50112. {
  50113. name: "Normal",
  50114. height: math.unit(7, "feet"),
  50115. default: true
  50116. },
  50117. {
  50118. name: "Macro",
  50119. height: math.unit(200, "feet")
  50120. },
  50121. {
  50122. name: "Cosmic",
  50123. height: math.unit(3, "universes")
  50124. },
  50125. ]
  50126. ))
  50127. characterMakers.push(() => makeCharacter(
  50128. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50129. {
  50130. front: {
  50131. height: math.unit(3, "meters"),
  50132. weight: math.unit(7000, "lb"),
  50133. name: "Front",
  50134. image: {
  50135. source: "./media/characters/core-t/front.svg",
  50136. extra: 5729/4941,
  50137. bottom: 1129/6858
  50138. }
  50139. },
  50140. },
  50141. [
  50142. {
  50143. name: "Big",
  50144. height: math.unit(3, "meters"),
  50145. default: true
  50146. },
  50147. ]
  50148. ))
  50149. characterMakers.push(() => makeCharacter(
  50150. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50151. {
  50152. normal: {
  50153. height: math.unit(6 + 6/12, "feet"),
  50154. weight: math.unit(275, "lb"),
  50155. name: "Front",
  50156. image: {
  50157. source: "./media/characters/cadbunny/normal.svg",
  50158. extra: 1129/947,
  50159. bottom: 93/1222
  50160. },
  50161. default: true,
  50162. form: "normal"
  50163. },
  50164. gigantamax: {
  50165. height: math.unit(26, "feet"),
  50166. weight: math.unit(16000, "lb"),
  50167. name: "Front",
  50168. image: {
  50169. source: "./media/characters/cadbunny/gigantamax.svg",
  50170. extra: 1133/944,
  50171. bottom: 90/1223
  50172. },
  50173. default: true,
  50174. form: "gigantamax"
  50175. },
  50176. },
  50177. [
  50178. {
  50179. name: "Normal",
  50180. height: math.unit(6 + 6/12, "feet"),
  50181. default: true,
  50182. form: "normal"
  50183. },
  50184. {
  50185. name: "Small",
  50186. height: math.unit(26, "feet"),
  50187. default: true,
  50188. form: "gigantamax"
  50189. },
  50190. {
  50191. name: "Large",
  50192. height: math.unit(78, "feet"),
  50193. form: "gigantamax"
  50194. },
  50195. ],
  50196. {
  50197. "normal": {
  50198. name: "Normal",
  50199. default: true
  50200. },
  50201. "gigantamax": {
  50202. name: "Gigantamax"
  50203. }
  50204. }
  50205. ))
  50206. characterMakers.push(() => makeCharacter(
  50207. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50208. {
  50209. anthroFront: {
  50210. height: math.unit(8, "feet"),
  50211. weight: math.unit(300, "lb"),
  50212. name: "Front",
  50213. image: {
  50214. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50215. extra: 1272/1176,
  50216. bottom: 53/1325
  50217. },
  50218. form: "anthro",
  50219. default: true
  50220. },
  50221. feralSide: {
  50222. height: math.unit(4, "feet"),
  50223. weight: math.unit(250, "lb"),
  50224. name: "Side",
  50225. image: {
  50226. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50227. extra: 731/621,
  50228. bottom: 0/731
  50229. },
  50230. form: "feral",
  50231. default: true
  50232. },
  50233. },
  50234. [
  50235. {
  50236. name: "Regular",
  50237. height: math.unit(8, "feet"),
  50238. form: "anthro"
  50239. },
  50240. {
  50241. name: "Macro",
  50242. height: math.unit(250, "feet"),
  50243. form: "anthro",
  50244. default: true
  50245. },
  50246. {
  50247. name: "Regular",
  50248. height: math.unit(4, "feet"),
  50249. form: "feral"
  50250. },
  50251. {
  50252. name: "Macro",
  50253. height: math.unit(125, "feet"),
  50254. form: "feral",
  50255. default: true
  50256. },
  50257. ],
  50258. {
  50259. "anthro": {
  50260. name: "Anthro",
  50261. default: true
  50262. },
  50263. "feral": {
  50264. name: "Feral",
  50265. },
  50266. }
  50267. ))
  50268. characterMakers.push(() => makeCharacter(
  50269. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50270. {
  50271. front: {
  50272. height: math.unit(11 + 10/12, "feet"),
  50273. weight: math.unit(1587, "kg"),
  50274. name: "Front",
  50275. image: {
  50276. source: "./media/characters/maple-javira-dragon/front.svg",
  50277. extra: 1136/744,
  50278. bottom: 73/1209
  50279. }
  50280. },
  50281. side: {
  50282. height: math.unit(11 + 10/12, "feet"),
  50283. weight: math.unit(1587, "kg"),
  50284. name: "Side",
  50285. image: {
  50286. source: "./media/characters/maple-javira-dragon/side.svg",
  50287. extra: 712/505,
  50288. bottom: 17/729
  50289. }
  50290. },
  50291. head: {
  50292. height: math.unit(8.05, "feet"),
  50293. name: "Head",
  50294. image: {
  50295. source: "./media/characters/maple-javira-dragon/head.svg",
  50296. extra: 1420/1344,
  50297. bottom: 0/1420
  50298. }
  50299. },
  50300. },
  50301. [
  50302. {
  50303. name: "Normal",
  50304. height: math.unit(11 + 10/12, "feet"),
  50305. default: true
  50306. },
  50307. ]
  50308. ))
  50309. characterMakers.push(() => makeCharacter(
  50310. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50311. {
  50312. front: {
  50313. height: math.unit(117, "cm"),
  50314. weight: math.unit(50, "kg"),
  50315. name: "Front",
  50316. image: {
  50317. source: "./media/characters/sonia-wyverntail/front.svg",
  50318. extra: 708/592,
  50319. bottom: 25/733
  50320. }
  50321. },
  50322. },
  50323. [
  50324. {
  50325. name: "Normal",
  50326. height: math.unit(117, "cm"),
  50327. default: true
  50328. },
  50329. ]
  50330. ))
  50331. characterMakers.push(() => makeCharacter(
  50332. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50333. {
  50334. front: {
  50335. height: math.unit(6 + 5/12, "feet"),
  50336. name: "Front",
  50337. image: {
  50338. source: "./media/characters/micah/front.svg",
  50339. extra: 1758/1546,
  50340. bottom: 214/1972
  50341. }
  50342. },
  50343. },
  50344. [
  50345. {
  50346. name: "Normal",
  50347. height: math.unit(6 + 5/12, "feet"),
  50348. default: true
  50349. },
  50350. ]
  50351. ))
  50352. characterMakers.push(() => makeCharacter(
  50353. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50354. {
  50355. front: {
  50356. height: math.unit(5 + 10/12, "feet"),
  50357. weight: math.unit(220, "lb"),
  50358. name: "Front",
  50359. image: {
  50360. source: "./media/characters/zarya/front.svg",
  50361. extra: 593/572,
  50362. bottom: 50/643
  50363. }
  50364. },
  50365. back: {
  50366. height: math.unit(5 + 10/12, "feet"),
  50367. weight: math.unit(220, "lb"),
  50368. name: "Back",
  50369. image: {
  50370. source: "./media/characters/zarya/back.svg",
  50371. extra: 603/582,
  50372. bottom: 38/641
  50373. }
  50374. },
  50375. },
  50376. [
  50377. {
  50378. name: "Normal",
  50379. height: math.unit(5 + 10/12, "feet"),
  50380. default: true
  50381. },
  50382. ]
  50383. ))
  50384. characterMakers.push(() => makeCharacter(
  50385. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50386. {
  50387. front: {
  50388. height: math.unit(7.5, "feet"),
  50389. name: "Front",
  50390. image: {
  50391. source: "./media/characters/sven-hatisson/front.svg",
  50392. extra: 917/857,
  50393. bottom: 42/959
  50394. }
  50395. },
  50396. back: {
  50397. height: math.unit(7.5, "feet"),
  50398. name: "Back",
  50399. image: {
  50400. source: "./media/characters/sven-hatisson/back.svg",
  50401. extra: 903/856,
  50402. bottom: 15/918
  50403. }
  50404. },
  50405. },
  50406. [
  50407. {
  50408. name: "Base Height",
  50409. height: math.unit(7.5, "feet")
  50410. },
  50411. {
  50412. name: "Usual Height",
  50413. height: math.unit(13.5, "feet"),
  50414. default: true
  50415. },
  50416. {
  50417. name: "Smaller Macro",
  50418. height: math.unit(85, "feet")
  50419. },
  50420. {
  50421. name: "Moderate Macro",
  50422. height: math.unit(320, "feet")
  50423. },
  50424. {
  50425. name: "Large Macro",
  50426. height: math.unit(1000, "feet")
  50427. },
  50428. {
  50429. name: "Largest Size",
  50430. height: math.unit(2, "miles")
  50431. },
  50432. ]
  50433. ))
  50434. characterMakers.push(() => makeCharacter(
  50435. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50436. {
  50437. side: {
  50438. height: math.unit(1.8, "meters"),
  50439. weight: math.unit(275, "kg"),
  50440. name: "Side",
  50441. image: {
  50442. source: "./media/characters/terra/side.svg",
  50443. extra: 1273/1147,
  50444. bottom: 0/1273
  50445. }
  50446. },
  50447. },
  50448. [
  50449. {
  50450. name: "Normal",
  50451. height: math.unit(16.2, "meters"),
  50452. default: true
  50453. },
  50454. ]
  50455. ))
  50456. characterMakers.push(() => makeCharacter(
  50457. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50458. {
  50459. borzoiFront: {
  50460. height: math.unit(6 + 9/12, "feet"),
  50461. name: "Front",
  50462. image: {
  50463. source: "./media/characters/rae/borzoi-front.svg",
  50464. extra: 1161/1098,
  50465. bottom: 31/1192
  50466. },
  50467. form: "borzoi",
  50468. default: true
  50469. },
  50470. werewolfFront: {
  50471. height: math.unit(8 + 7/12, "feet"),
  50472. name: "Front",
  50473. image: {
  50474. source: "./media/characters/rae/werewolf-front.svg",
  50475. extra: 1411/1334,
  50476. bottom: 127/1538
  50477. },
  50478. form: "werewolf",
  50479. default: true
  50480. },
  50481. },
  50482. [
  50483. {
  50484. name: "Normal",
  50485. height: math.unit(6 + 9/12, "feet"),
  50486. default: true,
  50487. form: "borzoi"
  50488. },
  50489. {
  50490. name: "Normal",
  50491. height: math.unit(8 + 7/12, "feet"),
  50492. default: true,
  50493. form: "werewolf"
  50494. },
  50495. ],
  50496. {
  50497. "borzoi": {
  50498. name: "Borzoi",
  50499. default: true
  50500. },
  50501. "werewolf": {
  50502. name: "Werewolf",
  50503. },
  50504. }
  50505. ))
  50506. characterMakers.push(() => makeCharacter(
  50507. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50508. {
  50509. front: {
  50510. height: math.unit(8 + 7/12, "feet"),
  50511. weight: math.unit(482, "lb"),
  50512. name: "Front",
  50513. image: {
  50514. source: "./media/characters/kit/front.svg",
  50515. extra: 1247/1103,
  50516. bottom: 41/1288
  50517. }
  50518. },
  50519. back: {
  50520. height: math.unit(8 + 7/12, "feet"),
  50521. weight: math.unit(482, "lb"),
  50522. name: "Back",
  50523. image: {
  50524. source: "./media/characters/kit/back.svg",
  50525. extra: 1252/1123,
  50526. bottom: 21/1273
  50527. }
  50528. },
  50529. paw: {
  50530. height: math.unit(1.46, "feet"),
  50531. name: "Paw",
  50532. image: {
  50533. source: "./media/characters/kit/paw.svg"
  50534. }
  50535. },
  50536. },
  50537. [
  50538. {
  50539. name: "Normal",
  50540. height: math.unit(2.61, "meters"),
  50541. default: true
  50542. },
  50543. {
  50544. name: "\"Tall\"",
  50545. height: math.unit(8.21, "meters")
  50546. },
  50547. {
  50548. name: "Tall",
  50549. height: math.unit(19.6, "meters")
  50550. },
  50551. {
  50552. name: "Very Tall",
  50553. height: math.unit(57.91, "meters")
  50554. },
  50555. {
  50556. name: "Semi-Macro",
  50557. height: math.unit(138.64, "meters")
  50558. },
  50559. {
  50560. name: "Macro",
  50561. height: math.unit(831.99, "meters")
  50562. },
  50563. {
  50564. name: "EX-Macro",
  50565. height: math.unit(96451121, "meters")
  50566. },
  50567. {
  50568. name: "S1-Omnipotent",
  50569. height: math.unit(4.42074e+9, "meters")
  50570. },
  50571. {
  50572. name: "S2-Omnipotent",
  50573. height: math.unit(9.42074e+17, "meters")
  50574. },
  50575. {
  50576. name: "Omnipotent",
  50577. height: math.unit(4.23112e+24, "meters")
  50578. },
  50579. {
  50580. name: "Hypergod",
  50581. height: math.unit(5.05176e+27, "meters")
  50582. },
  50583. {
  50584. name: "Hypergod-EX",
  50585. height: math.unit(9.45532e+49, "meters")
  50586. },
  50587. {
  50588. name: "Hypergod-SP",
  50589. height: math.unit(9.45532e+195, "meters")
  50590. },
  50591. ]
  50592. ))
  50593. characterMakers.push(() => makeCharacter(
  50594. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50595. {
  50596. side: {
  50597. height: math.unit(0.6, "meters"),
  50598. weight: math.unit(24, "kg"),
  50599. name: "Side",
  50600. image: {
  50601. source: "./media/characters/celeste/side.svg",
  50602. extra: 810/517,
  50603. bottom: 53/863
  50604. }
  50605. },
  50606. },
  50607. [
  50608. {
  50609. name: "Velociraptor",
  50610. height: math.unit(0.6, "meters"),
  50611. default: true
  50612. },
  50613. {
  50614. name: "Utahraptor",
  50615. height: math.unit(1.8, "meters")
  50616. },
  50617. {
  50618. name: "Gallimimus",
  50619. height: math.unit(4.0, "meters")
  50620. },
  50621. {
  50622. name: "Large",
  50623. height: math.unit(20, "meters")
  50624. },
  50625. {
  50626. name: "Planetary",
  50627. height: math.unit(50, "megameters")
  50628. },
  50629. {
  50630. name: "Stellar",
  50631. height: math.unit(1.5, "gigameters")
  50632. },
  50633. {
  50634. name: "Galactic",
  50635. height: math.unit(100, "exameters")
  50636. },
  50637. ]
  50638. ))
  50639. characterMakers.push(() => makeCharacter(
  50640. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50641. {
  50642. front: {
  50643. height: math.unit(6, "feet"),
  50644. weight: math.unit(210, "lb"),
  50645. name: "Front",
  50646. image: {
  50647. source: "./media/characters/glacia/front.svg",
  50648. extra: 958/901,
  50649. bottom: 45/1003
  50650. }
  50651. },
  50652. },
  50653. [
  50654. {
  50655. name: "Macro",
  50656. height: math.unit(1000, "meters"),
  50657. default: true
  50658. },
  50659. ]
  50660. ))
  50661. characterMakers.push(() => makeCharacter(
  50662. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50663. {
  50664. front: {
  50665. height: math.unit(4, "meters"),
  50666. name: "Front",
  50667. image: {
  50668. source: "./media/characters/giri/front.svg",
  50669. extra: 966/894,
  50670. bottom: 21/987
  50671. }
  50672. },
  50673. },
  50674. [
  50675. {
  50676. name: "Normal",
  50677. height: math.unit(4, "meters"),
  50678. default: true
  50679. },
  50680. ]
  50681. ))
  50682. characterMakers.push(() => makeCharacter(
  50683. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50684. {
  50685. back: {
  50686. height: math.unit(4, "feet"),
  50687. weight: math.unit(37, "lb"),
  50688. name: "Back",
  50689. image: {
  50690. source: "./media/characters/tin/back.svg",
  50691. extra: 845/780,
  50692. bottom: 28/873
  50693. }
  50694. },
  50695. },
  50696. [
  50697. {
  50698. name: "Normal",
  50699. height: math.unit(4, "feet"),
  50700. default: true
  50701. },
  50702. ]
  50703. ))
  50704. characterMakers.push(() => makeCharacter(
  50705. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50706. {
  50707. front: {
  50708. height: math.unit(25, "feet"),
  50709. name: "Front",
  50710. image: {
  50711. source: "./media/characters/cadenza-vivace/front.svg",
  50712. extra: 1842/1578,
  50713. bottom: 30/1872
  50714. }
  50715. },
  50716. },
  50717. [
  50718. {
  50719. name: "Macro",
  50720. height: math.unit(25, "feet"),
  50721. default: true
  50722. },
  50723. ]
  50724. ))
  50725. characterMakers.push(() => makeCharacter(
  50726. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50727. {
  50728. front: {
  50729. height: math.unit(10, "feet"),
  50730. weight: math.unit(625, "kg"),
  50731. name: "Front",
  50732. image: {
  50733. source: "./media/characters/zain/front.svg",
  50734. extra: 1682/1498,
  50735. bottom: 223/1905
  50736. }
  50737. },
  50738. back: {
  50739. height: math.unit(10, "feet"),
  50740. weight: math.unit(625, "kg"),
  50741. name: "Back",
  50742. image: {
  50743. source: "./media/characters/zain/back.svg",
  50744. extra: 1814/1657,
  50745. bottom: 152/1966
  50746. }
  50747. },
  50748. head: {
  50749. height: math.unit(10, "feet"),
  50750. weight: math.unit(625, "kg"),
  50751. name: "Head",
  50752. image: {
  50753. source: "./media/characters/zain/head.svg",
  50754. extra: 1059/762,
  50755. bottom: 0/1059
  50756. }
  50757. },
  50758. },
  50759. [
  50760. {
  50761. name: "Normal",
  50762. height: math.unit(10, "feet"),
  50763. default: true
  50764. },
  50765. ]
  50766. ))
  50767. characterMakers.push(() => makeCharacter(
  50768. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50769. {
  50770. front: {
  50771. height: math.unit(6 + 5/12, "feet"),
  50772. weight: math.unit(750, "lb"),
  50773. name: "Front",
  50774. image: {
  50775. source: "./media/characters/ruchex/front.svg",
  50776. extra: 877/820,
  50777. bottom: 17/894
  50778. },
  50779. extraAttributes: {
  50780. "width": {
  50781. name: "Width",
  50782. power: 1,
  50783. type: "length",
  50784. base: math.unit(4.757, "feet")
  50785. },
  50786. }
  50787. },
  50788. },
  50789. [
  50790. {
  50791. name: "Normal",
  50792. height: math.unit(6 + 5/12, "feet"),
  50793. default: true
  50794. },
  50795. ]
  50796. ))
  50797. characterMakers.push(() => makeCharacter(
  50798. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50799. {
  50800. dressedFront: {
  50801. height: math.unit(191, "cm"),
  50802. weight: math.unit(80, "kg"),
  50803. name: "Front",
  50804. image: {
  50805. source: "./media/characters/buster/dressed-front.svg",
  50806. extra: 1022/973,
  50807. bottom: 69/1091
  50808. }
  50809. },
  50810. dressedBack: {
  50811. height: math.unit(191, "cm"),
  50812. weight: math.unit(80, "kg"),
  50813. name: "Back",
  50814. image: {
  50815. source: "./media/characters/buster/dressed-back.svg",
  50816. extra: 1018/970,
  50817. bottom: 55/1073
  50818. }
  50819. },
  50820. nudeFront: {
  50821. height: math.unit(191, "cm"),
  50822. weight: math.unit(80, "kg"),
  50823. name: "Front (Nude)",
  50824. image: {
  50825. source: "./media/characters/buster/nude-front.svg",
  50826. extra: 1022/973,
  50827. bottom: 69/1091
  50828. }
  50829. },
  50830. nudeBack: {
  50831. height: math.unit(191, "cm"),
  50832. weight: math.unit(80, "kg"),
  50833. name: "Back (Nude)",
  50834. image: {
  50835. source: "./media/characters/buster/nude-back.svg",
  50836. extra: 1018/970,
  50837. bottom: 55/1073
  50838. }
  50839. },
  50840. dick: {
  50841. height: math.unit(2.59, "feet"),
  50842. name: "Dick",
  50843. image: {
  50844. source: "./media/characters/buster/dick.svg"
  50845. }
  50846. },
  50847. ass: {
  50848. height: math.unit(1.2, "feet"),
  50849. name: "Ass",
  50850. image: {
  50851. source: "./media/characters/buster/ass.svg"
  50852. }
  50853. },
  50854. },
  50855. [
  50856. {
  50857. name: "Normal",
  50858. height: math.unit(191, "cm"),
  50859. default: true
  50860. },
  50861. ]
  50862. ))
  50863. characterMakers.push(() => makeCharacter(
  50864. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  50865. {
  50866. side: {
  50867. height: math.unit(8.1, "feet"),
  50868. weight: math.unit(3500, "lb"),
  50869. name: "Side",
  50870. image: {
  50871. source: "./media/characters/sonya/side.svg",
  50872. extra: 1730/1317,
  50873. bottom: 86/1816
  50874. }
  50875. },
  50876. },
  50877. [
  50878. {
  50879. name: "Normal",
  50880. height: math.unit(8.1, "feet"),
  50881. default: true
  50882. },
  50883. ]
  50884. ))
  50885. characterMakers.push(() => makeCharacter(
  50886. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  50887. {
  50888. front: {
  50889. height: math.unit(6, "feet"),
  50890. weight: math.unit(150, "lb"),
  50891. name: "Front",
  50892. image: {
  50893. source: "./media/characters/cadence-andrysiak/front.svg",
  50894. extra: 1164/1121,
  50895. bottom: 60/1224
  50896. }
  50897. },
  50898. back: {
  50899. height: math.unit(6, "feet"),
  50900. weight: math.unit(150, "lb"),
  50901. name: "Back",
  50902. image: {
  50903. source: "./media/characters/cadence-andrysiak/back.svg",
  50904. extra: 1200/1165,
  50905. bottom: 9/1209
  50906. }
  50907. },
  50908. dressed: {
  50909. height: math.unit(6, "feet"),
  50910. weight: math.unit(150, "lb"),
  50911. name: "Dressed",
  50912. image: {
  50913. source: "./media/characters/cadence-andrysiak/dressed.svg",
  50914. extra: 1164/1121,
  50915. bottom: 60/1224
  50916. }
  50917. },
  50918. },
  50919. [
  50920. {
  50921. name: "Micro",
  50922. height: math.unit(1, "mm")
  50923. },
  50924. {
  50925. name: "Normal",
  50926. height: math.unit(6, "feet"),
  50927. default: true
  50928. },
  50929. ]
  50930. ))
  50931. characterMakers.push(() => makeCharacter(
  50932. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  50933. {
  50934. front: {
  50935. height: math.unit(60, "inches"),
  50936. weight: math.unit(16, "lb"),
  50937. preyCapacity: math.unit(80, "liters"),
  50938. name: "Front",
  50939. image: {
  50940. source: "./media/characters/penny-lynx/front.svg",
  50941. extra: 1959/1769,
  50942. bottom: 49/2008
  50943. }
  50944. },
  50945. },
  50946. [
  50947. {
  50948. name: "Nokia",
  50949. height: math.unit(2, "inches")
  50950. },
  50951. {
  50952. name: "Desktop",
  50953. height: math.unit(24, "inches")
  50954. },
  50955. {
  50956. name: "TV",
  50957. height: math.unit(60, "inches")
  50958. },
  50959. {
  50960. name: "Jumbotron",
  50961. height: math.unit(12, "feet")
  50962. },
  50963. {
  50964. name: "Billboard",
  50965. height: math.unit(48, "feet"),
  50966. default: true
  50967. },
  50968. {
  50969. name: "IMAX",
  50970. height: math.unit(96, "feet")
  50971. },
  50972. {
  50973. name: "SINGULARITY",
  50974. height: math.unit(864938, "miles")
  50975. },
  50976. ]
  50977. ))
  50978. characterMakers.push(() => makeCharacter(
  50979. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  50980. {
  50981. front: {
  50982. height: math.unit(5 + 4/12, "feet"),
  50983. weight: math.unit(230, "lb"),
  50984. name: "Front",
  50985. image: {
  50986. source: "./media/characters/sukebe/front.svg",
  50987. extra: 2130/2038,
  50988. bottom: 90/2220
  50989. }
  50990. },
  50991. back: {
  50992. height: math.unit(3.48, "feet"),
  50993. weight: math.unit(230, "lb"),
  50994. name: "Back",
  50995. image: {
  50996. source: "./media/characters/sukebe/back.svg",
  50997. extra: 1670/1604,
  50998. bottom: 0/1670
  50999. }
  51000. },
  51001. },
  51002. [
  51003. {
  51004. name: "Normal",
  51005. height: math.unit(5 + 4/12, "feet"),
  51006. default: true
  51007. },
  51008. ]
  51009. ))
  51010. characterMakers.push(() => makeCharacter(
  51011. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51012. {
  51013. front: {
  51014. height: math.unit(6, "feet"),
  51015. name: "Front",
  51016. image: {
  51017. source: "./media/characters/nylla/front.svg",
  51018. extra: 1868/1699,
  51019. bottom: 97/1965
  51020. }
  51021. },
  51022. back: {
  51023. height: math.unit(6, "feet"),
  51024. name: "Back",
  51025. image: {
  51026. source: "./media/characters/nylla/back.svg",
  51027. extra: 1889/1712,
  51028. bottom: 93/1982
  51029. }
  51030. },
  51031. frontNsfw: {
  51032. height: math.unit(6, "feet"),
  51033. name: "Front (NSFW)",
  51034. image: {
  51035. source: "./media/characters/nylla/front-nsfw.svg",
  51036. extra: 1868/1699,
  51037. bottom: 97/1965
  51038. },
  51039. extraAttributes: {
  51040. "dickLength": {
  51041. name: "Dick Length",
  51042. power: 1,
  51043. type: "length",
  51044. base: math.unit(1.4, "feet")
  51045. },
  51046. "cumVolume": {
  51047. name: "Cum Volume",
  51048. power: 3,
  51049. type: "volume",
  51050. base: math.unit(100, "mL")
  51051. },
  51052. }
  51053. },
  51054. backNsfw: {
  51055. height: math.unit(6, "feet"),
  51056. name: "Back (NSFW)",
  51057. image: {
  51058. source: "./media/characters/nylla/back-nsfw.svg",
  51059. extra: 1889/1712,
  51060. bottom: 93/1982
  51061. }
  51062. },
  51063. maw: {
  51064. height: math.unit(2.10, "feet"),
  51065. name: "Maw",
  51066. image: {
  51067. source: "./media/characters/nylla/maw.svg"
  51068. }
  51069. },
  51070. paws: {
  51071. height: math.unit(2.06, "feet"),
  51072. name: "Paws",
  51073. image: {
  51074. source: "./media/characters/nylla/paws.svg"
  51075. }
  51076. },
  51077. muzzle: {
  51078. height: math.unit(0.61, "feet"),
  51079. name: "Muzzle",
  51080. image: {
  51081. source: "./media/characters/nylla/muzzle.svg"
  51082. }
  51083. },
  51084. sheath: {
  51085. height: math.unit(1.305, "feet"),
  51086. name: "Sheath",
  51087. image: {
  51088. source: "./media/characters/nylla/sheath.svg"
  51089. }
  51090. },
  51091. },
  51092. [
  51093. {
  51094. name: "Micro",
  51095. height: math.unit(7.5, "inches")
  51096. },
  51097. {
  51098. name: "Normal",
  51099. height: math.unit(7, "feet"),
  51100. default: true
  51101. },
  51102. {
  51103. name: "Macro",
  51104. height: math.unit(60, "feet")
  51105. },
  51106. {
  51107. name: "Mega",
  51108. height: math.unit(200, "feet")
  51109. },
  51110. ]
  51111. ))
  51112. characterMakers.push(() => makeCharacter(
  51113. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51114. {
  51115. front: {
  51116. height: math.unit(10, "feet"),
  51117. weight: math.unit(2300, "lb"),
  51118. name: "Front",
  51119. image: {
  51120. source: "./media/characters/hunt3r/front.svg",
  51121. extra: 1909/1742,
  51122. bottom: 46/1955
  51123. }
  51124. },
  51125. },
  51126. [
  51127. {
  51128. name: "Normal",
  51129. height: math.unit(10, "feet"),
  51130. default: true
  51131. },
  51132. ]
  51133. ))
  51134. characterMakers.push(() => makeCharacter(
  51135. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51136. {
  51137. dressed: {
  51138. height: math.unit(11, "feet"),
  51139. weight: math.unit(18500, "lb"),
  51140. preyCapacity: math.unit(9, "people"),
  51141. name: "Dressed",
  51142. image: {
  51143. source: "./media/characters/cylphis/dressed.svg",
  51144. extra: 1028/1003,
  51145. bottom: 75/1103
  51146. },
  51147. },
  51148. undressed: {
  51149. height: math.unit(11, "feet"),
  51150. weight: math.unit(18500, "lb"),
  51151. preyCapacity: math.unit(9, "people"),
  51152. name: "Undressed",
  51153. image: {
  51154. source: "./media/characters/cylphis/undressed.svg",
  51155. extra: 1028/1003,
  51156. bottom: 75/1103
  51157. }
  51158. },
  51159. full: {
  51160. height: math.unit(11, "feet"),
  51161. weight: math.unit(18500 + 150*9, "lb"),
  51162. preyCapacity: math.unit(9, "people"),
  51163. name: "Full",
  51164. image: {
  51165. source: "./media/characters/cylphis/full.svg",
  51166. extra: 1028/1003,
  51167. bottom: 75/1103
  51168. }
  51169. },
  51170. },
  51171. [
  51172. {
  51173. name: "Small",
  51174. height: math.unit(8, "feet")
  51175. },
  51176. {
  51177. name: "Normal",
  51178. height: math.unit(11, "feet"),
  51179. default: true
  51180. },
  51181. ]
  51182. ))
  51183. characterMakers.push(() => makeCharacter(
  51184. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51185. {
  51186. front: {
  51187. height: math.unit(2 + 7/12, "feet"),
  51188. name: "Front",
  51189. image: {
  51190. source: "./media/characters/orishan/front.svg",
  51191. extra: 1058/1023,
  51192. bottom: 23/1081
  51193. }
  51194. },
  51195. back: {
  51196. height: math.unit(2 + 7/12, "feet"),
  51197. name: "Back",
  51198. image: {
  51199. source: "./media/characters/orishan/back.svg",
  51200. extra: 1058/1023,
  51201. bottom: 23/1081
  51202. }
  51203. },
  51204. },
  51205. [
  51206. {
  51207. name: "Micro",
  51208. height: math.unit(2, "cm")
  51209. },
  51210. {
  51211. name: "Normal",
  51212. height: math.unit(2 + 7/12, "feet"),
  51213. default: true
  51214. },
  51215. ]
  51216. ))
  51217. characterMakers.push(() => makeCharacter(
  51218. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51219. {
  51220. front: {
  51221. height: math.unit(3, "meters"),
  51222. weight: math.unit(508, "kg"),
  51223. name: "Front",
  51224. image: {
  51225. source: "./media/characters/seranis/front.svg",
  51226. extra: 1478/1454,
  51227. bottom: 41/1519
  51228. }
  51229. },
  51230. },
  51231. [
  51232. {
  51233. name: "Normal",
  51234. height: math.unit(3, "meters"),
  51235. default: true
  51236. },
  51237. {
  51238. name: "Macro",
  51239. height: math.unit(108, "meters")
  51240. },
  51241. {
  51242. name: "Megamacro",
  51243. height: math.unit(1250, "meters")
  51244. },
  51245. ]
  51246. ))
  51247. //characters
  51248. function makeCharacters() {
  51249. const results = [];
  51250. characterMakers.forEach(character => {
  51251. results.push(character());
  51252. });
  51253. return results;
  51254. }