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

53164 行
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. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["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: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. }
  2039. //species
  2040. function getSpeciesInfo(speciesList) {
  2041. let result = new Set();
  2042. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2043. result.add(entry)
  2044. });
  2045. return Array.from(result);
  2046. };
  2047. function getSpeciesInfoHelper(species) {
  2048. if (!speciesData[species]) {
  2049. console.warn(species + " doesn't exist");
  2050. return [];
  2051. }
  2052. if (speciesData[species].parents) {
  2053. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2054. } else {
  2055. return [species];
  2056. }
  2057. }
  2058. characterMakers.push(() => makeCharacter(
  2059. {
  2060. name: "Fen",
  2061. species: ["crux"],
  2062. description: {
  2063. title: "Bio",
  2064. text: "Very furry. Sheds on everything."
  2065. },
  2066. tags: [
  2067. "anthro",
  2068. "goo"
  2069. ]
  2070. },
  2071. {
  2072. front: {
  2073. height: math.unit(12, "feet"),
  2074. weight: math.unit(2400, "lb"),
  2075. name: "Front",
  2076. image: {
  2077. source: "./media/characters/fen/front.svg",
  2078. extra: 1804/1562,
  2079. bottom: 205/2009
  2080. },
  2081. extraAttributes: {
  2082. pawSize: {
  2083. name: "Paw Size",
  2084. power: 2,
  2085. type: "area",
  2086. base: math.unit(0.35, "m^2")
  2087. }
  2088. }
  2089. },
  2090. diving: {
  2091. height: math.unit(4.9, "meters"),
  2092. weight: math.unit(2400, "lb"),
  2093. name: "Diving",
  2094. image: {
  2095. source: "./media/characters/fen/diving.svg"
  2096. }
  2097. },
  2098. goo: {
  2099. height: math.unit(12, "feet"),
  2100. weight: math.unit(3600, "lb"),
  2101. volume: math.unit(1000, "liters"),
  2102. preyCapacity: math.unit(6, "people"),
  2103. name: "Goo",
  2104. image: {
  2105. source: "./media/characters/fen/goo.svg",
  2106. extra: 1307/1071,
  2107. bottom: 134/1441
  2108. }
  2109. },
  2110. maw: {
  2111. height: math.unit(5.03, "feet"),
  2112. name: "Maw",
  2113. image: {
  2114. source: "./media/characters/fen/maw.svg"
  2115. }
  2116. },
  2117. gooCeiling: {
  2118. height: math.unit(6.6, "feet"),
  2119. weight: math.unit(3000, "lb"),
  2120. volume: math.unit(1000, "liters"),
  2121. preyCapacity: math.unit(6, "people"),
  2122. name: "Goo (Ceiling)",
  2123. image: {
  2124. source: "./media/characters/fen/goo-ceiling.svg"
  2125. }
  2126. },
  2127. paw: {
  2128. height: math.unit(3.77, "feet"),
  2129. name: "Paw",
  2130. image: {
  2131. source: "./media/characters/fen/paw.svg"
  2132. },
  2133. extraAttributes: {
  2134. "toeSize": {
  2135. name: "Toe Size",
  2136. power: 2,
  2137. type: "area",
  2138. base: math.unit(0.02875, "m^2")
  2139. },
  2140. "pawSize": {
  2141. name: "Paw Size",
  2142. power: 2,
  2143. type: "area",
  2144. base: math.unit(0.378, "m^2")
  2145. },
  2146. }
  2147. },
  2148. tail: {
  2149. height: math.unit(12.1, "feet"),
  2150. name: "Tail",
  2151. image: {
  2152. source: "./media/characters/fen/tail.svg"
  2153. }
  2154. },
  2155. tailFull: {
  2156. height: math.unit(12.1, "feet"),
  2157. name: "Full Tail",
  2158. image: {
  2159. source: "./media/characters/fen/tail-full.svg"
  2160. }
  2161. },
  2162. back: {
  2163. height: math.unit(12, "feet"),
  2164. weight: math.unit(2400, "lb"),
  2165. name: "Back",
  2166. image: {
  2167. source: "./media/characters/fen/back.svg",
  2168. },
  2169. info: {
  2170. description: {
  2171. mode: "append",
  2172. text: "\n\nHe is not currently looking at you."
  2173. }
  2174. }
  2175. },
  2176. full: {
  2177. height: math.unit(1.85, "meter"),
  2178. weight: math.unit(3200, "lb"),
  2179. name: "Full",
  2180. image: {
  2181. source: "./media/characters/fen/full.svg",
  2182. extra: 1133/859,
  2183. bottom: 145/1278
  2184. },
  2185. info: {
  2186. description: {
  2187. mode: "append",
  2188. text: "\n\nMunch."
  2189. }
  2190. }
  2191. },
  2192. gooLounging: {
  2193. height: math.unit(4.53, "feet"),
  2194. weight: math.unit(3000, "lb"),
  2195. preyCapacity: math.unit(6, "people"),
  2196. name: "Goo (Lounging)",
  2197. image: {
  2198. source: "./media/characters/fen/goo-lounging.svg",
  2199. bottom: 116 / 613
  2200. }
  2201. },
  2202. lounging: {
  2203. height: math.unit(10.52, "feet"),
  2204. weight: math.unit(2400, "lb"),
  2205. name: "Lounging",
  2206. image: {
  2207. source: "./media/characters/fen/lounging.svg"
  2208. }
  2209. },
  2210. },
  2211. [
  2212. {
  2213. name: "Small",
  2214. height: math.unit(2.2428, "meter")
  2215. },
  2216. {
  2217. name: "Normal",
  2218. height: math.unit(12, "feet"),
  2219. default: true,
  2220. },
  2221. {
  2222. name: "Big",
  2223. height: math.unit(20, "feet")
  2224. },
  2225. {
  2226. name: "Minimacro",
  2227. height: math.unit(40, "feet"),
  2228. info: {
  2229. description: {
  2230. mode: "append",
  2231. text: "\n\nTOO DAMN BIG"
  2232. }
  2233. }
  2234. },
  2235. {
  2236. name: "Macro",
  2237. height: math.unit(100, "feet"),
  2238. info: {
  2239. description: {
  2240. mode: "append",
  2241. text: "\n\nTOO DAMN BIG"
  2242. }
  2243. }
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(2, "miles")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(10, "earths")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(183, "cm"),
  2260. weight: math.unit(80, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/sofia-fluttertail/front.svg",
  2264. bottom: 0.01,
  2265. extra: 2154 / 2081
  2266. }
  2267. },
  2268. frontAlt: {
  2269. height: math.unit(183, "cm"),
  2270. weight: math.unit(80, "kg"),
  2271. name: "Front (alt)",
  2272. image: {
  2273. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2274. }
  2275. },
  2276. back: {
  2277. height: math.unit(183, "cm"),
  2278. weight: math.unit(80, "kg"),
  2279. name: "Back",
  2280. image: {
  2281. source: "./media/characters/sofia-fluttertail/back.svg"
  2282. }
  2283. },
  2284. kneeling: {
  2285. height: math.unit(125, "cm"),
  2286. weight: math.unit(80, "kg"),
  2287. name: "Kneeling",
  2288. image: {
  2289. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2290. extra: 1033 / 977,
  2291. bottom: 23.7 / 1057
  2292. }
  2293. },
  2294. maw: {
  2295. height: math.unit(183 / 5, "cm"),
  2296. name: "Maw",
  2297. image: {
  2298. source: "./media/characters/sofia-fluttertail/maw.svg"
  2299. }
  2300. },
  2301. mawcloseup: {
  2302. height: math.unit(183 / 5 * 0.41, "cm"),
  2303. name: "Maw (Closeup)",
  2304. image: {
  2305. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2306. }
  2307. },
  2308. paws: {
  2309. height: math.unit(1.17, "feet"),
  2310. name: "Paws",
  2311. image: {
  2312. source: "./media/characters/sofia-fluttertail/paws.svg",
  2313. extra: 851 / 851,
  2314. bottom: 17 / 868
  2315. }
  2316. },
  2317. },
  2318. [
  2319. {
  2320. name: "Normal",
  2321. height: math.unit(1.83, "meter")
  2322. },
  2323. {
  2324. name: "Size Thief",
  2325. height: math.unit(18, "feet")
  2326. },
  2327. {
  2328. name: "50 Foot Collie",
  2329. height: math.unit(50, "feet")
  2330. },
  2331. {
  2332. name: "Macro",
  2333. height: math.unit(96, "feet"),
  2334. default: true
  2335. },
  2336. {
  2337. name: "Megamerger",
  2338. height: math.unit(650, "feet")
  2339. },
  2340. ]
  2341. ))
  2342. characterMakers.push(() => makeCharacter(
  2343. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2344. {
  2345. front: {
  2346. height: math.unit(7, "feet"),
  2347. weight: math.unit(100, "kg"),
  2348. name: "Front",
  2349. image: {
  2350. source: "./media/characters/march/front.svg",
  2351. extra: 1992/1851,
  2352. bottom: 39/2031
  2353. }
  2354. },
  2355. foot: {
  2356. height: math.unit(0.9, "feet"),
  2357. name: "Foot",
  2358. image: {
  2359. source: "./media/characters/march/foot.svg"
  2360. }
  2361. },
  2362. },
  2363. [
  2364. {
  2365. name: "Normal",
  2366. height: math.unit(7.9, "feet")
  2367. },
  2368. {
  2369. name: "Macro",
  2370. height: math.unit(220, "meters")
  2371. },
  2372. {
  2373. name: "Megamacro",
  2374. height: math.unit(2.98, "km"),
  2375. default: true
  2376. },
  2377. {
  2378. name: "Gigamacro",
  2379. height: math.unit(15963, "km")
  2380. },
  2381. {
  2382. name: "Teramacro",
  2383. height: math.unit(2980000000, "km")
  2384. },
  2385. {
  2386. name: "Examacro",
  2387. height: math.unit(250, "parsecs")
  2388. },
  2389. ]
  2390. ))
  2391. characterMakers.push(() => makeCharacter(
  2392. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2393. {
  2394. front: {
  2395. height: math.unit(6, "feet"),
  2396. weight: math.unit(60, "kg"),
  2397. name: "Front",
  2398. image: {
  2399. source: "./media/characters/noir/front.svg",
  2400. extra: 1,
  2401. bottom: 0.032
  2402. }
  2403. },
  2404. },
  2405. [
  2406. {
  2407. name: "Normal",
  2408. height: math.unit(6.6, "feet")
  2409. },
  2410. {
  2411. name: "Macro",
  2412. height: math.unit(500, "feet")
  2413. },
  2414. {
  2415. name: "Megamacro",
  2416. height: math.unit(2.5, "km"),
  2417. default: true
  2418. },
  2419. {
  2420. name: "Gigamacro",
  2421. height: math.unit(22500, "km")
  2422. },
  2423. {
  2424. name: "Teramacro",
  2425. height: math.unit(2500000000, "km")
  2426. },
  2427. {
  2428. name: "Examacro",
  2429. height: math.unit(200, "parsecs")
  2430. },
  2431. ]
  2432. ))
  2433. characterMakers.push(() => makeCharacter(
  2434. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2435. {
  2436. front: {
  2437. height: math.unit(7, "feet"),
  2438. weight: math.unit(100, "kg"),
  2439. name: "Front",
  2440. image: {
  2441. source: "./media/characters/okuri/front.svg",
  2442. extra: 739/665,
  2443. bottom: 39/778
  2444. }
  2445. },
  2446. back: {
  2447. height: math.unit(7, "feet"),
  2448. weight: math.unit(100, "kg"),
  2449. name: "Back",
  2450. image: {
  2451. source: "./media/characters/okuri/back.svg",
  2452. extra: 734/653,
  2453. bottom: 13/747
  2454. }
  2455. },
  2456. sitting: {
  2457. height: math.unit(2.95, "feet"),
  2458. weight: math.unit(100, "kg"),
  2459. name: "Sitting",
  2460. image: {
  2461. source: "./media/characters/okuri/sitting.svg",
  2462. extra: 370/318,
  2463. bottom: 99/469
  2464. }
  2465. },
  2466. },
  2467. [
  2468. {
  2469. name: "Smallest",
  2470. height: math.unit(5 + 2/12, "feet")
  2471. },
  2472. {
  2473. name: "Smaller",
  2474. height: math.unit(300, "feet")
  2475. },
  2476. {
  2477. name: "Small",
  2478. height: math.unit(1000, "feet")
  2479. },
  2480. {
  2481. name: "Macro",
  2482. height: math.unit(1, "mile")
  2483. },
  2484. {
  2485. name: "Mega Macro (Small)",
  2486. height: math.unit(20, "km")
  2487. },
  2488. {
  2489. name: "Mega Macro (Large)",
  2490. height: math.unit(600, "km")
  2491. },
  2492. {
  2493. name: "Giga Macro",
  2494. height: math.unit(10000, "km")
  2495. },
  2496. {
  2497. name: "Normal",
  2498. height: math.unit(577560, "km"),
  2499. default: true
  2500. },
  2501. {
  2502. name: "Large",
  2503. height: math.unit(4, "galaxies")
  2504. },
  2505. {
  2506. name: "Largest",
  2507. height: math.unit(15, "multiverses")
  2508. },
  2509. ]
  2510. ))
  2511. characterMakers.push(() => makeCharacter(
  2512. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2513. {
  2514. front: {
  2515. height: math.unit(7, "feet"),
  2516. weight: math.unit(100, "kg"),
  2517. name: "Front",
  2518. image: {
  2519. source: "./media/characters/manny/front.svg",
  2520. extra: 1,
  2521. bottom: 0.06
  2522. }
  2523. },
  2524. back: {
  2525. height: math.unit(7, "feet"),
  2526. weight: math.unit(100, "kg"),
  2527. name: "Back",
  2528. image: {
  2529. source: "./media/characters/manny/back.svg",
  2530. extra: 1,
  2531. bottom: 0.014
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Normal",
  2538. height: math.unit(7, "feet"),
  2539. },
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(78, "feet"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Macro+",
  2547. height: math.unit(300, "meters")
  2548. },
  2549. {
  2550. name: "Macro++",
  2551. height: math.unit(2400, "meters")
  2552. },
  2553. {
  2554. name: "Megamacro",
  2555. height: math.unit(5167, "meters")
  2556. },
  2557. {
  2558. name: "Gigamacro",
  2559. height: math.unit(41769, "miles")
  2560. },
  2561. ]
  2562. ))
  2563. characterMakers.push(() => makeCharacter(
  2564. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2565. {
  2566. front: {
  2567. height: math.unit(7, "feet"),
  2568. weight: math.unit(100, "kg"),
  2569. name: "Front",
  2570. image: {
  2571. source: "./media/characters/adake/front-1.svg"
  2572. }
  2573. },
  2574. frontAlt: {
  2575. height: math.unit(7, "feet"),
  2576. weight: math.unit(100, "kg"),
  2577. name: "Front (Alt)",
  2578. image: {
  2579. source: "./media/characters/adake/front-2.svg",
  2580. extra: 1,
  2581. bottom: 0.01
  2582. }
  2583. },
  2584. back: {
  2585. height: math.unit(7, "feet"),
  2586. weight: math.unit(100, "kg"),
  2587. name: "Back",
  2588. image: {
  2589. source: "./media/characters/adake/back.svg",
  2590. }
  2591. },
  2592. kneel: {
  2593. height: math.unit(5.385, "feet"),
  2594. weight: math.unit(100, "kg"),
  2595. name: "Kneeling",
  2596. image: {
  2597. source: "./media/characters/adake/kneel.svg",
  2598. bottom: 0.052
  2599. }
  2600. },
  2601. },
  2602. [
  2603. {
  2604. name: "Normal",
  2605. height: math.unit(7, "feet"),
  2606. },
  2607. {
  2608. name: "Macro",
  2609. height: math.unit(78, "feet"),
  2610. default: true
  2611. },
  2612. {
  2613. name: "Macro+",
  2614. height: math.unit(300, "meters")
  2615. },
  2616. {
  2617. name: "Macro++",
  2618. height: math.unit(2400, "meters")
  2619. },
  2620. {
  2621. name: "Megamacro",
  2622. height: math.unit(5167, "meters")
  2623. },
  2624. {
  2625. name: "Gigamacro",
  2626. height: math.unit(41769, "miles")
  2627. },
  2628. ]
  2629. ))
  2630. characterMakers.push(() => makeCharacter(
  2631. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2632. {
  2633. front: {
  2634. height: math.unit(1.65, "meters"),
  2635. weight: math.unit(50, "kg"),
  2636. name: "Front",
  2637. image: {
  2638. source: "./media/characters/elijah/front.svg",
  2639. extra: 858 / 830,
  2640. bottom: 95.5 / 953.8559
  2641. }
  2642. },
  2643. back: {
  2644. height: math.unit(1.65, "meters"),
  2645. weight: math.unit(50, "kg"),
  2646. name: "Back",
  2647. image: {
  2648. source: "./media/characters/elijah/back.svg",
  2649. extra: 895 / 850,
  2650. bottom: 5.3 / 897.956
  2651. }
  2652. },
  2653. frontNsfw: {
  2654. height: math.unit(1.65, "meters"),
  2655. weight: math.unit(50, "kg"),
  2656. name: "Front (NSFW)",
  2657. image: {
  2658. source: "./media/characters/elijah/front-nsfw.svg",
  2659. extra: 858 / 830,
  2660. bottom: 95.5 / 953.8559
  2661. }
  2662. },
  2663. backNsfw: {
  2664. height: math.unit(1.65, "meters"),
  2665. weight: math.unit(50, "kg"),
  2666. name: "Back (NSFW)",
  2667. image: {
  2668. source: "./media/characters/elijah/back-nsfw.svg",
  2669. extra: 895 / 850,
  2670. bottom: 5.3 / 897.956
  2671. }
  2672. },
  2673. dick: {
  2674. height: math.unit(1, "feet"),
  2675. name: "Dick",
  2676. image: {
  2677. source: "./media/characters/elijah/dick.svg"
  2678. }
  2679. },
  2680. beakOpen: {
  2681. height: math.unit(1.25, "feet"),
  2682. name: "Beak (Open)",
  2683. image: {
  2684. source: "./media/characters/elijah/beak-open.svg"
  2685. }
  2686. },
  2687. beakShut: {
  2688. height: math.unit(1.25, "feet"),
  2689. name: "Beak (Shut)",
  2690. image: {
  2691. source: "./media/characters/elijah/beak-shut.svg"
  2692. }
  2693. },
  2694. footFlexing: {
  2695. height: math.unit(1.61, "feet"),
  2696. name: "Foot (Flexing)",
  2697. image: {
  2698. source: "./media/characters/elijah/foot-flexing.svg"
  2699. }
  2700. },
  2701. footStepping: {
  2702. height: math.unit(1.44, "feet"),
  2703. name: "Foot (Stepping)",
  2704. image: {
  2705. source: "./media/characters/elijah/foot-stepping.svg"
  2706. }
  2707. },
  2708. plantigradeLeg: {
  2709. height: math.unit(2.34, "feet"),
  2710. name: "Plantigrade Leg",
  2711. image: {
  2712. source: "./media/characters/elijah/plantigrade-leg.svg"
  2713. }
  2714. },
  2715. plantigradeFootLeft: {
  2716. height: math.unit(0.9, "feet"),
  2717. name: "Plantigrade Foot (Left)",
  2718. image: {
  2719. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2720. }
  2721. },
  2722. plantigradeFootRight: {
  2723. height: math.unit(0.9, "feet"),
  2724. name: "Plantigrade Foot (Right)",
  2725. image: {
  2726. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2727. }
  2728. },
  2729. },
  2730. [
  2731. {
  2732. name: "Normal",
  2733. height: math.unit(1.65, "meters")
  2734. },
  2735. {
  2736. name: "Macro",
  2737. height: math.unit(55, "meters"),
  2738. default: true
  2739. },
  2740. {
  2741. name: "Macro+",
  2742. height: math.unit(105, "meters")
  2743. },
  2744. ]
  2745. ))
  2746. characterMakers.push(() => makeCharacter(
  2747. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2748. {
  2749. front: {
  2750. height: math.unit(7 + 2/12, "feet"),
  2751. weight: math.unit(320, "kg"),
  2752. name: "Front",
  2753. image: {
  2754. source: "./media/characters/rai/front.svg",
  2755. extra: 1802/1696,
  2756. bottom: 68/1870
  2757. }
  2758. },
  2759. frontDressed: {
  2760. height: math.unit(7 + 2/12, "feet"),
  2761. weight: math.unit(320, "kg"),
  2762. name: "Front (Dressed)",
  2763. image: {
  2764. source: "./media/characters/rai/front-dressed.svg",
  2765. extra: 1802/1696,
  2766. bottom: 68/1870
  2767. }
  2768. },
  2769. side: {
  2770. height: math.unit(7 + 2/12, "feet"),
  2771. weight: math.unit(320, "kg"),
  2772. name: "Side",
  2773. image: {
  2774. source: "./media/characters/rai/side.svg",
  2775. extra: 1789/1710,
  2776. bottom: 115/1904
  2777. }
  2778. },
  2779. back: {
  2780. height: math.unit(7 + 2/12, "feet"),
  2781. weight: math.unit(320, "kg"),
  2782. name: "Back",
  2783. image: {
  2784. source: "./media/characters/rai/back.svg",
  2785. extra: 1770/1707,
  2786. bottom: 28/1798
  2787. }
  2788. },
  2789. feral: {
  2790. height: math.unit(9.5, "feet"),
  2791. weight: math.unit(640, "kg"),
  2792. name: "Feral",
  2793. image: {
  2794. source: "./media/characters/rai/feral.svg",
  2795. extra: 945/553,
  2796. bottom: 176/1121
  2797. }
  2798. },
  2799. dragon: {
  2800. height: math.unit(23, "feet"),
  2801. weight: math.unit(50000, "lb"),
  2802. name: "Dragon",
  2803. image: {
  2804. source: "./media/characters/rai/dragon.svg",
  2805. extra: 2498 / 2030,
  2806. bottom: 85.2 / 2584
  2807. }
  2808. },
  2809. maw: {
  2810. height: math.unit(1.69, "feet"),
  2811. name: "Maw",
  2812. image: {
  2813. source: "./media/characters/rai/maw.svg"
  2814. }
  2815. },
  2816. },
  2817. [
  2818. {
  2819. name: "Normal",
  2820. height: math.unit(7 + 2/12, "feet")
  2821. },
  2822. {
  2823. name: "Big",
  2824. height: math.unit(11, "feet")
  2825. },
  2826. {
  2827. name: "Macro",
  2828. height: math.unit(302, "feet"),
  2829. default: true
  2830. },
  2831. ]
  2832. ))
  2833. characterMakers.push(() => makeCharacter(
  2834. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2835. {
  2836. frontDressed: {
  2837. height: math.unit(216, "feet"),
  2838. weight: math.unit(7000000, "lb"),
  2839. name: "Front (Dressed)",
  2840. image: {
  2841. source: "./media/characters/jazzy/front-dressed.svg",
  2842. extra: 2738 / 2651,
  2843. bottom: 41.8 / 2786
  2844. }
  2845. },
  2846. backDressed: {
  2847. height: math.unit(216, "feet"),
  2848. weight: math.unit(7000000, "lb"),
  2849. name: "Back (Dressed)",
  2850. image: {
  2851. source: "./media/characters/jazzy/back-dressed.svg",
  2852. extra: 2775 / 2673,
  2853. bottom: 36.8 / 2817
  2854. }
  2855. },
  2856. front: {
  2857. height: math.unit(216, "feet"),
  2858. weight: math.unit(7000000, "lb"),
  2859. name: "Front",
  2860. image: {
  2861. source: "./media/characters/jazzy/front.svg",
  2862. extra: 2738 / 2651,
  2863. bottom: 41.8 / 2786
  2864. }
  2865. },
  2866. back: {
  2867. height: math.unit(216, "feet"),
  2868. weight: math.unit(7000000, "lb"),
  2869. name: "Back",
  2870. image: {
  2871. source: "./media/characters/jazzy/back.svg",
  2872. extra: 2775 / 2673,
  2873. bottom: 36.8 / 2817
  2874. }
  2875. },
  2876. maw: {
  2877. height: math.unit(20, "feet"),
  2878. name: "Maw",
  2879. image: {
  2880. source: "./media/characters/jazzy/maw.svg"
  2881. }
  2882. },
  2883. paws: {
  2884. height: math.unit(27.5, "feet"),
  2885. name: "Paws",
  2886. image: {
  2887. source: "./media/characters/jazzy/paws.svg"
  2888. }
  2889. },
  2890. eye: {
  2891. height: math.unit(4.4, "feet"),
  2892. name: "Eye",
  2893. image: {
  2894. source: "./media/characters/jazzy/eye.svg"
  2895. }
  2896. },
  2897. droneOffense: {
  2898. height: math.unit(9.5, "inches"),
  2899. name: "Drone (Offense)",
  2900. image: {
  2901. source: "./media/characters/jazzy/drone-offense.svg"
  2902. }
  2903. },
  2904. droneRecon: {
  2905. height: math.unit(9.5, "inches"),
  2906. name: "Drone (Recon)",
  2907. image: {
  2908. source: "./media/characters/jazzy/drone-recon.svg"
  2909. }
  2910. },
  2911. droneDefense: {
  2912. height: math.unit(9.5, "inches"),
  2913. name: "Drone (Defense)",
  2914. image: {
  2915. source: "./media/characters/jazzy/drone-defense.svg"
  2916. }
  2917. },
  2918. },
  2919. [
  2920. {
  2921. name: "Macro",
  2922. height: math.unit(216, "feet"),
  2923. default: true
  2924. },
  2925. ]
  2926. ))
  2927. characterMakers.push(() => makeCharacter(
  2928. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2929. {
  2930. front: {
  2931. height: math.unit(9 + 6/12, "feet"),
  2932. weight: math.unit(700, "lb"),
  2933. name: "Front",
  2934. image: {
  2935. source: "./media/characters/flamm/front.svg",
  2936. extra: 1751/1632,
  2937. bottom: 46/1797
  2938. }
  2939. },
  2940. buff: {
  2941. height: math.unit(9 + 6/12, "feet"),
  2942. weight: math.unit(950, "lb"),
  2943. name: "Buff",
  2944. image: {
  2945. source: "./media/characters/flamm/buff.svg",
  2946. extra: 3018/2874,
  2947. bottom: 221/3239
  2948. }
  2949. },
  2950. },
  2951. [
  2952. {
  2953. name: "Normal",
  2954. height: math.unit(9.5, "feet")
  2955. },
  2956. {
  2957. name: "Macro",
  2958. height: math.unit(200, "feet"),
  2959. default: true
  2960. },
  2961. ]
  2962. ))
  2963. characterMakers.push(() => makeCharacter(
  2964. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2965. {
  2966. front: {
  2967. height: math.unit(5 + 3/12, "feet"),
  2968. weight: math.unit(60, "kg"),
  2969. name: "Front",
  2970. image: {
  2971. source: "./media/characters/zephiro/front.svg",
  2972. extra: 2309 / 2162,
  2973. bottom: 0.069
  2974. }
  2975. },
  2976. side: {
  2977. height: math.unit(5 + 3/12, "feet"),
  2978. weight: math.unit(60, "kg"),
  2979. name: "Side",
  2980. image: {
  2981. source: "./media/characters/zephiro/side.svg",
  2982. extra: 2403 / 2279,
  2983. bottom: 0.015
  2984. }
  2985. },
  2986. back: {
  2987. height: math.unit(5 + 3/12, "feet"),
  2988. weight: math.unit(60, "kg"),
  2989. name: "Back",
  2990. image: {
  2991. source: "./media/characters/zephiro/back.svg",
  2992. extra: 2373 / 2244,
  2993. bottom: 0.013
  2994. }
  2995. },
  2996. hand: {
  2997. height: math.unit(0.68, "feet"),
  2998. name: "Hand",
  2999. image: {
  3000. source: "./media/characters/zephiro/hand.svg"
  3001. }
  3002. },
  3003. paw: {
  3004. height: math.unit(1, "feet"),
  3005. name: "Paw",
  3006. image: {
  3007. source: "./media/characters/zephiro/paw.svg"
  3008. }
  3009. },
  3010. beans: {
  3011. height: math.unit(0.93, "feet"),
  3012. name: "Beans",
  3013. image: {
  3014. source: "./media/characters/zephiro/beans.svg"
  3015. }
  3016. },
  3017. },
  3018. [
  3019. {
  3020. name: "Micro",
  3021. height: math.unit(3, "inches")
  3022. },
  3023. {
  3024. name: "Normal",
  3025. height: math.unit(5 + 3 / 12, "feet"),
  3026. default: true
  3027. },
  3028. {
  3029. name: "Macro",
  3030. height: math.unit(118, "feet")
  3031. },
  3032. ]
  3033. ))
  3034. characterMakers.push(() => makeCharacter(
  3035. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3036. {
  3037. front: {
  3038. height: math.unit(5, "feet"),
  3039. weight: math.unit(90, "kg"),
  3040. name: "Front",
  3041. image: {
  3042. source: "./media/characters/fory/front.svg",
  3043. extra: 2862 / 2674,
  3044. bottom: 180 / 3043.8
  3045. }
  3046. },
  3047. back: {
  3048. height: math.unit(5, "feet"),
  3049. weight: math.unit(90, "kg"),
  3050. name: "Back",
  3051. image: {
  3052. source: "./media/characters/fory/back.svg",
  3053. extra: 2962 / 2791,
  3054. bottom: 106 / 3071.8
  3055. }
  3056. },
  3057. foot: {
  3058. height: math.unit(2.14, "feet"),
  3059. name: "Foot",
  3060. image: {
  3061. source: "./media/characters/fory/foot.svg"
  3062. }
  3063. },
  3064. },
  3065. [
  3066. {
  3067. name: "Normal",
  3068. height: math.unit(5, "feet")
  3069. },
  3070. {
  3071. name: "Macro",
  3072. height: math.unit(50, "feet"),
  3073. default: true
  3074. },
  3075. {
  3076. name: "Megamacro",
  3077. height: math.unit(10, "miles")
  3078. },
  3079. {
  3080. name: "Gigamacro",
  3081. height: math.unit(5, "earths")
  3082. },
  3083. ]
  3084. ))
  3085. characterMakers.push(() => makeCharacter(
  3086. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3087. {
  3088. front: {
  3089. height: math.unit(7, "feet"),
  3090. weight: math.unit(90, "kg"),
  3091. name: "Front",
  3092. image: {
  3093. source: "./media/characters/kurrikage/front.svg",
  3094. extra: 1845/1733,
  3095. bottom: 119/1964
  3096. }
  3097. },
  3098. back: {
  3099. height: math.unit(7, "feet"),
  3100. weight: math.unit(90, "kg"),
  3101. name: "Back",
  3102. image: {
  3103. source: "./media/characters/kurrikage/back.svg",
  3104. extra: 1790/1677,
  3105. bottom: 61/1851
  3106. }
  3107. },
  3108. dressed: {
  3109. height: math.unit(7, "feet"),
  3110. weight: math.unit(90, "kg"),
  3111. name: "Dressed",
  3112. image: {
  3113. source: "./media/characters/kurrikage/dressed.svg",
  3114. extra: 1845/1733,
  3115. bottom: 119/1964
  3116. }
  3117. },
  3118. foot: {
  3119. height: math.unit(1.5, "feet"),
  3120. name: "Foot",
  3121. image: {
  3122. source: "./media/characters/kurrikage/foot.svg"
  3123. }
  3124. },
  3125. staff: {
  3126. height: math.unit(6.7, "feet"),
  3127. name: "Staff",
  3128. image: {
  3129. source: "./media/characters/kurrikage/staff.svg"
  3130. }
  3131. },
  3132. peek: {
  3133. height: math.unit(1.05, "feet"),
  3134. name: "Peeking",
  3135. image: {
  3136. source: "./media/characters/kurrikage/peek.svg",
  3137. bottom: 0.08
  3138. }
  3139. },
  3140. },
  3141. [
  3142. {
  3143. name: "Normal",
  3144. height: math.unit(12, "feet"),
  3145. default: true
  3146. },
  3147. {
  3148. name: "Big",
  3149. height: math.unit(20, "feet")
  3150. },
  3151. {
  3152. name: "Macro",
  3153. height: math.unit(500, "feet")
  3154. },
  3155. {
  3156. name: "Megamacro",
  3157. height: math.unit(20, "miles")
  3158. },
  3159. ]
  3160. ))
  3161. characterMakers.push(() => makeCharacter(
  3162. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3163. {
  3164. front: {
  3165. height: math.unit(6, "feet"),
  3166. weight: math.unit(75, "kg"),
  3167. name: "Front",
  3168. image: {
  3169. source: "./media/characters/shingo/front.svg",
  3170. extra: 1900/1825,
  3171. bottom: 82/1982
  3172. }
  3173. },
  3174. side: {
  3175. height: math.unit(6, "feet"),
  3176. weight: math.unit(75, "kg"),
  3177. name: "Side",
  3178. image: {
  3179. source: "./media/characters/shingo/side.svg",
  3180. extra: 1930/1865,
  3181. bottom: 16/1946
  3182. }
  3183. },
  3184. back: {
  3185. height: math.unit(6, "feet"),
  3186. weight: math.unit(75, "kg"),
  3187. name: "Back",
  3188. image: {
  3189. source: "./media/characters/shingo/back.svg",
  3190. extra: 1922/1852,
  3191. bottom: 16/1938
  3192. }
  3193. },
  3194. frontDressed: {
  3195. height: math.unit(6, "feet"),
  3196. weight: math.unit(150, "lb"),
  3197. name: "Front-dressed",
  3198. image: {
  3199. source: "./media/characters/shingo/front-dressed.svg",
  3200. extra: 1900/1825,
  3201. bottom: 82/1982
  3202. }
  3203. },
  3204. paw: {
  3205. height: math.unit(1.29, "feet"),
  3206. name: "Paw",
  3207. image: {
  3208. source: "./media/characters/shingo/paw.svg"
  3209. }
  3210. },
  3211. hand: {
  3212. height: math.unit(1.07, "feet"),
  3213. name: "Hand",
  3214. image: {
  3215. source: "./media/characters/shingo/hand.svg"
  3216. }
  3217. },
  3218. frontAlt: {
  3219. height: math.unit(6, "feet"),
  3220. weight: math.unit(75, "kg"),
  3221. name: "Front (Alt)",
  3222. image: {
  3223. source: "./media/characters/shingo/front-alt.svg",
  3224. extra: 3511 / 3338,
  3225. bottom: 0.005
  3226. }
  3227. },
  3228. frontAlt2: {
  3229. height: math.unit(6, "feet"),
  3230. weight: math.unit(75, "kg"),
  3231. name: "Front (Alt 2)",
  3232. image: {
  3233. source: "./media/characters/shingo/front-alt-2.svg",
  3234. extra: 706/681,
  3235. bottom: 11/717
  3236. }
  3237. },
  3238. pawAlt: {
  3239. height: math.unit(1, "feet"),
  3240. name: "Paw (Alt)",
  3241. image: {
  3242. source: "./media/characters/shingo/paw-alt.svg"
  3243. }
  3244. },
  3245. },
  3246. [
  3247. {
  3248. name: "Micro",
  3249. height: math.unit(4, "inches")
  3250. },
  3251. {
  3252. name: "Normal",
  3253. height: math.unit(6, "feet"),
  3254. default: true
  3255. },
  3256. {
  3257. name: "Macro",
  3258. height: math.unit(108, "feet")
  3259. },
  3260. {
  3261. name: "Macro+",
  3262. height: math.unit(1500, "feet")
  3263. },
  3264. ]
  3265. ))
  3266. characterMakers.push(() => makeCharacter(
  3267. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3268. {
  3269. side: {
  3270. height: math.unit(6, "feet"),
  3271. weight: math.unit(75, "kg"),
  3272. name: "Side",
  3273. image: {
  3274. source: "./media/characters/aigey/side.svg"
  3275. }
  3276. },
  3277. },
  3278. [
  3279. {
  3280. name: "Macro",
  3281. height: math.unit(200, "feet"),
  3282. default: true
  3283. },
  3284. {
  3285. name: "Megamacro",
  3286. height: math.unit(100, "miles")
  3287. },
  3288. ]
  3289. )
  3290. )
  3291. characterMakers.push(() => makeCharacter(
  3292. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3293. {
  3294. front: {
  3295. height: math.unit(5 + 5 / 12, "feet"),
  3296. weight: math.unit(75, "kg"),
  3297. name: "Front",
  3298. image: {
  3299. source: "./media/characters/natasha/front.svg",
  3300. extra: 859 / 824,
  3301. bottom: 23 / 879.6
  3302. }
  3303. },
  3304. frontNsfw: {
  3305. height: math.unit(5 + 5 / 12, "feet"),
  3306. weight: math.unit(75, "kg"),
  3307. name: "Front (NSFW)",
  3308. image: {
  3309. source: "./media/characters/natasha/front-nsfw.svg",
  3310. extra: 859 / 824,
  3311. bottom: 23 / 879.6
  3312. }
  3313. },
  3314. frontErect: {
  3315. height: math.unit(5 + 5 / 12, "feet"),
  3316. weight: math.unit(75, "kg"),
  3317. name: "Front (Erect)",
  3318. image: {
  3319. source: "./media/characters/natasha/front-erect.svg",
  3320. extra: 859 / 824,
  3321. bottom: 23 / 879.6
  3322. }
  3323. },
  3324. back: {
  3325. height: math.unit(5 + 5 / 12, "feet"),
  3326. weight: math.unit(75, "kg"),
  3327. name: "Back",
  3328. image: {
  3329. source: "./media/characters/natasha/back.svg",
  3330. extra: 887.9 / 852.6,
  3331. bottom: 9.7 / 896.4
  3332. }
  3333. },
  3334. backAlt: {
  3335. height: math.unit(5 + 5 / 12, "feet"),
  3336. weight: math.unit(75, "kg"),
  3337. name: "Back (Alt)",
  3338. image: {
  3339. source: "./media/characters/natasha/back-alt.svg",
  3340. extra: 1236.7 / 1192,
  3341. bottom: 22.3 / 1258.2
  3342. }
  3343. },
  3344. dick: {
  3345. height: math.unit(1.772, "feet"),
  3346. name: "Dick",
  3347. image: {
  3348. source: "./media/characters/natasha/dick.svg"
  3349. }
  3350. },
  3351. paw: {
  3352. height: math.unit(0.250, "meters"),
  3353. name: "Paw",
  3354. image: {
  3355. source: "./media/characters/natasha/paw.svg"
  3356. },
  3357. extraAttributes: {
  3358. "toeSize": {
  3359. name: "Toe Size",
  3360. power: 2,
  3361. type: "area",
  3362. base: math.unit(0.0024, "m^2")
  3363. },
  3364. "padSize": {
  3365. name: "Pad Size",
  3366. power: 2,
  3367. type: "area",
  3368. base: math.unit(0.00889, "m^2")
  3369. },
  3370. "pawSize": {
  3371. name: "Paw Size",
  3372. power: 2,
  3373. type: "area",
  3374. base: math.unit(0.023667, "m^2")
  3375. },
  3376. }
  3377. },
  3378. },
  3379. [
  3380. {
  3381. name: "Shortstack",
  3382. height: math.unit(3, "feet"),
  3383. default: true
  3384. },
  3385. {
  3386. name: "Normal",
  3387. height: math.unit(5 + 5 / 12, "feet")
  3388. },
  3389. {
  3390. name: "Large",
  3391. height: math.unit(12, "feet")
  3392. },
  3393. {
  3394. name: "Macro",
  3395. height: math.unit(100, "feet")
  3396. },
  3397. {
  3398. name: "Macro+",
  3399. height: math.unit(260, "feet")
  3400. },
  3401. {
  3402. name: "Macro++",
  3403. height: math.unit(1, "mile")
  3404. },
  3405. ]
  3406. ))
  3407. characterMakers.push(() => makeCharacter(
  3408. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3409. {
  3410. front: {
  3411. height: math.unit(6, "feet"),
  3412. weight: math.unit(75, "kg"),
  3413. name: "Front",
  3414. image: {
  3415. source: "./media/characters/malik/front.svg",
  3416. extra: 1750/1561,
  3417. bottom: 80/1830
  3418. },
  3419. extraAttributes: {
  3420. "toeSize": {
  3421. name: "Toe Size",
  3422. power: 2,
  3423. type: "area",
  3424. base: math.unit(0.0159, "m^2")
  3425. },
  3426. "pawSize": {
  3427. name: "Paw Size",
  3428. power: 2,
  3429. type: "area",
  3430. base: math.unit(0.09834, "m^2")
  3431. },
  3432. }
  3433. },
  3434. side: {
  3435. height: math.unit(6, "feet"),
  3436. weight: math.unit(75, "kg"),
  3437. name: "Side",
  3438. image: {
  3439. source: "./media/characters/malik/side.svg",
  3440. extra: 1802/1685,
  3441. bottom: 42/1844
  3442. },
  3443. extraAttributes: {
  3444. "toeSize": {
  3445. name: "Toe Size",
  3446. power: 2,
  3447. type: "area",
  3448. base: math.unit(0.0159, "m^2")
  3449. },
  3450. "pawSize": {
  3451. name: "Paw Size",
  3452. power: 2,
  3453. type: "area",
  3454. base: math.unit(0.09834, "m^2")
  3455. },
  3456. }
  3457. },
  3458. back: {
  3459. height: math.unit(6, "feet"),
  3460. weight: math.unit(75, "kg"),
  3461. name: "Back",
  3462. image: {
  3463. source: "./media/characters/malik/back.svg",
  3464. extra: 1803/1607,
  3465. bottom: 33/1836
  3466. },
  3467. extraAttributes: {
  3468. "toeSize": {
  3469. name: "Toe Size",
  3470. power: 2,
  3471. type: "area",
  3472. base: math.unit(0.0159, "m^2")
  3473. },
  3474. "pawSize": {
  3475. name: "Paw Size",
  3476. power: 2,
  3477. type: "area",
  3478. base: math.unit(0.09834, "m^2")
  3479. },
  3480. }
  3481. },
  3482. },
  3483. [
  3484. {
  3485. name: "Macro",
  3486. height: math.unit(156, "feet"),
  3487. default: true
  3488. },
  3489. {
  3490. name: "Macro+",
  3491. height: math.unit(1188, "feet")
  3492. },
  3493. ]
  3494. ))
  3495. characterMakers.push(() => makeCharacter(
  3496. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3497. {
  3498. front: {
  3499. height: math.unit(6, "feet"),
  3500. weight: math.unit(75, "kg"),
  3501. name: "Front",
  3502. image: {
  3503. source: "./media/characters/sefer/front.svg",
  3504. extra: 848 / 659,
  3505. bottom: 28.3 / 876.442
  3506. }
  3507. },
  3508. back: {
  3509. height: math.unit(6, "feet"),
  3510. weight: math.unit(75, "kg"),
  3511. name: "Back",
  3512. image: {
  3513. source: "./media/characters/sefer/back.svg",
  3514. extra: 864 / 695,
  3515. bottom: 10 / 871
  3516. }
  3517. },
  3518. frontDressed: {
  3519. height: math.unit(6, "feet"),
  3520. weight: math.unit(75, "kg"),
  3521. name: "Front (Dressed)",
  3522. image: {
  3523. source: "./media/characters/sefer/front-dressed.svg",
  3524. extra: 839 / 653,
  3525. bottom: 37.6 / 878
  3526. }
  3527. },
  3528. },
  3529. [
  3530. {
  3531. name: "Normal",
  3532. height: math.unit(6, "feet"),
  3533. default: true
  3534. },
  3535. ]
  3536. ))
  3537. characterMakers.push(() => makeCharacter(
  3538. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3539. {
  3540. body: {
  3541. height: math.unit(2.2428, "meter"),
  3542. weight: math.unit(124.738, "kg"),
  3543. name: "Body",
  3544. image: {
  3545. extra: 1225 / 1050,
  3546. source: "./media/characters/north/front.svg"
  3547. }
  3548. }
  3549. },
  3550. [
  3551. {
  3552. name: "Micro",
  3553. height: math.unit(4, "inches")
  3554. },
  3555. {
  3556. name: "Macro",
  3557. height: math.unit(63, "meters")
  3558. },
  3559. {
  3560. name: "Megamacro",
  3561. height: math.unit(101, "miles"),
  3562. default: true
  3563. }
  3564. ]
  3565. ))
  3566. characterMakers.push(() => makeCharacter(
  3567. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3568. {
  3569. angled: {
  3570. height: math.unit(4, "meter"),
  3571. weight: math.unit(150, "kg"),
  3572. name: "Angled",
  3573. image: {
  3574. source: "./media/characters/talan/angled-sfw.svg",
  3575. bottom: 29 / 3734
  3576. }
  3577. },
  3578. angledNsfw: {
  3579. height: math.unit(4, "meter"),
  3580. weight: math.unit(150, "kg"),
  3581. name: "Angled (NSFW)",
  3582. image: {
  3583. source: "./media/characters/talan/angled-nsfw.svg",
  3584. bottom: 29 / 3734
  3585. }
  3586. },
  3587. frontNsfw: {
  3588. height: math.unit(4, "meter"),
  3589. weight: math.unit(150, "kg"),
  3590. name: "Front (NSFW)",
  3591. image: {
  3592. source: "./media/characters/talan/front-nsfw.svg",
  3593. bottom: 29 / 3734
  3594. }
  3595. },
  3596. sideNsfw: {
  3597. height: math.unit(4, "meter"),
  3598. weight: math.unit(150, "kg"),
  3599. name: "Side (NSFW)",
  3600. image: {
  3601. source: "./media/characters/talan/side-nsfw.svg",
  3602. bottom: 29 / 3734
  3603. }
  3604. },
  3605. back: {
  3606. height: math.unit(4, "meter"),
  3607. weight: math.unit(150, "kg"),
  3608. name: "Back",
  3609. image: {
  3610. source: "./media/characters/talan/back.svg"
  3611. }
  3612. },
  3613. dickBottom: {
  3614. height: math.unit(0.621, "meter"),
  3615. name: "Dick (Bottom)",
  3616. image: {
  3617. source: "./media/characters/talan/dick-bottom.svg"
  3618. }
  3619. },
  3620. dickTop: {
  3621. height: math.unit(0.621, "meter"),
  3622. name: "Dick (Top)",
  3623. image: {
  3624. source: "./media/characters/talan/dick-top.svg"
  3625. }
  3626. },
  3627. dickSide: {
  3628. height: math.unit(0.305, "meter"),
  3629. name: "Dick (Side)",
  3630. image: {
  3631. source: "./media/characters/talan/dick-side.svg"
  3632. }
  3633. },
  3634. dickFront: {
  3635. height: math.unit(0.305, "meter"),
  3636. name: "Dick (Front)",
  3637. image: {
  3638. source: "./media/characters/talan/dick-front.svg"
  3639. }
  3640. },
  3641. },
  3642. [
  3643. {
  3644. name: "Normal",
  3645. height: math.unit(4, "meters")
  3646. },
  3647. {
  3648. name: "Macro",
  3649. height: math.unit(100, "meters")
  3650. },
  3651. {
  3652. name: "Megamacro",
  3653. height: math.unit(2, "miles"),
  3654. default: true
  3655. },
  3656. {
  3657. name: "Gigamacro",
  3658. height: math.unit(5000, "miles")
  3659. },
  3660. {
  3661. name: "Teramacro",
  3662. height: math.unit(100, "parsecs")
  3663. }
  3664. ]
  3665. ))
  3666. characterMakers.push(() => makeCharacter(
  3667. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3668. {
  3669. front: {
  3670. height: math.unit(2, "meter"),
  3671. weight: math.unit(90, "kg"),
  3672. name: "Front",
  3673. image: {
  3674. source: "./media/characters/gael'rathus/front.svg"
  3675. }
  3676. },
  3677. frontAlt: {
  3678. height: math.unit(2, "meter"),
  3679. weight: math.unit(90, "kg"),
  3680. name: "Front (alt)",
  3681. image: {
  3682. source: "./media/characters/gael'rathus/front-alt.svg"
  3683. }
  3684. },
  3685. frontAlt2: {
  3686. height: math.unit(2, "meter"),
  3687. weight: math.unit(90, "kg"),
  3688. name: "Front (alt 2)",
  3689. image: {
  3690. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3691. }
  3692. }
  3693. },
  3694. [
  3695. {
  3696. name: "Normal",
  3697. height: math.unit(9, "feet"),
  3698. default: true
  3699. },
  3700. {
  3701. name: "Large",
  3702. height: math.unit(25, "feet")
  3703. },
  3704. {
  3705. name: "Macro",
  3706. height: math.unit(0.25, "miles")
  3707. },
  3708. {
  3709. name: "Megamacro",
  3710. height: math.unit(10, "miles")
  3711. }
  3712. ]
  3713. ))
  3714. characterMakers.push(() => makeCharacter(
  3715. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3716. {
  3717. side: {
  3718. height: math.unit(2, "meter"),
  3719. weight: math.unit(140, "kg"),
  3720. name: "Side",
  3721. image: {
  3722. source: "./media/characters/sosha/side.svg",
  3723. extra: 1170/1006,
  3724. bottom: 94/1264
  3725. }
  3726. },
  3727. maw: {
  3728. height: math.unit(2.87, "feet"),
  3729. name: "Maw",
  3730. image: {
  3731. source: "./media/characters/sosha/maw.svg",
  3732. extra: 966/865,
  3733. bottom: 0/966
  3734. }
  3735. },
  3736. cooch: {
  3737. height: math.unit(5.6, "feet"),
  3738. name: "Cooch",
  3739. image: {
  3740. source: "./media/characters/sosha/cooch.svg"
  3741. }
  3742. },
  3743. },
  3744. [
  3745. {
  3746. name: "Normal",
  3747. height: math.unit(12, "feet"),
  3748. default: true
  3749. }
  3750. ]
  3751. ))
  3752. characterMakers.push(() => makeCharacter(
  3753. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3754. {
  3755. side: {
  3756. height: math.unit(5 + 5 / 12, "feet"),
  3757. weight: math.unit(170, "kg"),
  3758. name: "Side",
  3759. image: {
  3760. source: "./media/characters/runnola/side.svg",
  3761. extra: 741 / 448,
  3762. bottom: 0.05
  3763. }
  3764. },
  3765. },
  3766. [
  3767. {
  3768. name: "Small",
  3769. height: math.unit(3, "feet")
  3770. },
  3771. {
  3772. name: "Normal",
  3773. height: math.unit(5 + 5 / 12, "feet"),
  3774. default: true
  3775. },
  3776. {
  3777. name: "Big",
  3778. height: math.unit(10, "feet")
  3779. },
  3780. ]
  3781. ))
  3782. characterMakers.push(() => makeCharacter(
  3783. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3784. {
  3785. front: {
  3786. height: math.unit(2, "meter"),
  3787. weight: math.unit(50, "kg"),
  3788. name: "Front",
  3789. image: {
  3790. source: "./media/characters/kurribird/front.svg",
  3791. bottom: 0.015
  3792. }
  3793. },
  3794. frontAlt: {
  3795. height: math.unit(1.5, "meter"),
  3796. weight: math.unit(50, "kg"),
  3797. name: "Front (Alt)",
  3798. image: {
  3799. source: "./media/characters/kurribird/front-alt.svg",
  3800. extra: 1.45
  3801. }
  3802. },
  3803. },
  3804. [
  3805. {
  3806. name: "Normal",
  3807. height: math.unit(7, "feet")
  3808. },
  3809. {
  3810. name: "Big",
  3811. height: math.unit(12, "feet"),
  3812. default: true
  3813. },
  3814. {
  3815. name: "Macro",
  3816. height: math.unit(1500, "feet")
  3817. },
  3818. {
  3819. name: "Megamacro",
  3820. height: math.unit(2, "miles")
  3821. }
  3822. ]
  3823. ))
  3824. characterMakers.push(() => makeCharacter(
  3825. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3826. {
  3827. front: {
  3828. height: math.unit(2, "meter"),
  3829. weight: math.unit(80, "kg"),
  3830. name: "Front",
  3831. image: {
  3832. source: "./media/characters/elbial/front.svg",
  3833. extra: 1643 / 1556,
  3834. bottom: 60.2 / 1696
  3835. }
  3836. },
  3837. side: {
  3838. height: math.unit(2, "meter"),
  3839. weight: math.unit(80, "kg"),
  3840. name: "Side",
  3841. image: {
  3842. source: "./media/characters/elbial/side.svg",
  3843. extra: 1601/1528,
  3844. bottom: 97/1698
  3845. }
  3846. },
  3847. back: {
  3848. height: math.unit(2, "meter"),
  3849. weight: math.unit(80, "kg"),
  3850. name: "Back",
  3851. image: {
  3852. source: "./media/characters/elbial/back.svg",
  3853. extra: 1653/1569,
  3854. bottom: 20/1673
  3855. }
  3856. },
  3857. frontDressed: {
  3858. height: math.unit(2, "meter"),
  3859. weight: math.unit(80, "kg"),
  3860. name: "Front (Dressed)",
  3861. image: {
  3862. source: "./media/characters/elbial/front-dressed.svg",
  3863. extra: 1638/1569,
  3864. bottom: 70/1708
  3865. }
  3866. },
  3867. genitals: {
  3868. height: math.unit(2 / 3.367, "meter"),
  3869. name: "Genitals",
  3870. image: {
  3871. source: "./media/characters/elbial/genitals.svg"
  3872. }
  3873. },
  3874. },
  3875. [
  3876. {
  3877. name: "Large",
  3878. height: math.unit(100, "feet")
  3879. },
  3880. {
  3881. name: "Macro",
  3882. height: math.unit(500, "feet"),
  3883. default: true
  3884. },
  3885. {
  3886. name: "Megamacro",
  3887. height: math.unit(10, "miles")
  3888. },
  3889. {
  3890. name: "Gigamacro",
  3891. height: math.unit(25000, "miles")
  3892. },
  3893. {
  3894. name: "Full-Size",
  3895. height: math.unit(8000000, "gigaparsecs")
  3896. }
  3897. ]
  3898. ))
  3899. characterMakers.push(() => makeCharacter(
  3900. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3901. {
  3902. front: {
  3903. height: math.unit(2, "meter"),
  3904. weight: math.unit(60, "kg"),
  3905. name: "Front",
  3906. image: {
  3907. source: "./media/characters/noah/front.svg"
  3908. }
  3909. },
  3910. talons: {
  3911. height: math.unit(0.315, "meter"),
  3912. name: "Talons",
  3913. image: {
  3914. source: "./media/characters/noah/talons.svg"
  3915. }
  3916. }
  3917. },
  3918. [
  3919. {
  3920. name: "Large",
  3921. height: math.unit(50, "feet")
  3922. },
  3923. {
  3924. name: "Macro",
  3925. height: math.unit(750, "feet"),
  3926. default: true
  3927. },
  3928. {
  3929. name: "Megamacro",
  3930. height: math.unit(50, "miles")
  3931. },
  3932. {
  3933. name: "Gigamacro",
  3934. height: math.unit(100000, "miles")
  3935. },
  3936. {
  3937. name: "Full-Size",
  3938. height: math.unit(3000000000, "miles")
  3939. }
  3940. ]
  3941. ))
  3942. characterMakers.push(() => makeCharacter(
  3943. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3944. {
  3945. front: {
  3946. height: math.unit(2, "meter"),
  3947. weight: math.unit(80, "kg"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/natalya/front.svg"
  3951. }
  3952. },
  3953. back: {
  3954. height: math.unit(2, "meter"),
  3955. weight: math.unit(80, "kg"),
  3956. name: "Back",
  3957. image: {
  3958. source: "./media/characters/natalya/back.svg"
  3959. }
  3960. }
  3961. },
  3962. [
  3963. {
  3964. name: "Normal",
  3965. height: math.unit(150, "feet"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Megamacro",
  3970. height: math.unit(5, "miles")
  3971. },
  3972. {
  3973. name: "Full-Size",
  3974. height: math.unit(600, "kiloparsecs")
  3975. }
  3976. ]
  3977. ))
  3978. characterMakers.push(() => makeCharacter(
  3979. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3980. {
  3981. front: {
  3982. height: math.unit(2, "meter"),
  3983. weight: math.unit(50, "kg"),
  3984. name: "Front",
  3985. image: {
  3986. source: "./media/characters/erestrebah/front.svg",
  3987. extra: 1262/1162,
  3988. bottom: 96/1358
  3989. }
  3990. },
  3991. back: {
  3992. height: math.unit(2, "meter"),
  3993. weight: math.unit(50, "kg"),
  3994. name: "Back",
  3995. image: {
  3996. source: "./media/characters/erestrebah/back.svg",
  3997. extra: 1257/1139,
  3998. bottom: 13/1270
  3999. }
  4000. },
  4001. wing: {
  4002. height: math.unit(2, "meter"),
  4003. weight: math.unit(50, "kg"),
  4004. name: "Wing",
  4005. image: {
  4006. source: "./media/characters/erestrebah/wing.svg",
  4007. extra: 1262/1162,
  4008. bottom: 96/1358
  4009. }
  4010. },
  4011. mouth: {
  4012. height: math.unit(0.39, "feet"),
  4013. name: "Mouth",
  4014. image: {
  4015. source: "./media/characters/erestrebah/mouth.svg"
  4016. }
  4017. }
  4018. },
  4019. [
  4020. {
  4021. name: "Normal",
  4022. height: math.unit(10, "feet")
  4023. },
  4024. {
  4025. name: "Large",
  4026. height: math.unit(50, "feet"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Macro",
  4031. height: math.unit(300, "feet")
  4032. },
  4033. {
  4034. name: "Macro+",
  4035. height: math.unit(750, "feet")
  4036. },
  4037. {
  4038. name: "Megamacro",
  4039. height: math.unit(3, "miles")
  4040. }
  4041. ]
  4042. ))
  4043. characterMakers.push(() => makeCharacter(
  4044. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4045. {
  4046. front: {
  4047. height: math.unit(2, "meter"),
  4048. weight: math.unit(80, "kg"),
  4049. name: "Front",
  4050. image: {
  4051. source: "./media/characters/jennifer/front.svg",
  4052. bottom: 0.11,
  4053. extra: 1.16
  4054. }
  4055. },
  4056. frontAlt: {
  4057. height: math.unit(2, "meter"),
  4058. weight: math.unit(80, "kg"),
  4059. name: "Front (Alt)",
  4060. image: {
  4061. source: "./media/characters/jennifer/front-alt.svg"
  4062. }
  4063. }
  4064. },
  4065. [
  4066. {
  4067. name: "Canon Height",
  4068. height: math.unit(120, "feet"),
  4069. default: true
  4070. },
  4071. {
  4072. name: "Macro+",
  4073. height: math.unit(300, "feet")
  4074. },
  4075. {
  4076. name: "Megamacro",
  4077. height: math.unit(20000, "feet")
  4078. }
  4079. ]
  4080. ))
  4081. characterMakers.push(() => makeCharacter(
  4082. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4083. {
  4084. front: {
  4085. height: math.unit(2, "meter"),
  4086. weight: math.unit(50, "kg"),
  4087. name: "Front",
  4088. image: {
  4089. source: "./media/characters/kalista/front.svg",
  4090. extra: 1314/1145,
  4091. bottom: 101/1415
  4092. }
  4093. },
  4094. back: {
  4095. height: math.unit(2, "meter"),
  4096. weight: math.unit(50, "kg"),
  4097. name: "Back",
  4098. image: {
  4099. source: "./media/characters/kalista/back.svg",
  4100. extra: 1366 / 1156,
  4101. bottom: 33.9 / 1362.78
  4102. }
  4103. }
  4104. },
  4105. [
  4106. {
  4107. name: "Uncomfortably Small",
  4108. height: math.unit(10, "feet")
  4109. },
  4110. {
  4111. name: "Small",
  4112. height: math.unit(30, "feet")
  4113. },
  4114. {
  4115. name: "Macro",
  4116. height: math.unit(100, "feet"),
  4117. default: true
  4118. },
  4119. {
  4120. name: "Macro+",
  4121. height: math.unit(2000, "feet")
  4122. },
  4123. {
  4124. name: "True Form",
  4125. height: math.unit(8924, "miles")
  4126. }
  4127. ]
  4128. ))
  4129. characterMakers.push(() => makeCharacter(
  4130. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4131. {
  4132. front: {
  4133. height: math.unit(2, "meter"),
  4134. weight: math.unit(120, "kg"),
  4135. name: "Front",
  4136. image: {
  4137. source: "./media/characters/ggv/front.svg"
  4138. }
  4139. },
  4140. side: {
  4141. height: math.unit(2, "meter"),
  4142. weight: math.unit(120, "kg"),
  4143. name: "Side",
  4144. image: {
  4145. source: "./media/characters/ggv/side.svg"
  4146. }
  4147. }
  4148. },
  4149. [
  4150. {
  4151. name: "Extremely Puny",
  4152. height: math.unit(9 + 5 / 12, "feet")
  4153. },
  4154. {
  4155. name: "Horribly Small",
  4156. height: math.unit(47.7, "miles"),
  4157. default: true
  4158. },
  4159. {
  4160. name: "Reasonably Sized",
  4161. height: math.unit(25000, "parsecs")
  4162. },
  4163. {
  4164. name: "Slightly Uncompressed",
  4165. height: math.unit(7.77e31, "parsecs")
  4166. },
  4167. {
  4168. name: "Omniversal",
  4169. height: math.unit(1e300, "meters")
  4170. },
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4175. {
  4176. front: {
  4177. height: math.unit(2, "meter"),
  4178. weight: math.unit(75, "lb"),
  4179. name: "Front",
  4180. image: {
  4181. source: "./media/characters/napalm/front.svg"
  4182. }
  4183. },
  4184. back: {
  4185. height: math.unit(2, "meter"),
  4186. weight: math.unit(75, "lb"),
  4187. name: "Back",
  4188. image: {
  4189. source: "./media/characters/napalm/back.svg"
  4190. }
  4191. }
  4192. },
  4193. [
  4194. {
  4195. name: "Standard",
  4196. height: math.unit(55, "feet"),
  4197. default: true
  4198. }
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4203. {
  4204. front: {
  4205. height: math.unit(7 + 5 / 6, "feet"),
  4206. weight: math.unit(325, "lb"),
  4207. name: "Front",
  4208. image: {
  4209. source: "./media/characters/asana/front.svg",
  4210. extra: 1133 / 1060,
  4211. bottom: 15.2 / 1148.6
  4212. }
  4213. },
  4214. back: {
  4215. height: math.unit(7 + 5 / 6, "feet"),
  4216. weight: math.unit(325, "lb"),
  4217. name: "Back",
  4218. image: {
  4219. source: "./media/characters/asana/back.svg",
  4220. extra: 1114 / 1043,
  4221. bottom: 5 / 1120
  4222. }
  4223. },
  4224. dressedDark: {
  4225. height: math.unit(7 + 5 / 6, "feet"),
  4226. weight: math.unit(325, "lb"),
  4227. name: "Dressed (Dark)",
  4228. image: {
  4229. source: "./media/characters/asana/dressed-dark.svg",
  4230. extra: 1133 / 1060,
  4231. bottom: 15.2 / 1148.6
  4232. }
  4233. },
  4234. dressedLight: {
  4235. height: math.unit(7 + 5 / 6, "feet"),
  4236. weight: math.unit(325, "lb"),
  4237. name: "Dressed (Light)",
  4238. image: {
  4239. source: "./media/characters/asana/dressed-light.svg",
  4240. extra: 1133 / 1060,
  4241. bottom: 15.2 / 1148.6
  4242. }
  4243. },
  4244. },
  4245. [
  4246. {
  4247. name: "Standard",
  4248. height: math.unit(7 + 5 / 6, "feet"),
  4249. default: true
  4250. },
  4251. {
  4252. name: "Large",
  4253. height: math.unit(10, "meters")
  4254. },
  4255. {
  4256. name: "Macro",
  4257. height: math.unit(2500, "meters")
  4258. },
  4259. {
  4260. name: "Megamacro",
  4261. height: math.unit(5e6, "meters")
  4262. },
  4263. {
  4264. name: "Examacro",
  4265. height: math.unit(5e12, "lightyears")
  4266. },
  4267. {
  4268. name: "Max Size",
  4269. height: math.unit(1e31, "lightyears")
  4270. }
  4271. ]
  4272. ))
  4273. characterMakers.push(() => makeCharacter(
  4274. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4275. {
  4276. front: {
  4277. height: math.unit(2, "meter"),
  4278. weight: math.unit(60, "kg"),
  4279. name: "Front",
  4280. image: {
  4281. source: "./media/characters/ebony/front.svg",
  4282. bottom: 0.03,
  4283. extra: 1045 / 810 + 0.03
  4284. }
  4285. },
  4286. side: {
  4287. height: math.unit(2, "meter"),
  4288. weight: math.unit(60, "kg"),
  4289. name: "Side",
  4290. image: {
  4291. source: "./media/characters/ebony/side.svg",
  4292. bottom: 0.03,
  4293. extra: 1045 / 810 + 0.03
  4294. }
  4295. },
  4296. back: {
  4297. height: math.unit(2, "meter"),
  4298. weight: math.unit(60, "kg"),
  4299. name: "Back",
  4300. image: {
  4301. source: "./media/characters/ebony/back.svg",
  4302. bottom: 0.01,
  4303. extra: 1045 / 810 + 0.01
  4304. }
  4305. },
  4306. },
  4307. [
  4308. // TODO check why I did this lol
  4309. {
  4310. name: "Standard",
  4311. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4312. default: true
  4313. },
  4314. {
  4315. name: "Macro",
  4316. height: math.unit(200, "feet")
  4317. },
  4318. {
  4319. name: "Gigamacro",
  4320. height: math.unit(13000, "km")
  4321. }
  4322. ]
  4323. ))
  4324. characterMakers.push(() => makeCharacter(
  4325. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4326. {
  4327. front: {
  4328. height: math.unit(6, "feet"),
  4329. weight: math.unit(175, "lb"),
  4330. name: "Front",
  4331. image: {
  4332. source: "./media/characters/mountain/front.svg",
  4333. extra: 972 / 955,
  4334. bottom: 64 / 1036.6
  4335. }
  4336. },
  4337. back: {
  4338. height: math.unit(6, "feet"),
  4339. weight: math.unit(175, "lb"),
  4340. name: "Back",
  4341. image: {
  4342. source: "./media/characters/mountain/back.svg",
  4343. extra: 970 / 950,
  4344. bottom: 28.25 / 999
  4345. }
  4346. },
  4347. },
  4348. [
  4349. {
  4350. name: "Large",
  4351. height: math.unit(20, "meters")
  4352. },
  4353. {
  4354. name: "Macro",
  4355. height: math.unit(300, "meters")
  4356. },
  4357. {
  4358. name: "Gigamacro",
  4359. height: math.unit(10000, "km"),
  4360. default: true
  4361. },
  4362. {
  4363. name: "Examacro",
  4364. height: math.unit(10e9, "lightyears")
  4365. }
  4366. ]
  4367. ))
  4368. characterMakers.push(() => makeCharacter(
  4369. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4370. {
  4371. front: {
  4372. height: math.unit(8, "feet"),
  4373. weight: math.unit(500, "lb"),
  4374. name: "Front",
  4375. image: {
  4376. source: "./media/characters/rick/front.svg"
  4377. }
  4378. }
  4379. },
  4380. [
  4381. {
  4382. name: "Normal",
  4383. height: math.unit(8, "feet"),
  4384. default: true
  4385. },
  4386. {
  4387. name: "Macro",
  4388. height: math.unit(5, "km")
  4389. }
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4394. {
  4395. front: {
  4396. height: math.unit(8, "feet"),
  4397. weight: math.unit(120, "lb"),
  4398. name: "Front",
  4399. image: {
  4400. source: "./media/characters/ona/front.svg"
  4401. }
  4402. },
  4403. frontAlt: {
  4404. height: math.unit(8, "feet"),
  4405. weight: math.unit(120, "lb"),
  4406. name: "Front (Alt)",
  4407. image: {
  4408. source: "./media/characters/ona/front-alt.svg"
  4409. }
  4410. },
  4411. back: {
  4412. height: math.unit(8, "feet"),
  4413. weight: math.unit(120, "lb"),
  4414. name: "Back",
  4415. image: {
  4416. source: "./media/characters/ona/back.svg"
  4417. }
  4418. },
  4419. foot: {
  4420. height: math.unit(1.1, "feet"),
  4421. name: "Foot",
  4422. image: {
  4423. source: "./media/characters/ona/foot.svg"
  4424. }
  4425. }
  4426. },
  4427. [
  4428. {
  4429. name: "Megamacro",
  4430. height: math.unit(70, "km"),
  4431. default: true
  4432. },
  4433. {
  4434. name: "Gigamacro",
  4435. height: math.unit(681818, "miles")
  4436. },
  4437. {
  4438. name: "Examacro",
  4439. height: math.unit(3800000, "lightyears")
  4440. },
  4441. ]
  4442. ))
  4443. characterMakers.push(() => makeCharacter(
  4444. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4445. {
  4446. front: {
  4447. height: math.unit(12, "feet"),
  4448. weight: math.unit(3000, "lb"),
  4449. name: "Front",
  4450. image: {
  4451. source: "./media/characters/mech/front.svg",
  4452. extra: 2900 / 2770,
  4453. bottom: 110 / 3010
  4454. }
  4455. },
  4456. back: {
  4457. height: math.unit(12, "feet"),
  4458. weight: math.unit(3000, "lb"),
  4459. name: "Back",
  4460. image: {
  4461. source: "./media/characters/mech/back.svg",
  4462. extra: 3011 / 2890,
  4463. bottom: 94 / 3105
  4464. }
  4465. },
  4466. maw: {
  4467. height: math.unit(3.07, "feet"),
  4468. name: "Maw",
  4469. image: {
  4470. source: "./media/characters/mech/maw.svg"
  4471. }
  4472. },
  4473. head: {
  4474. height: math.unit(3.07, "feet"),
  4475. name: "Head",
  4476. image: {
  4477. source: "./media/characters/mech/head.svg"
  4478. }
  4479. },
  4480. dick: {
  4481. height: math.unit(1.43, "feet"),
  4482. name: "Dick",
  4483. image: {
  4484. source: "./media/characters/mech/dick.svg"
  4485. }
  4486. },
  4487. },
  4488. [
  4489. {
  4490. name: "Normal",
  4491. height: math.unit(12, "feet")
  4492. },
  4493. {
  4494. name: "Macro",
  4495. height: math.unit(300, "feet"),
  4496. default: true
  4497. },
  4498. {
  4499. name: "Macro+",
  4500. height: math.unit(1500, "feet")
  4501. },
  4502. ]
  4503. ))
  4504. characterMakers.push(() => makeCharacter(
  4505. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4506. {
  4507. front: {
  4508. height: math.unit(1.3, "meter"),
  4509. weight: math.unit(30, "kg"),
  4510. name: "Front",
  4511. image: {
  4512. source: "./media/characters/gregory/front.svg",
  4513. }
  4514. }
  4515. },
  4516. [
  4517. {
  4518. name: "Normal",
  4519. height: math.unit(1.3, "meter"),
  4520. default: true
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(20, "meter")
  4525. }
  4526. ]
  4527. ))
  4528. characterMakers.push(() => makeCharacter(
  4529. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4530. {
  4531. front: {
  4532. height: math.unit(2.8, "meter"),
  4533. weight: math.unit(200, "kg"),
  4534. name: "Front",
  4535. image: {
  4536. source: "./media/characters/elory/front.svg",
  4537. }
  4538. }
  4539. },
  4540. [
  4541. {
  4542. name: "Normal",
  4543. height: math.unit(2.8, "meter"),
  4544. default: true
  4545. },
  4546. {
  4547. name: "Macro",
  4548. height: math.unit(38, "meter")
  4549. }
  4550. ]
  4551. ))
  4552. characterMakers.push(() => makeCharacter(
  4553. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4554. {
  4555. front: {
  4556. height: math.unit(470, "feet"),
  4557. weight: math.unit(924, "tons"),
  4558. name: "Front",
  4559. image: {
  4560. source: "./media/characters/angelpatamon/front.svg",
  4561. }
  4562. }
  4563. },
  4564. [
  4565. {
  4566. name: "Normal",
  4567. height: math.unit(470, "feet"),
  4568. default: true
  4569. },
  4570. {
  4571. name: "Deity Size I",
  4572. height: math.unit(28651.2, "km")
  4573. },
  4574. {
  4575. name: "Deity Size II",
  4576. height: math.unit(171907.2, "km")
  4577. }
  4578. ]
  4579. ))
  4580. characterMakers.push(() => makeCharacter(
  4581. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4582. {
  4583. side: {
  4584. height: math.unit(7.2, "meter"),
  4585. weight: math.unit(8.2, "tons"),
  4586. name: "Side",
  4587. image: {
  4588. source: "./media/characters/cryae/side.svg",
  4589. extra: 3500 / 1500
  4590. }
  4591. }
  4592. },
  4593. [
  4594. {
  4595. name: "Normal",
  4596. height: math.unit(7.2, "meter"),
  4597. default: true
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(175, "lb"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/xera/front.svg",
  4610. extra: 2377 / 1972,
  4611. bottom: 75.5 / 2452
  4612. }
  4613. },
  4614. side: {
  4615. height: math.unit(6, "feet"),
  4616. weight: math.unit(175, "lb"),
  4617. name: "Side",
  4618. image: {
  4619. source: "./media/characters/xera/side.svg",
  4620. extra: 2345 / 2019,
  4621. bottom: 39.7 / 2384
  4622. }
  4623. },
  4624. back: {
  4625. height: math.unit(6, "feet"),
  4626. weight: math.unit(175, "lb"),
  4627. name: "Back",
  4628. image: {
  4629. source: "./media/characters/xera/back.svg",
  4630. extra: 2095 / 1984,
  4631. bottom: 67 / 2166
  4632. }
  4633. },
  4634. },
  4635. [
  4636. {
  4637. name: "Small",
  4638. height: math.unit(10, "feet")
  4639. },
  4640. {
  4641. name: "Macro",
  4642. height: math.unit(500, "meters"),
  4643. default: true
  4644. },
  4645. {
  4646. name: "Macro+",
  4647. height: math.unit(10, "km")
  4648. },
  4649. {
  4650. name: "Gigamacro",
  4651. height: math.unit(25000, "km")
  4652. },
  4653. {
  4654. name: "Teramacro",
  4655. height: math.unit(3e6, "km")
  4656. }
  4657. ]
  4658. ))
  4659. characterMakers.push(() => makeCharacter(
  4660. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4661. {
  4662. front: {
  4663. height: math.unit(6, "feet"),
  4664. weight: math.unit(175, "lb"),
  4665. name: "Front",
  4666. image: {
  4667. source: "./media/characters/nebula/front.svg",
  4668. extra: 2566 / 2362,
  4669. bottom: 81 / 2644
  4670. }
  4671. }
  4672. },
  4673. [
  4674. {
  4675. name: "Small",
  4676. height: math.unit(4.5, "meters")
  4677. },
  4678. {
  4679. name: "Macro",
  4680. height: math.unit(1500, "meters"),
  4681. default: true
  4682. },
  4683. {
  4684. name: "Megamacro",
  4685. height: math.unit(150, "km")
  4686. },
  4687. {
  4688. name: "Gigamacro",
  4689. height: math.unit(27000, "km")
  4690. }
  4691. ]
  4692. ))
  4693. characterMakers.push(() => makeCharacter(
  4694. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4695. {
  4696. front: {
  4697. height: math.unit(6, "feet"),
  4698. weight: math.unit(225, "lb"),
  4699. name: "Front",
  4700. image: {
  4701. source: "./media/characters/abysgar/front.svg",
  4702. extra: 1739/1614,
  4703. bottom: 71/1810
  4704. }
  4705. },
  4706. frontNsfw: {
  4707. height: math.unit(6, "feet"),
  4708. weight: math.unit(225, "lb"),
  4709. name: "Front (NSFW)",
  4710. image: {
  4711. source: "./media/characters/abysgar/front-nsfw.svg",
  4712. extra: 1739/1614,
  4713. bottom: 71/1810
  4714. }
  4715. },
  4716. back: {
  4717. height: math.unit(4.6, "feet"),
  4718. weight: math.unit(225, "lb"),
  4719. name: "Back",
  4720. image: {
  4721. source: "./media/characters/abysgar/back.svg",
  4722. extra: 1384/1327,
  4723. bottom: 0/1384
  4724. }
  4725. },
  4726. head: {
  4727. height: math.unit(1.25, "feet"),
  4728. name: "Head",
  4729. image: {
  4730. source: "./media/characters/abysgar/head.svg",
  4731. extra: 669/569,
  4732. bottom: 0/669
  4733. }
  4734. },
  4735. },
  4736. [
  4737. {
  4738. name: "Small",
  4739. height: math.unit(4.5, "meters")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(1250, "meters"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Megamacro",
  4748. height: math.unit(125, "km")
  4749. },
  4750. {
  4751. name: "Gigamacro",
  4752. height: math.unit(26000, "km")
  4753. }
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(180, "lb"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/yakuz/front.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Small",
  4771. height: math.unit(5, "meters")
  4772. },
  4773. {
  4774. name: "Macro",
  4775. height: math.unit(1500, "meters"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Megamacro",
  4780. height: math.unit(200, "km")
  4781. },
  4782. {
  4783. name: "Gigamacro",
  4784. height: math.unit(100000, "km")
  4785. }
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(175, "lb"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/mirova/front.svg",
  4797. extra: 3334 / 3071,
  4798. bottom: 42 / 3375.6
  4799. }
  4800. }
  4801. },
  4802. [
  4803. {
  4804. name: "Small",
  4805. height: math.unit(5, "meters")
  4806. },
  4807. {
  4808. name: "Macro",
  4809. height: math.unit(900, "meters"),
  4810. default: true
  4811. },
  4812. {
  4813. name: "Megamacro",
  4814. height: math.unit(135, "km")
  4815. },
  4816. {
  4817. name: "Gigamacro",
  4818. height: math.unit(20000, "km")
  4819. }
  4820. ]
  4821. ))
  4822. characterMakers.push(() => makeCharacter(
  4823. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4824. {
  4825. side: {
  4826. height: math.unit(28.35, "feet"),
  4827. weight: math.unit(99.75, "tons"),
  4828. name: "Side",
  4829. image: {
  4830. source: "./media/characters/asana-mech/side.svg",
  4831. extra: 923 / 699,
  4832. bottom: 50 / 975
  4833. }
  4834. },
  4835. chaingun: {
  4836. height: math.unit(7, "feet"),
  4837. weight: math.unit(2400, "lb"),
  4838. name: "Chaingun",
  4839. image: {
  4840. source: "./media/characters/asana-mech/chaingun.svg"
  4841. }
  4842. },
  4843. laser: {
  4844. height: math.unit(7.12, "feet"),
  4845. weight: math.unit(2000, "lb"),
  4846. name: "Laser",
  4847. image: {
  4848. source: "./media/characters/asana-mech/laser.svg"
  4849. }
  4850. },
  4851. },
  4852. [
  4853. {
  4854. name: "Normal",
  4855. height: math.unit(28.35, "feet"),
  4856. default: true
  4857. },
  4858. {
  4859. name: "Macro",
  4860. height: math.unit(2500, "feet")
  4861. },
  4862. {
  4863. name: "Megamacro",
  4864. height: math.unit(25, "miles")
  4865. },
  4866. {
  4867. name: "Examacro",
  4868. height: math.unit(6e8, "lightyears")
  4869. },
  4870. ]
  4871. ))
  4872. characterMakers.push(() => makeCharacter(
  4873. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4874. {
  4875. front: {
  4876. height: math.unit(5, "meters"),
  4877. weight: math.unit(1000, "kg"),
  4878. name: "Front",
  4879. image: {
  4880. source: "./media/characters/asche/front.svg",
  4881. extra: 1258 / 1190,
  4882. bottom: 47 / 1305
  4883. }
  4884. },
  4885. frontUnderwear: {
  4886. height: math.unit(5, "meters"),
  4887. weight: math.unit(1000, "kg"),
  4888. name: "Front (Underwear)",
  4889. image: {
  4890. source: "./media/characters/asche/front-underwear.svg",
  4891. extra: 1258 / 1190,
  4892. bottom: 47 / 1305
  4893. }
  4894. },
  4895. frontDressed: {
  4896. height: math.unit(5, "meters"),
  4897. weight: math.unit(1000, "kg"),
  4898. name: "Front (Dressed)",
  4899. image: {
  4900. source: "./media/characters/asche/front-dressed.svg",
  4901. extra: 1258 / 1190,
  4902. bottom: 47 / 1305
  4903. }
  4904. },
  4905. frontArmor: {
  4906. height: math.unit(5, "meters"),
  4907. weight: math.unit(1000, "kg"),
  4908. name: "Front (Armored)",
  4909. image: {
  4910. source: "./media/characters/asche/front-armored.svg",
  4911. extra: 1374 / 1308,
  4912. bottom: 23 / 1397
  4913. }
  4914. },
  4915. mp724: {
  4916. height: math.unit(0.96, "meters"),
  4917. weight: math.unit(38, "kg"),
  4918. name: "H&K MP724",
  4919. image: {
  4920. source: "./media/characters/asche/h&k-mp724.svg"
  4921. }
  4922. },
  4923. side: {
  4924. height: math.unit(5, "meters"),
  4925. weight: math.unit(1000, "kg"),
  4926. name: "Side",
  4927. image: {
  4928. source: "./media/characters/asche/side.svg",
  4929. extra: 1717 / 1609,
  4930. bottom: 0.005
  4931. }
  4932. },
  4933. back: {
  4934. height: math.unit(5, "meters"),
  4935. weight: math.unit(1000, "kg"),
  4936. name: "Back",
  4937. image: {
  4938. source: "./media/characters/asche/back.svg",
  4939. extra: 1570 / 1501
  4940. }
  4941. },
  4942. },
  4943. [
  4944. {
  4945. name: "DEFCON 5",
  4946. height: math.unit(5, "meters")
  4947. },
  4948. {
  4949. name: "DEFCON 4",
  4950. height: math.unit(500, "meters"),
  4951. default: true
  4952. },
  4953. {
  4954. name: "DEFCON 3",
  4955. height: math.unit(5, "km")
  4956. },
  4957. {
  4958. name: "DEFCON 2",
  4959. height: math.unit(500, "km")
  4960. },
  4961. {
  4962. name: "DEFCON 1",
  4963. height: math.unit(500000, "km")
  4964. },
  4965. {
  4966. name: "DEFCON 0",
  4967. height: math.unit(3, "gigaparsecs")
  4968. },
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(2, "meters"),
  4976. weight: math.unit(76, "kg"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/gale/front.svg"
  4980. }
  4981. },
  4982. frontAlt1: {
  4983. height: math.unit(2, "meters"),
  4984. weight: math.unit(76, "kg"),
  4985. name: "Front (Alt 1)",
  4986. image: {
  4987. source: "./media/characters/gale/front-alt-1.svg"
  4988. }
  4989. },
  4990. frontAlt2: {
  4991. height: math.unit(2, "meters"),
  4992. weight: math.unit(76, "kg"),
  4993. name: "Front (Alt 2)",
  4994. image: {
  4995. source: "./media/characters/gale/front-alt-2.svg"
  4996. }
  4997. },
  4998. },
  4999. [
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(7, "feet")
  5003. },
  5004. {
  5005. name: "Macro",
  5006. height: math.unit(150, "feet"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Macro+",
  5011. height: math.unit(300, "feet")
  5012. },
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(5 + 10/12, "feet"),
  5020. weight: math.unit(67, "kg"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/draylen/front.svg",
  5024. extra: 832/777,
  5025. bottom: 85/917
  5026. }
  5027. }
  5028. },
  5029. [
  5030. {
  5031. name: "Normal",
  5032. height: math.unit(5 + 10/12, "feet")
  5033. },
  5034. {
  5035. name: "Macro",
  5036. height: math.unit(150, "feet"),
  5037. default: true
  5038. }
  5039. ]
  5040. ))
  5041. characterMakers.push(() => makeCharacter(
  5042. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5043. {
  5044. front: {
  5045. height: math.unit(7 + 9 / 12, "feet"),
  5046. weight: math.unit(379, "lbs"),
  5047. name: "Front",
  5048. image: {
  5049. source: "./media/characters/chez/front.svg"
  5050. }
  5051. },
  5052. side: {
  5053. height: math.unit(7 + 9 / 12, "feet"),
  5054. weight: math.unit(379, "lbs"),
  5055. name: "Side",
  5056. image: {
  5057. source: "./media/characters/chez/side.svg"
  5058. }
  5059. }
  5060. },
  5061. [
  5062. {
  5063. name: "Normal",
  5064. height: math.unit(7 + 9 / 12, "feet"),
  5065. default: true
  5066. },
  5067. {
  5068. name: "God King",
  5069. height: math.unit(9750000, "meters")
  5070. }
  5071. ]
  5072. ))
  5073. characterMakers.push(() => makeCharacter(
  5074. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5075. {
  5076. front: {
  5077. height: math.unit(6, "feet"),
  5078. weight: math.unit(275, "lbs"),
  5079. name: "Front",
  5080. image: {
  5081. source: "./media/characters/kaylum/front.svg",
  5082. bottom: 0.01,
  5083. extra: 1166 / 1031
  5084. }
  5085. },
  5086. frontWingless: {
  5087. height: math.unit(6, "feet"),
  5088. weight: math.unit(275, "lbs"),
  5089. name: "Front (Wingless)",
  5090. image: {
  5091. source: "./media/characters/kaylum/front-wingless.svg",
  5092. bottom: 0.01,
  5093. extra: 1117 / 1031
  5094. }
  5095. }
  5096. },
  5097. [
  5098. {
  5099. name: "Normal",
  5100. height: math.unit(3.05, "meters")
  5101. },
  5102. {
  5103. name: "Master",
  5104. height: math.unit(5.5, "meters")
  5105. },
  5106. {
  5107. name: "Rampage",
  5108. height: math.unit(19, "meters")
  5109. },
  5110. {
  5111. name: "Macro Lite",
  5112. height: math.unit(37, "meters")
  5113. },
  5114. {
  5115. name: "Hyper Predator",
  5116. height: math.unit(61, "meters")
  5117. },
  5118. {
  5119. name: "Macro",
  5120. height: math.unit(138, "meters"),
  5121. default: true
  5122. }
  5123. ]
  5124. ))
  5125. characterMakers.push(() => makeCharacter(
  5126. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5127. {
  5128. front: {
  5129. height: math.unit(5 + 5 / 12, "feet"),
  5130. weight: math.unit(120, "lbs"),
  5131. name: "Front",
  5132. image: {
  5133. source: "./media/characters/geta/front.svg",
  5134. extra: 1003/933,
  5135. bottom: 21/1024
  5136. }
  5137. },
  5138. paw: {
  5139. height: math.unit(0.35, "feet"),
  5140. name: "Paw",
  5141. image: {
  5142. source: "./media/characters/geta/paw.svg"
  5143. }
  5144. },
  5145. },
  5146. [
  5147. {
  5148. name: "Micro",
  5149. height: math.unit(3, "inches"),
  5150. default: true
  5151. },
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(5 + 5 / 12, "feet")
  5155. }
  5156. ]
  5157. ))
  5158. characterMakers.push(() => makeCharacter(
  5159. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5160. {
  5161. front: {
  5162. height: math.unit(6, "feet"),
  5163. weight: math.unit(300, "lbs"),
  5164. name: "Front",
  5165. image: {
  5166. source: "./media/characters/tyrnn/front.svg"
  5167. }
  5168. }
  5169. },
  5170. [
  5171. {
  5172. name: "Main Height",
  5173. height: math.unit(355, "feet"),
  5174. default: true
  5175. },
  5176. {
  5177. name: "Fave. Height",
  5178. height: math.unit(2400, "feet")
  5179. }
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5184. {
  5185. front: {
  5186. height: math.unit(6, "feet"),
  5187. weight: math.unit(300, "lbs"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/appledectomy/front.svg"
  5191. }
  5192. }
  5193. },
  5194. [
  5195. {
  5196. name: "Macro",
  5197. height: math.unit(2500, "feet")
  5198. },
  5199. {
  5200. name: "Megamacro",
  5201. height: math.unit(50, "miles"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Gigamacro",
  5206. height: math.unit(5000, "miles")
  5207. },
  5208. {
  5209. name: "Teramacro",
  5210. height: math.unit(250000, "miles")
  5211. },
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5216. {
  5217. front: {
  5218. height: math.unit(6, "feet"),
  5219. weight: math.unit(200, "lbs"),
  5220. name: "Front",
  5221. image: {
  5222. source: "./media/characters/vulpes/front.svg",
  5223. extra: 573 / 543,
  5224. bottom: 0.033
  5225. }
  5226. },
  5227. side: {
  5228. height: math.unit(6, "feet"),
  5229. weight: math.unit(200, "lbs"),
  5230. name: "Side",
  5231. image: {
  5232. source: "./media/characters/vulpes/side.svg",
  5233. extra: 577 / 549,
  5234. bottom: 11 / 588
  5235. }
  5236. },
  5237. back: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(200, "lbs"),
  5240. name: "Back",
  5241. image: {
  5242. source: "./media/characters/vulpes/back.svg",
  5243. extra: 573 / 549,
  5244. bottom: 20 / 593
  5245. }
  5246. },
  5247. feet: {
  5248. height: math.unit(1.276, "feet"),
  5249. name: "Feet",
  5250. image: {
  5251. source: "./media/characters/vulpes/feet.svg"
  5252. }
  5253. },
  5254. maw: {
  5255. height: math.unit(1.18, "feet"),
  5256. name: "Maw",
  5257. image: {
  5258. source: "./media/characters/vulpes/maw.svg"
  5259. }
  5260. },
  5261. },
  5262. [
  5263. {
  5264. name: "Micro",
  5265. height: math.unit(2, "inches")
  5266. },
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(6.3, "feet")
  5270. },
  5271. {
  5272. name: "Macro",
  5273. height: math.unit(850, "feet")
  5274. },
  5275. {
  5276. name: "Megamacro",
  5277. height: math.unit(7500, "feet"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Gigamacro",
  5282. height: math.unit(570000, "miles")
  5283. }
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(210, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/rain-fallen/front.svg"
  5295. }
  5296. },
  5297. side: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(210, "lbs"),
  5300. name: "Side",
  5301. image: {
  5302. source: "./media/characters/rain-fallen/side.svg"
  5303. }
  5304. },
  5305. back: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(210, "lbs"),
  5308. name: "Back",
  5309. image: {
  5310. source: "./media/characters/rain-fallen/back.svg"
  5311. }
  5312. },
  5313. feral: {
  5314. height: math.unit(9, "feet"),
  5315. weight: math.unit(700, "lbs"),
  5316. name: "Feral",
  5317. image: {
  5318. source: "./media/characters/rain-fallen/feral.svg"
  5319. }
  5320. },
  5321. },
  5322. [
  5323. {
  5324. name: "Meddling with Mortals",
  5325. height: math.unit(8 + 8/12, "feet")
  5326. },
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(5, "meter")
  5330. },
  5331. {
  5332. name: "Macro",
  5333. height: math.unit(150, "meter"),
  5334. default: true
  5335. },
  5336. {
  5337. name: "Megamacro",
  5338. height: math.unit(278e6, "meter")
  5339. },
  5340. {
  5341. name: "Gigamacro",
  5342. height: math.unit(2e9, "meter")
  5343. },
  5344. {
  5345. name: "Teramacro",
  5346. height: math.unit(8e12, "meter")
  5347. },
  5348. {
  5349. name: "Devourer",
  5350. height: math.unit(14, "zettameters")
  5351. },
  5352. {
  5353. name: "Scarlet King",
  5354. height: math.unit(18, "yottameters")
  5355. },
  5356. {
  5357. name: "Void",
  5358. height: math.unit(1e88, "yottameters")
  5359. }
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5364. {
  5365. standing: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(180, "lbs"),
  5368. name: "Standing",
  5369. image: {
  5370. source: "./media/characters/zaakira/standing.svg",
  5371. extra: 1599/1504,
  5372. bottom: 39/1638
  5373. }
  5374. },
  5375. laying: {
  5376. height: math.unit(3.3, "feet"),
  5377. weight: math.unit(180, "lbs"),
  5378. name: "Laying",
  5379. image: {
  5380. source: "./media/characters/zaakira/laying.svg"
  5381. }
  5382. },
  5383. },
  5384. [
  5385. {
  5386. name: "Normal",
  5387. height: math.unit(12, "feet")
  5388. },
  5389. {
  5390. name: "Macro",
  5391. height: math.unit(279, "feet"),
  5392. default: true
  5393. }
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5398. {
  5399. femSfw: {
  5400. height: math.unit(8, "feet"),
  5401. weight: math.unit(350, "lb"),
  5402. name: "Fem",
  5403. image: {
  5404. source: "./media/characters/sigvald/fem-sfw.svg",
  5405. extra: 182 / 164,
  5406. bottom: 8.7 / 190.5
  5407. }
  5408. },
  5409. femNsfw: {
  5410. height: math.unit(8, "feet"),
  5411. weight: math.unit(350, "lb"),
  5412. name: "Fem (NSFW)",
  5413. image: {
  5414. source: "./media/characters/sigvald/fem-nsfw.svg",
  5415. extra: 182 / 164,
  5416. bottom: 8.7 / 190.5
  5417. }
  5418. },
  5419. maleNsfw: {
  5420. height: math.unit(8, "feet"),
  5421. weight: math.unit(350, "lb"),
  5422. name: "Male (NSFW)",
  5423. image: {
  5424. source: "./media/characters/sigvald/male-nsfw.svg",
  5425. extra: 182 / 164,
  5426. bottom: 8.7 / 190.5
  5427. }
  5428. },
  5429. hermNsfw: {
  5430. height: math.unit(8, "feet"),
  5431. weight: math.unit(350, "lb"),
  5432. name: "Herm (NSFW)",
  5433. image: {
  5434. source: "./media/characters/sigvald/herm-nsfw.svg",
  5435. extra: 182 / 164,
  5436. bottom: 8.7 / 190.5
  5437. }
  5438. },
  5439. dick: {
  5440. height: math.unit(2.36, "feet"),
  5441. name: "Dick",
  5442. image: {
  5443. source: "./media/characters/sigvald/dick.svg"
  5444. }
  5445. },
  5446. eye: {
  5447. height: math.unit(0.31, "feet"),
  5448. name: "Eye",
  5449. image: {
  5450. source: "./media/characters/sigvald/eye.svg"
  5451. }
  5452. },
  5453. mouth: {
  5454. height: math.unit(0.92, "feet"),
  5455. name: "Mouth",
  5456. image: {
  5457. source: "./media/characters/sigvald/mouth.svg"
  5458. }
  5459. },
  5460. paws: {
  5461. height: math.unit(2.2, "feet"),
  5462. name: "Paws",
  5463. image: {
  5464. source: "./media/characters/sigvald/paws.svg"
  5465. }
  5466. }
  5467. },
  5468. [
  5469. {
  5470. name: "Normal",
  5471. height: math.unit(8, "feet")
  5472. },
  5473. {
  5474. name: "Large",
  5475. height: math.unit(12, "feet")
  5476. },
  5477. {
  5478. name: "Larger",
  5479. height: math.unit(20, "feet")
  5480. },
  5481. {
  5482. name: "Macro",
  5483. height: math.unit(150, "feet")
  5484. },
  5485. {
  5486. name: "Macro+",
  5487. height: math.unit(200, "feet"),
  5488. default: true
  5489. },
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5494. {
  5495. side: {
  5496. height: math.unit(12, "feet"),
  5497. weight: math.unit(2000, "kg"),
  5498. name: "Side",
  5499. image: {
  5500. source: "./media/characters/scott/side.svg",
  5501. extra: 754 / 724,
  5502. bottom: 0.069
  5503. }
  5504. },
  5505. upright: {
  5506. height: math.unit(12, "feet"),
  5507. weight: math.unit(2000, "kg"),
  5508. name: "Upright",
  5509. image: {
  5510. source: "./media/characters/scott/upright.svg",
  5511. extra: 3881 / 3722,
  5512. bottom: 0.05
  5513. }
  5514. },
  5515. },
  5516. [
  5517. {
  5518. name: "Normal",
  5519. height: math.unit(12, "feet"),
  5520. default: true
  5521. },
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5526. {
  5527. side: {
  5528. height: math.unit(8, "meters"),
  5529. weight: math.unit(84755, "lbs"),
  5530. name: "Side",
  5531. image: {
  5532. source: "./media/characters/tobias/side.svg",
  5533. extra: 1474 / 1096,
  5534. bottom: 38.9 / 1513.1235
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(8, "meters"),
  5542. default: true
  5543. },
  5544. ]
  5545. ))
  5546. characterMakers.push(() => makeCharacter(
  5547. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5548. {
  5549. front: {
  5550. height: math.unit(5.5, "feet"),
  5551. weight: math.unit(400, "lbs"),
  5552. name: "Front",
  5553. image: {
  5554. source: "./media/characters/kieran/front.svg",
  5555. extra: 2694 / 2364,
  5556. bottom: 217 / 2908
  5557. }
  5558. },
  5559. side: {
  5560. height: math.unit(5.5, "feet"),
  5561. weight: math.unit(400, "lbs"),
  5562. name: "Side",
  5563. image: {
  5564. source: "./media/characters/kieran/side.svg",
  5565. extra: 875 / 777,
  5566. bottom: 84.6 / 959
  5567. }
  5568. },
  5569. },
  5570. [
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(5.5, "feet"),
  5574. default: true
  5575. },
  5576. ]
  5577. ))
  5578. characterMakers.push(() => makeCharacter(
  5579. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5580. {
  5581. side: {
  5582. height: math.unit(2, "meters"),
  5583. weight: math.unit(70, "kg"),
  5584. name: "Side",
  5585. image: {
  5586. source: "./media/characters/sanya/side.svg",
  5587. bottom: 0.02,
  5588. extra: 1.02
  5589. }
  5590. },
  5591. },
  5592. [
  5593. {
  5594. name: "Small",
  5595. height: math.unit(2, "meters")
  5596. },
  5597. {
  5598. name: "Normal",
  5599. height: math.unit(3, "meters")
  5600. },
  5601. {
  5602. name: "Macro",
  5603. height: math.unit(16, "meters"),
  5604. default: true
  5605. },
  5606. ]
  5607. ))
  5608. characterMakers.push(() => makeCharacter(
  5609. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5610. {
  5611. front: {
  5612. height: math.unit(2, "meters"),
  5613. weight: math.unit(120, "kg"),
  5614. name: "Front",
  5615. image: {
  5616. source: "./media/characters/miranda/front.svg",
  5617. extra: 195 / 185,
  5618. bottom: 10.9 / 206.5
  5619. }
  5620. },
  5621. back: {
  5622. height: math.unit(2, "meters"),
  5623. weight: math.unit(120, "kg"),
  5624. name: "Back",
  5625. image: {
  5626. source: "./media/characters/miranda/back.svg",
  5627. extra: 201 / 193,
  5628. bottom: 2.3 / 203.7
  5629. }
  5630. },
  5631. },
  5632. [
  5633. {
  5634. name: "Normal",
  5635. height: math.unit(10, "feet"),
  5636. default: true
  5637. }
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "James", species: ["deer"], tags: ["anthro"] },
  5642. {
  5643. side: {
  5644. height: math.unit(2, "meters"),
  5645. weight: math.unit(100, "kg"),
  5646. name: "Front",
  5647. image: {
  5648. source: "./media/characters/james/front.svg",
  5649. extra: 10 / 8.5
  5650. }
  5651. },
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(8.5, "feet"),
  5657. default: true
  5658. }
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5663. {
  5664. side: {
  5665. height: math.unit(9.5, "feet"),
  5666. weight: math.unit(2500, "lbs"),
  5667. name: "Side",
  5668. image: {
  5669. source: "./media/characters/heather/side.svg"
  5670. }
  5671. },
  5672. },
  5673. [
  5674. {
  5675. name: "Normal",
  5676. height: math.unit(9.5, "feet"),
  5677. default: true
  5678. }
  5679. ]
  5680. ))
  5681. characterMakers.push(() => makeCharacter(
  5682. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5683. {
  5684. side: {
  5685. height: math.unit(6.5, "feet"),
  5686. weight: math.unit(400, "lbs"),
  5687. name: "Side",
  5688. image: {
  5689. source: "./media/characters/lukas/side.svg",
  5690. extra: 7.25 / 6.5
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(6.5, "feet"),
  5698. default: true
  5699. }
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5704. {
  5705. side: {
  5706. height: math.unit(5, "feet"),
  5707. weight: math.unit(3000, "lbs"),
  5708. name: "Side",
  5709. image: {
  5710. source: "./media/characters/louise/side.svg"
  5711. }
  5712. },
  5713. },
  5714. [
  5715. {
  5716. name: "Normal",
  5717. height: math.unit(5, "feet"),
  5718. default: true
  5719. }
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5724. {
  5725. side: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(150, "lbs"),
  5728. name: "Side",
  5729. image: {
  5730. source: "./media/characters/ramona/side.svg",
  5731. extra: 871/854,
  5732. bottom: 41/912
  5733. }
  5734. },
  5735. },
  5736. [
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(6 + 4/12, "feet")
  5740. },
  5741. {
  5742. name: "Minimacro",
  5743. height: math.unit(5.3, "meters"),
  5744. default: true
  5745. },
  5746. {
  5747. name: "Macro",
  5748. height: math.unit(20, "stories")
  5749. },
  5750. {
  5751. name: "Macro+",
  5752. height: math.unit(50, "stories")
  5753. },
  5754. ]
  5755. ))
  5756. characterMakers.push(() => makeCharacter(
  5757. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5758. {
  5759. standing: {
  5760. height: math.unit(5.75, "feet"),
  5761. weight: math.unit(160, "lbs"),
  5762. name: "Standing",
  5763. image: {
  5764. source: "./media/characters/deerpuff/standing.svg",
  5765. extra: 682 / 624
  5766. }
  5767. },
  5768. sitting: {
  5769. height: math.unit(5.75 / 1.79, "feet"),
  5770. weight: math.unit(160, "lbs"),
  5771. name: "Sitting",
  5772. image: {
  5773. source: "./media/characters/deerpuff/sitting.svg",
  5774. bottom: 44 / 400,
  5775. extra: 1
  5776. }
  5777. },
  5778. taurLaying: {
  5779. height: math.unit(6, "feet"),
  5780. weight: math.unit(400, "lbs"),
  5781. name: "Taur (Laying)",
  5782. image: {
  5783. source: "./media/characters/deerpuff/taur-laying.svg"
  5784. }
  5785. },
  5786. },
  5787. [
  5788. {
  5789. name: "Puffball",
  5790. height: math.unit(6, "inches")
  5791. },
  5792. {
  5793. name: "Normalpuff",
  5794. height: math.unit(5.75, "feet")
  5795. },
  5796. {
  5797. name: "Macropuff",
  5798. height: math.unit(1500, "feet"),
  5799. default: true
  5800. },
  5801. {
  5802. name: "Megapuff",
  5803. height: math.unit(500, "miles")
  5804. },
  5805. {
  5806. name: "Gigapuff",
  5807. height: math.unit(250000, "miles")
  5808. },
  5809. {
  5810. name: "Omegapuff",
  5811. height: math.unit(1000, "lightyears")
  5812. },
  5813. ]
  5814. ))
  5815. characterMakers.push(() => makeCharacter(
  5816. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5817. {
  5818. stomping: {
  5819. height: math.unit(6, "feet"),
  5820. weight: math.unit(170, "lbs"),
  5821. name: "Stomping",
  5822. image: {
  5823. source: "./media/characters/vivian/stomping.svg"
  5824. }
  5825. },
  5826. sitting: {
  5827. height: math.unit(6 / 1.75, "feet"),
  5828. weight: math.unit(170, "lbs"),
  5829. name: "Sitting",
  5830. image: {
  5831. source: "./media/characters/vivian/sitting.svg",
  5832. bottom: 1 / 6.4,
  5833. extra: 1,
  5834. }
  5835. },
  5836. },
  5837. [
  5838. {
  5839. name: "Normal",
  5840. height: math.unit(7, "feet"),
  5841. default: true
  5842. },
  5843. {
  5844. name: "Macro",
  5845. height: math.unit(10, "stories")
  5846. },
  5847. {
  5848. name: "Macro+",
  5849. height: math.unit(30, "stories")
  5850. },
  5851. {
  5852. name: "Megamacro",
  5853. height: math.unit(10, "miles")
  5854. },
  5855. {
  5856. name: "Megamacro+",
  5857. height: math.unit(2750000, "meters")
  5858. },
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5863. {
  5864. front: {
  5865. height: math.unit(6, "feet"),
  5866. weight: math.unit(160, "lbs"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/prince/front.svg",
  5870. extra: 3400 / 3000
  5871. }
  5872. },
  5873. jumping: {
  5874. height: math.unit(6, "feet"),
  5875. weight: math.unit(160, "lbs"),
  5876. name: "Jumping",
  5877. image: {
  5878. source: "./media/characters/prince/jump.svg",
  5879. extra: 2555 / 2134
  5880. }
  5881. },
  5882. },
  5883. [
  5884. {
  5885. name: "Normal",
  5886. height: math.unit(7.75, "feet"),
  5887. default: true
  5888. },
  5889. {
  5890. name: "Not cute",
  5891. height: math.unit(17, "feet")
  5892. },
  5893. {
  5894. name: "I said NOT",
  5895. height: math.unit(91, "feet")
  5896. },
  5897. {
  5898. name: "Please stop",
  5899. height: math.unit(560, "feet")
  5900. },
  5901. {
  5902. name: "What have you done",
  5903. height: math.unit(2200, "feet")
  5904. },
  5905. {
  5906. name: "Deer God",
  5907. height: math.unit(3.6, "miles")
  5908. },
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5913. {
  5914. standing: {
  5915. height: math.unit(6, "feet"),
  5916. weight: math.unit(300, "lbs"),
  5917. name: "Standing",
  5918. image: {
  5919. source: "./media/characters/psymon/standing.svg",
  5920. extra: 1888 / 1810,
  5921. bottom: 0.05
  5922. }
  5923. },
  5924. slithering: {
  5925. height: math.unit(6, "feet"),
  5926. weight: math.unit(300, "lbs"),
  5927. name: "Slithering",
  5928. image: {
  5929. source: "./media/characters/psymon/slithering.svg",
  5930. extra: 1330 / 1224
  5931. }
  5932. },
  5933. slitheringAlt: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(300, "lbs"),
  5936. name: "Slithering (Alt)",
  5937. image: {
  5938. source: "./media/characters/psymon/slithering-alt.svg",
  5939. extra: 1330 / 1224
  5940. }
  5941. },
  5942. },
  5943. [
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(11.25, "feet"),
  5947. default: true
  5948. },
  5949. {
  5950. name: "Large",
  5951. height: math.unit(27, "feet")
  5952. },
  5953. {
  5954. name: "Giant",
  5955. height: math.unit(87, "feet")
  5956. },
  5957. {
  5958. name: "Macro",
  5959. height: math.unit(365, "feet")
  5960. },
  5961. {
  5962. name: "Megamacro",
  5963. height: math.unit(3, "miles")
  5964. },
  5965. {
  5966. name: "World Serpent",
  5967. height: math.unit(8000, "miles")
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(6, "feet"),
  5976. weight: math.unit(180, "lbs"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/daimos/front.svg",
  5980. extra: 4160 / 3897,
  5981. bottom: 0.021
  5982. }
  5983. }
  5984. },
  5985. [
  5986. {
  5987. name: "Normal",
  5988. height: math.unit(8, "feet"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Big Dog",
  5993. height: math.unit(22, "feet")
  5994. },
  5995. {
  5996. name: "Macro",
  5997. height: math.unit(127, "feet")
  5998. },
  5999. {
  6000. name: "Megamacro",
  6001. height: math.unit(3600, "feet")
  6002. },
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6007. {
  6008. side: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(180, "lbs"),
  6011. name: "Side",
  6012. image: {
  6013. source: "./media/characters/blake/side.svg",
  6014. extra: 1212 / 1120,
  6015. bottom: 0.05
  6016. }
  6017. },
  6018. crouched: {
  6019. height: math.unit(6 * 0.57, "feet"),
  6020. weight: math.unit(180, "lbs"),
  6021. name: "Crouched",
  6022. image: {
  6023. source: "./media/characters/blake/crouched.svg",
  6024. extra: 840 / 587,
  6025. bottom: 0.04
  6026. }
  6027. },
  6028. bent: {
  6029. height: math.unit(6 * 0.75, "feet"),
  6030. weight: math.unit(180, "lbs"),
  6031. name: "Bent",
  6032. image: {
  6033. source: "./media/characters/blake/bent.svg",
  6034. extra: 592 / 544,
  6035. bottom: 0.035
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(8 + 1 / 6, "feet"),
  6043. default: true
  6044. },
  6045. {
  6046. name: "Big Backside",
  6047. height: math.unit(37, "feet")
  6048. },
  6049. {
  6050. name: "Subway Shredder",
  6051. height: math.unit(72, "feet")
  6052. },
  6053. {
  6054. name: "City Carver",
  6055. height: math.unit(1675, "feet")
  6056. },
  6057. {
  6058. name: "Tectonic Tweaker",
  6059. height: math.unit(2300, "miles")
  6060. },
  6061. ]
  6062. ))
  6063. characterMakers.push(() => makeCharacter(
  6064. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6065. {
  6066. front: {
  6067. height: math.unit(6, "feet"),
  6068. weight: math.unit(180, "lbs"),
  6069. name: "Front",
  6070. image: {
  6071. source: "./media/characters/guisetto/front.svg",
  6072. extra: 856 / 817,
  6073. bottom: 0.06
  6074. }
  6075. },
  6076. airborne: {
  6077. height: math.unit(6, "feet"),
  6078. weight: math.unit(180, "lbs"),
  6079. name: "Airborne",
  6080. image: {
  6081. source: "./media/characters/guisetto/airborne.svg",
  6082. extra: 584 / 525
  6083. }
  6084. },
  6085. },
  6086. [
  6087. {
  6088. name: "Normal",
  6089. height: math.unit(10 + 11 / 12, "feet"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Large",
  6094. height: math.unit(35, "feet")
  6095. },
  6096. {
  6097. name: "Macro",
  6098. height: math.unit(475, "feet")
  6099. },
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6104. {
  6105. front: {
  6106. height: math.unit(6, "feet"),
  6107. weight: math.unit(180, "lbs"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/luxor/front.svg",
  6111. extra: 2940 / 2152
  6112. }
  6113. },
  6114. back: {
  6115. height: math.unit(6, "feet"),
  6116. weight: math.unit(180, "lbs"),
  6117. name: "Back",
  6118. image: {
  6119. source: "./media/characters/luxor/back.svg",
  6120. extra: 1083 / 960
  6121. }
  6122. },
  6123. },
  6124. [
  6125. {
  6126. name: "Normal",
  6127. height: math.unit(5 + 5 / 6, "feet"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Lamp",
  6132. height: math.unit(50, "feet")
  6133. },
  6134. {
  6135. name: "Lämp",
  6136. height: math.unit(300, "feet")
  6137. },
  6138. {
  6139. name: "The sun is a lamp",
  6140. height: math.unit(250000, "miles")
  6141. },
  6142. ]
  6143. ))
  6144. characterMakers.push(() => makeCharacter(
  6145. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6146. {
  6147. front: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(50, "lbs"),
  6150. name: "Front",
  6151. image: {
  6152. source: "./media/characters/huoyan/front.svg"
  6153. }
  6154. },
  6155. side: {
  6156. height: math.unit(6, "feet"),
  6157. weight: math.unit(180, "lbs"),
  6158. name: "Side",
  6159. image: {
  6160. source: "./media/characters/huoyan/side.svg"
  6161. }
  6162. },
  6163. },
  6164. [
  6165. {
  6166. name: "Chef",
  6167. height: math.unit(9, "feet")
  6168. },
  6169. {
  6170. name: "Normal",
  6171. height: math.unit(65, "feet"),
  6172. default: true
  6173. },
  6174. {
  6175. name: "Macro",
  6176. height: math.unit(780, "feet")
  6177. },
  6178. {
  6179. name: "Flaming Mountain",
  6180. height: math.unit(4.8, "miles")
  6181. },
  6182. {
  6183. name: "Celestial",
  6184. height: math.unit(765000, "miles")
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(5 + 3 / 4, "feet"),
  6193. weight: math.unit(120, "lbs"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/tails/front.svg"
  6197. }
  6198. }
  6199. },
  6200. [
  6201. {
  6202. name: "Normal",
  6203. height: math.unit(5 + 3 / 4, "feet"),
  6204. default: true
  6205. }
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(4, "feet"),
  6213. weight: math.unit(50, "lbs"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/rainy/front.svg"
  6217. }
  6218. }
  6219. },
  6220. [
  6221. {
  6222. name: "Macro",
  6223. height: math.unit(800, "feet"),
  6224. default: true
  6225. }
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(150, "lbs"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/rainier/front.svg"
  6237. }
  6238. }
  6239. },
  6240. [
  6241. {
  6242. name: "Micro",
  6243. height: math.unit(2, "mm"),
  6244. default: true
  6245. }
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(8 + 4/12, "feet"),
  6253. weight: math.unit(450, "kilograms"),
  6254. volume: math.unit(5, "cups"),
  6255. name: "Front",
  6256. image: {
  6257. source: "./media/characters/andy-renard/front.svg",
  6258. extra: 1839/1726,
  6259. bottom: 134/1973
  6260. }
  6261. },
  6262. back: {
  6263. height: math.unit(8 + 4/12, "feet"),
  6264. weight: math.unit(450, "kilograms"),
  6265. volume: math.unit(5, "cups"),
  6266. name: "Back",
  6267. image: {
  6268. source: "./media/characters/andy-renard/back.svg",
  6269. extra: 1838/1710,
  6270. bottom: 105/1943
  6271. }
  6272. },
  6273. },
  6274. [
  6275. {
  6276. name: "Tall",
  6277. height: math.unit(8 + 4/12, "feet")
  6278. },
  6279. {
  6280. name: "Mini Macro",
  6281. height: math.unit(15, "feet"),
  6282. default: true
  6283. },
  6284. {
  6285. name: "Macro",
  6286. height: math.unit(100, "feet")
  6287. },
  6288. {
  6289. name: "Mega Macro",
  6290. height: math.unit(1000, "feet")
  6291. },
  6292. {
  6293. name: "Giga Macro",
  6294. height: math.unit(10, "miles")
  6295. },
  6296. {
  6297. name: "God Macro",
  6298. height: math.unit(1, "multiverse")
  6299. },
  6300. ]
  6301. ))
  6302. characterMakers.push(() => makeCharacter(
  6303. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6304. {
  6305. front: {
  6306. height: math.unit(6, "feet"),
  6307. weight: math.unit(210, "lbs"),
  6308. name: "Front",
  6309. image: {
  6310. source: "./media/characters/cimmaron/front-sfw.svg",
  6311. extra: 701 / 676,
  6312. bottom: 0.046
  6313. }
  6314. },
  6315. back: {
  6316. height: math.unit(6, "feet"),
  6317. weight: math.unit(210, "lbs"),
  6318. name: "Back",
  6319. image: {
  6320. source: "./media/characters/cimmaron/back-sfw.svg",
  6321. extra: 701 / 676,
  6322. bottom: 0.046
  6323. }
  6324. },
  6325. frontNsfw: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(210, "lbs"),
  6328. name: "Front (NSFW)",
  6329. image: {
  6330. source: "./media/characters/cimmaron/front-nsfw.svg",
  6331. extra: 701 / 676,
  6332. bottom: 0.046
  6333. }
  6334. },
  6335. backNsfw: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(210, "lbs"),
  6338. name: "Back (NSFW)",
  6339. image: {
  6340. source: "./media/characters/cimmaron/back-nsfw.svg",
  6341. extra: 701 / 676,
  6342. bottom: 0.046
  6343. }
  6344. },
  6345. dick: {
  6346. height: math.unit(1.714, "feet"),
  6347. name: "Dick",
  6348. image: {
  6349. source: "./media/characters/cimmaron/dick.svg"
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(6, "feet"),
  6357. default: true
  6358. },
  6359. {
  6360. name: "Macro Mayor",
  6361. height: math.unit(350, "meters")
  6362. },
  6363. ]
  6364. ))
  6365. characterMakers.push(() => makeCharacter(
  6366. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6367. {
  6368. front: {
  6369. height: math.unit(6, "feet"),
  6370. weight: math.unit(200, "lbs"),
  6371. name: "Front",
  6372. image: {
  6373. source: "./media/characters/akari/front.svg",
  6374. extra: 962 / 901,
  6375. bottom: 0.04
  6376. }
  6377. }
  6378. },
  6379. [
  6380. {
  6381. name: "Micro",
  6382. height: math.unit(5, "inches"),
  6383. default: true
  6384. },
  6385. {
  6386. name: "Normal",
  6387. height: math.unit(7, "feet")
  6388. },
  6389. ]
  6390. ))
  6391. characterMakers.push(() => makeCharacter(
  6392. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6393. {
  6394. front: {
  6395. height: math.unit(6, "feet"),
  6396. weight: math.unit(140, "lbs"),
  6397. name: "Front",
  6398. image: {
  6399. source: "./media/characters/cynosura/front.svg",
  6400. extra: 896 / 847
  6401. }
  6402. },
  6403. back: {
  6404. height: math.unit(6, "feet"),
  6405. weight: math.unit(140, "lbs"),
  6406. name: "Back",
  6407. image: {
  6408. source: "./media/characters/cynosura/back.svg",
  6409. extra: 1365 / 1250
  6410. }
  6411. },
  6412. },
  6413. [
  6414. {
  6415. name: "Micro",
  6416. height: math.unit(4, "inches")
  6417. },
  6418. {
  6419. name: "Normal",
  6420. height: math.unit(5.75, "feet"),
  6421. default: true
  6422. },
  6423. {
  6424. name: "Tall",
  6425. height: math.unit(10, "feet")
  6426. },
  6427. {
  6428. name: "Big",
  6429. height: math.unit(20, "feet")
  6430. },
  6431. {
  6432. name: "Macro",
  6433. height: math.unit(50, "feet")
  6434. },
  6435. ]
  6436. ))
  6437. characterMakers.push(() => makeCharacter(
  6438. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6439. {
  6440. front: {
  6441. height: math.unit(13 + 2/12, "feet"),
  6442. weight: math.unit(800, "kg"),
  6443. name: "Front",
  6444. image: {
  6445. source: "./media/characters/gin/front.svg",
  6446. extra: 1312/1191,
  6447. bottom: 45/1357
  6448. }
  6449. },
  6450. mouth: {
  6451. height: math.unit(2.39 * 1.8, "feet"),
  6452. name: "Mouth",
  6453. image: {
  6454. source: "./media/characters/gin/mouth.svg"
  6455. }
  6456. },
  6457. hand: {
  6458. height: math.unit(1.57 * 2.19, "feet"),
  6459. name: "Hand",
  6460. image: {
  6461. source: "./media/characters/gin/hand.svg"
  6462. }
  6463. },
  6464. foot: {
  6465. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6466. name: "Foot",
  6467. image: {
  6468. source: "./media/characters/gin/foot.svg"
  6469. }
  6470. },
  6471. sole: {
  6472. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6473. name: "Sole",
  6474. image: {
  6475. source: "./media/characters/gin/sole.svg"
  6476. }
  6477. },
  6478. },
  6479. [
  6480. {
  6481. name: "Very Small",
  6482. height: math.unit(13 + 2 / 12, "feet")
  6483. },
  6484. {
  6485. name: "Micro",
  6486. height: math.unit(600, "miles")
  6487. },
  6488. {
  6489. name: "Regular",
  6490. height: math.unit(20, "earths"),
  6491. default: true
  6492. },
  6493. {
  6494. name: "Macro",
  6495. height: math.unit(2.2, "solarradii")
  6496. },
  6497. {
  6498. name: "Teramacro",
  6499. height: math.unit(1.2, "galaxies")
  6500. },
  6501. {
  6502. name: "Omegamacro",
  6503. height: math.unit(200, "universes")
  6504. },
  6505. ]
  6506. ))
  6507. characterMakers.push(() => makeCharacter(
  6508. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6509. {
  6510. front: {
  6511. height: math.unit(6 + 1 / 6, "feet"),
  6512. weight: math.unit(178, "lbs"),
  6513. name: "Front",
  6514. image: {
  6515. source: "./media/characters/guy/front.svg"
  6516. }
  6517. }
  6518. },
  6519. [
  6520. {
  6521. name: "Normal",
  6522. height: math.unit(6 + 1 / 6, "feet"),
  6523. default: true
  6524. },
  6525. {
  6526. name: "Large",
  6527. height: math.unit(25 + 7 / 12, "feet")
  6528. },
  6529. {
  6530. name: "Macro",
  6531. height: math.unit(60 + 9 / 12, "feet")
  6532. },
  6533. {
  6534. name: "Macro+",
  6535. height: math.unit(246, "feet")
  6536. },
  6537. {
  6538. name: "Macro++",
  6539. height: math.unit(878, "feet")
  6540. }
  6541. ]
  6542. ))
  6543. characterMakers.push(() => makeCharacter(
  6544. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6545. {
  6546. front: {
  6547. height: math.unit(9, "feet"),
  6548. weight: math.unit(800, "lbs"),
  6549. name: "Front",
  6550. image: {
  6551. source: "./media/characters/tiberius/front.svg",
  6552. extra: 2295 / 2071
  6553. }
  6554. },
  6555. back: {
  6556. height: math.unit(9, "feet"),
  6557. weight: math.unit(800, "lbs"),
  6558. name: "Back",
  6559. image: {
  6560. source: "./media/characters/tiberius/back.svg",
  6561. extra: 2373 / 2160
  6562. }
  6563. },
  6564. },
  6565. [
  6566. {
  6567. name: "Normal",
  6568. height: math.unit(9, "feet"),
  6569. default: true
  6570. }
  6571. ]
  6572. ))
  6573. characterMakers.push(() => makeCharacter(
  6574. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6575. {
  6576. front: {
  6577. height: math.unit(6, "feet"),
  6578. weight: math.unit(600, "lbs"),
  6579. name: "Front",
  6580. image: {
  6581. source: "./media/characters/surgo/front.svg",
  6582. extra: 3591 / 2227
  6583. }
  6584. },
  6585. back: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(600, "lbs"),
  6588. name: "Back",
  6589. image: {
  6590. source: "./media/characters/surgo/back.svg",
  6591. extra: 3557 / 2228
  6592. }
  6593. },
  6594. laying: {
  6595. height: math.unit(6 * 0.85, "feet"),
  6596. weight: math.unit(600, "lbs"),
  6597. name: "Laying",
  6598. image: {
  6599. source: "./media/characters/surgo/laying.svg"
  6600. }
  6601. },
  6602. },
  6603. [
  6604. {
  6605. name: "Normal",
  6606. height: math.unit(6, "feet"),
  6607. default: true
  6608. }
  6609. ]
  6610. ))
  6611. characterMakers.push(() => makeCharacter(
  6612. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6613. {
  6614. side: {
  6615. height: math.unit(6, "feet"),
  6616. weight: math.unit(150, "lbs"),
  6617. name: "Side",
  6618. image: {
  6619. source: "./media/characters/cibus/side.svg",
  6620. extra: 800 / 400
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(6, "feet"),
  6628. default: true
  6629. }
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6634. {
  6635. front: {
  6636. height: math.unit(6, "feet"),
  6637. weight: math.unit(240, "lbs"),
  6638. name: "Front",
  6639. image: {
  6640. source: "./media/characters/nibbles/front.svg"
  6641. }
  6642. },
  6643. side: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(240, "lbs"),
  6646. name: "Side",
  6647. image: {
  6648. source: "./media/characters/nibbles/side.svg"
  6649. }
  6650. },
  6651. },
  6652. [
  6653. {
  6654. name: "Normal",
  6655. height: math.unit(9, "feet"),
  6656. default: true
  6657. }
  6658. ]
  6659. ))
  6660. characterMakers.push(() => makeCharacter(
  6661. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6662. {
  6663. side: {
  6664. height: math.unit(5 + 1 / 6, "feet"),
  6665. weight: math.unit(130, "lbs"),
  6666. name: "Side",
  6667. image: {
  6668. source: "./media/characters/rikky/side.svg",
  6669. extra: 851 / 801
  6670. }
  6671. },
  6672. },
  6673. [
  6674. {
  6675. name: "Normal",
  6676. height: math.unit(5 + 1 / 6, "feet")
  6677. },
  6678. {
  6679. name: "Macro",
  6680. height: math.unit(152, "feet"),
  6681. default: true
  6682. },
  6683. {
  6684. name: "Megamacro",
  6685. height: math.unit(7, "miles")
  6686. }
  6687. ]
  6688. ))
  6689. characterMakers.push(() => makeCharacter(
  6690. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6691. {
  6692. side: {
  6693. height: math.unit(370, "cm"),
  6694. weight: math.unit(350, "lbs"),
  6695. name: "Side",
  6696. image: {
  6697. source: "./media/characters/malfressa/side.svg"
  6698. }
  6699. },
  6700. walking: {
  6701. height: math.unit(370, "cm"),
  6702. weight: math.unit(350, "lbs"),
  6703. name: "Walking",
  6704. image: {
  6705. source: "./media/characters/malfressa/walking.svg"
  6706. }
  6707. },
  6708. feral: {
  6709. height: math.unit(2500, "cm"),
  6710. weight: math.unit(100000, "lbs"),
  6711. name: "Feral",
  6712. image: {
  6713. source: "./media/characters/malfressa/feral.svg",
  6714. extra: 2108 / 837,
  6715. bottom: 0.02
  6716. }
  6717. },
  6718. },
  6719. [
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(370, "cm")
  6723. },
  6724. {
  6725. name: "Macro",
  6726. height: math.unit(300, "meters"),
  6727. default: true
  6728. }
  6729. ]
  6730. ))
  6731. characterMakers.push(() => makeCharacter(
  6732. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6733. {
  6734. front: {
  6735. height: math.unit(6, "feet"),
  6736. weight: math.unit(60, "kg"),
  6737. name: "Front",
  6738. image: {
  6739. source: "./media/characters/jaro/front.svg",
  6740. extra: 845/817,
  6741. bottom: 45/890
  6742. }
  6743. },
  6744. back: {
  6745. height: math.unit(6, "feet"),
  6746. weight: math.unit(60, "kg"),
  6747. name: "Back",
  6748. image: {
  6749. source: "./media/characters/jaro/back.svg",
  6750. extra: 847/817,
  6751. bottom: 34/881
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Micro",
  6758. height: math.unit(7, "inches")
  6759. },
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(5.5, "feet"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Minimacro",
  6767. height: math.unit(20, "feet")
  6768. },
  6769. {
  6770. name: "Macro",
  6771. height: math.unit(200, "meters")
  6772. }
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(195, "lb"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/rogue/front.svg"
  6784. }
  6785. },
  6786. },
  6787. [
  6788. {
  6789. name: "Macro",
  6790. height: math.unit(90, "feet"),
  6791. default: true
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6797. {
  6798. standing: {
  6799. height: math.unit(5 + 8 / 12, "feet"),
  6800. weight: math.unit(140, "lb"),
  6801. name: "Standing",
  6802. image: {
  6803. source: "./media/characters/piper/standing.svg",
  6804. extra: 1440/1284,
  6805. bottom: 66/1506
  6806. }
  6807. },
  6808. running: {
  6809. height: math.unit(5 + 8 / 12, "feet"),
  6810. weight: math.unit(140, "lb"),
  6811. name: "Running",
  6812. image: {
  6813. source: "./media/characters/piper/running.svg",
  6814. extra: 3948/3655,
  6815. bottom: 0/3948
  6816. }
  6817. },
  6818. sole: {
  6819. height: math.unit(0.81, "feet"),
  6820. weight: math.unit(2, "kg"),
  6821. name: "Sole",
  6822. image: {
  6823. source: "./media/characters/piper/sole.svg"
  6824. }
  6825. },
  6826. nipple: {
  6827. height: math.unit(0.25, "feet"),
  6828. weight: math.unit(1.5, "lb"),
  6829. name: "Nipple",
  6830. image: {
  6831. source: "./media/characters/piper/nipple.svg"
  6832. }
  6833. },
  6834. head: {
  6835. height: math.unit(1.1, "feet"),
  6836. name: "Head",
  6837. image: {
  6838. source: "./media/characters/piper/head.svg"
  6839. }
  6840. },
  6841. },
  6842. [
  6843. {
  6844. name: "Micro",
  6845. height: math.unit(2, "inches")
  6846. },
  6847. {
  6848. name: "Normal",
  6849. height: math.unit(5 + 8 / 12, "feet")
  6850. },
  6851. {
  6852. name: "Macro",
  6853. height: math.unit(250, "feet"),
  6854. default: true
  6855. },
  6856. {
  6857. name: "Megamacro",
  6858. height: math.unit(7, "miles")
  6859. },
  6860. ]
  6861. ))
  6862. characterMakers.push(() => makeCharacter(
  6863. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6864. {
  6865. front: {
  6866. height: math.unit(6, "feet"),
  6867. weight: math.unit(220, "lb"),
  6868. name: "Front",
  6869. image: {
  6870. source: "./media/characters/gemini/front.svg"
  6871. }
  6872. },
  6873. back: {
  6874. height: math.unit(6, "feet"),
  6875. weight: math.unit(220, "lb"),
  6876. name: "Back",
  6877. image: {
  6878. source: "./media/characters/gemini/back.svg"
  6879. }
  6880. },
  6881. kneeling: {
  6882. height: math.unit(6 / 1.5, "feet"),
  6883. weight: math.unit(220, "lb"),
  6884. name: "Kneeling",
  6885. image: {
  6886. source: "./media/characters/gemini/kneeling.svg",
  6887. bottom: 0.02
  6888. }
  6889. },
  6890. },
  6891. [
  6892. {
  6893. name: "Macro",
  6894. height: math.unit(300, "meters"),
  6895. default: true
  6896. },
  6897. {
  6898. name: "Megamacro",
  6899. height: math.unit(6900, "meters")
  6900. },
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6905. {
  6906. anthro: {
  6907. height: math.unit(2.35, "meters"),
  6908. weight: math.unit(73, "kg"),
  6909. name: "Anthro",
  6910. image: {
  6911. source: "./media/characters/alicia/anthro.svg",
  6912. extra: 2571 / 2385,
  6913. bottom: 75 / 2648
  6914. }
  6915. },
  6916. paw: {
  6917. height: math.unit(1.32, "feet"),
  6918. name: "Paw",
  6919. image: {
  6920. source: "./media/characters/alicia/paw.svg"
  6921. }
  6922. },
  6923. feral: {
  6924. height: math.unit(1.69, "meters"),
  6925. weight: math.unit(73, "kg"),
  6926. name: "Feral",
  6927. image: {
  6928. source: "./media/characters/alicia/feral.svg",
  6929. extra: 2123 / 1715,
  6930. bottom: 222 / 2349
  6931. }
  6932. },
  6933. },
  6934. [
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(2.35, "meters")
  6938. },
  6939. {
  6940. name: "Macro",
  6941. height: math.unit(60, "meters"),
  6942. default: true
  6943. },
  6944. {
  6945. name: "Megamacro",
  6946. height: math.unit(10000, "kilometers")
  6947. },
  6948. ]
  6949. ))
  6950. characterMakers.push(() => makeCharacter(
  6951. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6952. {
  6953. front: {
  6954. height: math.unit(7, "feet"),
  6955. weight: math.unit(250, "lbs"),
  6956. name: "Front",
  6957. image: {
  6958. source: "./media/characters/archy/front.svg"
  6959. }
  6960. }
  6961. },
  6962. [
  6963. {
  6964. name: "Micro",
  6965. height: math.unit(1, "inch")
  6966. },
  6967. {
  6968. name: "Shorty",
  6969. height: math.unit(5, "feet")
  6970. },
  6971. {
  6972. name: "Normal",
  6973. height: math.unit(7, "feet")
  6974. },
  6975. {
  6976. name: "Macro",
  6977. height: math.unit(600, "meters"),
  6978. default: true
  6979. },
  6980. {
  6981. name: "Megamacro",
  6982. height: math.unit(1, "mile")
  6983. },
  6984. ]
  6985. ))
  6986. characterMakers.push(() => makeCharacter(
  6987. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6988. {
  6989. front: {
  6990. height: math.unit(1.65, "meters"),
  6991. weight: math.unit(74, "kg"),
  6992. name: "Front",
  6993. image: {
  6994. source: "./media/characters/berri/front.svg",
  6995. extra: 857 / 837,
  6996. bottom: 18 / 877
  6997. }
  6998. },
  6999. bum: {
  7000. height: math.unit(1.46, "feet"),
  7001. name: "Bum",
  7002. image: {
  7003. source: "./media/characters/berri/bum.svg"
  7004. }
  7005. },
  7006. mouth: {
  7007. height: math.unit(0.44, "feet"),
  7008. name: "Mouth",
  7009. image: {
  7010. source: "./media/characters/berri/mouth.svg"
  7011. }
  7012. },
  7013. paw: {
  7014. height: math.unit(0.826, "feet"),
  7015. name: "Paw",
  7016. image: {
  7017. source: "./media/characters/berri/paw.svg"
  7018. }
  7019. },
  7020. },
  7021. [
  7022. {
  7023. name: "Normal",
  7024. height: math.unit(1.65, "meters")
  7025. },
  7026. {
  7027. name: "Macro",
  7028. height: math.unit(60, "m"),
  7029. default: true
  7030. },
  7031. {
  7032. name: "Megamacro",
  7033. height: math.unit(9.213, "km")
  7034. },
  7035. {
  7036. name: "Planet Eater",
  7037. height: math.unit(489, "megameters")
  7038. },
  7039. {
  7040. name: "Teramacro",
  7041. height: math.unit(2471635000000, "meters")
  7042. },
  7043. {
  7044. name: "Examacro",
  7045. height: math.unit(8.0624e+26, "meters")
  7046. }
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7051. {
  7052. front: {
  7053. height: math.unit(1.72, "meters"),
  7054. weight: math.unit(68, "kg"),
  7055. name: "Front",
  7056. image: {
  7057. source: "./media/characters/lexi/front.svg"
  7058. }
  7059. }
  7060. },
  7061. [
  7062. {
  7063. name: "Very Smol",
  7064. height: math.unit(10, "mm")
  7065. },
  7066. {
  7067. name: "Micro",
  7068. height: math.unit(6.8, "cm"),
  7069. default: true
  7070. },
  7071. {
  7072. name: "Normal",
  7073. height: math.unit(1.72, "m")
  7074. }
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(1.69, "meters"),
  7082. weight: math.unit(68, "kg"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/martin/front.svg",
  7086. extra: 596 / 581
  7087. }
  7088. }
  7089. },
  7090. [
  7091. {
  7092. name: "Micro",
  7093. height: math.unit(6.85, "cm"),
  7094. default: true
  7095. },
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(1.69, "m")
  7099. }
  7100. ]
  7101. ))
  7102. characterMakers.push(() => makeCharacter(
  7103. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7104. {
  7105. front: {
  7106. height: math.unit(1.69, "meters"),
  7107. weight: math.unit(68, "kg"),
  7108. name: "Front",
  7109. image: {
  7110. source: "./media/characters/juno/front.svg"
  7111. }
  7112. }
  7113. },
  7114. [
  7115. {
  7116. name: "Micro",
  7117. height: math.unit(7, "cm")
  7118. },
  7119. {
  7120. name: "Normal",
  7121. height: math.unit(1.89, "m")
  7122. },
  7123. {
  7124. name: "Macro",
  7125. height: math.unit(353, "meters"),
  7126. default: true
  7127. }
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7132. {
  7133. front: {
  7134. height: math.unit(1.93, "meters"),
  7135. weight: math.unit(83, "kg"),
  7136. name: "Front",
  7137. image: {
  7138. source: "./media/characters/samantha/front.svg"
  7139. }
  7140. },
  7141. frontClothed: {
  7142. height: math.unit(1.93, "meters"),
  7143. weight: math.unit(83, "kg"),
  7144. name: "Front (Clothed)",
  7145. image: {
  7146. source: "./media/characters/samantha/front-clothed.svg"
  7147. }
  7148. },
  7149. back: {
  7150. height: math.unit(1.93, "meters"),
  7151. weight: math.unit(83, "kg"),
  7152. name: "Back",
  7153. image: {
  7154. source: "./media/characters/samantha/back.svg"
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Normal",
  7161. height: math.unit(1.93, "m")
  7162. },
  7163. {
  7164. name: "Macro",
  7165. height: math.unit(74, "meters"),
  7166. default: true
  7167. },
  7168. {
  7169. name: "Macro+",
  7170. height: math.unit(223, "meters"),
  7171. },
  7172. {
  7173. name: "Megamacro",
  7174. height: math.unit(8381, "meters"),
  7175. },
  7176. {
  7177. name: "Megamacro+",
  7178. height: math.unit(12000, "kilometers")
  7179. },
  7180. ]
  7181. ))
  7182. characterMakers.push(() => makeCharacter(
  7183. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7184. {
  7185. front: {
  7186. height: math.unit(1.92, "meters"),
  7187. weight: math.unit(80, "kg"),
  7188. name: "Front",
  7189. image: {
  7190. source: "./media/characters/dr-clay/front.svg"
  7191. }
  7192. },
  7193. frontClothed: {
  7194. height: math.unit(1.92, "meters"),
  7195. weight: math.unit(80, "kg"),
  7196. name: "Front (Clothed)",
  7197. image: {
  7198. source: "./media/characters/dr-clay/front-clothed.svg"
  7199. }
  7200. }
  7201. },
  7202. [
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(1.92, "m")
  7206. },
  7207. {
  7208. name: "Macro",
  7209. height: math.unit(214, "meters"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Macro+",
  7214. height: math.unit(12.237, "meters"),
  7215. },
  7216. {
  7217. name: "Megamacro",
  7218. height: math.unit(557, "megameters"),
  7219. },
  7220. {
  7221. name: "Unimaginable",
  7222. height: math.unit(120e9, "lightyears")
  7223. },
  7224. ]
  7225. ))
  7226. characterMakers.push(() => makeCharacter(
  7227. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7228. {
  7229. front: {
  7230. height: math.unit(2, "meters"),
  7231. weight: math.unit(80, "kg"),
  7232. name: "Front",
  7233. image: {
  7234. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7235. }
  7236. }
  7237. },
  7238. [
  7239. {
  7240. name: "Teramacro",
  7241. height: math.unit(500000, "lightyears"),
  7242. default: true
  7243. },
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7248. {
  7249. crux: {
  7250. height: math.unit(2, "meters"),
  7251. weight: math.unit(150, "kg"),
  7252. name: "Crux",
  7253. image: {
  7254. source: "./media/characters/vemus/crux.svg",
  7255. extra: 1074/936,
  7256. bottom: 23/1097
  7257. }
  7258. },
  7259. skunkTanuki: {
  7260. height: math.unit(2, "meters"),
  7261. weight: math.unit(150, "kg"),
  7262. name: "Skunk-Tanuki",
  7263. image: {
  7264. source: "./media/characters/vemus/skunk-tanuki.svg",
  7265. extra: 926/893,
  7266. bottom: 20/946
  7267. }
  7268. },
  7269. },
  7270. [
  7271. {
  7272. name: "Normal",
  7273. height: math.unit(4, "meters"),
  7274. default: true
  7275. },
  7276. {
  7277. name: "Big",
  7278. height: math.unit(8, "meters")
  7279. },
  7280. {
  7281. name: "Macro",
  7282. height: math.unit(100, "meters")
  7283. },
  7284. {
  7285. name: "Macro+",
  7286. height: math.unit(1500, "meters")
  7287. },
  7288. {
  7289. name: "Stellar",
  7290. height: math.unit(14e8, "meters")
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7296. {
  7297. front: {
  7298. height: math.unit(2, "meters"),
  7299. weight: math.unit(70, "kg"),
  7300. name: "Front",
  7301. image: {
  7302. source: "./media/characters/beherit/front.svg",
  7303. extra: 1234/1109,
  7304. bottom: 55/1289
  7305. }
  7306. }
  7307. },
  7308. [
  7309. {
  7310. name: "Normal",
  7311. height: math.unit(6, "feet")
  7312. },
  7313. {
  7314. name: "Lorg",
  7315. height: math.unit(25, "feet"),
  7316. default: true
  7317. },
  7318. {
  7319. name: "Lorger",
  7320. height: math.unit(75, "feet")
  7321. },
  7322. {
  7323. name: "Macro",
  7324. height: math.unit(200, "meters")
  7325. },
  7326. ]
  7327. ))
  7328. characterMakers.push(() => makeCharacter(
  7329. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7330. {
  7331. front: {
  7332. height: math.unit(2, "meters"),
  7333. weight: math.unit(150, "kg"),
  7334. name: "Front",
  7335. image: {
  7336. source: "./media/characters/everett/front.svg",
  7337. extra: 1017/866,
  7338. bottom: 86/1103
  7339. }
  7340. },
  7341. paw: {
  7342. height: math.unit(2 / 3.6, "meters"),
  7343. name: "Paw",
  7344. image: {
  7345. source: "./media/characters/everett/paw.svg"
  7346. }
  7347. },
  7348. },
  7349. [
  7350. {
  7351. name: "Normal",
  7352. height: math.unit(15, "feet"),
  7353. default: true
  7354. },
  7355. {
  7356. name: "Lorg",
  7357. height: math.unit(70, "feet"),
  7358. default: true
  7359. },
  7360. {
  7361. name: "Lorger",
  7362. height: math.unit(250, "feet")
  7363. },
  7364. {
  7365. name: "Macro",
  7366. height: math.unit(500, "meters")
  7367. },
  7368. ]
  7369. ))
  7370. characterMakers.push(() => makeCharacter(
  7371. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7372. {
  7373. front: {
  7374. height: math.unit(2, "meters"),
  7375. weight: math.unit(86, "kg"),
  7376. name: "Front",
  7377. image: {
  7378. source: "./media/characters/rose/front.svg",
  7379. extra: 1785/1636,
  7380. bottom: 30/1815
  7381. },
  7382. form: "liom",
  7383. default: true
  7384. },
  7385. frontSporty: {
  7386. height: math.unit(2, "meters"),
  7387. weight: math.unit(86, "kg"),
  7388. name: "Front (Sporty)",
  7389. image: {
  7390. source: "./media/characters/rose/front-sporty.svg",
  7391. extra: 350/335,
  7392. bottom: 10/360
  7393. },
  7394. form: "liom"
  7395. },
  7396. frontAlt: {
  7397. height: math.unit(1.6, "meters"),
  7398. weight: math.unit(86, "kg"),
  7399. name: "Front (Alt)",
  7400. image: {
  7401. source: "./media/characters/rose/front-alt.svg",
  7402. extra: 299/283,
  7403. bottom: 3/302
  7404. },
  7405. form: "liom"
  7406. },
  7407. plush: {
  7408. height: math.unit(2, "meters"),
  7409. weight: math.unit(86/3, "kg"),
  7410. name: "Plush",
  7411. image: {
  7412. source: "./media/characters/rose/plush.svg",
  7413. extra: 361/337,
  7414. bottom: 11/372
  7415. },
  7416. form: "plush",
  7417. default: true
  7418. },
  7419. faeStanding: {
  7420. height: math.unit(10, "cm"),
  7421. weight: math.unit(10, "grams"),
  7422. name: "Standing",
  7423. image: {
  7424. source: "./media/characters/rose/fae-standing.svg",
  7425. extra: 1189/1060,
  7426. bottom: 27/1216
  7427. },
  7428. form: "fae",
  7429. default: true
  7430. },
  7431. faeSitting: {
  7432. height: math.unit(5, "cm"),
  7433. weight: math.unit(10, "grams"),
  7434. name: "Sitting",
  7435. image: {
  7436. source: "./media/characters/rose/fae-sitting.svg",
  7437. extra: 737/577,
  7438. bottom: 356/1093
  7439. },
  7440. form: "fae"
  7441. },
  7442. faePaw: {
  7443. height: math.unit(1.35, "cm"),
  7444. name: "Paw",
  7445. image: {
  7446. source: "./media/characters/rose/fae-paw.svg"
  7447. },
  7448. form: "fae"
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "True Micro",
  7454. height: math.unit(9, "cm"),
  7455. form: "liom"
  7456. },
  7457. {
  7458. name: "Micro",
  7459. height: math.unit(16, "cm"),
  7460. form: "liom"
  7461. },
  7462. {
  7463. name: "Normal",
  7464. height: math.unit(1.85, "meters"),
  7465. default: true,
  7466. form: "liom"
  7467. },
  7468. {
  7469. name: "Mini-Macro",
  7470. height: math.unit(5, "meters"),
  7471. form: "liom"
  7472. },
  7473. {
  7474. name: "Macro",
  7475. height: math.unit(15, "meters"),
  7476. form: "liom"
  7477. },
  7478. {
  7479. name: "True Macro",
  7480. height: math.unit(40, "meters"),
  7481. form: "liom"
  7482. },
  7483. {
  7484. name: "City Scale",
  7485. height: math.unit(1, "km"),
  7486. form: "liom"
  7487. },
  7488. {
  7489. name: "Plushie",
  7490. height: math.unit(9, "cm"),
  7491. form: "plush",
  7492. default: true
  7493. },
  7494. {
  7495. name: "Fae",
  7496. height: math.unit(10, "cm"),
  7497. form: "fae",
  7498. default: true
  7499. },
  7500. ],
  7501. {
  7502. "liom": {
  7503. name: "Liom"
  7504. },
  7505. "plush": {
  7506. name: "Plush"
  7507. },
  7508. "fae": {
  7509. name: "Fae Fox",
  7510. default: true
  7511. }
  7512. }
  7513. ))
  7514. characterMakers.push(() => makeCharacter(
  7515. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7516. {
  7517. front: {
  7518. height: math.unit(2, "meters"),
  7519. weight: math.unit(350, "lbs"),
  7520. name: "Front",
  7521. image: {
  7522. source: "./media/characters/regal/front.svg"
  7523. }
  7524. },
  7525. back: {
  7526. height: math.unit(2, "meters"),
  7527. weight: math.unit(350, "lbs"),
  7528. name: "Back",
  7529. image: {
  7530. source: "./media/characters/regal/back.svg"
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(350, "feet"),
  7538. default: true
  7539. }
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(4 + 11 / 12, "feet"),
  7547. weight: math.unit(100, "lbs"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/opal/front.svg"
  7551. }
  7552. },
  7553. frontAlt: {
  7554. height: math.unit(4 + 11 / 12, "feet"),
  7555. weight: math.unit(100, "lbs"),
  7556. name: "Front (Alt)",
  7557. image: {
  7558. source: "./media/characters/opal/front-alt.svg"
  7559. }
  7560. },
  7561. },
  7562. [
  7563. {
  7564. name: "Small",
  7565. height: math.unit(4 + 11 / 12, "feet")
  7566. },
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(20, "feet"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Macro",
  7574. height: math.unit(120, "feet")
  7575. },
  7576. {
  7577. name: "Megamacro",
  7578. height: math.unit(80, "miles")
  7579. },
  7580. {
  7581. name: "True Size",
  7582. height: math.unit(100000, "lightyears")
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7588. {
  7589. front: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(200, "lbs"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/vector-wuff/front.svg"
  7595. }
  7596. }
  7597. },
  7598. [
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(2.8, "meters")
  7602. },
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(450, "meters"),
  7606. default: true
  7607. },
  7608. {
  7609. name: "Megamacro",
  7610. height: math.unit(15, "kilometers")
  7611. }
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7616. {
  7617. front: {
  7618. height: math.unit(6, "feet"),
  7619. weight: math.unit(256, "lbs"),
  7620. name: "Front",
  7621. image: {
  7622. source: "./media/characters/dannik/front.svg"
  7623. }
  7624. }
  7625. },
  7626. [
  7627. {
  7628. name: "Macro",
  7629. height: math.unit(69.57, "meters"),
  7630. default: true
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(120, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/azura-saharah/front.svg"
  7643. }
  7644. },
  7645. back: {
  7646. height: math.unit(6, "feet"),
  7647. weight: math.unit(120, "lbs"),
  7648. name: "Back",
  7649. image: {
  7650. source: "./media/characters/azura-saharah/back.svg"
  7651. }
  7652. },
  7653. },
  7654. [
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(100, "feet"),
  7658. default: true
  7659. },
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7664. {
  7665. side: {
  7666. height: math.unit(5 + 4 / 12, "feet"),
  7667. weight: math.unit(163, "lbs"),
  7668. name: "Side",
  7669. image: {
  7670. source: "./media/characters/kennedy/side.svg"
  7671. }
  7672. }
  7673. },
  7674. [
  7675. {
  7676. name: "Standard Doggo",
  7677. height: math.unit(5 + 4 / 12, "feet")
  7678. },
  7679. {
  7680. name: "Big Doggo",
  7681. height: math.unit(25 + 3 / 12, "feet"),
  7682. default: true
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(5 + 5/12, "feet"),
  7691. weight: math.unit(100, "lbs"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/odios-de-lunar/front.svg",
  7695. extra: 1468/1323,
  7696. bottom: 22/1490
  7697. }
  7698. }
  7699. },
  7700. [
  7701. {
  7702. name: "Micro",
  7703. height: math.unit(3, "inches")
  7704. },
  7705. {
  7706. name: "Normal",
  7707. height: math.unit(5.5, "feet"),
  7708. default: true
  7709. },
  7710. {
  7711. name: "Macro",
  7712. height: math.unit(100, "feet")
  7713. },
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7718. {
  7719. back: {
  7720. height: math.unit(6, "feet"),
  7721. weight: math.unit(220, "lbs"),
  7722. name: "Back",
  7723. image: {
  7724. source: "./media/characters/mandake/back.svg"
  7725. }
  7726. }
  7727. },
  7728. [
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(7, "feet"),
  7732. default: true
  7733. },
  7734. {
  7735. name: "Macro",
  7736. height: math.unit(78, "feet")
  7737. },
  7738. {
  7739. name: "Macro+",
  7740. height: math.unit(300, "meters")
  7741. },
  7742. {
  7743. name: "Macro++",
  7744. height: math.unit(2400, "feet")
  7745. },
  7746. {
  7747. name: "Megamacro",
  7748. height: math.unit(5167, "meters")
  7749. },
  7750. {
  7751. name: "Gigamacro",
  7752. height: math.unit(41769, "miles")
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(120, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/yozey/front.svg"
  7765. }
  7766. },
  7767. frontAlt: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(120, "lbs"),
  7770. name: "Front (Alt)",
  7771. image: {
  7772. source: "./media/characters/yozey/front-alt.svg"
  7773. }
  7774. },
  7775. side: {
  7776. height: math.unit(6, "feet"),
  7777. weight: math.unit(120, "lbs"),
  7778. name: "Side",
  7779. image: {
  7780. source: "./media/characters/yozey/side.svg"
  7781. }
  7782. },
  7783. },
  7784. [
  7785. {
  7786. name: "Micro",
  7787. height: math.unit(3, "inches"),
  7788. default: true
  7789. },
  7790. {
  7791. name: "Normal",
  7792. height: math.unit(6, "feet")
  7793. }
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(103, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/valeska-voss/front.svg"
  7805. }
  7806. }
  7807. },
  7808. [
  7809. {
  7810. name: "Mini-Sized Sub",
  7811. height: math.unit(3.1, "inches")
  7812. },
  7813. {
  7814. name: "Mid-Sized Sub",
  7815. height: math.unit(6.2, "inches")
  7816. },
  7817. {
  7818. name: "Full-Sized Sub",
  7819. height: math.unit(9.3, "inches")
  7820. },
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(5 + 2 / 12, "foot"),
  7824. default: true
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(160, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/gene-zeta/front.svg",
  7837. extra: 3006 / 2826,
  7838. bottom: 182 / 3188
  7839. }
  7840. }
  7841. },
  7842. [
  7843. {
  7844. name: "Micro",
  7845. height: math.unit(6, "inches")
  7846. },
  7847. {
  7848. name: "Normal",
  7849. height: math.unit(5 + 11 / 12, "foot"),
  7850. default: true
  7851. },
  7852. {
  7853. name: "Macro",
  7854. height: math.unit(140, "feet")
  7855. },
  7856. {
  7857. name: "Supercharged",
  7858. height: math.unit(2500, "feet")
  7859. },
  7860. ]
  7861. ))
  7862. characterMakers.push(() => makeCharacter(
  7863. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7864. {
  7865. front: {
  7866. height: math.unit(6, "feet"),
  7867. weight: math.unit(350, "lbs"),
  7868. name: "Front",
  7869. image: {
  7870. source: "./media/characters/razinox/front.svg",
  7871. extra: 1686 / 1548,
  7872. bottom: 28.2 / 1868
  7873. }
  7874. },
  7875. back: {
  7876. height: math.unit(6, "feet"),
  7877. weight: math.unit(350, "lbs"),
  7878. name: "Back",
  7879. image: {
  7880. source: "./media/characters/razinox/back.svg",
  7881. extra: 1660 / 1590,
  7882. bottom: 15 / 1665
  7883. }
  7884. },
  7885. },
  7886. [
  7887. {
  7888. name: "Normal",
  7889. height: math.unit(10 + 8 / 12, "foot")
  7890. },
  7891. {
  7892. name: "Minimacro",
  7893. height: math.unit(15, "foot")
  7894. },
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(60, "foot"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Megamacro",
  7902. height: math.unit(5, "miles")
  7903. },
  7904. {
  7905. name: "Gigamacro",
  7906. height: math.unit(6000, "miles")
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7912. {
  7913. front: {
  7914. height: math.unit(6, "feet"),
  7915. weight: math.unit(150, "lbs"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/cobalt/front.svg"
  7919. }
  7920. }
  7921. },
  7922. [
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(8 + 1 / 12, "foot")
  7926. },
  7927. {
  7928. name: "Macro",
  7929. height: math.unit(111, "foot"),
  7930. default: true
  7931. },
  7932. {
  7933. name: "Supracosmic",
  7934. height: math.unit(1e42, "feet")
  7935. },
  7936. ]
  7937. ))
  7938. characterMakers.push(() => makeCharacter(
  7939. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7940. {
  7941. front: {
  7942. height: math.unit(5, "inches"),
  7943. name: "Front",
  7944. image: {
  7945. source: "./media/characters/amanda/front.svg",
  7946. extra: 926/791,
  7947. bottom: 38/964
  7948. }
  7949. },
  7950. back: {
  7951. height: math.unit(5, "inches"),
  7952. name: "Back",
  7953. image: {
  7954. source: "./media/characters/amanda/back.svg",
  7955. extra: 909/805,
  7956. bottom: 43/952
  7957. }
  7958. },
  7959. },
  7960. [
  7961. {
  7962. name: "Micro",
  7963. height: math.unit(5, "inches"),
  7964. default: true
  7965. },
  7966. ]
  7967. ))
  7968. characterMakers.push(() => makeCharacter(
  7969. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7970. {
  7971. front: {
  7972. height: math.unit(2.75, "meters"),
  7973. weight: math.unit(1200, "lb"),
  7974. name: "Front",
  7975. image: {
  7976. source: "./media/characters/teal/front.svg",
  7977. extra: 2463 / 2320,
  7978. bottom: 166 / 2629
  7979. }
  7980. },
  7981. back: {
  7982. height: math.unit(2.75, "meters"),
  7983. weight: math.unit(1200, "lb"),
  7984. name: "Back",
  7985. image: {
  7986. source: "./media/characters/teal/back.svg",
  7987. extra: 2580 / 2489,
  7988. bottom: 151 / 2731
  7989. }
  7990. },
  7991. sitting: {
  7992. height: math.unit(1.9, "meters"),
  7993. weight: math.unit(1200, "lb"),
  7994. name: "Sitting",
  7995. image: {
  7996. source: "./media/characters/teal/sitting.svg",
  7997. extra: 623 / 590,
  7998. bottom: 121 / 744
  7999. }
  8000. },
  8001. standing: {
  8002. height: math.unit(2.75, "meters"),
  8003. weight: math.unit(1200, "lb"),
  8004. name: "Standing",
  8005. image: {
  8006. source: "./media/characters/teal/standing.svg",
  8007. extra: 923 / 893,
  8008. bottom: 60 / 983
  8009. }
  8010. },
  8011. stretching: {
  8012. height: math.unit(3.65, "meters"),
  8013. weight: math.unit(1200, "lb"),
  8014. name: "Stretching",
  8015. image: {
  8016. source: "./media/characters/teal/stretching.svg",
  8017. extra: 1276 / 1244,
  8018. bottom: 0 / 1276
  8019. }
  8020. },
  8021. legged: {
  8022. height: math.unit(1.3, "meters"),
  8023. weight: math.unit(100, "lb"),
  8024. name: "Legged",
  8025. image: {
  8026. source: "./media/characters/teal/legged.svg",
  8027. extra: 462 / 437,
  8028. bottom: 24 / 486
  8029. }
  8030. },
  8031. naga: {
  8032. height: math.unit(5.4, "meters"),
  8033. weight: math.unit(4000, "lb"),
  8034. name: "Naga",
  8035. image: {
  8036. source: "./media/characters/teal/naga.svg",
  8037. extra: 1902 / 1858,
  8038. bottom: 0 / 1902
  8039. }
  8040. },
  8041. hand: {
  8042. height: math.unit(0.52, "meters"),
  8043. name: "Hand",
  8044. image: {
  8045. source: "./media/characters/teal/hand.svg"
  8046. }
  8047. },
  8048. maw: {
  8049. height: math.unit(0.43, "meters"),
  8050. name: "Maw",
  8051. image: {
  8052. source: "./media/characters/teal/maw.svg"
  8053. }
  8054. },
  8055. slit: {
  8056. height: math.unit(0.25, "meters"),
  8057. name: "Slit",
  8058. image: {
  8059. source: "./media/characters/teal/slit.svg"
  8060. }
  8061. },
  8062. },
  8063. [
  8064. {
  8065. name: "Normal",
  8066. height: math.unit(2.75, "meters"),
  8067. default: true
  8068. },
  8069. {
  8070. name: "Macro",
  8071. height: math.unit(300, "feet")
  8072. },
  8073. {
  8074. name: "Macro+",
  8075. height: math.unit(2000, "feet")
  8076. },
  8077. ]
  8078. ))
  8079. characterMakers.push(() => makeCharacter(
  8080. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8081. {
  8082. frontCat: {
  8083. height: math.unit(6, "feet"),
  8084. weight: math.unit(180, "lbs"),
  8085. name: "Front (Cat)",
  8086. image: {
  8087. source: "./media/characters/ravin-amulet/front-cat.svg"
  8088. }
  8089. },
  8090. frontCatAlt: {
  8091. height: math.unit(6, "feet"),
  8092. weight: math.unit(180, "lbs"),
  8093. name: "Front (Alt, Cat)",
  8094. image: {
  8095. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8096. }
  8097. },
  8098. frontWerewolf: {
  8099. height: math.unit(6 * 1.2, "feet"),
  8100. weight: math.unit(225, "lbs"),
  8101. name: "Front (Werewolf)",
  8102. image: {
  8103. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8104. }
  8105. },
  8106. backWerewolf: {
  8107. height: math.unit(6 * 1.2, "feet"),
  8108. weight: math.unit(225, "lbs"),
  8109. name: "Back (Werewolf)",
  8110. image: {
  8111. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8112. }
  8113. },
  8114. },
  8115. [
  8116. {
  8117. name: "Nano",
  8118. height: math.unit(1, "micrometer")
  8119. },
  8120. {
  8121. name: "Micro",
  8122. height: math.unit(1, "inch")
  8123. },
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(6, "feet"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "Macro",
  8131. height: math.unit(60, "feet")
  8132. }
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8137. {
  8138. front: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(165, "lbs"),
  8141. name: "Front",
  8142. image: {
  8143. source: "./media/characters/fluoresce/front.svg"
  8144. }
  8145. }
  8146. },
  8147. [
  8148. {
  8149. name: "Micro",
  8150. height: math.unit(6, "cm")
  8151. },
  8152. {
  8153. name: "Normal",
  8154. height: math.unit(5 + 7 / 12, "feet"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Macro",
  8159. height: math.unit(56, "feet")
  8160. },
  8161. {
  8162. name: "Megamacro",
  8163. height: math.unit(1.9, "miles")
  8164. },
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8169. {
  8170. front: {
  8171. height: math.unit(9 + 6 / 12, "feet"),
  8172. weight: math.unit(523, "lbs"),
  8173. name: "Side",
  8174. image: {
  8175. source: "./media/characters/aurora/side.svg"
  8176. }
  8177. }
  8178. },
  8179. [
  8180. {
  8181. name: "Normal",
  8182. height: math.unit(9 + 6 / 12, "feet")
  8183. },
  8184. {
  8185. name: "Macro",
  8186. height: math.unit(96, "feet"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Macro+",
  8191. height: math.unit(243, "feet")
  8192. },
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(194, "cm"),
  8200. weight: math.unit(90, "kg"),
  8201. name: "Front",
  8202. image: {
  8203. source: "./media/characters/ranek/front.svg",
  8204. extra: 1862/1791,
  8205. bottom: 80/1942
  8206. }
  8207. },
  8208. back: {
  8209. height: math.unit(194, "cm"),
  8210. weight: math.unit(90, "kg"),
  8211. name: "Back",
  8212. image: {
  8213. source: "./media/characters/ranek/back.svg",
  8214. extra: 1853/1787,
  8215. bottom: 74/1927
  8216. }
  8217. },
  8218. feral: {
  8219. height: math.unit(30, "cm"),
  8220. weight: math.unit(1.6, "lbs"),
  8221. name: "Feral",
  8222. image: {
  8223. source: "./media/characters/ranek/feral.svg",
  8224. extra: 990/631,
  8225. bottom: 29/1019
  8226. }
  8227. },
  8228. },
  8229. [
  8230. {
  8231. name: "Normal",
  8232. height: math.unit(194, "cm"),
  8233. default: true
  8234. },
  8235. {
  8236. name: "Macro",
  8237. height: math.unit(100, "meters")
  8238. },
  8239. ]
  8240. ))
  8241. characterMakers.push(() => makeCharacter(
  8242. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8243. {
  8244. front: {
  8245. height: math.unit(5 + 6 / 12, "feet"),
  8246. weight: math.unit(153, "lbs"),
  8247. name: "Front",
  8248. image: {
  8249. source: "./media/characters/andrew-cooper/front.svg"
  8250. }
  8251. },
  8252. },
  8253. [
  8254. {
  8255. name: "Nano",
  8256. height: math.unit(1, "mm")
  8257. },
  8258. {
  8259. name: "Micro",
  8260. height: math.unit(2, "inches")
  8261. },
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(5 + 6 / 12, "feet"),
  8265. default: true
  8266. }
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8271. {
  8272. front: {
  8273. height: math.unit(6, "feet"),
  8274. weight: math.unit(180, "lbs"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/akane-sato/front.svg",
  8278. extra: 1219 / 1140
  8279. }
  8280. },
  8281. back: {
  8282. height: math.unit(6, "feet"),
  8283. weight: math.unit(180, "lbs"),
  8284. name: "Back",
  8285. image: {
  8286. source: "./media/characters/akane-sato/back.svg",
  8287. extra: 1219 / 1170
  8288. }
  8289. },
  8290. },
  8291. [
  8292. {
  8293. name: "Normal",
  8294. height: math.unit(2.5, "meters")
  8295. },
  8296. {
  8297. name: "Macro",
  8298. height: math.unit(250, "meters"),
  8299. default: true
  8300. },
  8301. {
  8302. name: "Megamacro",
  8303. height: math.unit(25, "km")
  8304. },
  8305. ]
  8306. ))
  8307. characterMakers.push(() => makeCharacter(
  8308. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8309. {
  8310. front: {
  8311. height: math.unit(6, "feet"),
  8312. weight: math.unit(65, "kg"),
  8313. name: "Front",
  8314. image: {
  8315. source: "./media/characters/rook/front.svg",
  8316. extra: 960 / 950
  8317. }
  8318. }
  8319. },
  8320. [
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(8.8, "feet")
  8324. },
  8325. {
  8326. name: "Macro",
  8327. height: math.unit(88, "feet"),
  8328. default: true
  8329. },
  8330. {
  8331. name: "Megamacro",
  8332. height: math.unit(8, "miles")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(12 + 2 / 12, "feet"),
  8341. weight: math.unit(808, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/prodigy/front.svg"
  8345. }
  8346. }
  8347. },
  8348. [
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(12 + 2 / 12, "feet"),
  8352. default: true
  8353. },
  8354. {
  8355. name: "Macro",
  8356. height: math.unit(143, "feet")
  8357. },
  8358. {
  8359. name: "Macro+",
  8360. height: math.unit(400, "feet")
  8361. },
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8366. {
  8367. front: {
  8368. height: math.unit(6, "feet"),
  8369. weight: math.unit(225, "lbs"),
  8370. name: "Front",
  8371. image: {
  8372. source: "./media/characters/daniel/front.svg"
  8373. }
  8374. },
  8375. leaning: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(225, "lbs"),
  8378. name: "Leaning",
  8379. image: {
  8380. source: "./media/characters/daniel/leaning.svg"
  8381. }
  8382. },
  8383. },
  8384. [
  8385. {
  8386. name: "Macro",
  8387. height: math.unit(1000, "feet"),
  8388. default: true
  8389. },
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8394. {
  8395. front: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(88, "lbs"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/chiros/front.svg",
  8401. extra: 306 / 226
  8402. }
  8403. },
  8404. side: {
  8405. height: math.unit(6, "feet"),
  8406. weight: math.unit(88, "lbs"),
  8407. name: "Side",
  8408. image: {
  8409. source: "./media/characters/chiros/side.svg",
  8410. extra: 306 / 226
  8411. }
  8412. },
  8413. },
  8414. [
  8415. {
  8416. name: "Normal",
  8417. height: math.unit(6, "cm"),
  8418. default: true
  8419. },
  8420. ]
  8421. ))
  8422. characterMakers.push(() => makeCharacter(
  8423. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8424. {
  8425. front: {
  8426. height: math.unit(6, "feet"),
  8427. weight: math.unit(100, "lbs"),
  8428. name: "Front",
  8429. image: {
  8430. source: "./media/characters/selka/front.svg",
  8431. extra: 947 / 887
  8432. }
  8433. }
  8434. },
  8435. [
  8436. {
  8437. name: "Normal",
  8438. height: math.unit(5, "cm"),
  8439. default: true
  8440. },
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(8 + 3 / 12, "feet"),
  8448. weight: math.unit(424, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/verin/front.svg",
  8452. extra: 1845 / 1550
  8453. }
  8454. },
  8455. frontArmored: {
  8456. height: math.unit(8 + 3 / 12, "feet"),
  8457. weight: math.unit(424, "lbs"),
  8458. name: "Front (Armored)",
  8459. image: {
  8460. source: "./media/characters/verin/front-armor.svg",
  8461. extra: 1845 / 1550,
  8462. bottom: 0.01
  8463. }
  8464. },
  8465. back: {
  8466. height: math.unit(8 + 3 / 12, "feet"),
  8467. weight: math.unit(424, "lbs"),
  8468. name: "Back",
  8469. image: {
  8470. source: "./media/characters/verin/back.svg",
  8471. bottom: 0.1,
  8472. extra: 1
  8473. }
  8474. },
  8475. foot: {
  8476. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8477. name: "Foot",
  8478. image: {
  8479. source: "./media/characters/verin/foot.svg"
  8480. }
  8481. },
  8482. },
  8483. [
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(8 + 3 / 12, "feet")
  8487. },
  8488. {
  8489. name: "Minimacro",
  8490. height: math.unit(21, "feet"),
  8491. default: true
  8492. },
  8493. {
  8494. name: "Macro",
  8495. height: math.unit(626, "feet")
  8496. },
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8501. {
  8502. front: {
  8503. height: math.unit(2.718, "meters"),
  8504. weight: math.unit(150, "lbs"),
  8505. name: "Front",
  8506. image: {
  8507. source: "./media/characters/sovrim-terraquian/front.svg",
  8508. extra: 1752/1689,
  8509. bottom: 36/1788
  8510. }
  8511. },
  8512. back: {
  8513. height: math.unit(2.718, "meters"),
  8514. weight: math.unit(150, "lbs"),
  8515. name: "Back",
  8516. image: {
  8517. source: "./media/characters/sovrim-terraquian/back.svg",
  8518. extra: 1698/1657,
  8519. bottom: 58/1756
  8520. }
  8521. },
  8522. tongue: {
  8523. height: math.unit(2.865, "feet"),
  8524. name: "Tongue",
  8525. image: {
  8526. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8527. }
  8528. },
  8529. hand: {
  8530. height: math.unit(1.61, "feet"),
  8531. name: "Hand",
  8532. image: {
  8533. source: "./media/characters/sovrim-terraquian/hand.svg"
  8534. }
  8535. },
  8536. foot: {
  8537. height: math.unit(1.05, "feet"),
  8538. name: "Foot",
  8539. image: {
  8540. source: "./media/characters/sovrim-terraquian/foot.svg"
  8541. }
  8542. },
  8543. footAlt: {
  8544. height: math.unit(0.88, "feet"),
  8545. name: "Foot (Alt)",
  8546. image: {
  8547. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8548. }
  8549. },
  8550. },
  8551. [
  8552. {
  8553. name: "Micro",
  8554. height: math.unit(2, "inches")
  8555. },
  8556. {
  8557. name: "Small",
  8558. height: math.unit(1, "meter")
  8559. },
  8560. {
  8561. name: "Normal",
  8562. height: math.unit(Math.E, "meters"),
  8563. default: true
  8564. },
  8565. {
  8566. name: "Macro",
  8567. height: math.unit(20, "meters")
  8568. },
  8569. {
  8570. name: "Macro+",
  8571. height: math.unit(400, "meters")
  8572. },
  8573. ]
  8574. ))
  8575. characterMakers.push(() => makeCharacter(
  8576. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8577. {
  8578. front: {
  8579. height: math.unit(7, "feet"),
  8580. weight: math.unit(489, "lbs"),
  8581. name: "Front",
  8582. image: {
  8583. source: "./media/characters/reece-silvermane/front.svg",
  8584. bottom: 0.02,
  8585. extra: 1
  8586. }
  8587. },
  8588. },
  8589. [
  8590. {
  8591. name: "Macro",
  8592. height: math.unit(1.5, "miles"),
  8593. default: true
  8594. },
  8595. ]
  8596. ))
  8597. characterMakers.push(() => makeCharacter(
  8598. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8599. {
  8600. front: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(78, "kg"),
  8603. name: "Front",
  8604. image: {
  8605. source: "./media/characters/kane/front.svg",
  8606. extra: 978 / 899
  8607. }
  8608. },
  8609. },
  8610. [
  8611. {
  8612. name: "Normal",
  8613. height: math.unit(2.1, "m"),
  8614. },
  8615. {
  8616. name: "Macro",
  8617. height: math.unit(1, "km"),
  8618. default: true
  8619. },
  8620. ]
  8621. ))
  8622. characterMakers.push(() => makeCharacter(
  8623. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8624. {
  8625. front: {
  8626. height: math.unit(6, "feet"),
  8627. weight: math.unit(200, "kg"),
  8628. name: "Front",
  8629. image: {
  8630. source: "./media/characters/tegon/front.svg",
  8631. bottom: 0.01,
  8632. extra: 1
  8633. }
  8634. },
  8635. },
  8636. [
  8637. {
  8638. name: "Micro",
  8639. height: math.unit(1, "inch")
  8640. },
  8641. {
  8642. name: "Normal",
  8643. height: math.unit(6 + 3 / 12, "feet"),
  8644. default: true
  8645. },
  8646. {
  8647. name: "Macro",
  8648. height: math.unit(300, "feet")
  8649. },
  8650. {
  8651. name: "Megamacro",
  8652. height: math.unit(69, "miles")
  8653. },
  8654. ]
  8655. ))
  8656. characterMakers.push(() => makeCharacter(
  8657. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8658. {
  8659. side: {
  8660. height: math.unit(6, "feet"),
  8661. weight: math.unit(2304, "lbs"),
  8662. name: "Side",
  8663. image: {
  8664. source: "./media/characters/arcturax/side.svg",
  8665. extra: 790 / 376,
  8666. bottom: 0.01
  8667. }
  8668. },
  8669. },
  8670. [
  8671. {
  8672. name: "Micro",
  8673. height: math.unit(2, "inch")
  8674. },
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(6, "feet")
  8678. },
  8679. {
  8680. name: "Macro",
  8681. height: math.unit(39, "feet"),
  8682. default: true
  8683. },
  8684. {
  8685. name: "Megamacro",
  8686. height: math.unit(7, "miles")
  8687. },
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8692. {
  8693. front: {
  8694. height: math.unit(6, "feet"),
  8695. weight: math.unit(50, "lbs"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/sentri/front.svg",
  8699. extra: 1750 / 1570,
  8700. bottom: 0.025
  8701. }
  8702. },
  8703. frontAlt: {
  8704. height: math.unit(6, "feet"),
  8705. weight: math.unit(50, "lbs"),
  8706. name: "Front (Alt)",
  8707. image: {
  8708. source: "./media/characters/sentri/front-alt.svg",
  8709. extra: 1750 / 1570,
  8710. bottom: 0.025
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Normal",
  8717. height: math.unit(15, "feet"),
  8718. default: true
  8719. },
  8720. {
  8721. name: "Macro",
  8722. height: math.unit(2500, "feet")
  8723. }
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(5 + 8 / 12, "feet"),
  8731. weight: math.unit(130, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/corvin/front.svg",
  8735. extra: 1803 / 1629
  8736. }
  8737. },
  8738. frontShirt: {
  8739. height: math.unit(5 + 8 / 12, "feet"),
  8740. weight: math.unit(130, "lbs"),
  8741. name: "Front (Shirt)",
  8742. image: {
  8743. source: "./media/characters/corvin/front-shirt.svg",
  8744. extra: 1803 / 1629
  8745. }
  8746. },
  8747. frontPoncho: {
  8748. height: math.unit(5 + 8 / 12, "feet"),
  8749. weight: math.unit(130, "lbs"),
  8750. name: "Front (Poncho)",
  8751. image: {
  8752. source: "./media/characters/corvin/front-poncho.svg",
  8753. extra: 1803 / 1629
  8754. }
  8755. },
  8756. side: {
  8757. height: math.unit(5 + 8 / 12, "feet"),
  8758. weight: math.unit(130, "lbs"),
  8759. name: "Side",
  8760. image: {
  8761. source: "./media/characters/corvin/side.svg",
  8762. extra: 1012 / 945
  8763. }
  8764. },
  8765. back: {
  8766. height: math.unit(5 + 8 / 12, "feet"),
  8767. weight: math.unit(130, "lbs"),
  8768. name: "Back",
  8769. image: {
  8770. source: "./media/characters/corvin/back.svg",
  8771. extra: 1803 / 1629
  8772. }
  8773. },
  8774. },
  8775. [
  8776. {
  8777. name: "Micro",
  8778. height: math.unit(3, "inches")
  8779. },
  8780. {
  8781. name: "Normal",
  8782. height: math.unit(5 + 8 / 12, "feet")
  8783. },
  8784. {
  8785. name: "Macro",
  8786. height: math.unit(300, "feet"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Megamacro",
  8791. height: math.unit(500, "miles")
  8792. }
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(6, "feet"),
  8800. weight: math.unit(135, "lbs"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/q/front.svg",
  8804. extra: 854 / 752,
  8805. bottom: 0.005
  8806. }
  8807. },
  8808. back: {
  8809. height: math.unit(6, "feet"),
  8810. weight: math.unit(130, "lbs"),
  8811. name: "Back",
  8812. image: {
  8813. source: "./media/characters/q/back.svg",
  8814. extra: 854 / 752
  8815. }
  8816. },
  8817. },
  8818. [
  8819. {
  8820. name: "Macro",
  8821. height: math.unit(90, "feet"),
  8822. default: true
  8823. },
  8824. {
  8825. name: "Extra Macro",
  8826. height: math.unit(300, "feet"),
  8827. },
  8828. {
  8829. name: "BIG WALF",
  8830. height: math.unit(750, "feet"),
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(6, "feet"),
  8839. weight: math.unit(150, "lbs"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/carley/front.svg",
  8843. extra: 3927 / 3540,
  8844. bottom: 29.2 / 735
  8845. }
  8846. }
  8847. },
  8848. [
  8849. {
  8850. name: "Normal",
  8851. height: math.unit(6 + 3 / 12, "feet")
  8852. },
  8853. {
  8854. name: "Macro",
  8855. height: math.unit(185, "feet"),
  8856. default: true
  8857. },
  8858. {
  8859. name: "Megamacro",
  8860. height: math.unit(8, "miles"),
  8861. },
  8862. ]
  8863. ))
  8864. characterMakers.push(() => makeCharacter(
  8865. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8866. {
  8867. front: {
  8868. height: math.unit(3, "feet"),
  8869. weight: math.unit(28, "lbs"),
  8870. name: "Front",
  8871. image: {
  8872. source: "./media/characters/citrine/front.svg"
  8873. }
  8874. }
  8875. },
  8876. [
  8877. {
  8878. name: "Normal",
  8879. height: math.unit(3, "feet"),
  8880. default: true
  8881. }
  8882. ]
  8883. ))
  8884. characterMakers.push(() => makeCharacter(
  8885. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8886. {
  8887. front: {
  8888. height: math.unit(14, "feet"),
  8889. weight: math.unit(1450, "kg"),
  8890. preyCapacity: math.unit(15, "people"),
  8891. name: "Front",
  8892. image: {
  8893. source: "./media/characters/aura-starwind/front.svg",
  8894. extra: 1440/1327,
  8895. bottom: 11/1451
  8896. }
  8897. },
  8898. side: {
  8899. height: math.unit(14, "feet"),
  8900. weight: math.unit(1450, "kg"),
  8901. preyCapacity: math.unit(15, "people"),
  8902. name: "Side",
  8903. image: {
  8904. source: "./media/characters/aura-starwind/side.svg",
  8905. extra: 1654 / 1497
  8906. }
  8907. },
  8908. taur: {
  8909. height: math.unit(18, "feet"),
  8910. weight: math.unit(5500, "kg"),
  8911. preyCapacity: math.unit(50, "people"),
  8912. name: "Taur",
  8913. image: {
  8914. source: "./media/characters/aura-starwind/taur.svg",
  8915. extra: 1760 / 1650
  8916. }
  8917. },
  8918. feral: {
  8919. height: math.unit(46, "feet"),
  8920. weight: math.unit(25000, "kg"),
  8921. preyCapacity: math.unit(120, "people"),
  8922. name: "Feral",
  8923. image: {
  8924. source: "./media/characters/aura-starwind/feral.svg"
  8925. }
  8926. },
  8927. },
  8928. [
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(14, "feet"),
  8932. default: true
  8933. },
  8934. {
  8935. name: "Macro",
  8936. height: math.unit(50, "meters")
  8937. },
  8938. {
  8939. name: "Megamacro",
  8940. height: math.unit(5000, "meters")
  8941. },
  8942. {
  8943. name: "Gigamacro",
  8944. height: math.unit(100000, "kilometers")
  8945. },
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8950. {
  8951. front: {
  8952. height: math.unit(2 + 7 / 12, "feet"),
  8953. weight: math.unit(32, "lbs"),
  8954. name: "Front",
  8955. image: {
  8956. source: "./media/characters/rivet/front.svg",
  8957. extra: 1716 / 1658,
  8958. bottom: 0.03
  8959. }
  8960. },
  8961. foot: {
  8962. height: math.unit(0.551, "feet"),
  8963. name: "Rivet's Foot",
  8964. image: {
  8965. source: "./media/characters/rivet/foot.svg"
  8966. },
  8967. rename: true
  8968. }
  8969. },
  8970. [
  8971. {
  8972. name: "Micro",
  8973. height: math.unit(1.5, "inches"),
  8974. },
  8975. {
  8976. name: "Normal",
  8977. height: math.unit(2 + 7 / 12, "feet"),
  8978. default: true
  8979. },
  8980. {
  8981. name: "Macro",
  8982. height: math.unit(85, "feet")
  8983. },
  8984. {
  8985. name: "Megamacro",
  8986. height: math.unit(2.2, "km")
  8987. }
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8992. {
  8993. front: {
  8994. height: math.unit(5 + 9 / 12, "feet"),
  8995. weight: math.unit(150, "lbs"),
  8996. name: "Front",
  8997. image: {
  8998. source: "./media/characters/coffee/front.svg",
  8999. extra: 3666 / 3032,
  9000. bottom: 0.04
  9001. }
  9002. },
  9003. foot: {
  9004. height: math.unit(1.29, "feet"),
  9005. name: "Foot",
  9006. image: {
  9007. source: "./media/characters/coffee/foot.svg"
  9008. }
  9009. },
  9010. },
  9011. [
  9012. {
  9013. name: "Micro",
  9014. height: math.unit(2, "inches"),
  9015. },
  9016. {
  9017. name: "Normal",
  9018. height: math.unit(5 + 9 / 12, "feet"),
  9019. default: true
  9020. },
  9021. {
  9022. name: "Macro",
  9023. height: math.unit(800, "feet")
  9024. },
  9025. {
  9026. name: "Megamacro",
  9027. height: math.unit(25, "miles")
  9028. }
  9029. ]
  9030. ))
  9031. characterMakers.push(() => makeCharacter(
  9032. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9033. {
  9034. front: {
  9035. height: math.unit(6, "feet"),
  9036. weight: math.unit(200, "lbs"),
  9037. name: "Front",
  9038. image: {
  9039. source: "./media/characters/chari-gal/front.svg",
  9040. extra: 1568 / 1385,
  9041. bottom: 0.047
  9042. }
  9043. },
  9044. gigantamax: {
  9045. height: math.unit(6 * 16, "feet"),
  9046. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9047. name: "Gigantamax",
  9048. image: {
  9049. source: "./media/characters/chari-gal/gigantamax.svg",
  9050. extra: 1124 / 888,
  9051. bottom: 0.03
  9052. }
  9053. },
  9054. },
  9055. [
  9056. {
  9057. name: "Normal",
  9058. height: math.unit(5 + 7 / 12, "feet")
  9059. },
  9060. {
  9061. name: "Macro",
  9062. height: math.unit(200, "feet"),
  9063. default: true
  9064. }
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(6, "feet"),
  9072. weight: math.unit(150, "lbs"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/nova/front.svg",
  9076. extra: 5000 / 4722,
  9077. bottom: 0.02
  9078. }
  9079. }
  9080. },
  9081. [
  9082. {
  9083. name: "Micro-",
  9084. height: math.unit(0.8, "inches")
  9085. },
  9086. {
  9087. name: "Micro",
  9088. height: math.unit(2, "inches"),
  9089. default: true
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9095. {
  9096. front: {
  9097. height: math.unit(3 + 1 / 12, "feet"),
  9098. weight: math.unit(21.7, "lbs"),
  9099. name: "Front",
  9100. image: {
  9101. source: "./media/characters/argent/front.svg",
  9102. extra: 1471 / 1331,
  9103. bottom: 100.8 / 1575.5
  9104. }
  9105. }
  9106. },
  9107. [
  9108. {
  9109. name: "Micro",
  9110. height: math.unit(2, "inches")
  9111. },
  9112. {
  9113. name: "Normal",
  9114. height: math.unit(3 + 1 / 12, "feet"),
  9115. default: true
  9116. },
  9117. {
  9118. name: "Macro",
  9119. height: math.unit(120, "feet")
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9125. {
  9126. lamp: {
  9127. height: math.unit(7 * 1559 / 989, "feet"),
  9128. name: "Magic Lamp",
  9129. image: {
  9130. source: "./media/characters/mira-al-cul/lamp.svg",
  9131. extra: 1617 / 1559
  9132. }
  9133. },
  9134. front: {
  9135. height: math.unit(7, "feet"),
  9136. name: "Front",
  9137. image: {
  9138. source: "./media/characters/mira-al-cul/front.svg",
  9139. extra: 1044 / 990
  9140. }
  9141. },
  9142. },
  9143. [
  9144. {
  9145. name: "Heavily Restricted",
  9146. height: math.unit(7 * 1559 / 989, "feet")
  9147. },
  9148. {
  9149. name: "Freshly Freed",
  9150. height: math.unit(50 * 1559 / 989, "feet")
  9151. },
  9152. {
  9153. name: "World Encompassing",
  9154. height: math.unit(10000 * 1559 / 989, "miles")
  9155. },
  9156. {
  9157. name: "Galactic",
  9158. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9159. },
  9160. {
  9161. name: "Palmed Universe",
  9162. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9163. default: true
  9164. },
  9165. {
  9166. name: "Multiversal Matriarch",
  9167. height: math.unit(8.87e10, "yottameters")
  9168. },
  9169. {
  9170. name: "Void Mother",
  9171. height: math.unit(3.14e110, "yottaparsecs")
  9172. },
  9173. {
  9174. name: "Toying with Transcendence",
  9175. height: math.unit(1e307, "meters")
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9181. {
  9182. front: {
  9183. height: math.unit(17 + 1 / 12, "feet"),
  9184. weight: math.unit(476.2 * 5, "lbs"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/kuro-shi-uchū/front.svg",
  9188. extra: 2329 / 1835,
  9189. bottom: 0.02
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Micro",
  9196. height: math.unit(2, "inches")
  9197. },
  9198. {
  9199. name: "Normal",
  9200. height: math.unit(12, "meters")
  9201. },
  9202. {
  9203. name: "Planetary",
  9204. height: math.unit(0.00929, "AU"),
  9205. default: true
  9206. },
  9207. {
  9208. name: "Universal",
  9209. height: math.unit(20, "gigaparsecs")
  9210. },
  9211. ]
  9212. ))
  9213. characterMakers.push(() => makeCharacter(
  9214. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9215. {
  9216. front: {
  9217. height: math.unit(5 + 2 / 12, "feet"),
  9218. weight: math.unit(120, "lbs"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/katherine/front.svg",
  9222. extra: 2075 / 1969
  9223. }
  9224. },
  9225. dress: {
  9226. height: math.unit(5 + 2 / 12, "feet"),
  9227. weight: math.unit(120, "lbs"),
  9228. name: "Dress",
  9229. image: {
  9230. source: "./media/characters/katherine/dress.svg",
  9231. extra: 2258 / 2064
  9232. }
  9233. },
  9234. },
  9235. [
  9236. {
  9237. name: "Micro",
  9238. height: math.unit(1, "inches"),
  9239. default: true
  9240. },
  9241. {
  9242. name: "Normal",
  9243. height: math.unit(5 + 2 / 12, "feet")
  9244. },
  9245. {
  9246. name: "Macro",
  9247. height: math.unit(100, "meters")
  9248. },
  9249. {
  9250. name: "Megamacro",
  9251. height: math.unit(80, "miles")
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9257. {
  9258. front: {
  9259. height: math.unit(7 + 8 / 12, "feet"),
  9260. weight: math.unit(250, "lbs"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/yevis/front.svg",
  9264. extra: 1938 / 1755
  9265. }
  9266. }
  9267. },
  9268. [
  9269. {
  9270. name: "Mortal",
  9271. height: math.unit(7 + 8 / 12, "feet")
  9272. },
  9273. {
  9274. name: "Battle",
  9275. height: math.unit(25 + 11 / 12, "feet")
  9276. },
  9277. {
  9278. name: "Wrath",
  9279. height: math.unit(1654 + 11 / 12, "feet")
  9280. },
  9281. {
  9282. name: "Planet Destroyer",
  9283. height: math.unit(12000, "miles")
  9284. },
  9285. {
  9286. name: "Galaxy Conqueror",
  9287. height: math.unit(1.45, "zettameters"),
  9288. default: true
  9289. },
  9290. {
  9291. name: "Universal War",
  9292. height: math.unit(184, "gigaparsecs")
  9293. },
  9294. {
  9295. name: "Eternity War",
  9296. height: math.unit(1.98e55, "yottaparsecs")
  9297. },
  9298. ]
  9299. ))
  9300. characterMakers.push(() => makeCharacter(
  9301. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9302. {
  9303. front: {
  9304. height: math.unit(5 + 8 / 12, "feet"),
  9305. weight: math.unit(63, "kg"),
  9306. name: "Front",
  9307. image: {
  9308. source: "./media/characters/xavier/front.svg",
  9309. extra: 944 / 883
  9310. }
  9311. },
  9312. frontStretch: {
  9313. height: math.unit(5 + 8 / 12, "feet"),
  9314. weight: math.unit(63, "kg"),
  9315. name: "Stretching",
  9316. image: {
  9317. source: "./media/characters/xavier/front-stretch.svg",
  9318. extra: 962 / 820
  9319. }
  9320. },
  9321. },
  9322. [
  9323. {
  9324. name: "Normal",
  9325. height: math.unit(5 + 8 / 12, "feet")
  9326. },
  9327. {
  9328. name: "Macro",
  9329. height: math.unit(100, "meters"),
  9330. default: true
  9331. },
  9332. {
  9333. name: "McLargeHuge",
  9334. height: math.unit(10, "miles")
  9335. },
  9336. ]
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9340. {
  9341. front: {
  9342. height: math.unit(5 + 5 / 12, "feet"),
  9343. weight: math.unit(150, "lb"),
  9344. name: "Front",
  9345. image: {
  9346. source: "./media/characters/joshii/front.svg",
  9347. extra: 765 / 653,
  9348. bottom: 51 / 816
  9349. }
  9350. },
  9351. foot: {
  9352. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9353. name: "Foot",
  9354. image: {
  9355. source: "./media/characters/joshii/foot.svg"
  9356. }
  9357. },
  9358. },
  9359. [
  9360. {
  9361. name: "Micro",
  9362. height: math.unit(2, "inches"),
  9363. default: true
  9364. },
  9365. {
  9366. name: "Normal",
  9367. height: math.unit(5 + 5 / 12, "feet")
  9368. },
  9369. {
  9370. name: "Macro",
  9371. height: math.unit(785, "feet")
  9372. },
  9373. {
  9374. name: "Megamacro",
  9375. height: math.unit(24.5, "miles")
  9376. },
  9377. ]
  9378. ))
  9379. characterMakers.push(() => makeCharacter(
  9380. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9381. {
  9382. front: {
  9383. height: math.unit(6, "feet"),
  9384. weight: math.unit(150, "lb"),
  9385. name: "Front",
  9386. image: {
  9387. source: "./media/characters/goddess-elizabeth/front.svg",
  9388. extra: 1800 / 1525,
  9389. bottom: 0.005
  9390. }
  9391. },
  9392. foot: {
  9393. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9394. name: "Foot",
  9395. image: {
  9396. source: "./media/characters/goddess-elizabeth/foot.svg"
  9397. }
  9398. },
  9399. mouth: {
  9400. height: math.unit(6, "feet"),
  9401. name: "Mouth",
  9402. image: {
  9403. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9404. }
  9405. },
  9406. },
  9407. [
  9408. {
  9409. name: "Micro",
  9410. height: math.unit(12, "feet")
  9411. },
  9412. {
  9413. name: "Normal",
  9414. height: math.unit(80, "miles"),
  9415. default: true
  9416. },
  9417. {
  9418. name: "Macro",
  9419. height: math.unit(15000, "parsecs")
  9420. },
  9421. ]
  9422. ))
  9423. characterMakers.push(() => makeCharacter(
  9424. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9425. {
  9426. front: {
  9427. height: math.unit(5 + 9 / 12, "feet"),
  9428. weight: math.unit(144, "lb"),
  9429. name: "Front",
  9430. image: {
  9431. source: "./media/characters/kara/front.svg"
  9432. }
  9433. },
  9434. feet: {
  9435. height: math.unit(6 / 6.765, "feet"),
  9436. name: "Kara's Feet",
  9437. rename: true,
  9438. image: {
  9439. source: "./media/characters/kara/feet.svg"
  9440. }
  9441. },
  9442. },
  9443. [
  9444. {
  9445. name: "Normal",
  9446. height: math.unit(5 + 9 / 12, "feet")
  9447. },
  9448. {
  9449. name: "Macro",
  9450. height: math.unit(174, "feet"),
  9451. default: true
  9452. },
  9453. ]
  9454. ))
  9455. characterMakers.push(() => makeCharacter(
  9456. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9457. {
  9458. front: {
  9459. height: math.unit(18, "feet"),
  9460. weight: math.unit(4050, "lb"),
  9461. name: "Front",
  9462. image: {
  9463. source: "./media/characters/tyrone/front.svg",
  9464. extra: 2405 / 2270,
  9465. bottom: 182 / 2587
  9466. }
  9467. },
  9468. },
  9469. [
  9470. {
  9471. name: "Normal",
  9472. height: math.unit(18, "feet"),
  9473. default: true
  9474. },
  9475. {
  9476. name: "Macro",
  9477. height: math.unit(300, "feet")
  9478. },
  9479. {
  9480. name: "Megamacro",
  9481. height: math.unit(15, "km")
  9482. },
  9483. {
  9484. name: "Gigamacro",
  9485. height: math.unit(500, "km")
  9486. },
  9487. {
  9488. name: "Teramacro",
  9489. height: math.unit(0.5, "gigameters")
  9490. },
  9491. {
  9492. name: "Omnimacro",
  9493. height: math.unit(1e252, "yottauniverse")
  9494. },
  9495. ]
  9496. ))
  9497. characterMakers.push(() => makeCharacter(
  9498. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9499. {
  9500. front: {
  9501. height: math.unit(7 + 8 / 12, "feet"),
  9502. weight: math.unit(120, "lb"),
  9503. name: "Front",
  9504. image: {
  9505. source: "./media/characters/danny/front.svg",
  9506. extra: 1490 / 1350
  9507. }
  9508. },
  9509. back: {
  9510. height: math.unit(7 + 8 / 12, "feet"),
  9511. weight: math.unit(120, "lb"),
  9512. name: "Back",
  9513. image: {
  9514. source: "./media/characters/danny/back.svg",
  9515. extra: 1490 / 1350
  9516. }
  9517. },
  9518. },
  9519. [
  9520. {
  9521. name: "Normal",
  9522. height: math.unit(7 + 8 / 12, "feet"),
  9523. default: true
  9524. },
  9525. ]
  9526. ))
  9527. characterMakers.push(() => makeCharacter(
  9528. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9529. {
  9530. front: {
  9531. height: math.unit(3.5, "inches"),
  9532. weight: math.unit(19, "grams"),
  9533. name: "Front",
  9534. image: {
  9535. source: "./media/characters/mallow/front.svg",
  9536. extra: 471 / 431
  9537. }
  9538. },
  9539. back: {
  9540. height: math.unit(3.5, "inches"),
  9541. weight: math.unit(19, "grams"),
  9542. name: "Back",
  9543. image: {
  9544. source: "./media/characters/mallow/back.svg",
  9545. extra: 471 / 431
  9546. }
  9547. },
  9548. },
  9549. [
  9550. {
  9551. name: "Normal",
  9552. height: math.unit(3.5, "inches"),
  9553. default: true
  9554. },
  9555. ]
  9556. ))
  9557. characterMakers.push(() => makeCharacter(
  9558. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9559. {
  9560. front: {
  9561. height: math.unit(9, "feet"),
  9562. weight: math.unit(230, "kg"),
  9563. name: "Front",
  9564. image: {
  9565. source: "./media/characters/starry-aqua/front.svg"
  9566. }
  9567. },
  9568. back: {
  9569. height: math.unit(9, "feet"),
  9570. weight: math.unit(230, "kg"),
  9571. name: "Back",
  9572. image: {
  9573. source: "./media/characters/starry-aqua/back.svg"
  9574. }
  9575. },
  9576. hand: {
  9577. height: math.unit(9 * 0.1168, "feet"),
  9578. name: "Hand",
  9579. image: {
  9580. source: "./media/characters/starry-aqua/hand.svg"
  9581. }
  9582. },
  9583. foot: {
  9584. height: math.unit(9 * 0.18, "feet"),
  9585. name: "Foot",
  9586. image: {
  9587. source: "./media/characters/starry-aqua/foot.svg"
  9588. }
  9589. }
  9590. },
  9591. [
  9592. {
  9593. name: "Micro",
  9594. height: math.unit(3, "inches")
  9595. },
  9596. {
  9597. name: "Normal",
  9598. height: math.unit(9, "feet")
  9599. },
  9600. {
  9601. name: "Macro",
  9602. height: math.unit(300, "feet"),
  9603. default: true
  9604. },
  9605. {
  9606. name: "Megamacro",
  9607. height: math.unit(3200, "feet")
  9608. }
  9609. ]
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9613. {
  9614. front: {
  9615. height: math.unit(15, "feet"),
  9616. weight: math.unit(5026, "lb"),
  9617. name: "Front",
  9618. image: {
  9619. source: "./media/characters/luka-towers/front.svg",
  9620. extra: 1269/1133,
  9621. bottom: 51/1320
  9622. }
  9623. },
  9624. },
  9625. [
  9626. {
  9627. name: "Normal",
  9628. height: math.unit(15, "feet"),
  9629. default: true
  9630. },
  9631. {
  9632. name: "Minimacro",
  9633. height: math.unit(25, "feet")
  9634. },
  9635. {
  9636. name: "Macro",
  9637. height: math.unit(320, "feet")
  9638. },
  9639. {
  9640. name: "Megamacro",
  9641. height: math.unit(35000, "feet")
  9642. },
  9643. {
  9644. name: "Gigamacro",
  9645. height: math.unit(4000, "miles")
  9646. },
  9647. {
  9648. name: "Teramacro",
  9649. height: math.unit(15000, "miles")
  9650. },
  9651. ]
  9652. ))
  9653. characterMakers.push(() => makeCharacter(
  9654. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9655. {
  9656. front: {
  9657. height: math.unit(6, "feet"),
  9658. weight: math.unit(150, "lb"),
  9659. name: "Front",
  9660. image: {
  9661. source: "./media/characters/natalie-nightring/front.svg",
  9662. extra: 1,
  9663. bottom: 0.06
  9664. }
  9665. },
  9666. },
  9667. [
  9668. {
  9669. name: "Uh Oh",
  9670. height: math.unit(0.1, "mm")
  9671. },
  9672. {
  9673. name: "Small",
  9674. height: math.unit(3, "inches")
  9675. },
  9676. {
  9677. name: "Human Scale",
  9678. height: math.unit(6, "feet")
  9679. },
  9680. {
  9681. name: "Librarian",
  9682. height: math.unit(50, "feet"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "Immense",
  9687. height: math.unit(200, "miles")
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(6, "feet"),
  9696. weight: math.unit(180, "lbs"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/danni-rosie/front.svg",
  9700. extra: 1260 / 1128,
  9701. bottom: 0.022
  9702. }
  9703. },
  9704. },
  9705. [
  9706. {
  9707. name: "Micro",
  9708. height: math.unit(2, "inches"),
  9709. default: true
  9710. },
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9715. {
  9716. front: {
  9717. height: math.unit(5 + 9 / 12, "feet"),
  9718. weight: math.unit(220, "lb"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/samantha-kruse/front.svg",
  9722. extra: (985 / 935),
  9723. bottom: 0.03
  9724. }
  9725. },
  9726. frontUndressed: {
  9727. height: math.unit(5 + 9 / 12, "feet"),
  9728. weight: math.unit(220, "lb"),
  9729. name: "Front (Undressed)",
  9730. image: {
  9731. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9732. extra: (973 / 923),
  9733. bottom: 0.025
  9734. }
  9735. },
  9736. fat: {
  9737. height: math.unit(5 + 9 / 12, "feet"),
  9738. weight: math.unit(900, "lb"),
  9739. name: "Front (Fat)",
  9740. image: {
  9741. source: "./media/characters/samantha-kruse/fat.svg",
  9742. extra: 2688 / 2561
  9743. }
  9744. },
  9745. },
  9746. [
  9747. {
  9748. name: "Normal",
  9749. height: math.unit(5 + 9 / 12, "feet"),
  9750. default: true
  9751. }
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9756. {
  9757. back: {
  9758. height: math.unit(5 + 4 / 12, "feet"),
  9759. weight: math.unit(4963, "lb"),
  9760. name: "Back",
  9761. image: {
  9762. source: "./media/characters/amelia-rosie/back.svg",
  9763. extra: 1113 / 963,
  9764. bottom: 0.01
  9765. }
  9766. },
  9767. },
  9768. [
  9769. {
  9770. name: "Level 0",
  9771. height: math.unit(5 + 4 / 12, "feet")
  9772. },
  9773. {
  9774. name: "Level 1",
  9775. height: math.unit(164597, "feet"),
  9776. default: true
  9777. },
  9778. {
  9779. name: "Level 2",
  9780. height: math.unit(956243, "miles")
  9781. },
  9782. {
  9783. name: "Level 3",
  9784. height: math.unit(29421709423, "miles")
  9785. },
  9786. {
  9787. name: "Level 4",
  9788. height: math.unit(154, "lightyears")
  9789. },
  9790. {
  9791. name: "Level 5",
  9792. height: math.unit(4738272, "lightyears")
  9793. },
  9794. {
  9795. name: "Level 6",
  9796. height: math.unit(145787152896, "lightyears")
  9797. },
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9802. {
  9803. front: {
  9804. height: math.unit(5 + 11 / 12, "feet"),
  9805. weight: math.unit(65, "kg"),
  9806. name: "Front",
  9807. image: {
  9808. source: "./media/characters/rook-kitara/front.svg",
  9809. extra: 1347 / 1274,
  9810. bottom: 0.005
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Totally Unfair",
  9817. height: math.unit(1.8, "mm")
  9818. },
  9819. {
  9820. name: "Lap Rookie",
  9821. height: math.unit(1.4, "feet")
  9822. },
  9823. {
  9824. name: "Normal",
  9825. height: math.unit(5 + 11 / 12, "feet"),
  9826. default: true
  9827. },
  9828. {
  9829. name: "How Did This Happen",
  9830. height: math.unit(80, "miles")
  9831. }
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9836. {
  9837. front: {
  9838. height: math.unit(7, "feet"),
  9839. weight: math.unit(300, "lb"),
  9840. name: "Front",
  9841. image: {
  9842. source: "./media/characters/pisces/front.svg",
  9843. extra: 2255 / 2115,
  9844. bottom: 0.03
  9845. }
  9846. },
  9847. back: {
  9848. height: math.unit(7, "feet"),
  9849. weight: math.unit(300, "lb"),
  9850. name: "Back",
  9851. image: {
  9852. source: "./media/characters/pisces/back.svg",
  9853. extra: 2146 / 2055,
  9854. bottom: 0.04
  9855. }
  9856. },
  9857. },
  9858. [
  9859. {
  9860. name: "Normal",
  9861. height: math.unit(7, "feet"),
  9862. default: true
  9863. },
  9864. {
  9865. name: "Swimming Pool",
  9866. height: math.unit(12.2, "meters")
  9867. },
  9868. {
  9869. name: "Olympic Swimming Pool",
  9870. height: math.unit(56.3, "meters")
  9871. },
  9872. {
  9873. name: "Lake Superior",
  9874. height: math.unit(93900, "meters")
  9875. },
  9876. {
  9877. name: "Mediterranean Sea",
  9878. height: math.unit(644457, "meters")
  9879. },
  9880. {
  9881. name: "World's Oceans",
  9882. height: math.unit(4567491, "meters")
  9883. },
  9884. ]
  9885. ))
  9886. characterMakers.push(() => makeCharacter(
  9887. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9888. {
  9889. front: {
  9890. height: math.unit(2.3, "meters"),
  9891. weight: math.unit(120, "kg"),
  9892. name: "Front",
  9893. image: {
  9894. source: "./media/characters/zelas/front.svg"
  9895. }
  9896. },
  9897. side: {
  9898. height: math.unit(2.3, "meters"),
  9899. weight: math.unit(120, "kg"),
  9900. name: "Side",
  9901. image: {
  9902. source: "./media/characters/zelas/side.svg"
  9903. }
  9904. },
  9905. back: {
  9906. height: math.unit(2.3, "meters"),
  9907. weight: math.unit(120, "kg"),
  9908. name: "Back",
  9909. image: {
  9910. source: "./media/characters/zelas/back.svg"
  9911. }
  9912. },
  9913. foot: {
  9914. height: math.unit(1.116, "feet"),
  9915. name: "Foot",
  9916. image: {
  9917. source: "./media/characters/zelas/foot.svg"
  9918. }
  9919. },
  9920. },
  9921. [
  9922. {
  9923. name: "Normal",
  9924. height: math.unit(2.3, "meters")
  9925. },
  9926. {
  9927. name: "Macro",
  9928. height: math.unit(30, "meters"),
  9929. default: true
  9930. },
  9931. ]
  9932. ))
  9933. characterMakers.push(() => makeCharacter(
  9934. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9935. {
  9936. front: {
  9937. height: math.unit(1, "inch"),
  9938. weight: math.unit(0.21, "grams"),
  9939. name: "Front",
  9940. image: {
  9941. source: "./media/characters/talbot/front.svg",
  9942. extra: 594 / 544
  9943. }
  9944. },
  9945. },
  9946. [
  9947. {
  9948. name: "Micro",
  9949. height: math.unit(1, "inch"),
  9950. default: true
  9951. },
  9952. ]
  9953. ))
  9954. characterMakers.push(() => makeCharacter(
  9955. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9956. {
  9957. front: {
  9958. height: math.unit(3 + 3 / 12, "feet"),
  9959. weight: math.unit(51.8, "lb"),
  9960. name: "Front",
  9961. image: {
  9962. source: "./media/characters/fliss/front.svg",
  9963. extra: 840 / 640
  9964. }
  9965. },
  9966. },
  9967. [
  9968. {
  9969. name: "Teeny Tiny",
  9970. height: math.unit(1, "mm")
  9971. },
  9972. {
  9973. name: "Small",
  9974. height: math.unit(1, "inch"),
  9975. default: true
  9976. },
  9977. {
  9978. name: "Standard Sylveon",
  9979. height: math.unit(3 + 3 / 12, "feet")
  9980. },
  9981. {
  9982. name: "Large Nuisance",
  9983. height: math.unit(33, "feet")
  9984. },
  9985. {
  9986. name: "City Filler",
  9987. height: math.unit(3000, "feet")
  9988. },
  9989. {
  9990. name: "New Horizon",
  9991. height: math.unit(6000, "miles")
  9992. },
  9993. ]
  9994. ))
  9995. characterMakers.push(() => makeCharacter(
  9996. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9997. {
  9998. front: {
  9999. height: math.unit(5, "cm"),
  10000. weight: math.unit(1.94, "g"),
  10001. name: "Front",
  10002. image: {
  10003. source: "./media/characters/fleta/front.svg",
  10004. extra: 835 / 803
  10005. }
  10006. },
  10007. back: {
  10008. height: math.unit(5, "cm"),
  10009. weight: math.unit(1.94, "g"),
  10010. name: "Back",
  10011. image: {
  10012. source: "./media/characters/fleta/back.svg",
  10013. extra: 835 / 803
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Micro",
  10020. height: math.unit(5, "cm"),
  10021. default: true
  10022. },
  10023. ]
  10024. ))
  10025. characterMakers.push(() => makeCharacter(
  10026. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10027. {
  10028. front: {
  10029. height: math.unit(6, "feet"),
  10030. weight: math.unit(225, "lb"),
  10031. name: "Front",
  10032. image: {
  10033. source: "./media/characters/dominic/front.svg",
  10034. extra: 1770 / 1620,
  10035. bottom: 0.025
  10036. }
  10037. },
  10038. back: {
  10039. height: math.unit(6, "feet"),
  10040. weight: math.unit(225, "lb"),
  10041. name: "Back",
  10042. image: {
  10043. source: "./media/characters/dominic/back.svg",
  10044. extra: 1745 / 1620,
  10045. bottom: 0.065
  10046. }
  10047. },
  10048. },
  10049. [
  10050. {
  10051. name: "Nano",
  10052. height: math.unit(0.1, "mm")
  10053. },
  10054. {
  10055. name: "Micro-",
  10056. height: math.unit(1, "mm")
  10057. },
  10058. {
  10059. name: "Micro",
  10060. height: math.unit(4, "inches")
  10061. },
  10062. {
  10063. name: "Normal",
  10064. height: math.unit(6 + 4 / 12, "feet"),
  10065. default: true
  10066. },
  10067. {
  10068. name: "Macro",
  10069. height: math.unit(115, "feet")
  10070. },
  10071. {
  10072. name: "Macro+",
  10073. height: math.unit(955, "feet")
  10074. },
  10075. {
  10076. name: "Megamacro",
  10077. height: math.unit(8990, "feet")
  10078. },
  10079. {
  10080. name: "Gigmacro",
  10081. height: math.unit(9310, "miles")
  10082. },
  10083. {
  10084. name: "Teramacro",
  10085. height: math.unit(1567005010, "miles")
  10086. },
  10087. {
  10088. name: "Examacro",
  10089. height: math.unit(1425, "parsecs")
  10090. },
  10091. ]
  10092. ))
  10093. characterMakers.push(() => makeCharacter(
  10094. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10095. {
  10096. front: {
  10097. height: math.unit(400, "feet"),
  10098. weight: math.unit(44444444, "lb"),
  10099. name: "Front",
  10100. image: {
  10101. source: "./media/characters/major-colonel/front.svg"
  10102. }
  10103. },
  10104. back: {
  10105. height: math.unit(400, "feet"),
  10106. weight: math.unit(44444444, "lb"),
  10107. name: "Back",
  10108. image: {
  10109. source: "./media/characters/major-colonel/back.svg"
  10110. }
  10111. },
  10112. },
  10113. [
  10114. {
  10115. name: "Macro",
  10116. height: math.unit(400, "feet"),
  10117. default: true
  10118. },
  10119. ]
  10120. ))
  10121. characterMakers.push(() => makeCharacter(
  10122. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10123. {
  10124. catFront: {
  10125. height: math.unit(6, "feet"),
  10126. weight: math.unit(120, "lb"),
  10127. name: "Front (Cat Side)",
  10128. image: {
  10129. source: "./media/characters/axel-lycan/cat-front.svg",
  10130. extra: 430 / 402,
  10131. bottom: 43 / 472.35
  10132. }
  10133. },
  10134. catBack: {
  10135. height: math.unit(6, "feet"),
  10136. weight: math.unit(120, "lb"),
  10137. name: "Back (Cat Side)",
  10138. image: {
  10139. source: "./media/characters/axel-lycan/cat-back.svg",
  10140. extra: 447 / 419,
  10141. bottom: 23.3 / 469
  10142. }
  10143. },
  10144. wolfFront: {
  10145. height: math.unit(6, "feet"),
  10146. weight: math.unit(120, "lb"),
  10147. name: "Front (Wolf Side)",
  10148. image: {
  10149. source: "./media/characters/axel-lycan/wolf-front.svg",
  10150. extra: 485 / 456,
  10151. bottom: 19 / 504
  10152. }
  10153. },
  10154. wolfBack: {
  10155. height: math.unit(6, "feet"),
  10156. weight: math.unit(120, "lb"),
  10157. name: "Back (Wolf Side)",
  10158. image: {
  10159. source: "./media/characters/axel-lycan/wolf-back.svg",
  10160. extra: 475 / 438,
  10161. bottom: 39.2 / 514
  10162. }
  10163. },
  10164. },
  10165. [
  10166. {
  10167. name: "Macro",
  10168. height: math.unit(1, "km"),
  10169. default: true
  10170. },
  10171. ]
  10172. ))
  10173. characterMakers.push(() => makeCharacter(
  10174. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10175. {
  10176. front: {
  10177. height: math.unit(5 + 9 / 12, "feet"),
  10178. weight: math.unit(175, "lb"),
  10179. name: "Front",
  10180. image: {
  10181. source: "./media/characters/vanrel-hyena/front.svg",
  10182. extra: 1086 / 1010,
  10183. bottom: 0.04
  10184. }
  10185. },
  10186. },
  10187. [
  10188. {
  10189. name: "Normal",
  10190. height: math.unit(5 + 9 / 12, "feet"),
  10191. default: true
  10192. },
  10193. ]
  10194. ))
  10195. characterMakers.push(() => makeCharacter(
  10196. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10197. {
  10198. front: {
  10199. height: math.unit(6, "feet"),
  10200. weight: math.unit(103, "lb"),
  10201. name: "Front",
  10202. image: {
  10203. source: "./media/characters/abbott-absol/front.svg",
  10204. extra: 2010 / 1842
  10205. }
  10206. },
  10207. },
  10208. [
  10209. {
  10210. name: "Megamicro",
  10211. height: math.unit(0.1, "mm")
  10212. },
  10213. {
  10214. name: "Micro",
  10215. height: math.unit(1, "inch")
  10216. },
  10217. {
  10218. name: "Normal",
  10219. height: math.unit(6, "feet"),
  10220. default: true
  10221. },
  10222. ]
  10223. ))
  10224. characterMakers.push(() => makeCharacter(
  10225. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10226. {
  10227. front: {
  10228. height: math.unit(6, "feet"),
  10229. weight: math.unit(264, "lb"),
  10230. name: "Front",
  10231. image: {
  10232. source: "./media/characters/hector/front.svg",
  10233. extra: 2280 / 2130,
  10234. bottom: 0.07
  10235. }
  10236. },
  10237. },
  10238. [
  10239. {
  10240. name: "Normal",
  10241. height: math.unit(12.25, "foot"),
  10242. default: true
  10243. },
  10244. {
  10245. name: "Macro",
  10246. height: math.unit(160, "feet")
  10247. },
  10248. ]
  10249. ))
  10250. characterMakers.push(() => makeCharacter(
  10251. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10252. {
  10253. front: {
  10254. height: math.unit(6, "feet"),
  10255. weight: math.unit(150, "lb"),
  10256. name: "Front",
  10257. image: {
  10258. source: "./media/characters/sal/front.svg",
  10259. extra: 1846 / 1699,
  10260. bottom: 0.04
  10261. }
  10262. },
  10263. },
  10264. [
  10265. {
  10266. name: "Megamacro",
  10267. height: math.unit(10, "miles"),
  10268. default: true
  10269. },
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10274. {
  10275. front: {
  10276. height: math.unit(3, "meters"),
  10277. weight: math.unit(450, "kg"),
  10278. name: "front",
  10279. image: {
  10280. source: "./media/characters/ranger/front.svg",
  10281. extra: 2401 / 2243,
  10282. bottom: 0.05
  10283. }
  10284. },
  10285. },
  10286. [
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(3, "meters"),
  10290. default: true
  10291. },
  10292. ]
  10293. ))
  10294. characterMakers.push(() => makeCharacter(
  10295. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10296. {
  10297. front: {
  10298. height: math.unit(14, "feet"),
  10299. weight: math.unit(800, "kg"),
  10300. name: "Front",
  10301. image: {
  10302. source: "./media/characters/theresa/front.svg",
  10303. extra: 3575 / 3346,
  10304. bottom: 0.03
  10305. }
  10306. },
  10307. },
  10308. [
  10309. {
  10310. name: "Normal",
  10311. height: math.unit(14, "feet"),
  10312. default: true
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10318. {
  10319. front: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(3, "kg"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/ine/front.svg",
  10325. extra: 678 / 539,
  10326. bottom: 0.023
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(2.265, "feet"),
  10334. default: true
  10335. },
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10340. {
  10341. front: {
  10342. height: math.unit(5, "feet"),
  10343. weight: math.unit(30, "kg"),
  10344. name: "Front",
  10345. image: {
  10346. source: "./media/characters/vial/front.svg",
  10347. extra: 1365 / 1277,
  10348. bottom: 0.04
  10349. }
  10350. },
  10351. },
  10352. [
  10353. {
  10354. name: "Normal",
  10355. height: math.unit(5, "feet"),
  10356. default: true
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10362. {
  10363. side: {
  10364. height: math.unit(3.4, "meters"),
  10365. weight: math.unit(1000, "lb"),
  10366. name: "Side",
  10367. image: {
  10368. source: "./media/characters/rovoska/side.svg",
  10369. extra: 4403 / 1515
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Normal",
  10376. height: math.unit(3.4, "meters"),
  10377. default: true
  10378. },
  10379. ]
  10380. ))
  10381. characterMakers.push(() => makeCharacter(
  10382. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10383. {
  10384. front: {
  10385. height: math.unit(8, "feet"),
  10386. weight: math.unit(315, "lb"),
  10387. name: "Front",
  10388. image: {
  10389. source: "./media/characters/gunner-rotthbauer/front.svg"
  10390. }
  10391. },
  10392. back: {
  10393. height: math.unit(8, "feet"),
  10394. weight: math.unit(315, "lb"),
  10395. name: "Back",
  10396. image: {
  10397. source: "./media/characters/gunner-rotthbauer/back.svg"
  10398. }
  10399. },
  10400. },
  10401. [
  10402. {
  10403. name: "Micro",
  10404. height: math.unit(3.5, "inches")
  10405. },
  10406. {
  10407. name: "Normal",
  10408. height: math.unit(8, "feet"),
  10409. default: true
  10410. },
  10411. {
  10412. name: "Macro",
  10413. height: math.unit(250, "feet")
  10414. },
  10415. {
  10416. name: "Megamacro",
  10417. height: math.unit(1, "AU")
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10423. {
  10424. front: {
  10425. height: math.unit(5 + 5 / 12, "feet"),
  10426. weight: math.unit(140, "lb"),
  10427. name: "Front",
  10428. image: {
  10429. source: "./media/characters/allatia/front.svg",
  10430. extra: 1227 / 1180,
  10431. bottom: 0.027
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Normal",
  10438. height: math.unit(5 + 5 / 12, "feet")
  10439. },
  10440. {
  10441. name: "Macro",
  10442. height: math.unit(250, "feet"),
  10443. default: true
  10444. },
  10445. {
  10446. name: "Megamacro",
  10447. height: math.unit(8, "miles")
  10448. }
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(6, "feet"),
  10456. weight: math.unit(120, "lb"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/tene/front.svg",
  10460. extra: 814/750,
  10461. bottom: 36/850
  10462. }
  10463. },
  10464. stomping: {
  10465. height: math.unit(2.025, "meters"),
  10466. weight: math.unit(120, "lb"),
  10467. name: "Stomping",
  10468. image: {
  10469. source: "./media/characters/tene/stomping.svg",
  10470. extra: 885/821,
  10471. bottom: 15/900
  10472. }
  10473. },
  10474. sitting: {
  10475. height: math.unit(1, "meter"),
  10476. weight: math.unit(120, "lb"),
  10477. name: "Sitting",
  10478. image: {
  10479. source: "./media/characters/tene/sitting.svg",
  10480. extra: 396/366,
  10481. bottom: 79/475
  10482. }
  10483. },
  10484. smiling: {
  10485. height: math.unit(1.2, "feet"),
  10486. name: "Smiling",
  10487. image: {
  10488. source: "./media/characters/tene/smiling.svg",
  10489. extra: 1364/1071,
  10490. bottom: 0/1364
  10491. }
  10492. },
  10493. smug: {
  10494. height: math.unit(1.3, "feet"),
  10495. name: "Smug",
  10496. image: {
  10497. source: "./media/characters/tene/smug.svg",
  10498. extra: 1323/1082,
  10499. bottom: 0/1323
  10500. }
  10501. },
  10502. feral: {
  10503. height: math.unit(3.9, "feet"),
  10504. weight: math.unit(250, "lb"),
  10505. name: "Feral",
  10506. image: {
  10507. source: "./media/characters/tene/feral.svg",
  10508. extra: 717 / 458,
  10509. bottom: 0.179
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Normal",
  10516. height: math.unit(6, "feet")
  10517. },
  10518. {
  10519. name: "Macro",
  10520. height: math.unit(300, "feet"),
  10521. default: true
  10522. },
  10523. {
  10524. name: "Megamacro",
  10525. height: math.unit(5, "miles")
  10526. },
  10527. ]
  10528. ))
  10529. characterMakers.push(() => makeCharacter(
  10530. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10531. {
  10532. side: {
  10533. height: math.unit(6, "feet"),
  10534. name: "Side",
  10535. image: {
  10536. source: "./media/characters/evander/side.svg",
  10537. extra: 877 / 477
  10538. }
  10539. },
  10540. },
  10541. [
  10542. {
  10543. name: "Normal",
  10544. height: math.unit(0.83, "meters"),
  10545. default: true
  10546. },
  10547. ]
  10548. ))
  10549. characterMakers.push(() => makeCharacter(
  10550. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10551. {
  10552. front: {
  10553. height: math.unit(12, "feet"),
  10554. weight: math.unit(1000, "lb"),
  10555. name: "Front",
  10556. image: {
  10557. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10558. extra: 1762 / 1611
  10559. }
  10560. },
  10561. back: {
  10562. height: math.unit(12, "feet"),
  10563. weight: math.unit(1000, "lb"),
  10564. name: "Back",
  10565. image: {
  10566. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10567. extra: 1762 / 1611
  10568. }
  10569. },
  10570. },
  10571. [
  10572. {
  10573. name: "Normal",
  10574. height: math.unit(12, "feet"),
  10575. default: true
  10576. },
  10577. {
  10578. name: "Kaiju",
  10579. height: math.unit(150, "feet")
  10580. },
  10581. ]
  10582. ))
  10583. characterMakers.push(() => makeCharacter(
  10584. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10585. {
  10586. front: {
  10587. height: math.unit(6, "feet"),
  10588. weight: math.unit(150, "lb"),
  10589. name: "Front",
  10590. image: {
  10591. source: "./media/characters/zero-alurus/front.svg"
  10592. }
  10593. },
  10594. back: {
  10595. height: math.unit(6, "feet"),
  10596. weight: math.unit(150, "lb"),
  10597. name: "Back",
  10598. image: {
  10599. source: "./media/characters/zero-alurus/back.svg"
  10600. }
  10601. },
  10602. },
  10603. [
  10604. {
  10605. name: "Normal",
  10606. height: math.unit(5 + 10 / 12, "feet")
  10607. },
  10608. {
  10609. name: "Macro",
  10610. height: math.unit(60, "feet"),
  10611. default: true
  10612. },
  10613. {
  10614. name: "Macro+",
  10615. height: math.unit(450, "feet")
  10616. },
  10617. ]
  10618. ))
  10619. characterMakers.push(() => makeCharacter(
  10620. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10621. {
  10622. front: {
  10623. height: math.unit(6, "feet"),
  10624. weight: math.unit(200, "lb"),
  10625. name: "Front",
  10626. image: {
  10627. source: "./media/characters/mega-shi/front.svg",
  10628. extra: 1279 / 1250,
  10629. bottom: 0.02
  10630. }
  10631. },
  10632. back: {
  10633. height: math.unit(6, "feet"),
  10634. weight: math.unit(200, "lb"),
  10635. name: "Back",
  10636. image: {
  10637. source: "./media/characters/mega-shi/back.svg",
  10638. extra: 1279 / 1250,
  10639. bottom: 0.02
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Micro",
  10646. height: math.unit(16 + 6 / 12, "feet")
  10647. },
  10648. {
  10649. name: "Third Dimension",
  10650. height: math.unit(40, "meters")
  10651. },
  10652. {
  10653. name: "Normal",
  10654. height: math.unit(660, "feet"),
  10655. default: true
  10656. },
  10657. {
  10658. name: "Megamacro",
  10659. height: math.unit(10, "miles")
  10660. },
  10661. {
  10662. name: "Planetary Launch",
  10663. height: math.unit(500, "miles")
  10664. },
  10665. {
  10666. name: "Interstellar",
  10667. height: math.unit(1e9, "miles")
  10668. },
  10669. {
  10670. name: "Leaving the Universe",
  10671. height: math.unit(1, "gigaparsec")
  10672. },
  10673. {
  10674. name: "Travelling Universes",
  10675. height: math.unit(30e15, "parsecs")
  10676. },
  10677. ]
  10678. ))
  10679. characterMakers.push(() => makeCharacter(
  10680. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10681. {
  10682. front: {
  10683. height: math.unit(5 + 4/12, "feet"),
  10684. weight: math.unit(120, "lb"),
  10685. name: "Front",
  10686. image: {
  10687. source: "./media/characters/odyssey/front.svg",
  10688. extra: 1747/1571,
  10689. bottom: 47/1794
  10690. }
  10691. },
  10692. side: {
  10693. height: math.unit(5.1, "feet"),
  10694. weight: math.unit(120, "lb"),
  10695. name: "Side",
  10696. image: {
  10697. source: "./media/characters/odyssey/side.svg",
  10698. extra: 1847/1619,
  10699. bottom: 47/1894
  10700. }
  10701. },
  10702. lounging: {
  10703. height: math.unit(1.464, "feet"),
  10704. weight: math.unit(120, "lb"),
  10705. name: "Lounging",
  10706. image: {
  10707. source: "./media/characters/odyssey/lounging.svg",
  10708. extra: 1235/837,
  10709. bottom: 551/1786
  10710. }
  10711. },
  10712. },
  10713. [
  10714. {
  10715. name: "Normal",
  10716. height: math.unit(5 + 4 / 12, "feet")
  10717. },
  10718. {
  10719. name: "Macro",
  10720. height: math.unit(1, "km")
  10721. },
  10722. {
  10723. name: "Megamacro",
  10724. height: math.unit(3000, "km")
  10725. },
  10726. {
  10727. name: "Gigamacro",
  10728. height: math.unit(1, "AU"),
  10729. default: true
  10730. },
  10731. {
  10732. name: "Omniversal",
  10733. height: math.unit(100e14, "lightyears")
  10734. },
  10735. ]
  10736. ))
  10737. characterMakers.push(() => makeCharacter(
  10738. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10739. {
  10740. front: {
  10741. height: math.unit(6, "feet"),
  10742. weight: math.unit(300, "lb"),
  10743. name: "Front",
  10744. image: {
  10745. source: "./media/characters/mekuto/front.svg",
  10746. extra: 921 / 832,
  10747. bottom: 0.03
  10748. }
  10749. },
  10750. hand: {
  10751. height: math.unit(6 / 10.24, "feet"),
  10752. name: "Hand",
  10753. image: {
  10754. source: "./media/characters/mekuto/hand.svg"
  10755. }
  10756. },
  10757. foot: {
  10758. height: math.unit(6 / 5.05, "feet"),
  10759. name: "Foot",
  10760. image: {
  10761. source: "./media/characters/mekuto/foot.svg"
  10762. }
  10763. },
  10764. },
  10765. [
  10766. {
  10767. name: "Minimicro",
  10768. height: math.unit(0.2, "inches")
  10769. },
  10770. {
  10771. name: "Micro",
  10772. height: math.unit(1.5, "inches")
  10773. },
  10774. {
  10775. name: "Normal",
  10776. height: math.unit(5 + 11 / 12, "feet"),
  10777. default: true
  10778. },
  10779. {
  10780. name: "Minimacro",
  10781. height: math.unit(17 + 9 / 12, "feet")
  10782. },
  10783. {
  10784. name: "Macro",
  10785. height: math.unit(177.5, "feet")
  10786. },
  10787. {
  10788. name: "Megamacro",
  10789. height: math.unit(152, "miles")
  10790. },
  10791. ]
  10792. ))
  10793. characterMakers.push(() => makeCharacter(
  10794. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10795. {
  10796. front: {
  10797. height: math.unit(6.5, "inches"),
  10798. weight: math.unit(13, "oz"),
  10799. name: "Front",
  10800. image: {
  10801. source: "./media/characters/dafydd-tomos/front.svg",
  10802. extra: 2990 / 2603,
  10803. bottom: 0.03
  10804. }
  10805. },
  10806. },
  10807. [
  10808. {
  10809. name: "Micro",
  10810. height: math.unit(6.5, "inches"),
  10811. default: true
  10812. },
  10813. ]
  10814. ))
  10815. characterMakers.push(() => makeCharacter(
  10816. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10817. {
  10818. front: {
  10819. height: math.unit(6, "feet"),
  10820. weight: math.unit(150, "lb"),
  10821. name: "Front",
  10822. image: {
  10823. source: "./media/characters/splinter/front.svg",
  10824. extra: 2990 / 2882,
  10825. bottom: 0.04
  10826. }
  10827. },
  10828. back: {
  10829. height: math.unit(6, "feet"),
  10830. weight: math.unit(150, "lb"),
  10831. name: "Back",
  10832. image: {
  10833. source: "./media/characters/splinter/back.svg",
  10834. extra: 2990 / 2882,
  10835. bottom: 0.04
  10836. }
  10837. },
  10838. },
  10839. [
  10840. {
  10841. name: "Normal",
  10842. height: math.unit(6, "feet")
  10843. },
  10844. {
  10845. name: "Macro",
  10846. height: math.unit(230, "meters"),
  10847. default: true
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(4 + 10 / 12, "feet"),
  10856. weight: math.unit(480, "lb"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/snow-gabumon/front.svg",
  10860. extra: 1140 / 963,
  10861. bottom: 0.058
  10862. }
  10863. },
  10864. back: {
  10865. height: math.unit(4 + 10 / 12, "feet"),
  10866. weight: math.unit(480, "lb"),
  10867. name: "Back",
  10868. image: {
  10869. source: "./media/characters/snow-gabumon/back.svg",
  10870. extra: 1115 / 962,
  10871. bottom: 0.041
  10872. }
  10873. },
  10874. frontUndresed: {
  10875. height: math.unit(4 + 10 / 12, "feet"),
  10876. weight: math.unit(480, "lb"),
  10877. name: "Front (Undressed)",
  10878. image: {
  10879. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10880. extra: 1061 / 960,
  10881. bottom: 0.045
  10882. }
  10883. },
  10884. },
  10885. [
  10886. {
  10887. name: "Micro",
  10888. height: math.unit(1, "inch")
  10889. },
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(4 + 10 / 12, "feet"),
  10893. default: true
  10894. },
  10895. {
  10896. name: "Macro",
  10897. height: math.unit(200, "feet")
  10898. },
  10899. {
  10900. name: "Megamacro",
  10901. height: math.unit(120, "miles")
  10902. },
  10903. {
  10904. name: "Gigamacro",
  10905. height: math.unit(9800, "miles")
  10906. },
  10907. ]
  10908. ))
  10909. characterMakers.push(() => makeCharacter(
  10910. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10911. {
  10912. front: {
  10913. height: math.unit(1.7, "meters"),
  10914. weight: math.unit(140, "lb"),
  10915. name: "Front",
  10916. image: {
  10917. source: "./media/characters/moody/front.svg",
  10918. extra: 3226 / 3007,
  10919. bottom: 0.087
  10920. }
  10921. },
  10922. },
  10923. [
  10924. {
  10925. name: "Micro",
  10926. height: math.unit(1, "mm")
  10927. },
  10928. {
  10929. name: "Normal",
  10930. height: math.unit(1.7, "meters"),
  10931. default: true
  10932. },
  10933. {
  10934. name: "Macro",
  10935. height: math.unit(80, "meters")
  10936. },
  10937. {
  10938. name: "Macro+",
  10939. height: math.unit(500, "meters")
  10940. },
  10941. ]
  10942. ))
  10943. characterMakers.push(() => makeCharacter(
  10944. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10945. {
  10946. front: {
  10947. height: math.unit(6, "feet"),
  10948. weight: math.unit(150, "lb"),
  10949. name: "Front",
  10950. image: {
  10951. source: "./media/characters/zyas/front.svg",
  10952. extra: 1180 / 1120,
  10953. bottom: 0.045
  10954. }
  10955. },
  10956. },
  10957. [
  10958. {
  10959. name: "Normal",
  10960. height: math.unit(10, "feet"),
  10961. default: true
  10962. },
  10963. {
  10964. name: "Macro",
  10965. height: math.unit(500, "feet")
  10966. },
  10967. {
  10968. name: "Megamacro",
  10969. height: math.unit(5, "miles")
  10970. },
  10971. {
  10972. name: "Teramacro",
  10973. height: math.unit(150000, "miles")
  10974. },
  10975. ]
  10976. ))
  10977. characterMakers.push(() => makeCharacter(
  10978. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10979. {
  10980. front: {
  10981. height: math.unit(6, "feet"),
  10982. weight: math.unit(150, "lb"),
  10983. name: "Front",
  10984. image: {
  10985. source: "./media/characters/cuon/front.svg",
  10986. extra: 1390 / 1320,
  10987. bottom: 0.008
  10988. }
  10989. },
  10990. },
  10991. [
  10992. {
  10993. name: "Micro",
  10994. height: math.unit(3, "inches")
  10995. },
  10996. {
  10997. name: "Normal",
  10998. height: math.unit(18 + 9 / 12, "feet"),
  10999. default: true
  11000. },
  11001. {
  11002. name: "Macro",
  11003. height: math.unit(360, "feet")
  11004. },
  11005. {
  11006. name: "Megamacro",
  11007. height: math.unit(360, "miles")
  11008. },
  11009. ]
  11010. ))
  11011. characterMakers.push(() => makeCharacter(
  11012. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11013. {
  11014. front: {
  11015. height: math.unit(2.4, "meters"),
  11016. weight: math.unit(70, "kg"),
  11017. name: "Front",
  11018. image: {
  11019. source: "./media/characters/nyanuxk/front.svg",
  11020. extra: 1172 / 1084,
  11021. bottom: 0.065
  11022. }
  11023. },
  11024. side: {
  11025. height: math.unit(2.4, "meters"),
  11026. weight: math.unit(70, "kg"),
  11027. name: "Side",
  11028. image: {
  11029. source: "./media/characters/nyanuxk/side.svg",
  11030. extra: 1190 / 1132,
  11031. bottom: 0.007
  11032. }
  11033. },
  11034. back: {
  11035. height: math.unit(2.4, "meters"),
  11036. weight: math.unit(70, "kg"),
  11037. name: "Back",
  11038. image: {
  11039. source: "./media/characters/nyanuxk/back.svg",
  11040. extra: 1200 / 1141,
  11041. bottom: 0.015
  11042. }
  11043. },
  11044. foot: {
  11045. height: math.unit(0.52, "meters"),
  11046. name: "Foot",
  11047. image: {
  11048. source: "./media/characters/nyanuxk/foot.svg"
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Micro",
  11055. height: math.unit(2, "cm")
  11056. },
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(2.4, "meters"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Smaller Macro",
  11064. height: math.unit(120, "meters")
  11065. },
  11066. {
  11067. name: "Bigger Macro",
  11068. height: math.unit(1.2, "km")
  11069. },
  11070. {
  11071. name: "Megamacro",
  11072. height: math.unit(15, "kilometers")
  11073. },
  11074. {
  11075. name: "Gigamacro",
  11076. height: math.unit(2000, "km")
  11077. },
  11078. {
  11079. name: "Teramacro",
  11080. height: math.unit(500000, "km")
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11086. {
  11087. side: {
  11088. height: math.unit(6, "feet"),
  11089. name: "Side",
  11090. image: {
  11091. source: "./media/characters/ailbhe/side.svg",
  11092. extra: 757 / 464,
  11093. bottom: 0.041
  11094. }
  11095. },
  11096. },
  11097. [
  11098. {
  11099. name: "Normal",
  11100. height: math.unit(1.07, "meters"),
  11101. default: true
  11102. },
  11103. ]
  11104. ))
  11105. characterMakers.push(() => makeCharacter(
  11106. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11107. {
  11108. front: {
  11109. height: math.unit(6, "feet"),
  11110. weight: math.unit(120, "kg"),
  11111. name: "Front",
  11112. image: {
  11113. source: "./media/characters/zevulfius/front.svg",
  11114. extra: 965 / 903
  11115. }
  11116. },
  11117. side: {
  11118. height: math.unit(6, "feet"),
  11119. weight: math.unit(120, "kg"),
  11120. name: "Side",
  11121. image: {
  11122. source: "./media/characters/zevulfius/side.svg",
  11123. extra: 939 / 900
  11124. }
  11125. },
  11126. back: {
  11127. height: math.unit(6, "feet"),
  11128. weight: math.unit(120, "kg"),
  11129. name: "Back",
  11130. image: {
  11131. source: "./media/characters/zevulfius/back.svg",
  11132. extra: 918 / 854,
  11133. bottom: 0.005
  11134. }
  11135. },
  11136. foot: {
  11137. height: math.unit(6 / 3.72, "feet"),
  11138. name: "Foot",
  11139. image: {
  11140. source: "./media/characters/zevulfius/foot.svg"
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Macro",
  11147. height: math.unit(750, "meters")
  11148. },
  11149. {
  11150. name: "Megamacro",
  11151. height: math.unit(20, "km"),
  11152. default: true
  11153. },
  11154. {
  11155. name: "Gigamacro",
  11156. height: math.unit(2000, "km")
  11157. },
  11158. {
  11159. name: "Teramacro",
  11160. height: math.unit(250000, "km")
  11161. },
  11162. ]
  11163. ))
  11164. characterMakers.push(() => makeCharacter(
  11165. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11166. {
  11167. front: {
  11168. height: math.unit(100, "feet"),
  11169. weight: math.unit(350, "kg"),
  11170. name: "Front",
  11171. image: {
  11172. source: "./media/characters/rikes/front.svg",
  11173. extra: 1565 / 1483,
  11174. bottom: 0.017
  11175. }
  11176. },
  11177. },
  11178. [
  11179. {
  11180. name: "Macro",
  11181. height: math.unit(100, "feet"),
  11182. default: true
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11188. {
  11189. front: {
  11190. height: math.unit(8, "feet"),
  11191. weight: math.unit(356, "lb"),
  11192. name: "Front",
  11193. image: {
  11194. source: "./media/characters/adam-silver-mane/front.svg",
  11195. extra: 1036/937,
  11196. bottom: 63/1099
  11197. }
  11198. },
  11199. side: {
  11200. height: math.unit(8, "feet"),
  11201. weight: math.unit(356, "lb"),
  11202. name: "Side",
  11203. image: {
  11204. source: "./media/characters/adam-silver-mane/side.svg",
  11205. extra: 997/901,
  11206. bottom: 59/1056
  11207. }
  11208. },
  11209. frontNsfw: {
  11210. height: math.unit(8, "feet"),
  11211. weight: math.unit(356, "lb"),
  11212. name: "Front (NSFW)",
  11213. image: {
  11214. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11215. extra: 1036/937,
  11216. bottom: 63/1099
  11217. }
  11218. },
  11219. sideNsfw: {
  11220. height: math.unit(8, "feet"),
  11221. weight: math.unit(356, "lb"),
  11222. name: "Side (NSFW)",
  11223. image: {
  11224. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11225. extra: 997/901,
  11226. bottom: 59/1056
  11227. }
  11228. },
  11229. dick: {
  11230. height: math.unit(2.1, "feet"),
  11231. name: "Dick",
  11232. image: {
  11233. source: "./media/characters/adam-silver-mane/dick.svg"
  11234. }
  11235. },
  11236. taur: {
  11237. height: math.unit(16, "feet"),
  11238. weight: math.unit(1500, "kg"),
  11239. name: "Taur",
  11240. image: {
  11241. source: "./media/characters/adam-silver-mane/taur.svg",
  11242. extra: 1713 / 1571,
  11243. bottom: 0.01
  11244. }
  11245. },
  11246. },
  11247. [
  11248. {
  11249. name: "Normal",
  11250. height: math.unit(8, "feet")
  11251. },
  11252. {
  11253. name: "Minimacro",
  11254. height: math.unit(80, "feet")
  11255. },
  11256. {
  11257. name: "MDA",
  11258. height: math.unit(80, "meters")
  11259. },
  11260. {
  11261. name: "Macro",
  11262. height: math.unit(800, "feet"),
  11263. default: true
  11264. },
  11265. {
  11266. name: "Megamacro",
  11267. height: math.unit(8000, "feet")
  11268. },
  11269. {
  11270. name: "Gigamacro",
  11271. height: math.unit(800, "miles")
  11272. },
  11273. {
  11274. name: "Teramacro",
  11275. height: math.unit(80000, "miles")
  11276. },
  11277. {
  11278. name: "Celestial",
  11279. height: math.unit(8e6, "miles")
  11280. },
  11281. {
  11282. name: "Star Dragon",
  11283. height: math.unit(800000, "parsecs")
  11284. },
  11285. {
  11286. name: "Godly",
  11287. height: math.unit(800, "teraparsecs")
  11288. },
  11289. ]
  11290. ))
  11291. characterMakers.push(() => makeCharacter(
  11292. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11293. {
  11294. front: {
  11295. height: math.unit(6, "feet"),
  11296. weight: math.unit(150, "lb"),
  11297. name: "Front",
  11298. image: {
  11299. source: "./media/characters/ky'owin/front.svg",
  11300. extra: 3888 / 3068,
  11301. bottom: 0.015
  11302. }
  11303. },
  11304. },
  11305. [
  11306. {
  11307. name: "Normal",
  11308. height: math.unit(6 + 8 / 12, "feet")
  11309. },
  11310. {
  11311. name: "Large",
  11312. height: math.unit(68, "feet")
  11313. },
  11314. {
  11315. name: "Macro",
  11316. height: math.unit(132, "feet")
  11317. },
  11318. {
  11319. name: "Macro+",
  11320. height: math.unit(340, "feet")
  11321. },
  11322. {
  11323. name: "Macro++",
  11324. height: math.unit(680, "feet"),
  11325. default: true
  11326. },
  11327. {
  11328. name: "Megamacro",
  11329. height: math.unit(1, "mile")
  11330. },
  11331. {
  11332. name: "Megamacro+",
  11333. height: math.unit(10, "miles")
  11334. },
  11335. ]
  11336. ))
  11337. characterMakers.push(() => makeCharacter(
  11338. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11339. {
  11340. front: {
  11341. height: math.unit(4, "feet"),
  11342. weight: math.unit(50, "lb"),
  11343. name: "Front",
  11344. image: {
  11345. source: "./media/characters/mal/front.svg",
  11346. extra: 785 / 724,
  11347. bottom: 0.07
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Micro",
  11354. height: math.unit(4, "inches")
  11355. },
  11356. {
  11357. name: "Normal",
  11358. height: math.unit(4, "feet"),
  11359. default: true
  11360. },
  11361. {
  11362. name: "Macro",
  11363. height: math.unit(200, "feet")
  11364. },
  11365. ]
  11366. ))
  11367. characterMakers.push(() => makeCharacter(
  11368. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11369. {
  11370. front: {
  11371. height: math.unit(6, "feet"),
  11372. weight: math.unit(150, "lb"),
  11373. name: "Front",
  11374. image: {
  11375. source: "./media/characters/jordan-deware/front.svg",
  11376. extra: 1191 / 1012
  11377. }
  11378. },
  11379. },
  11380. [
  11381. {
  11382. name: "Nano",
  11383. height: math.unit(0.01, "mm")
  11384. },
  11385. {
  11386. name: "Minimicro",
  11387. height: math.unit(1, "mm")
  11388. },
  11389. {
  11390. name: "Micro",
  11391. height: math.unit(0.5, "inches")
  11392. },
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(4, "feet"),
  11396. default: true
  11397. },
  11398. {
  11399. name: "Minimacro",
  11400. height: math.unit(40, "meters")
  11401. },
  11402. {
  11403. name: "Small Macro",
  11404. height: math.unit(400, "meters")
  11405. },
  11406. {
  11407. name: "Macro",
  11408. height: math.unit(4, "miles")
  11409. },
  11410. {
  11411. name: "Megamacro",
  11412. height: math.unit(40, "miles")
  11413. },
  11414. {
  11415. name: "Megamacro+",
  11416. height: math.unit(400, "miles")
  11417. },
  11418. {
  11419. name: "Gigamacro",
  11420. height: math.unit(400000, "miles")
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11426. {
  11427. side: {
  11428. height: math.unit(6, "feet"),
  11429. weight: math.unit(150, "lb"),
  11430. name: "Side",
  11431. image: {
  11432. source: "./media/characters/kimiko/side.svg",
  11433. extra: 600 / 358
  11434. }
  11435. },
  11436. },
  11437. [
  11438. {
  11439. name: "Normal",
  11440. height: math.unit(15, "feet"),
  11441. default: true
  11442. },
  11443. {
  11444. name: "Macro",
  11445. height: math.unit(220, "feet")
  11446. },
  11447. {
  11448. name: "Macro+",
  11449. height: math.unit(1450, "feet")
  11450. },
  11451. {
  11452. name: "Megamacro",
  11453. height: math.unit(11500, "feet")
  11454. },
  11455. {
  11456. name: "Gigamacro",
  11457. height: math.unit(9500, "miles")
  11458. },
  11459. {
  11460. name: "Teramacro",
  11461. height: math.unit(2208005005, "miles")
  11462. },
  11463. {
  11464. name: "Examacro",
  11465. height: math.unit(2750, "parsecs")
  11466. },
  11467. {
  11468. name: "Zettamacro",
  11469. height: math.unit(101500, "parsecs")
  11470. },
  11471. ]
  11472. ))
  11473. characterMakers.push(() => makeCharacter(
  11474. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11475. {
  11476. front: {
  11477. height: math.unit(6, "feet"),
  11478. weight: math.unit(70, "kg"),
  11479. name: "Front",
  11480. image: {
  11481. source: "./media/characters/andrew-sleepy/front.svg"
  11482. }
  11483. },
  11484. side: {
  11485. height: math.unit(6, "feet"),
  11486. weight: math.unit(70, "kg"),
  11487. name: "Side",
  11488. image: {
  11489. source: "./media/characters/andrew-sleepy/side.svg"
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Micro",
  11496. height: math.unit(1, "mm"),
  11497. default: true
  11498. },
  11499. ]
  11500. ))
  11501. characterMakers.push(() => makeCharacter(
  11502. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11503. {
  11504. front: {
  11505. height: math.unit(6, "feet"),
  11506. weight: math.unit(150, "lb"),
  11507. name: "Front",
  11508. image: {
  11509. source: "./media/characters/judio/front.svg",
  11510. extra: 1258 / 1110
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(5 + 6 / 12, "feet")
  11518. },
  11519. {
  11520. name: "Macro",
  11521. height: math.unit(1000, "feet"),
  11522. default: true
  11523. },
  11524. {
  11525. name: "Megamacro",
  11526. height: math.unit(10, "miles")
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11532. {
  11533. frontDressed: {
  11534. height: math.unit(6, "feet"),
  11535. weight: math.unit(68, "kg"),
  11536. name: "Front (Dressed)",
  11537. image: {
  11538. source: "./media/characters/nomaxice/front-dressed.svg",
  11539. extra: 1137/824,
  11540. bottom: 74/1211
  11541. }
  11542. },
  11543. frontShorts: {
  11544. height: math.unit(6, "feet"),
  11545. weight: math.unit(68, "kg"),
  11546. name: "Front (Shorts)",
  11547. image: {
  11548. source: "./media/characters/nomaxice/front-shorts.svg",
  11549. extra: 1137/824,
  11550. bottom: 74/1211
  11551. }
  11552. },
  11553. back: {
  11554. height: math.unit(6, "feet"),
  11555. weight: math.unit(68, "kg"),
  11556. name: "Back",
  11557. image: {
  11558. source: "./media/characters/nomaxice/back.svg",
  11559. extra: 822/786,
  11560. bottom: 39/861
  11561. }
  11562. },
  11563. hand: {
  11564. height: math.unit(0.565, "feet"),
  11565. name: "Hand",
  11566. image: {
  11567. source: "./media/characters/nomaxice/hand.svg"
  11568. }
  11569. },
  11570. foot: {
  11571. height: math.unit(1, "feet"),
  11572. name: "Foot",
  11573. image: {
  11574. source: "./media/characters/nomaxice/foot.svg"
  11575. }
  11576. },
  11577. },
  11578. [
  11579. {
  11580. name: "Micro",
  11581. height: math.unit(8, "cm")
  11582. },
  11583. {
  11584. name: "Norm",
  11585. height: math.unit(1.82, "m")
  11586. },
  11587. {
  11588. name: "Norm+",
  11589. height: math.unit(8.8, "feet"),
  11590. default: true
  11591. },
  11592. {
  11593. name: "Big",
  11594. height: math.unit(8, "meters")
  11595. },
  11596. {
  11597. name: "Macro",
  11598. height: math.unit(18, "meters")
  11599. },
  11600. {
  11601. name: "Macro+",
  11602. height: math.unit(88, "meters")
  11603. },
  11604. ]
  11605. ))
  11606. characterMakers.push(() => makeCharacter(
  11607. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11608. {
  11609. front: {
  11610. height: math.unit(12, "feet"),
  11611. weight: math.unit(1.5, "tons"),
  11612. name: "Front",
  11613. image: {
  11614. source: "./media/characters/dydros/front.svg",
  11615. extra: 863 / 800,
  11616. bottom: 0.015
  11617. }
  11618. },
  11619. back: {
  11620. height: math.unit(12, "feet"),
  11621. weight: math.unit(1.5, "tons"),
  11622. name: "Back",
  11623. image: {
  11624. source: "./media/characters/dydros/back.svg",
  11625. extra: 900 / 843,
  11626. bottom: 0.005
  11627. }
  11628. },
  11629. },
  11630. [
  11631. {
  11632. name: "Normal",
  11633. height: math.unit(12, "feet"),
  11634. default: true
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11640. {
  11641. front: {
  11642. height: math.unit(6, "feet"),
  11643. weight: math.unit(100, "kg"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/riggi/front.svg",
  11647. extra: 5787 / 5303
  11648. }
  11649. },
  11650. hyper: {
  11651. height: math.unit(6 * 5 / 3, "feet"),
  11652. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11653. name: "Hyper",
  11654. image: {
  11655. source: "./media/characters/riggi/hyper.svg",
  11656. extra: 3595 / 3485
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Small Macro",
  11663. height: math.unit(50, "feet")
  11664. },
  11665. {
  11666. name: "Default",
  11667. height: math.unit(200, "feet"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Loom",
  11672. height: math.unit(10000, "feet")
  11673. },
  11674. {
  11675. name: "Cruising Altitude",
  11676. height: math.unit(30000, "feet")
  11677. },
  11678. {
  11679. name: "Megamacro",
  11680. height: math.unit(100, "miles")
  11681. },
  11682. {
  11683. name: "Continent Sized",
  11684. height: math.unit(2800, "miles")
  11685. },
  11686. {
  11687. name: "Earth Sized",
  11688. height: math.unit(8000, "miles")
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(6, "feet"),
  11697. weight: math.unit(250, "lb"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/alexi/front.svg",
  11701. extra: 3483 / 3291,
  11702. bottom: 0.04
  11703. }
  11704. },
  11705. back: {
  11706. height: math.unit(6, "feet"),
  11707. weight: math.unit(250, "lb"),
  11708. name: "Back",
  11709. image: {
  11710. source: "./media/characters/alexi/back.svg",
  11711. extra: 3533 / 3356,
  11712. bottom: 0.021
  11713. }
  11714. },
  11715. frontTransforming: {
  11716. height: math.unit(8.58, "feet"),
  11717. weight: math.unit(1300, "lb"),
  11718. name: "Transforming",
  11719. image: {
  11720. source: "./media/characters/alexi/front-transforming.svg",
  11721. extra: 437 / 409,
  11722. bottom: 19 / 458.66
  11723. }
  11724. },
  11725. frontTransformed: {
  11726. height: math.unit(12.5, "feet"),
  11727. weight: math.unit(4000, "lb"),
  11728. name: "Transformed",
  11729. image: {
  11730. source: "./media/characters/alexi/front-transformed.svg",
  11731. extra: 639 / 614,
  11732. bottom: 30.55 / 671
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(14, "feet"),
  11740. default: true
  11741. },
  11742. {
  11743. name: "Minimacro",
  11744. height: math.unit(30, "meters")
  11745. },
  11746. {
  11747. name: "Macro",
  11748. height: math.unit(500, "meters")
  11749. },
  11750. {
  11751. name: "Megamacro",
  11752. height: math.unit(9000, "km")
  11753. },
  11754. {
  11755. name: "Teramacro",
  11756. height: math.unit(384000, "km")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11762. {
  11763. front: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Front",
  11767. image: {
  11768. source: "./media/characters/kayroo/front.svg",
  11769. extra: 1153 / 1038,
  11770. bottom: 0.06
  11771. }
  11772. },
  11773. foot: {
  11774. height: math.unit(6, "feet"),
  11775. weight: math.unit(150, "lb"),
  11776. name: "Foot",
  11777. image: {
  11778. source: "./media/characters/kayroo/foot.svg"
  11779. }
  11780. },
  11781. },
  11782. [
  11783. {
  11784. name: "Normal",
  11785. height: math.unit(8, "feet"),
  11786. default: true
  11787. },
  11788. {
  11789. name: "Minimacro",
  11790. height: math.unit(250, "feet")
  11791. },
  11792. {
  11793. name: "Macro",
  11794. height: math.unit(2800, "feet")
  11795. },
  11796. {
  11797. name: "Megamacro",
  11798. height: math.unit(5200, "feet")
  11799. },
  11800. {
  11801. name: "Gigamacro",
  11802. height: math.unit(27000, "feet")
  11803. },
  11804. {
  11805. name: "Omega",
  11806. height: math.unit(45000, "feet")
  11807. },
  11808. ]
  11809. ))
  11810. characterMakers.push(() => makeCharacter(
  11811. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11812. {
  11813. front: {
  11814. height: math.unit(18, "feet"),
  11815. weight: math.unit(5800, "lb"),
  11816. name: "Front",
  11817. image: {
  11818. source: "./media/characters/rhys/front.svg",
  11819. extra: 3386 / 3090,
  11820. bottom: 0.07
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(18, "feet"),
  11828. default: true
  11829. },
  11830. {
  11831. name: "Working Size",
  11832. height: math.unit(200, "feet")
  11833. },
  11834. {
  11835. name: "Demolition Size",
  11836. height: math.unit(2000, "feet")
  11837. },
  11838. {
  11839. name: "Maximum Licensed Size",
  11840. height: math.unit(5, "miles")
  11841. },
  11842. {
  11843. name: "Maximum Observed Size",
  11844. height: math.unit(10, "yottameters")
  11845. },
  11846. ]
  11847. ))
  11848. characterMakers.push(() => makeCharacter(
  11849. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11850. {
  11851. front: {
  11852. height: math.unit(6, "feet"),
  11853. weight: math.unit(250, "lb"),
  11854. name: "Front",
  11855. image: {
  11856. source: "./media/characters/toto/front.svg",
  11857. extra: 527 / 479,
  11858. bottom: 0.05
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Micro",
  11865. height: math.unit(3, "feet")
  11866. },
  11867. {
  11868. name: "Normal",
  11869. height: math.unit(10, "feet")
  11870. },
  11871. {
  11872. name: "Macro",
  11873. height: math.unit(150, "feet"),
  11874. default: true
  11875. },
  11876. {
  11877. name: "Megamacro",
  11878. height: math.unit(1200, "feet")
  11879. },
  11880. ]
  11881. ))
  11882. characterMakers.push(() => makeCharacter(
  11883. { name: "King", species: ["lion"], tags: ["anthro"] },
  11884. {
  11885. back: {
  11886. height: math.unit(6, "feet"),
  11887. weight: math.unit(150, "lb"),
  11888. name: "Back",
  11889. image: {
  11890. source: "./media/characters/king/back.svg"
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Micro",
  11897. height: math.unit(2, "inches")
  11898. },
  11899. {
  11900. name: "Normal",
  11901. height: math.unit(8, "feet")
  11902. },
  11903. {
  11904. name: "Macro",
  11905. height: math.unit(200, "feet"),
  11906. default: true
  11907. },
  11908. {
  11909. name: "Megamacro",
  11910. height: math.unit(50, "miles")
  11911. },
  11912. ]
  11913. ))
  11914. characterMakers.push(() => makeCharacter(
  11915. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11916. {
  11917. front: {
  11918. height: math.unit(11, "feet"),
  11919. weight: math.unit(1400, "lb"),
  11920. name: "Front",
  11921. image: {
  11922. source: "./media/characters/cordite/front.svg",
  11923. extra: 1919/1827,
  11924. bottom: 40/1959
  11925. }
  11926. },
  11927. side: {
  11928. height: math.unit(11, "feet"),
  11929. weight: math.unit(1400, "lb"),
  11930. name: "Side",
  11931. image: {
  11932. source: "./media/characters/cordite/side.svg",
  11933. extra: 1908/1793,
  11934. bottom: 38/1946
  11935. }
  11936. },
  11937. back: {
  11938. height: math.unit(11, "feet"),
  11939. weight: math.unit(1400, "lb"),
  11940. name: "Back",
  11941. image: {
  11942. source: "./media/characters/cordite/back.svg",
  11943. extra: 1938/1837,
  11944. bottom: 10/1948
  11945. }
  11946. },
  11947. feral: {
  11948. height: math.unit(2, "feet"),
  11949. weight: math.unit(90, "lb"),
  11950. name: "Feral",
  11951. image: {
  11952. source: "./media/characters/cordite/feral.svg",
  11953. extra: 1260 / 755,
  11954. bottom: 0.05
  11955. }
  11956. },
  11957. },
  11958. [
  11959. {
  11960. name: "Normal",
  11961. height: math.unit(11, "feet"),
  11962. default: true
  11963. },
  11964. ]
  11965. ))
  11966. characterMakers.push(() => makeCharacter(
  11967. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11968. {
  11969. front: {
  11970. height: math.unit(6, "feet"),
  11971. weight: math.unit(150, "lb"),
  11972. name: "Front",
  11973. image: {
  11974. source: "./media/characters/pianostrong/front.svg",
  11975. extra: 6577 / 6254,
  11976. bottom: 0.02
  11977. }
  11978. },
  11979. side: {
  11980. height: math.unit(6, "feet"),
  11981. weight: math.unit(150, "lb"),
  11982. name: "Side",
  11983. image: {
  11984. source: "./media/characters/pianostrong/side.svg",
  11985. extra: 6106 / 5730
  11986. }
  11987. },
  11988. back: {
  11989. height: math.unit(6, "feet"),
  11990. weight: math.unit(150, "lb"),
  11991. name: "Back",
  11992. image: {
  11993. source: "./media/characters/pianostrong/back.svg",
  11994. extra: 6085 / 5733,
  11995. bottom: 0.01
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Macro",
  12002. height: math.unit(100, "feet")
  12003. },
  12004. {
  12005. name: "Macro+",
  12006. height: math.unit(300, "feet"),
  12007. default: true
  12008. },
  12009. {
  12010. name: "Macro++",
  12011. height: math.unit(1000, "feet")
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12017. {
  12018. front: {
  12019. height: math.unit(6, "feet"),
  12020. weight: math.unit(150, "lb"),
  12021. name: "Front",
  12022. image: {
  12023. source: "./media/characters/kona/front.svg",
  12024. extra: 2960 / 2629,
  12025. bottom: 0.005
  12026. }
  12027. },
  12028. },
  12029. [
  12030. {
  12031. name: "Normal",
  12032. height: math.unit(11 + 8 / 12, "feet")
  12033. },
  12034. {
  12035. name: "Macro",
  12036. height: math.unit(850, "feet"),
  12037. default: true
  12038. },
  12039. {
  12040. name: "Macro+",
  12041. height: math.unit(1.5, "km"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Megamacro",
  12046. height: math.unit(80, "miles")
  12047. },
  12048. {
  12049. name: "Gigamacro",
  12050. height: math.unit(3500, "miles")
  12051. },
  12052. ]
  12053. ))
  12054. characterMakers.push(() => makeCharacter(
  12055. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12056. {
  12057. side: {
  12058. height: math.unit(1.9, "meters"),
  12059. weight: math.unit(326, "kg"),
  12060. name: "Side",
  12061. image: {
  12062. source: "./media/characters/levi/side.svg",
  12063. extra: 1704 / 1334,
  12064. bottom: 0.02
  12065. }
  12066. },
  12067. },
  12068. [
  12069. {
  12070. name: "Normal",
  12071. height: math.unit(1.9, "meters"),
  12072. default: true
  12073. },
  12074. {
  12075. name: "Macro",
  12076. height: math.unit(20, "meters")
  12077. },
  12078. {
  12079. name: "Macro+",
  12080. height: math.unit(200, "meters")
  12081. },
  12082. {
  12083. name: "Megamacro",
  12084. height: math.unit(2, "km")
  12085. },
  12086. {
  12087. name: "Megamacro+",
  12088. height: math.unit(20, "km")
  12089. },
  12090. {
  12091. name: "Gigamacro",
  12092. height: math.unit(2500, "km")
  12093. },
  12094. {
  12095. name: "Gigamacro+",
  12096. height: math.unit(120000, "km")
  12097. },
  12098. {
  12099. name: "Teramacro",
  12100. height: math.unit(7.77e6, "km")
  12101. },
  12102. ]
  12103. ))
  12104. characterMakers.push(() => makeCharacter(
  12105. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12106. {
  12107. front: {
  12108. height: math.unit(6 + 4/12, "feet"),
  12109. weight: math.unit(190, "lb"),
  12110. name: "Front",
  12111. image: {
  12112. source: "./media/characters/bmc/front.svg",
  12113. extra: 1626/1472,
  12114. bottom: 79/1705
  12115. }
  12116. },
  12117. back: {
  12118. height: math.unit(6 + 4/12, "feet"),
  12119. weight: math.unit(190, "lb"),
  12120. name: "Back",
  12121. image: {
  12122. source: "./media/characters/bmc/back.svg",
  12123. extra: 1640/1479,
  12124. bottom: 45/1685
  12125. }
  12126. },
  12127. frontArmor: {
  12128. height: math.unit(6 + 4/12, "feet"),
  12129. weight: math.unit(190, "lb"),
  12130. name: "Front-armor",
  12131. image: {
  12132. source: "./media/characters/bmc/front-armor.svg",
  12133. extra: 1538/1468,
  12134. bottom: 79/1617
  12135. }
  12136. },
  12137. },
  12138. [
  12139. {
  12140. name: "Human-sized",
  12141. height: math.unit(6 + 4 / 12, "feet")
  12142. },
  12143. {
  12144. name: "Interactive Size",
  12145. height: math.unit(25, "feet")
  12146. },
  12147. {
  12148. name: "Small",
  12149. height: math.unit(250, "feet")
  12150. },
  12151. {
  12152. name: "Normal",
  12153. height: math.unit(1250, "feet"),
  12154. default: true
  12155. },
  12156. {
  12157. name: "Good Day",
  12158. height: math.unit(88, "miles")
  12159. },
  12160. {
  12161. name: "Largest Measured Size",
  12162. height: math.unit(105.960, "galaxies")
  12163. },
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12168. {
  12169. front: {
  12170. height: math.unit(20, "feet"),
  12171. weight: math.unit(2016, "kg"),
  12172. name: "Front",
  12173. image: {
  12174. source: "./media/characters/sven-the-kaiju/front.svg",
  12175. extra: 1277/1250,
  12176. bottom: 35/1312
  12177. }
  12178. },
  12179. mouth: {
  12180. height: math.unit(1.85, "feet"),
  12181. name: "Mouth",
  12182. image: {
  12183. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12184. }
  12185. },
  12186. },
  12187. [
  12188. {
  12189. name: "Fairy",
  12190. height: math.unit(6, "inches")
  12191. },
  12192. {
  12193. name: "Normal",
  12194. height: math.unit(20, "feet"),
  12195. default: true
  12196. },
  12197. {
  12198. name: "Rampage",
  12199. height: math.unit(200, "feet")
  12200. },
  12201. {
  12202. name: "Archfey Forest Guardian",
  12203. height: math.unit(1, "mile")
  12204. },
  12205. ]
  12206. ))
  12207. characterMakers.push(() => makeCharacter(
  12208. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12209. {
  12210. front: {
  12211. height: math.unit(4, "meters"),
  12212. weight: math.unit(2, "tons"),
  12213. name: "Front",
  12214. image: {
  12215. source: "./media/characters/marik/front.svg",
  12216. extra: 1057 / 1003,
  12217. bottom: 0.08
  12218. }
  12219. },
  12220. },
  12221. [
  12222. {
  12223. name: "Normal",
  12224. height: math.unit(4, "meters"),
  12225. default: true
  12226. },
  12227. {
  12228. name: "Macro",
  12229. height: math.unit(20, "meters")
  12230. },
  12231. {
  12232. name: "Megamacro",
  12233. height: math.unit(50, "km")
  12234. },
  12235. {
  12236. name: "Gigamacro",
  12237. height: math.unit(100, "km")
  12238. },
  12239. {
  12240. name: "Alpha Macro",
  12241. height: math.unit(7.88e7, "yottameters")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(6, "feet"),
  12250. weight: math.unit(110, "lb"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/mel/front.svg",
  12254. extra: 736 / 617,
  12255. bottom: 0.017
  12256. }
  12257. },
  12258. },
  12259. [
  12260. {
  12261. name: "Pico",
  12262. height: math.unit(3, "pm")
  12263. },
  12264. {
  12265. name: "Nano",
  12266. height: math.unit(3, "nm")
  12267. },
  12268. {
  12269. name: "Micro",
  12270. height: math.unit(0.3, "mm"),
  12271. default: true
  12272. },
  12273. {
  12274. name: "Micro+",
  12275. height: math.unit(3, "mm")
  12276. },
  12277. {
  12278. name: "Normal",
  12279. height: math.unit(5 + 10.5 / 12, "feet")
  12280. },
  12281. ]
  12282. ))
  12283. characterMakers.push(() => makeCharacter(
  12284. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12285. {
  12286. kaiju: {
  12287. height: math.unit(1.75, "meters"),
  12288. weight: math.unit(55, "kg"),
  12289. name: "Kaiju",
  12290. image: {
  12291. source: "./media/characters/lykonous/kaiju.svg",
  12292. extra: 1055 / 946,
  12293. bottom: 0.135
  12294. }
  12295. },
  12296. },
  12297. [
  12298. {
  12299. name: "Normal",
  12300. height: math.unit(2.5, "meters"),
  12301. default: true
  12302. },
  12303. {
  12304. name: "Kaiju Dragon",
  12305. height: math.unit(60, "meters")
  12306. },
  12307. {
  12308. name: "Mega Kaiju",
  12309. height: math.unit(120, "km")
  12310. },
  12311. {
  12312. name: "Giga Kaiju",
  12313. height: math.unit(200, "megameters")
  12314. },
  12315. {
  12316. name: "Terra Kaiju",
  12317. height: math.unit(400, "gigameters")
  12318. },
  12319. {
  12320. name: "Kaiju Dragon God",
  12321. height: math.unit(13000, "exaparsecs")
  12322. },
  12323. ]
  12324. ))
  12325. characterMakers.push(() => makeCharacter(
  12326. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12327. {
  12328. front: {
  12329. height: math.unit(6, "feet"),
  12330. weight: math.unit(150, "lb"),
  12331. name: "Front",
  12332. image: {
  12333. source: "./media/characters/blü/front.svg",
  12334. extra: 1883 / 1564,
  12335. bottom: 0.031
  12336. }
  12337. },
  12338. },
  12339. [
  12340. {
  12341. name: "Normal",
  12342. height: math.unit(13, "feet"),
  12343. default: true
  12344. },
  12345. {
  12346. name: "Big Boi",
  12347. height: math.unit(150, "meters")
  12348. },
  12349. {
  12350. name: "Mini Stomper",
  12351. height: math.unit(300, "meters")
  12352. },
  12353. {
  12354. name: "Macro",
  12355. height: math.unit(1000, "meters")
  12356. },
  12357. {
  12358. name: "Megamacro",
  12359. height: math.unit(11000, "meters")
  12360. },
  12361. {
  12362. name: "Gigamacro",
  12363. height: math.unit(11000, "km")
  12364. },
  12365. {
  12366. name: "Teramacro",
  12367. height: math.unit(420000, "km")
  12368. },
  12369. {
  12370. name: "Examacro",
  12371. height: math.unit(120, "parsecs")
  12372. },
  12373. {
  12374. name: "God Tho",
  12375. height: math.unit(98000000000, "parsecs")
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12381. {
  12382. taurFront: {
  12383. height: math.unit(6, "feet"),
  12384. weight: math.unit(200, "lb"),
  12385. name: "Taur (Front)",
  12386. image: {
  12387. source: "./media/characters/scales/taur-front.svg",
  12388. extra: 1,
  12389. bottom: 0.05
  12390. }
  12391. },
  12392. taurBack: {
  12393. height: math.unit(6, "feet"),
  12394. weight: math.unit(200, "lb"),
  12395. name: "Taur (Back)",
  12396. image: {
  12397. source: "./media/characters/scales/taur-back.svg",
  12398. extra: 1,
  12399. bottom: 0.08
  12400. }
  12401. },
  12402. anthro: {
  12403. height: math.unit(6 * 7 / 12, "feet"),
  12404. weight: math.unit(100, "lb"),
  12405. name: "Anthro",
  12406. image: {
  12407. source: "./media/characters/scales/anthro.svg",
  12408. extra: 1,
  12409. bottom: 0.06
  12410. }
  12411. },
  12412. },
  12413. [
  12414. {
  12415. name: "Normal",
  12416. height: math.unit(12, "feet"),
  12417. default: true
  12418. },
  12419. ]
  12420. ))
  12421. characterMakers.push(() => makeCharacter(
  12422. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12423. {
  12424. front: {
  12425. height: math.unit(6, "feet"),
  12426. weight: math.unit(150, "lb"),
  12427. name: "Front",
  12428. image: {
  12429. source: "./media/characters/koragos/front.svg",
  12430. extra: 841 / 794,
  12431. bottom: 0.035
  12432. }
  12433. },
  12434. back: {
  12435. height: math.unit(6, "feet"),
  12436. weight: math.unit(150, "lb"),
  12437. name: "Back",
  12438. image: {
  12439. source: "./media/characters/koragos/back.svg",
  12440. extra: 841 / 810,
  12441. bottom: 0.022
  12442. }
  12443. },
  12444. },
  12445. [
  12446. {
  12447. name: "Normal",
  12448. height: math.unit(6 + 11 / 12, "feet"),
  12449. default: true
  12450. },
  12451. {
  12452. name: "Macro",
  12453. height: math.unit(490, "feet")
  12454. },
  12455. {
  12456. name: "Megamacro",
  12457. height: math.unit(10, "miles")
  12458. },
  12459. {
  12460. name: "Gigamacro",
  12461. height: math.unit(50, "miles")
  12462. },
  12463. ]
  12464. ))
  12465. characterMakers.push(() => makeCharacter(
  12466. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12467. {
  12468. front: {
  12469. height: math.unit(6, "feet"),
  12470. weight: math.unit(250, "lb"),
  12471. name: "Front",
  12472. image: {
  12473. source: "./media/characters/xylrem/front.svg",
  12474. extra: 3323 / 3050,
  12475. bottom: 0.065
  12476. }
  12477. },
  12478. },
  12479. [
  12480. {
  12481. name: "Micro",
  12482. height: math.unit(4, "feet")
  12483. },
  12484. {
  12485. name: "Normal",
  12486. height: math.unit(16, "feet"),
  12487. default: true
  12488. },
  12489. {
  12490. name: "Macro",
  12491. height: math.unit(2720, "feet")
  12492. },
  12493. {
  12494. name: "Megamacro",
  12495. height: math.unit(25000, "miles")
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12501. {
  12502. front: {
  12503. height: math.unit(8, "feet"),
  12504. weight: math.unit(250, "kg"),
  12505. name: "Front",
  12506. image: {
  12507. source: "./media/characters/ikideru/front.svg",
  12508. extra: 930 / 870,
  12509. bottom: 0.087
  12510. }
  12511. },
  12512. back: {
  12513. height: math.unit(8, "feet"),
  12514. weight: math.unit(250, "kg"),
  12515. name: "Back",
  12516. image: {
  12517. source: "./media/characters/ikideru/back.svg",
  12518. extra: 919 / 852,
  12519. bottom: 0.055
  12520. }
  12521. },
  12522. },
  12523. [
  12524. {
  12525. name: "Rare",
  12526. height: math.unit(8, "feet"),
  12527. default: true
  12528. },
  12529. {
  12530. name: "Playful Loom",
  12531. height: math.unit(80, "feet")
  12532. },
  12533. {
  12534. name: "City Leaner",
  12535. height: math.unit(230, "feet")
  12536. },
  12537. {
  12538. name: "Megamacro",
  12539. height: math.unit(2500, "feet")
  12540. },
  12541. {
  12542. name: "Gigamacro",
  12543. height: math.unit(26400, "feet")
  12544. },
  12545. {
  12546. name: "Tectonic Shifter",
  12547. height: math.unit(1.7, "megameters")
  12548. },
  12549. {
  12550. name: "Planet Carer",
  12551. height: math.unit(21, "megameters")
  12552. },
  12553. {
  12554. name: "God",
  12555. height: math.unit(11157.22, "parsecs")
  12556. },
  12557. ]
  12558. ))
  12559. characterMakers.push(() => makeCharacter(
  12560. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12561. {
  12562. front: {
  12563. height: math.unit(6, "feet"),
  12564. weight: math.unit(120, "lb"),
  12565. name: "Front",
  12566. image: {
  12567. source: "./media/characters/neo/front.svg"
  12568. }
  12569. },
  12570. },
  12571. [
  12572. {
  12573. name: "Micro",
  12574. height: math.unit(2, "inches"),
  12575. default: true
  12576. },
  12577. {
  12578. name: "Human Size",
  12579. height: math.unit(5 + 8 / 12, "feet")
  12580. },
  12581. ]
  12582. ))
  12583. characterMakers.push(() => makeCharacter(
  12584. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12585. {
  12586. front: {
  12587. height: math.unit(13 + 10 / 12, "feet"),
  12588. weight: math.unit(5320, "lb"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/chauncey-chantz/front.svg",
  12592. extra: 1587 / 1435,
  12593. bottom: 0.02
  12594. }
  12595. },
  12596. },
  12597. [
  12598. {
  12599. name: "Normal",
  12600. height: math.unit(13 + 10 / 12, "feet"),
  12601. default: true
  12602. },
  12603. {
  12604. name: "Macro",
  12605. height: math.unit(45, "feet")
  12606. },
  12607. {
  12608. name: "Megamacro",
  12609. height: math.unit(250, "miles")
  12610. },
  12611. {
  12612. name: "Planetary",
  12613. height: math.unit(10000, "miles")
  12614. },
  12615. {
  12616. name: "Galactic",
  12617. height: math.unit(40000, "parsecs")
  12618. },
  12619. {
  12620. name: "Universal",
  12621. height: math.unit(1, "yottameter")
  12622. },
  12623. ]
  12624. ))
  12625. characterMakers.push(() => makeCharacter(
  12626. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12627. {
  12628. front: {
  12629. height: math.unit(6, "feet"),
  12630. weight: math.unit(150, "lb"),
  12631. name: "Front",
  12632. image: {
  12633. source: "./media/characters/epifox/front.svg",
  12634. extra: 1,
  12635. bottom: 0.075
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Micro",
  12642. height: math.unit(6, "inches")
  12643. },
  12644. {
  12645. name: "Normal",
  12646. height: math.unit(12, "feet"),
  12647. default: true
  12648. },
  12649. {
  12650. name: "Macro",
  12651. height: math.unit(3810, "feet")
  12652. },
  12653. {
  12654. name: "Megamacro",
  12655. height: math.unit(500, "miles")
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12661. {
  12662. front: {
  12663. height: math.unit(1.8796, "m"),
  12664. weight: math.unit(230, "lb"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/colin-t/front.svg",
  12668. extra: 1272 / 1193,
  12669. bottom: 0.07
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Micro",
  12676. height: math.unit(0.571, "meters")
  12677. },
  12678. {
  12679. name: "Normal",
  12680. height: math.unit(1.8796, "meters"),
  12681. default: true
  12682. },
  12683. {
  12684. name: "Tall",
  12685. height: math.unit(4, "meters")
  12686. },
  12687. {
  12688. name: "Macro",
  12689. height: math.unit(67.241, "meters")
  12690. },
  12691. {
  12692. name: "Megamacro",
  12693. height: math.unit(371.856, "meters")
  12694. },
  12695. {
  12696. name: "Planetary",
  12697. height: math.unit(12631.5689, "km")
  12698. },
  12699. ]
  12700. ))
  12701. characterMakers.push(() => makeCharacter(
  12702. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12703. {
  12704. front: {
  12705. height: math.unit(1.85, "meters"),
  12706. weight: math.unit(80, "kg"),
  12707. name: "Front",
  12708. image: {
  12709. source: "./media/characters/matvei/front.svg",
  12710. extra: 614 / 594,
  12711. bottom: 0.01
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Normal",
  12718. height: math.unit(1.85, "meters"),
  12719. default: true
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12725. {
  12726. front: {
  12727. height: math.unit(5 + 9 / 12, "feet"),
  12728. weight: math.unit(70, "lb"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/quincy/front.svg",
  12732. extra: 3041 / 2751
  12733. }
  12734. },
  12735. back: {
  12736. height: math.unit(5 + 9 / 12, "feet"),
  12737. weight: math.unit(70, "lb"),
  12738. name: "Back",
  12739. image: {
  12740. source: "./media/characters/quincy/back.svg",
  12741. extra: 3041 / 2751
  12742. }
  12743. },
  12744. flying: {
  12745. height: math.unit(5 + 4 / 12, "feet"),
  12746. weight: math.unit(70, "lb"),
  12747. name: "Flying",
  12748. image: {
  12749. source: "./media/characters/quincy/flying.svg",
  12750. extra: 1044 / 930
  12751. }
  12752. },
  12753. },
  12754. [
  12755. {
  12756. name: "Micro",
  12757. height: math.unit(3, "cm")
  12758. },
  12759. {
  12760. name: "Normal",
  12761. height: math.unit(5 + 9 / 12, "feet")
  12762. },
  12763. {
  12764. name: "Macro",
  12765. height: math.unit(200, "meters"),
  12766. default: true
  12767. },
  12768. {
  12769. name: "Megamacro",
  12770. height: math.unit(1000, "meters")
  12771. },
  12772. ]
  12773. ))
  12774. characterMakers.push(() => makeCharacter(
  12775. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12776. {
  12777. front: {
  12778. height: math.unit(3 + 11/12, "feet"),
  12779. weight: math.unit(50, "lb"),
  12780. name: "Front",
  12781. image: {
  12782. source: "./media/characters/vanrel/front.svg",
  12783. extra: 1104/949,
  12784. bottom: 52/1156
  12785. }
  12786. },
  12787. back: {
  12788. height: math.unit(3 + 11/12, "feet"),
  12789. weight: math.unit(50, "lb"),
  12790. name: "Back",
  12791. image: {
  12792. source: "./media/characters/vanrel/back.svg",
  12793. extra: 1119/976,
  12794. bottom: 37/1156
  12795. }
  12796. },
  12797. tome: {
  12798. height: math.unit(1.35, "feet"),
  12799. weight: math.unit(10, "lb"),
  12800. name: "Vanrel's Tome",
  12801. rename: true,
  12802. image: {
  12803. source: "./media/characters/vanrel/tome.svg"
  12804. }
  12805. },
  12806. beans: {
  12807. height: math.unit(0.89, "feet"),
  12808. name: "Beans",
  12809. image: {
  12810. source: "./media/characters/vanrel/beans.svg"
  12811. }
  12812. },
  12813. },
  12814. [
  12815. {
  12816. name: "Normal",
  12817. height: math.unit(3 + 11/12, "feet"),
  12818. default: true
  12819. },
  12820. ]
  12821. ))
  12822. characterMakers.push(() => makeCharacter(
  12823. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12824. {
  12825. front: {
  12826. height: math.unit(7 + 5 / 12, "feet"),
  12827. name: "Front",
  12828. image: {
  12829. source: "./media/characters/kuiper-vanrel/front.svg",
  12830. extra: 1219/1169,
  12831. bottom: 69/1288
  12832. }
  12833. },
  12834. back: {
  12835. height: math.unit(7 + 5 / 12, "feet"),
  12836. name: "Back",
  12837. image: {
  12838. source: "./media/characters/kuiper-vanrel/back.svg",
  12839. extra: 1236/1193,
  12840. bottom: 27/1263
  12841. }
  12842. },
  12843. foot: {
  12844. height: math.unit(0.55, "meters"),
  12845. name: "Foot",
  12846. image: {
  12847. source: "./media/characters/kuiper-vanrel/foot.svg",
  12848. }
  12849. },
  12850. battle: {
  12851. height: math.unit(6.824, "feet"),
  12852. name: "Battle",
  12853. image: {
  12854. source: "./media/characters/kuiper-vanrel/battle.svg",
  12855. extra: 1466 / 1327,
  12856. bottom: 29 / 1492.5
  12857. }
  12858. },
  12859. meerkui: {
  12860. height: math.unit(18, "inches"),
  12861. name: "Meerkui",
  12862. image: {
  12863. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12864. extra: 1354/1289,
  12865. bottom: 69/1423
  12866. }
  12867. },
  12868. },
  12869. [
  12870. {
  12871. name: "Normal",
  12872. height: math.unit(7 + 5 / 12, "feet"),
  12873. default: true
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(8 + 5 / 12, "feet"),
  12882. name: "Front",
  12883. image: {
  12884. source: "./media/characters/keset-vanrel/front.svg",
  12885. extra: 1231/1148,
  12886. bottom: 82/1313
  12887. }
  12888. },
  12889. back: {
  12890. height: math.unit(8 + 5 / 12, "feet"),
  12891. name: "Back",
  12892. image: {
  12893. source: "./media/characters/keset-vanrel/back.svg",
  12894. extra: 1240/1174,
  12895. bottom: 33/1273
  12896. }
  12897. },
  12898. hand: {
  12899. height: math.unit(0.6, "meters"),
  12900. name: "Hand",
  12901. image: {
  12902. source: "./media/characters/keset-vanrel/hand.svg"
  12903. }
  12904. },
  12905. foot: {
  12906. height: math.unit(0.94978, "meters"),
  12907. name: "Foot",
  12908. image: {
  12909. source: "./media/characters/keset-vanrel/foot.svg"
  12910. }
  12911. },
  12912. battle: {
  12913. height: math.unit(7.408, "feet"),
  12914. name: "Battle",
  12915. image: {
  12916. source: "./media/characters/keset-vanrel/battle.svg",
  12917. extra: 1890 / 1386,
  12918. bottom: 73.28 / 1970
  12919. }
  12920. },
  12921. },
  12922. [
  12923. {
  12924. name: "Normal",
  12925. height: math.unit(8 + 5 / 12, "feet"),
  12926. default: true
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12932. {
  12933. front: {
  12934. height: math.unit(6, "feet"),
  12935. weight: math.unit(150, "lb"),
  12936. name: "Front",
  12937. image: {
  12938. source: "./media/characters/neos/front.svg",
  12939. extra: 1696 / 992,
  12940. bottom: 0.14
  12941. }
  12942. },
  12943. },
  12944. [
  12945. {
  12946. name: "Normal",
  12947. height: math.unit(54, "cm"),
  12948. default: true
  12949. },
  12950. {
  12951. name: "Macro",
  12952. height: math.unit(100, "m")
  12953. },
  12954. {
  12955. name: "Megamacro",
  12956. height: math.unit(10, "km")
  12957. },
  12958. {
  12959. name: "Megamacro+",
  12960. height: math.unit(100, "km")
  12961. },
  12962. {
  12963. name: "Gigamacro",
  12964. height: math.unit(100, "Mm")
  12965. },
  12966. {
  12967. name: "Teramacro",
  12968. height: math.unit(100, "Gm")
  12969. },
  12970. {
  12971. name: "Examacro",
  12972. height: math.unit(100, "Em")
  12973. },
  12974. {
  12975. name: "Godly",
  12976. height: math.unit(10000, "Ym")
  12977. },
  12978. {
  12979. name: "Beyond Godly",
  12980. height: math.unit(25, "multiverses")
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12986. {
  12987. feminine: {
  12988. height: math.unit(5, "feet"),
  12989. weight: math.unit(100, "lb"),
  12990. name: "Feminine",
  12991. image: {
  12992. source: "./media/characters/sammy-mouse/feminine.svg",
  12993. extra: 2526 / 2425,
  12994. bottom: 0.123
  12995. }
  12996. },
  12997. masculine: {
  12998. height: math.unit(5, "feet"),
  12999. weight: math.unit(100, "lb"),
  13000. name: "Masculine",
  13001. image: {
  13002. source: "./media/characters/sammy-mouse/masculine.svg",
  13003. extra: 2526 / 2425,
  13004. bottom: 0.123
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Micro",
  13011. height: math.unit(5, "inches")
  13012. },
  13013. {
  13014. name: "Normal",
  13015. height: math.unit(5, "feet"),
  13016. default: true
  13017. },
  13018. {
  13019. name: "Macro",
  13020. height: math.unit(60, "feet")
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13026. {
  13027. front: {
  13028. height: math.unit(4, "feet"),
  13029. weight: math.unit(50, "lb"),
  13030. name: "Front",
  13031. image: {
  13032. source: "./media/characters/kole/front.svg",
  13033. extra: 1423 / 1303,
  13034. bottom: 0.025
  13035. }
  13036. },
  13037. back: {
  13038. height: math.unit(4, "feet"),
  13039. weight: math.unit(50, "lb"),
  13040. name: "Back",
  13041. image: {
  13042. source: "./media/characters/kole/back.svg",
  13043. extra: 1426 / 1280,
  13044. bottom: 0.02
  13045. }
  13046. },
  13047. },
  13048. [
  13049. {
  13050. name: "Normal",
  13051. height: math.unit(4, "feet"),
  13052. default: true
  13053. },
  13054. ]
  13055. ))
  13056. characterMakers.push(() => makeCharacter(
  13057. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13058. {
  13059. front: {
  13060. height: math.unit(2.5, "feet"),
  13061. weight: math.unit(32, "lb"),
  13062. name: "Front",
  13063. image: {
  13064. source: "./media/characters/rufran/front.svg",
  13065. extra: 1313/885,
  13066. bottom: 94/1407
  13067. }
  13068. },
  13069. side: {
  13070. height: math.unit(2.5, "feet"),
  13071. weight: math.unit(32, "lb"),
  13072. name: "Side",
  13073. image: {
  13074. source: "./media/characters/rufran/side.svg",
  13075. extra: 1109/852,
  13076. bottom: 118/1227
  13077. }
  13078. },
  13079. back: {
  13080. height: math.unit(2.5, "feet"),
  13081. weight: math.unit(32, "lb"),
  13082. name: "Back",
  13083. image: {
  13084. source: "./media/characters/rufran/back.svg",
  13085. extra: 1280/878,
  13086. bottom: 131/1411
  13087. }
  13088. },
  13089. mouth: {
  13090. height: math.unit(1.13, "feet"),
  13091. name: "Mouth",
  13092. image: {
  13093. source: "./media/characters/rufran/mouth.svg"
  13094. }
  13095. },
  13096. foot: {
  13097. height: math.unit(1.33, "feet"),
  13098. name: "Foot",
  13099. image: {
  13100. source: "./media/characters/rufran/foot.svg"
  13101. }
  13102. },
  13103. koboldFront: {
  13104. height: math.unit(2 + 6 / 12, "feet"),
  13105. weight: math.unit(20, "lb"),
  13106. name: "Front (Kobold)",
  13107. image: {
  13108. source: "./media/characters/rufran/kobold-front.svg",
  13109. extra: 2041 / 1839,
  13110. bottom: 0.055
  13111. }
  13112. },
  13113. koboldBack: {
  13114. height: math.unit(2 + 6 / 12, "feet"),
  13115. weight: math.unit(20, "lb"),
  13116. name: "Back (Kobold)",
  13117. image: {
  13118. source: "./media/characters/rufran/kobold-back.svg",
  13119. extra: 2054 / 1839,
  13120. bottom: 0.01
  13121. }
  13122. },
  13123. koboldHand: {
  13124. height: math.unit(0.2166, "meters"),
  13125. name: "Hand (Kobold)",
  13126. image: {
  13127. source: "./media/characters/rufran/kobold-hand.svg"
  13128. }
  13129. },
  13130. koboldFoot: {
  13131. height: math.unit(0.185, "meters"),
  13132. name: "Foot (Kobold)",
  13133. image: {
  13134. source: "./media/characters/rufran/kobold-foot.svg"
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Micro",
  13141. height: math.unit(1, "inch")
  13142. },
  13143. {
  13144. name: "Normal",
  13145. height: math.unit(2 + 6 / 12, "feet"),
  13146. default: true
  13147. },
  13148. {
  13149. name: "Big",
  13150. height: math.unit(60, "feet")
  13151. },
  13152. {
  13153. name: "Macro",
  13154. height: math.unit(325, "feet")
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13160. {
  13161. front: {
  13162. height: math.unit(0.3, "meters"),
  13163. weight: math.unit(3.5, "kg"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/chip/front.svg",
  13167. extra: 748 / 674
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Micro",
  13174. height: math.unit(1, "inch"),
  13175. default: true
  13176. },
  13177. ]
  13178. ))
  13179. characterMakers.push(() => makeCharacter(
  13180. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13181. {
  13182. side: {
  13183. height: math.unit(2.3, "meters"),
  13184. weight: math.unit(3500, "lb"),
  13185. name: "Side",
  13186. image: {
  13187. source: "./media/characters/torvid/side.svg",
  13188. extra: 1972 / 722,
  13189. bottom: 0.035
  13190. }
  13191. },
  13192. },
  13193. [
  13194. {
  13195. name: "Normal",
  13196. height: math.unit(2.3, "meters"),
  13197. default: true
  13198. },
  13199. ]
  13200. ))
  13201. characterMakers.push(() => makeCharacter(
  13202. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13203. {
  13204. front: {
  13205. height: math.unit(2, "meters"),
  13206. weight: math.unit(150.5, "kg"),
  13207. name: "Front",
  13208. image: {
  13209. source: "./media/characters/susan/front.svg",
  13210. extra: 693 / 635,
  13211. bottom: 0.05
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Megamacro",
  13218. height: math.unit(505, "miles"),
  13219. default: true
  13220. },
  13221. ]
  13222. ))
  13223. characterMakers.push(() => makeCharacter(
  13224. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13225. {
  13226. front: {
  13227. height: math.unit(6, "feet"),
  13228. weight: math.unit(150, "lb"),
  13229. name: "Front",
  13230. image: {
  13231. source: "./media/characters/raindrops/front.svg",
  13232. extra: 2655 / 2461,
  13233. bottom: 49 / 2705
  13234. }
  13235. },
  13236. back: {
  13237. height: math.unit(6, "feet"),
  13238. weight: math.unit(150, "lb"),
  13239. name: "Back",
  13240. image: {
  13241. source: "./media/characters/raindrops/back.svg",
  13242. extra: 2574 / 2400,
  13243. bottom: 65 / 2634
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Micro",
  13250. height: math.unit(6, "inches")
  13251. },
  13252. {
  13253. name: "Normal",
  13254. height: math.unit(6 + 2 / 12, "feet")
  13255. },
  13256. {
  13257. name: "Macro",
  13258. height: math.unit(131, "feet"),
  13259. default: true
  13260. },
  13261. {
  13262. name: "Megamacro",
  13263. height: math.unit(15, "miles")
  13264. },
  13265. {
  13266. name: "Gigamacro",
  13267. height: math.unit(4000, "miles")
  13268. },
  13269. {
  13270. name: "Teramacro",
  13271. height: math.unit(315000, "miles")
  13272. },
  13273. ]
  13274. ))
  13275. characterMakers.push(() => makeCharacter(
  13276. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13277. {
  13278. front: {
  13279. height: math.unit(2.794, "meters"),
  13280. weight: math.unit(325, "kg"),
  13281. name: "Front",
  13282. image: {
  13283. source: "./media/characters/tezwa/front.svg",
  13284. extra: 2083 / 1906,
  13285. bottom: 0.031
  13286. }
  13287. },
  13288. foot: {
  13289. height: math.unit(0.687, "meters"),
  13290. name: "Foot",
  13291. image: {
  13292. source: "./media/characters/tezwa/foot.svg"
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Normal",
  13299. height: math.unit(9 + 2 / 12, "feet"),
  13300. default: true
  13301. },
  13302. ]
  13303. ))
  13304. characterMakers.push(() => makeCharacter(
  13305. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13306. {
  13307. front: {
  13308. height: math.unit(58, "feet"),
  13309. weight: math.unit(89000, "lb"),
  13310. name: "Front",
  13311. image: {
  13312. source: "./media/characters/typhus/front.svg",
  13313. extra: 816 / 800,
  13314. bottom: 0.065
  13315. }
  13316. },
  13317. },
  13318. [
  13319. {
  13320. name: "Macro",
  13321. height: math.unit(58, "feet"),
  13322. default: true
  13323. },
  13324. ]
  13325. ))
  13326. characterMakers.push(() => makeCharacter(
  13327. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13328. {
  13329. front: {
  13330. height: math.unit(12, "feet"),
  13331. weight: math.unit(6, "tonnes"),
  13332. name: "Front",
  13333. image: {
  13334. source: "./media/characters/lyra-von-wulf/front.svg",
  13335. extra: 1,
  13336. bottom: 0.10
  13337. }
  13338. },
  13339. frontMecha: {
  13340. height: math.unit(12, "feet"),
  13341. weight: math.unit(12, "tonnes"),
  13342. name: "Front (Mecha)",
  13343. image: {
  13344. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13345. extra: 1,
  13346. bottom: 0.042
  13347. }
  13348. },
  13349. maw: {
  13350. height: math.unit(2.2, "feet"),
  13351. name: "Maw",
  13352. image: {
  13353. source: "./media/characters/lyra-von-wulf/maw.svg"
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Normal",
  13360. height: math.unit(12, "feet"),
  13361. default: true
  13362. },
  13363. {
  13364. name: "Classic",
  13365. height: math.unit(50, "feet")
  13366. },
  13367. {
  13368. name: "Macro",
  13369. height: math.unit(500, "feet")
  13370. },
  13371. {
  13372. name: "Megamacro",
  13373. height: math.unit(1, "mile")
  13374. },
  13375. {
  13376. name: "Gigamacro",
  13377. height: math.unit(400, "miles")
  13378. },
  13379. {
  13380. name: "Teramacro",
  13381. height: math.unit(22000, "miles")
  13382. },
  13383. {
  13384. name: "Solarmacro",
  13385. height: math.unit(8600000, "miles")
  13386. },
  13387. {
  13388. name: "Galactic",
  13389. height: math.unit(1057000, "lightyears")
  13390. },
  13391. ]
  13392. ))
  13393. characterMakers.push(() => makeCharacter(
  13394. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13395. {
  13396. front: {
  13397. height: math.unit(6 + 10 / 12, "feet"),
  13398. weight: math.unit(150, "lb"),
  13399. name: "Front",
  13400. image: {
  13401. source: "./media/characters/dixon/front.svg",
  13402. extra: 3361 / 3209,
  13403. bottom: 0.01
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Normal",
  13410. height: math.unit(6 + 10 / 12, "feet"),
  13411. default: true
  13412. },
  13413. {
  13414. name: "Big",
  13415. height: math.unit(12, "meters")
  13416. },
  13417. {
  13418. name: "Macro",
  13419. height: math.unit(500, "meters")
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(2, "km")
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(185, "cm"),
  13432. weight: math.unit(68, "kg"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/kauko/front.svg",
  13436. extra: 1455 / 1421,
  13437. bottom: 0.03
  13438. }
  13439. },
  13440. back: {
  13441. height: math.unit(185, "cm"),
  13442. weight: math.unit(68, "kg"),
  13443. name: "Back",
  13444. image: {
  13445. source: "./media/characters/kauko/back.svg",
  13446. extra: 1455 / 1421,
  13447. bottom: 0.004
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(185, "cm"),
  13455. default: true
  13456. },
  13457. ]
  13458. ))
  13459. characterMakers.push(() => makeCharacter(
  13460. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13461. {
  13462. front: {
  13463. height: math.unit(6, "feet"),
  13464. weight: math.unit(150, "kg"),
  13465. name: "Front",
  13466. image: {
  13467. source: "./media/characters/varg/front.svg",
  13468. extra: 1108 / 1018,
  13469. bottom: 0.0375
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Normal",
  13476. height: math.unit(5, "meters")
  13477. },
  13478. {
  13479. name: "Macro",
  13480. height: math.unit(200, "meters")
  13481. },
  13482. {
  13483. name: "Megamacro",
  13484. height: math.unit(20, "kilometers")
  13485. },
  13486. {
  13487. name: "True Size",
  13488. height: math.unit(211, "km"),
  13489. default: true
  13490. },
  13491. {
  13492. name: "Gigamacro",
  13493. height: math.unit(1000, "km")
  13494. },
  13495. {
  13496. name: "Gigamacro+",
  13497. height: math.unit(8000, "km")
  13498. },
  13499. {
  13500. name: "Teramacro",
  13501. height: math.unit(1000000, "km")
  13502. },
  13503. ]
  13504. ))
  13505. characterMakers.push(() => makeCharacter(
  13506. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13507. {
  13508. front: {
  13509. height: math.unit(7 + 7 / 12, "feet"),
  13510. weight: math.unit(267, "lb"),
  13511. name: "Front",
  13512. image: {
  13513. source: "./media/characters/dayza/front.svg",
  13514. extra: 1262 / 1200,
  13515. bottom: 0.035
  13516. }
  13517. },
  13518. side: {
  13519. height: math.unit(7 + 7 / 12, "feet"),
  13520. weight: math.unit(267, "lb"),
  13521. name: "Side",
  13522. image: {
  13523. source: "./media/characters/dayza/side.svg",
  13524. extra: 1295 / 1245,
  13525. bottom: 0.05
  13526. }
  13527. },
  13528. back: {
  13529. height: math.unit(7 + 7 / 12, "feet"),
  13530. weight: math.unit(267, "lb"),
  13531. name: "Back",
  13532. image: {
  13533. source: "./media/characters/dayza/back.svg",
  13534. extra: 1241 / 1170
  13535. }
  13536. },
  13537. },
  13538. [
  13539. {
  13540. name: "Normal",
  13541. height: math.unit(7 + 7 / 12, "feet"),
  13542. default: true
  13543. },
  13544. {
  13545. name: "Macro",
  13546. height: math.unit(155, "feet")
  13547. },
  13548. ]
  13549. ))
  13550. characterMakers.push(() => makeCharacter(
  13551. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13552. {
  13553. front: {
  13554. height: math.unit(6 + 5 / 12, "feet"),
  13555. weight: math.unit(160, "lb"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/xanthos/front.svg",
  13559. extra: 1,
  13560. bottom: 0.04
  13561. }
  13562. },
  13563. back: {
  13564. height: math.unit(6 + 5 / 12, "feet"),
  13565. weight: math.unit(160, "lb"),
  13566. name: "Back",
  13567. image: {
  13568. source: "./media/characters/xanthos/back.svg",
  13569. extra: 1,
  13570. bottom: 0.03
  13571. }
  13572. },
  13573. hand: {
  13574. height: math.unit(0.928, "feet"),
  13575. name: "Hand",
  13576. image: {
  13577. source: "./media/characters/xanthos/hand.svg"
  13578. }
  13579. },
  13580. foot: {
  13581. height: math.unit(1.286, "feet"),
  13582. name: "Foot",
  13583. image: {
  13584. source: "./media/characters/xanthos/foot.svg"
  13585. }
  13586. },
  13587. },
  13588. [
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(6 + 5 / 12, "feet"),
  13592. default: true
  13593. },
  13594. {
  13595. name: "Normal+",
  13596. height: math.unit(6, "meters")
  13597. },
  13598. {
  13599. name: "Macro",
  13600. height: math.unit(40, "feet")
  13601. },
  13602. {
  13603. name: "Macro+",
  13604. height: math.unit(200, "meters")
  13605. },
  13606. {
  13607. name: "Megamacro",
  13608. height: math.unit(20, "km")
  13609. },
  13610. {
  13611. name: "Megamacro+",
  13612. height: math.unit(100, "km")
  13613. },
  13614. {
  13615. name: "Gigamacro",
  13616. height: math.unit(200, "megameters")
  13617. },
  13618. {
  13619. name: "Gigamacro+",
  13620. height: math.unit(1.5, "gigameters")
  13621. },
  13622. ]
  13623. ))
  13624. characterMakers.push(() => makeCharacter(
  13625. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13626. {
  13627. front: {
  13628. height: math.unit(6 + 3 / 12, "feet"),
  13629. weight: math.unit(215, "lb"),
  13630. name: "Front",
  13631. image: {
  13632. source: "./media/characters/grynn/front.svg",
  13633. extra: 4627 / 4209,
  13634. bottom: 0.047
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Micro",
  13641. height: math.unit(6, "inches")
  13642. },
  13643. {
  13644. name: "Normal",
  13645. height: math.unit(6 + 3 / 12, "feet"),
  13646. default: true
  13647. },
  13648. {
  13649. name: "Big",
  13650. height: math.unit(104, "feet")
  13651. },
  13652. {
  13653. name: "Macro",
  13654. height: math.unit(944, "feet")
  13655. },
  13656. {
  13657. name: "Macro+",
  13658. height: math.unit(9480, "feet")
  13659. },
  13660. {
  13661. name: "Megamacro",
  13662. height: math.unit(78752, "feet")
  13663. },
  13664. {
  13665. name: "Megamacro+",
  13666. height: math.unit(630128, "feet")
  13667. },
  13668. {
  13669. name: "Megamacro++",
  13670. height: math.unit(3150695, "feet")
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13676. {
  13677. front: {
  13678. height: math.unit(7 + 5 / 12, "feet"),
  13679. weight: math.unit(450, "lb"),
  13680. name: "Front",
  13681. image: {
  13682. source: "./media/characters/mocha-aura/front.svg",
  13683. extra: 1907 / 1817,
  13684. bottom: 0.04
  13685. }
  13686. },
  13687. back: {
  13688. height: math.unit(7 + 5 / 12, "feet"),
  13689. weight: math.unit(450, "lb"),
  13690. name: "Back",
  13691. image: {
  13692. source: "./media/characters/mocha-aura/back.svg",
  13693. extra: 1900 / 1825,
  13694. bottom: 0.045
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Nano",
  13701. height: math.unit(1, "nm")
  13702. },
  13703. {
  13704. name: "Megamicro",
  13705. height: math.unit(1, "mm")
  13706. },
  13707. {
  13708. name: "Micro",
  13709. height: math.unit(3, "inches")
  13710. },
  13711. {
  13712. name: "Normal",
  13713. height: math.unit(7 + 5 / 12, "feet"),
  13714. default: true
  13715. },
  13716. {
  13717. name: "Macro",
  13718. height: math.unit(30, "feet")
  13719. },
  13720. {
  13721. name: "Megamacro",
  13722. height: math.unit(3500, "feet")
  13723. },
  13724. {
  13725. name: "Teramacro",
  13726. height: math.unit(500000, "miles")
  13727. },
  13728. {
  13729. name: "Petamacro",
  13730. height: math.unit(50000000000000000, "parsecs")
  13731. },
  13732. ]
  13733. ))
  13734. characterMakers.push(() => makeCharacter(
  13735. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13736. {
  13737. front: {
  13738. height: math.unit(6, "feet"),
  13739. weight: math.unit(150, "lb"),
  13740. name: "Front",
  13741. image: {
  13742. source: "./media/characters/ilisha-devya/front.svg",
  13743. extra: 1053/1049,
  13744. bottom: 270/1323
  13745. }
  13746. },
  13747. back: {
  13748. height: math.unit(6, "feet"),
  13749. weight: math.unit(150, "lb"),
  13750. name: "Back",
  13751. image: {
  13752. source: "./media/characters/ilisha-devya/back.svg",
  13753. extra: 1131/1128,
  13754. bottom: 39/1170
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Macro",
  13761. height: math.unit(500, "feet"),
  13762. default: true
  13763. },
  13764. {
  13765. name: "Megamacro",
  13766. height: math.unit(10, "miles")
  13767. },
  13768. {
  13769. name: "Gigamacro",
  13770. height: math.unit(100000, "miles")
  13771. },
  13772. {
  13773. name: "Examacro",
  13774. height: math.unit(1e9, "lightyears")
  13775. },
  13776. {
  13777. name: "Omniversal",
  13778. height: math.unit(1e33, "lightyears")
  13779. },
  13780. {
  13781. name: "Beyond Infinite",
  13782. height: math.unit(1e100, "lightyears")
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13788. {
  13789. Side: {
  13790. height: math.unit(6, "feet"),
  13791. weight: math.unit(150, "lb"),
  13792. name: "Side",
  13793. image: {
  13794. source: "./media/characters/mira/side.svg",
  13795. extra: 900 / 799,
  13796. bottom: 0.02
  13797. }
  13798. },
  13799. },
  13800. [
  13801. {
  13802. name: "Human Size",
  13803. height: math.unit(6, "feet")
  13804. },
  13805. {
  13806. name: "Macro",
  13807. height: math.unit(100, "feet"),
  13808. default: true
  13809. },
  13810. {
  13811. name: "Megamacro",
  13812. height: math.unit(10, "miles")
  13813. },
  13814. {
  13815. name: "Gigamacro",
  13816. height: math.unit(25000, "miles")
  13817. },
  13818. {
  13819. name: "Teramacro",
  13820. height: math.unit(300, "AU")
  13821. },
  13822. {
  13823. name: "Full Size",
  13824. height: math.unit(4.5e10, "lightyears")
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13830. {
  13831. front: {
  13832. height: math.unit(6, "feet"),
  13833. weight: math.unit(150, "lb"),
  13834. name: "Front",
  13835. image: {
  13836. source: "./media/characters/holly/front.svg",
  13837. extra: 639 / 606
  13838. }
  13839. },
  13840. back: {
  13841. height: math.unit(6, "feet"),
  13842. weight: math.unit(150, "lb"),
  13843. name: "Back",
  13844. image: {
  13845. source: "./media/characters/holly/back.svg",
  13846. extra: 623 / 598
  13847. }
  13848. },
  13849. frontWorking: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(150, "lb"),
  13852. name: "Front (Working)",
  13853. image: {
  13854. source: "./media/characters/holly/front-working.svg",
  13855. extra: 607 / 577,
  13856. bottom: 0.048
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Normal",
  13863. height: math.unit(12 + 3 / 12, "feet"),
  13864. default: true
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/porter/front.svg",
  13877. extra: 1,
  13878. bottom: 0.01
  13879. }
  13880. },
  13881. frontRobes: {
  13882. height: math.unit(6, "feet"),
  13883. weight: math.unit(150, "lb"),
  13884. name: "Front (Robes)",
  13885. image: {
  13886. source: "./media/characters/porter/front-robes.svg",
  13887. extra: 1.01,
  13888. bottom: 0.01
  13889. }
  13890. },
  13891. },
  13892. [
  13893. {
  13894. name: "Normal",
  13895. height: math.unit(11 + 9 / 12, "feet"),
  13896. default: true
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13902. {
  13903. legendary: {
  13904. height: math.unit(6, "feet"),
  13905. weight: math.unit(150, "lb"),
  13906. name: "Legendary",
  13907. image: {
  13908. source: "./media/characters/lucy/legendary.svg",
  13909. extra: 1355 / 1100,
  13910. bottom: 0.045
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Legendary",
  13917. height: math.unit(86882 * 2, "miles"),
  13918. default: true
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(150, "lb"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/drusilla/front.svg",
  13931. extra: 678 / 635,
  13932. bottom: 0.03
  13933. }
  13934. },
  13935. back: {
  13936. height: math.unit(6, "feet"),
  13937. weight: math.unit(150, "lb"),
  13938. name: "Back",
  13939. image: {
  13940. source: "./media/characters/drusilla/back.svg",
  13941. extra: 678 / 635,
  13942. bottom: 0.005
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Macro",
  13949. height: math.unit(100, "feet")
  13950. },
  13951. {
  13952. name: "Canon Height",
  13953. height: math.unit(2000, "feet"),
  13954. default: true
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(6, "feet"),
  13963. weight: math.unit(180, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/renard-thatch/front.svg",
  13967. extra: 2411 / 2275,
  13968. bottom: 0.01
  13969. }
  13970. },
  13971. frontPosing: {
  13972. height: math.unit(6, "feet"),
  13973. weight: math.unit(180, "lb"),
  13974. name: "Front (Posing)",
  13975. image: {
  13976. source: "./media/characters/renard-thatch/front-posing.svg",
  13977. extra: 2381 / 2261,
  13978. bottom: 0.01
  13979. }
  13980. },
  13981. back: {
  13982. height: math.unit(6, "feet"),
  13983. weight: math.unit(180, "lb"),
  13984. name: "Back",
  13985. image: {
  13986. source: "./media/characters/renard-thatch/back.svg",
  13987. extra: 2428 / 2288
  13988. }
  13989. },
  13990. },
  13991. [
  13992. {
  13993. name: "Micro",
  13994. height: math.unit(3, "inches")
  13995. },
  13996. {
  13997. name: "Default",
  13998. height: math.unit(6, "feet"),
  13999. default: true
  14000. },
  14001. {
  14002. name: "Macro",
  14003. height: math.unit(75, "feet")
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14009. {
  14010. front: {
  14011. height: math.unit(1450, "feet"),
  14012. weight: math.unit(1.21e6, "tons"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/sekvra/front.svg",
  14016. extra: 1193/1190,
  14017. bottom: 78/1271
  14018. }
  14019. },
  14020. side: {
  14021. height: math.unit(1450, "feet"),
  14022. weight: math.unit(1.21e6, "tons"),
  14023. name: "Side",
  14024. image: {
  14025. source: "./media/characters/sekvra/side.svg",
  14026. extra: 1193/1190,
  14027. bottom: 52/1245
  14028. }
  14029. },
  14030. back: {
  14031. height: math.unit(1450, "feet"),
  14032. weight: math.unit(1.21e6, "tons"),
  14033. name: "Back",
  14034. image: {
  14035. source: "./media/characters/sekvra/back.svg",
  14036. extra: 1219/1216,
  14037. bottom: 21/1240
  14038. }
  14039. },
  14040. frontClothed: {
  14041. height: math.unit(1450, "feet"),
  14042. weight: math.unit(1.21e6, "tons"),
  14043. name: "Front (Clothed)",
  14044. image: {
  14045. source: "./media/characters/sekvra/front-clothed.svg",
  14046. extra: 1192/1189,
  14047. bottom: 79/1271
  14048. }
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Macro",
  14054. height: math.unit(1450, "feet"),
  14055. default: true
  14056. },
  14057. {
  14058. name: "Megamacro",
  14059. height: math.unit(15000, "feet")
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14065. {
  14066. front: {
  14067. height: math.unit(6, "feet"),
  14068. weight: math.unit(150, "lb"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/carmine/front.svg",
  14072. extra: 1,
  14073. bottom: 0.035
  14074. }
  14075. },
  14076. frontArmor: {
  14077. height: math.unit(6, "feet"),
  14078. weight: math.unit(150, "lb"),
  14079. name: "Front (Armor)",
  14080. image: {
  14081. source: "./media/characters/carmine/front-armor.svg",
  14082. extra: 1,
  14083. bottom: 0.035
  14084. }
  14085. },
  14086. },
  14087. [
  14088. {
  14089. name: "Large",
  14090. height: math.unit(1, "mile")
  14091. },
  14092. {
  14093. name: "Huge",
  14094. height: math.unit(40, "miles"),
  14095. default: true
  14096. },
  14097. {
  14098. name: "Colossal",
  14099. height: math.unit(2500, "miles")
  14100. },
  14101. ]
  14102. ))
  14103. characterMakers.push(() => makeCharacter(
  14104. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14105. {
  14106. front: {
  14107. height: math.unit(6, "feet"),
  14108. weight: math.unit(150, "lb"),
  14109. name: "Front",
  14110. image: {
  14111. source: "./media/characters/elyssia/front.svg",
  14112. extra: 2201 / 2035,
  14113. bottom: 0.05
  14114. }
  14115. },
  14116. frontClothed: {
  14117. height: math.unit(6, "feet"),
  14118. weight: math.unit(150, "lb"),
  14119. name: "Front (Clothed)",
  14120. image: {
  14121. source: "./media/characters/elyssia/front-clothed.svg",
  14122. extra: 2201 / 2035,
  14123. bottom: 0.05
  14124. }
  14125. },
  14126. back: {
  14127. height: math.unit(6, "feet"),
  14128. weight: math.unit(150, "lb"),
  14129. name: "Back",
  14130. image: {
  14131. source: "./media/characters/elyssia/back.svg",
  14132. extra: 2201 / 2035,
  14133. bottom: 0.013
  14134. }
  14135. },
  14136. },
  14137. [
  14138. {
  14139. name: "Smaller",
  14140. height: math.unit(150, "feet")
  14141. },
  14142. {
  14143. name: "Standard",
  14144. height: math.unit(1400, "feet"),
  14145. default: true
  14146. },
  14147. {
  14148. name: "Distracted",
  14149. height: math.unit(15000, "feet")
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14155. {
  14156. front: {
  14157. height: math.unit(7 + 4/12, "feet"),
  14158. weight: math.unit(690, "lb"),
  14159. name: "Front",
  14160. image: {
  14161. source: "./media/characters/geno-maxwell/front.svg",
  14162. extra: 984/856,
  14163. bottom: 87/1071
  14164. }
  14165. },
  14166. back: {
  14167. height: math.unit(7 + 4/12, "feet"),
  14168. weight: math.unit(690, "lb"),
  14169. name: "Back",
  14170. image: {
  14171. source: "./media/characters/geno-maxwell/back.svg",
  14172. extra: 981/854,
  14173. bottom: 57/1038
  14174. }
  14175. },
  14176. frontCostume: {
  14177. height: math.unit(7 + 4/12, "feet"),
  14178. weight: math.unit(690, "lb"),
  14179. name: "Front (Costume)",
  14180. image: {
  14181. source: "./media/characters/geno-maxwell/front-costume.svg",
  14182. extra: 984/856,
  14183. bottom: 87/1071
  14184. }
  14185. },
  14186. backcostume: {
  14187. height: math.unit(7 + 4/12, "feet"),
  14188. weight: math.unit(690, "lb"),
  14189. name: "Back (Costume)",
  14190. image: {
  14191. source: "./media/characters/geno-maxwell/back-costume.svg",
  14192. extra: 981/854,
  14193. bottom: 57/1038
  14194. }
  14195. },
  14196. },
  14197. [
  14198. {
  14199. name: "Micro",
  14200. height: math.unit(3, "inches")
  14201. },
  14202. {
  14203. name: "Normal",
  14204. height: math.unit(7 + 4 / 12, "feet"),
  14205. default: true
  14206. },
  14207. {
  14208. name: "Macro",
  14209. height: math.unit(220, "feet")
  14210. },
  14211. {
  14212. name: "Megamacro",
  14213. height: math.unit(11, "miles")
  14214. },
  14215. ]
  14216. ))
  14217. characterMakers.push(() => makeCharacter(
  14218. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14219. {
  14220. front: {
  14221. height: math.unit(7 + 4/12, "feet"),
  14222. weight: math.unit(750, "lb"),
  14223. name: "Front",
  14224. image: {
  14225. source: "./media/characters/regena-maxwell/front.svg",
  14226. extra: 984/856,
  14227. bottom: 87/1071
  14228. }
  14229. },
  14230. back: {
  14231. height: math.unit(7 + 4/12, "feet"),
  14232. weight: math.unit(750, "lb"),
  14233. name: "Back",
  14234. image: {
  14235. source: "./media/characters/regena-maxwell/back.svg",
  14236. extra: 981/854,
  14237. bottom: 57/1038
  14238. }
  14239. },
  14240. frontCostume: {
  14241. height: math.unit(7 + 4/12, "feet"),
  14242. weight: math.unit(750, "lb"),
  14243. name: "Front (Costume)",
  14244. image: {
  14245. source: "./media/characters/regena-maxwell/front-costume.svg",
  14246. extra: 984/856,
  14247. bottom: 87/1071
  14248. }
  14249. },
  14250. backcostume: {
  14251. height: math.unit(7 + 4/12, "feet"),
  14252. weight: math.unit(750, "lb"),
  14253. name: "Back (Costume)",
  14254. image: {
  14255. source: "./media/characters/regena-maxwell/back-costume.svg",
  14256. extra: 981/854,
  14257. bottom: 57/1038
  14258. }
  14259. },
  14260. },
  14261. [
  14262. {
  14263. name: "Normal",
  14264. height: math.unit(7 + 4 / 12, "feet"),
  14265. default: true
  14266. },
  14267. {
  14268. name: "Macro",
  14269. height: math.unit(220, "feet")
  14270. },
  14271. {
  14272. name: "Megamacro",
  14273. height: math.unit(11, "miles")
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14279. {
  14280. front: {
  14281. height: math.unit(6, "feet"),
  14282. weight: math.unit(150, "lb"),
  14283. name: "Front",
  14284. image: {
  14285. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14286. extra: 860 / 690,
  14287. bottom: 0.03
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Normal",
  14294. height: math.unit(1.7, "meters"),
  14295. default: true
  14296. },
  14297. ]
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14301. {
  14302. front: {
  14303. height: math.unit(6, "feet"),
  14304. weight: math.unit(150, "lb"),
  14305. name: "Front",
  14306. image: {
  14307. source: "./media/characters/quilly/front.svg",
  14308. extra: 890 / 776
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Gigamacro",
  14315. height: math.unit(404090, "miles"),
  14316. default: true
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14322. {
  14323. front: {
  14324. height: math.unit(7 + 8 / 12, "feet"),
  14325. weight: math.unit(350, "lb"),
  14326. name: "Front",
  14327. image: {
  14328. source: "./media/characters/tempest/front.svg",
  14329. extra: 1175 / 1086,
  14330. bottom: 0.02
  14331. }
  14332. },
  14333. },
  14334. [
  14335. {
  14336. name: "Normal",
  14337. height: math.unit(7 + 8 / 12, "feet"),
  14338. default: true
  14339. },
  14340. ]
  14341. ))
  14342. characterMakers.push(() => makeCharacter(
  14343. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14344. {
  14345. side: {
  14346. height: math.unit(4 + 5 / 12, "feet"),
  14347. weight: math.unit(80, "lb"),
  14348. name: "Side",
  14349. image: {
  14350. source: "./media/characters/rodger/side.svg",
  14351. extra: 1235 / 1118
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Micro",
  14358. height: math.unit(1, "inch")
  14359. },
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(4 + 5 / 12, "feet"),
  14363. default: true
  14364. },
  14365. {
  14366. name: "Macro",
  14367. height: math.unit(120, "feet")
  14368. },
  14369. ]
  14370. ))
  14371. characterMakers.push(() => makeCharacter(
  14372. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14373. {
  14374. front: {
  14375. height: math.unit(6, "feet"),
  14376. weight: math.unit(150, "lb"),
  14377. name: "Front",
  14378. image: {
  14379. source: "./media/characters/danyel/front.svg",
  14380. extra: 1185 / 1123,
  14381. bottom: 0.05
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Shrunken",
  14388. height: math.unit(0.5, "mm")
  14389. },
  14390. {
  14391. name: "Micro",
  14392. height: math.unit(1, "mm"),
  14393. default: true
  14394. },
  14395. {
  14396. name: "Upsized",
  14397. height: math.unit(5 + 5 / 12, "feet")
  14398. },
  14399. ]
  14400. ))
  14401. characterMakers.push(() => makeCharacter(
  14402. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14403. {
  14404. front: {
  14405. height: math.unit(5 + 6 / 12, "feet"),
  14406. weight: math.unit(200, "lb"),
  14407. name: "Front",
  14408. image: {
  14409. source: "./media/characters/vivian-bijoux/front.svg",
  14410. extra: 1217/1209,
  14411. bottom: 76/1293
  14412. }
  14413. },
  14414. back: {
  14415. height: math.unit(5 + 6 / 12, "feet"),
  14416. weight: math.unit(200, "lb"),
  14417. name: "Back",
  14418. image: {
  14419. source: "./media/characters/vivian-bijoux/back.svg",
  14420. extra: 1214/1208,
  14421. bottom: 51/1265
  14422. }
  14423. },
  14424. dressed: {
  14425. height: math.unit(5 + 6 / 12, "feet"),
  14426. weight: math.unit(200, "lb"),
  14427. name: "Dressed",
  14428. image: {
  14429. source: "./media/characters/vivian-bijoux/dressed.svg",
  14430. extra: 1217/1209,
  14431. bottom: 76/1293
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Normal",
  14438. height: math.unit(5 + 6 / 12, "feet"),
  14439. default: true
  14440. },
  14441. {
  14442. name: "Bad Dream",
  14443. height: math.unit(500, "feet")
  14444. },
  14445. {
  14446. name: "Nightmare",
  14447. height: math.unit(500, "miles")
  14448. },
  14449. ]
  14450. ))
  14451. characterMakers.push(() => makeCharacter(
  14452. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14453. {
  14454. front: {
  14455. height: math.unit(6 + 1 / 12, "feet"),
  14456. weight: math.unit(260, "lb"),
  14457. name: "Front",
  14458. image: {
  14459. source: "./media/characters/zeta/front.svg",
  14460. extra: 1968 / 1889,
  14461. bottom: 0.06
  14462. }
  14463. },
  14464. back: {
  14465. height: math.unit(6 + 1 / 12, "feet"),
  14466. weight: math.unit(260, "lb"),
  14467. name: "Back",
  14468. image: {
  14469. source: "./media/characters/zeta/back.svg",
  14470. extra: 1944 / 1858,
  14471. bottom: 0.03
  14472. }
  14473. },
  14474. hand: {
  14475. height: math.unit(1.112, "feet"),
  14476. name: "Hand",
  14477. image: {
  14478. source: "./media/characters/zeta/hand.svg"
  14479. }
  14480. },
  14481. foot: {
  14482. height: math.unit(1.48, "feet"),
  14483. name: "Foot",
  14484. image: {
  14485. source: "./media/characters/zeta/foot.svg"
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Micro",
  14492. height: math.unit(6, "inches")
  14493. },
  14494. {
  14495. name: "Normal",
  14496. height: math.unit(6 + 1 / 12, "feet"),
  14497. default: true
  14498. },
  14499. {
  14500. name: "Macro",
  14501. height: math.unit(20, "feet")
  14502. },
  14503. ]
  14504. ))
  14505. characterMakers.push(() => makeCharacter(
  14506. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14507. {
  14508. front: {
  14509. height: math.unit(6, "feet"),
  14510. weight: math.unit(150, "lb"),
  14511. name: "Front",
  14512. image: {
  14513. source: "./media/characters/jamie-larsen/front.svg",
  14514. extra: 962 / 933,
  14515. bottom: 0.02
  14516. }
  14517. },
  14518. back: {
  14519. height: math.unit(6, "feet"),
  14520. weight: math.unit(150, "lb"),
  14521. name: "Back",
  14522. image: {
  14523. source: "./media/characters/jamie-larsen/back.svg",
  14524. extra: 997 / 946
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Macro",
  14531. height: math.unit(28 + 7 / 12, "feet"),
  14532. default: true
  14533. },
  14534. {
  14535. name: "Macro+",
  14536. height: math.unit(180, "feet")
  14537. },
  14538. {
  14539. name: "Megamacro",
  14540. height: math.unit(10, "miles")
  14541. },
  14542. {
  14543. name: "Gigamacro",
  14544. height: math.unit(200000, "miles")
  14545. },
  14546. ]
  14547. ))
  14548. characterMakers.push(() => makeCharacter(
  14549. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14550. {
  14551. front: {
  14552. height: math.unit(6, "feet"),
  14553. weight: math.unit(120, "lb"),
  14554. name: "Front",
  14555. image: {
  14556. source: "./media/characters/vance/front.svg",
  14557. extra: 1980 / 1890,
  14558. bottom: 0.09
  14559. }
  14560. },
  14561. back: {
  14562. height: math.unit(6, "feet"),
  14563. weight: math.unit(120, "lb"),
  14564. name: "Back",
  14565. image: {
  14566. source: "./media/characters/vance/back.svg",
  14567. extra: 2081 / 1994,
  14568. bottom: 0.014
  14569. }
  14570. },
  14571. hand: {
  14572. height: math.unit(0.88, "feet"),
  14573. name: "Hand",
  14574. image: {
  14575. source: "./media/characters/vance/hand.svg"
  14576. }
  14577. },
  14578. foot: {
  14579. height: math.unit(0.64, "feet"),
  14580. name: "Foot",
  14581. image: {
  14582. source: "./media/characters/vance/foot.svg"
  14583. }
  14584. },
  14585. },
  14586. [
  14587. {
  14588. name: "Small",
  14589. height: math.unit(90, "feet"),
  14590. default: true
  14591. },
  14592. {
  14593. name: "Macro",
  14594. height: math.unit(100, "meters")
  14595. },
  14596. {
  14597. name: "Megamacro",
  14598. height: math.unit(15, "miles")
  14599. },
  14600. ]
  14601. ))
  14602. characterMakers.push(() => makeCharacter(
  14603. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14604. {
  14605. front: {
  14606. height: math.unit(6, "feet"),
  14607. weight: math.unit(180, "lb"),
  14608. name: "Front",
  14609. image: {
  14610. source: "./media/characters/xochitl/front.svg",
  14611. extra: 2297 / 2261,
  14612. bottom: 0.065
  14613. }
  14614. },
  14615. back: {
  14616. height: math.unit(6, "feet"),
  14617. weight: math.unit(180, "lb"),
  14618. name: "Back",
  14619. image: {
  14620. source: "./media/characters/xochitl/back.svg",
  14621. extra: 2386 / 2354,
  14622. bottom: 0.01
  14623. }
  14624. },
  14625. foot: {
  14626. height: math.unit(6 / 5 * 1.15, "feet"),
  14627. weight: math.unit(150, "lb"),
  14628. name: "Foot",
  14629. image: {
  14630. source: "./media/characters/xochitl/foot.svg"
  14631. }
  14632. },
  14633. },
  14634. [
  14635. {
  14636. name: "Macro",
  14637. height: math.unit(80, "feet")
  14638. },
  14639. {
  14640. name: "Macro+",
  14641. height: math.unit(400, "feet"),
  14642. default: true
  14643. },
  14644. {
  14645. name: "Gigamacro",
  14646. height: math.unit(80000, "miles")
  14647. },
  14648. {
  14649. name: "Gigamacro+",
  14650. height: math.unit(400000, "miles")
  14651. },
  14652. {
  14653. name: "Teramacro",
  14654. height: math.unit(300, "AU")
  14655. },
  14656. ]
  14657. ))
  14658. characterMakers.push(() => makeCharacter(
  14659. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14660. {
  14661. front: {
  14662. height: math.unit(6, "feet"),
  14663. weight: math.unit(150, "lb"),
  14664. name: "Front",
  14665. image: {
  14666. source: "./media/characters/vincent/front.svg",
  14667. extra: 1130 / 1080,
  14668. bottom: 0.055
  14669. }
  14670. },
  14671. beak: {
  14672. height: math.unit(6 * 0.1, "feet"),
  14673. name: "Beak",
  14674. image: {
  14675. source: "./media/characters/vincent/beak.svg"
  14676. }
  14677. },
  14678. hand: {
  14679. height: math.unit(6 * 0.85, "feet"),
  14680. weight: math.unit(150, "lb"),
  14681. name: "Hand",
  14682. image: {
  14683. source: "./media/characters/vincent/hand.svg"
  14684. }
  14685. },
  14686. foot: {
  14687. height: math.unit(6 * 0.19, "feet"),
  14688. weight: math.unit(150, "lb"),
  14689. name: "Foot",
  14690. image: {
  14691. source: "./media/characters/vincent/foot.svg"
  14692. }
  14693. },
  14694. },
  14695. [
  14696. {
  14697. name: "Base",
  14698. height: math.unit(6 + 5 / 12, "feet"),
  14699. default: true
  14700. },
  14701. {
  14702. name: "Macro",
  14703. height: math.unit(300, "feet")
  14704. },
  14705. {
  14706. name: "Megamacro",
  14707. height: math.unit(2, "miles")
  14708. },
  14709. {
  14710. name: "Gigamacro",
  14711. height: math.unit(1000, "miles")
  14712. },
  14713. ]
  14714. ))
  14715. characterMakers.push(() => makeCharacter(
  14716. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14717. {
  14718. front: {
  14719. height: math.unit(2, "meters"),
  14720. weight: math.unit(500, "kg"),
  14721. name: "Front",
  14722. image: {
  14723. source: "./media/characters/coatl/front.svg",
  14724. extra: 3948 / 3500,
  14725. bottom: 0.082
  14726. }
  14727. },
  14728. },
  14729. [
  14730. {
  14731. name: "Normal",
  14732. height: math.unit(4, "meters")
  14733. },
  14734. {
  14735. name: "Macro",
  14736. height: math.unit(100, "meters"),
  14737. default: true
  14738. },
  14739. {
  14740. name: "Macro+",
  14741. height: math.unit(300, "meters")
  14742. },
  14743. {
  14744. name: "Megamacro",
  14745. height: math.unit(3, "gigameters")
  14746. },
  14747. {
  14748. name: "Megamacro+",
  14749. height: math.unit(300, "terameters")
  14750. },
  14751. {
  14752. name: "Megamacro++",
  14753. height: math.unit(3, "lightyears")
  14754. },
  14755. ]
  14756. ))
  14757. characterMakers.push(() => makeCharacter(
  14758. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14759. {
  14760. front: {
  14761. height: math.unit(6, "feet"),
  14762. weight: math.unit(50, "kg"),
  14763. name: "front",
  14764. image: {
  14765. source: "./media/characters/shiroryu/front.svg",
  14766. extra: 1990 / 1935
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Mortal Mingling",
  14773. height: math.unit(3, "meters")
  14774. },
  14775. {
  14776. name: "Kaiju-ish",
  14777. height: math.unit(250, "meters")
  14778. },
  14779. {
  14780. name: "Somewhat Godly",
  14781. height: math.unit(400, "km"),
  14782. default: true
  14783. },
  14784. {
  14785. name: "Planetary",
  14786. height: math.unit(300, "megameters")
  14787. },
  14788. {
  14789. name: "Galaxy-dwarfing",
  14790. height: math.unit(450, "kiloparsecs")
  14791. },
  14792. {
  14793. name: "Universe Eater",
  14794. height: math.unit(150, "gigaparsecs")
  14795. },
  14796. {
  14797. name: "Almost Immeasurable",
  14798. height: math.unit(1.3e266, "yottaparsecs")
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14804. {
  14805. front: {
  14806. height: math.unit(6, "feet"),
  14807. weight: math.unit(150, "lb"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/umeko/front.svg",
  14811. extra: 1,
  14812. bottom: 0.019
  14813. }
  14814. },
  14815. frontArmored: {
  14816. height: math.unit(6, "feet"),
  14817. weight: math.unit(150, "lb"),
  14818. name: "Front (Armored)",
  14819. image: {
  14820. source: "./media/characters/umeko/front-armored.svg",
  14821. extra: 1,
  14822. bottom: 0.021
  14823. }
  14824. },
  14825. },
  14826. [
  14827. {
  14828. name: "Macro",
  14829. height: math.unit(220, "feet"),
  14830. default: true
  14831. },
  14832. {
  14833. name: "Guardian Dragon",
  14834. height: math.unit(50, "miles")
  14835. },
  14836. {
  14837. name: "Cosmic",
  14838. height: math.unit(800000, "miles")
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14844. {
  14845. front: {
  14846. height: math.unit(6, "feet"),
  14847. weight: math.unit(150, "lb"),
  14848. name: "Front",
  14849. image: {
  14850. source: "./media/characters/cassidy/front.svg",
  14851. extra: 810/808,
  14852. bottom: 41/851
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Canon Height",
  14859. height: math.unit(120, "feet"),
  14860. default: true
  14861. },
  14862. {
  14863. name: "Macro+",
  14864. height: math.unit(400, "feet")
  14865. },
  14866. {
  14867. name: "Macro++",
  14868. height: math.unit(4000, "feet")
  14869. },
  14870. {
  14871. name: "Megamacro",
  14872. height: math.unit(3, "miles")
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14878. {
  14879. front: {
  14880. height: math.unit(6, "feet"),
  14881. weight: math.unit(150, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/isaac/front.svg",
  14885. extra: 896 / 815,
  14886. bottom: 0.11
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Human Size",
  14893. height: math.unit(8, "feet"),
  14894. default: true
  14895. },
  14896. {
  14897. name: "Macro",
  14898. height: math.unit(400, "feet")
  14899. },
  14900. {
  14901. name: "Megamacro",
  14902. height: math.unit(50, "miles")
  14903. },
  14904. {
  14905. name: "Canon Height",
  14906. height: math.unit(200, "AU")
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14912. {
  14913. front: {
  14914. height: math.unit(6, "feet"),
  14915. weight: math.unit(72, "kg"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/sleekit/front.svg",
  14919. extra: 4693 / 4487,
  14920. bottom: 0.012
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Minimum Height",
  14927. height: math.unit(10, "meters")
  14928. },
  14929. {
  14930. name: "Smaller",
  14931. height: math.unit(25, "meters")
  14932. },
  14933. {
  14934. name: "Larger",
  14935. height: math.unit(38, "meters"),
  14936. default: true
  14937. },
  14938. {
  14939. name: "Maximum height",
  14940. height: math.unit(100, "meters")
  14941. },
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14946. {
  14947. front: {
  14948. height: math.unit(6, "feet"),
  14949. weight: math.unit(150, "lb"),
  14950. name: "Front",
  14951. image: {
  14952. source: "./media/characters/nillia/front.svg",
  14953. extra: 2195 / 2037,
  14954. bottom: 0.005
  14955. }
  14956. },
  14957. back: {
  14958. height: math.unit(6, "feet"),
  14959. weight: math.unit(150, "lb"),
  14960. name: "Back",
  14961. image: {
  14962. source: "./media/characters/nillia/back.svg",
  14963. extra: 2195 / 2037,
  14964. bottom: 0.005
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Canon Height",
  14971. height: math.unit(489, "feet"),
  14972. default: true
  14973. }
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14978. {
  14979. front: {
  14980. height: math.unit(6, "feet"),
  14981. weight: math.unit(150, "lb"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/mesmyriza/front.svg",
  14985. extra: 2067 / 1784,
  14986. bottom: 0.035
  14987. }
  14988. },
  14989. foot: {
  14990. height: math.unit(6 / (250 / 35), "feet"),
  14991. name: "Foot",
  14992. image: {
  14993. source: "./media/characters/mesmyriza/foot.svg"
  14994. }
  14995. },
  14996. },
  14997. [
  14998. {
  14999. name: "Macro",
  15000. height: math.unit(457, "meters"),
  15001. default: true
  15002. },
  15003. {
  15004. name: "Megamacro",
  15005. height: math.unit(8, "megameters")
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15011. {
  15012. front: {
  15013. height: math.unit(6, "feet"),
  15014. weight: math.unit(250, "lb"),
  15015. name: "Front",
  15016. image: {
  15017. source: "./media/characters/saudade/front.svg",
  15018. extra: 1172 / 1139,
  15019. bottom: 0.035
  15020. }
  15021. },
  15022. },
  15023. [
  15024. {
  15025. name: "Micro",
  15026. height: math.unit(3, "inches")
  15027. },
  15028. {
  15029. name: "Normal",
  15030. height: math.unit(6, "feet"),
  15031. default: true
  15032. },
  15033. {
  15034. name: "Macro",
  15035. height: math.unit(50, "feet")
  15036. },
  15037. {
  15038. name: "Megamacro",
  15039. height: math.unit(2800, "feet")
  15040. },
  15041. ]
  15042. ))
  15043. characterMakers.push(() => makeCharacter(
  15044. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15045. {
  15046. front: {
  15047. height: math.unit(5 + 4 / 12, "feet"),
  15048. weight: math.unit(100, "lb"),
  15049. name: "Front",
  15050. image: {
  15051. source: "./media/characters/keireer/front.svg",
  15052. extra: 716 / 666,
  15053. bottom: 0.05
  15054. }
  15055. },
  15056. },
  15057. [
  15058. {
  15059. name: "Normal",
  15060. height: math.unit(5 + 4 / 12, "feet"),
  15061. default: true
  15062. },
  15063. ]
  15064. ))
  15065. characterMakers.push(() => makeCharacter(
  15066. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15067. {
  15068. front: {
  15069. height: math.unit(6, "feet"),
  15070. weight: math.unit(90, "kg"),
  15071. name: "Front",
  15072. image: {
  15073. source: "./media/characters/mirja/front.svg",
  15074. extra: 1789 / 1683,
  15075. bottom: 0.05
  15076. }
  15077. },
  15078. frontDressed: {
  15079. height: math.unit(6, "feet"),
  15080. weight: math.unit(90, "lb"),
  15081. name: "Front (Dressed)",
  15082. image: {
  15083. source: "./media/characters/mirja/front-dressed.svg",
  15084. extra: 1789 / 1683,
  15085. bottom: 0.05
  15086. }
  15087. },
  15088. back: {
  15089. height: math.unit(6, "feet"),
  15090. weight: math.unit(90, "lb"),
  15091. name: "Back",
  15092. image: {
  15093. source: "./media/characters/mirja/back.svg",
  15094. extra: 953 / 917,
  15095. bottom: 0.017
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "\"Incognito\"",
  15102. height: math.unit(3, "meters")
  15103. },
  15104. {
  15105. name: "Strolling Size",
  15106. height: math.unit(15, "km")
  15107. },
  15108. {
  15109. name: "Larger Strolling Size",
  15110. height: math.unit(400, "km")
  15111. },
  15112. {
  15113. name: "Preferred Size",
  15114. height: math.unit(5000, "km")
  15115. },
  15116. {
  15117. name: "True Size",
  15118. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15119. default: true
  15120. },
  15121. ]
  15122. ))
  15123. characterMakers.push(() => makeCharacter(
  15124. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15125. {
  15126. front: {
  15127. height: math.unit(15, "feet"),
  15128. weight: math.unit(880, "kg"),
  15129. name: "Front",
  15130. image: {
  15131. source: "./media/characters/nightraver/front.svg",
  15132. extra: 2444 / 2160,
  15133. bottom: 0.027
  15134. }
  15135. },
  15136. back: {
  15137. height: math.unit(15, "feet"),
  15138. weight: math.unit(880, "kg"),
  15139. name: "Back",
  15140. image: {
  15141. source: "./media/characters/nightraver/back.svg",
  15142. extra: 2309 / 2180,
  15143. bottom: 0.005
  15144. }
  15145. },
  15146. sole: {
  15147. height: math.unit(2.878, "feet"),
  15148. name: "Sole",
  15149. image: {
  15150. source: "./media/characters/nightraver/sole.svg"
  15151. }
  15152. },
  15153. foot: {
  15154. height: math.unit(2.285, "feet"),
  15155. name: "Foot",
  15156. image: {
  15157. source: "./media/characters/nightraver/foot.svg"
  15158. }
  15159. },
  15160. maw: {
  15161. height: math.unit(2.67, "feet"),
  15162. name: "Maw",
  15163. image: {
  15164. source: "./media/characters/nightraver/maw.svg"
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Micro",
  15171. height: math.unit(1, "cm")
  15172. },
  15173. {
  15174. name: "Normal",
  15175. height: math.unit(15, "feet"),
  15176. default: true
  15177. },
  15178. {
  15179. name: "Macro",
  15180. height: math.unit(300, "feet")
  15181. },
  15182. {
  15183. name: "Megamacro",
  15184. height: math.unit(300, "miles")
  15185. },
  15186. {
  15187. name: "Gigamacro",
  15188. height: math.unit(10000, "miles")
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15194. {
  15195. side: {
  15196. height: math.unit(2, "inches"),
  15197. weight: math.unit(5, "grams"),
  15198. name: "Side",
  15199. image: {
  15200. source: "./media/characters/arc/side.svg"
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Micro",
  15207. height: math.unit(2, "inches"),
  15208. default: true
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(1.1938, "meters"),
  15217. weight: math.unit(54, "kg"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/nebula-shahar/front.svg",
  15221. extra: 1642 / 1436,
  15222. bottom: 0.06
  15223. }
  15224. },
  15225. },
  15226. [
  15227. {
  15228. name: "Megamicro",
  15229. height: math.unit(0.3, "mm")
  15230. },
  15231. {
  15232. name: "Micro",
  15233. height: math.unit(3, "cm")
  15234. },
  15235. {
  15236. name: "Normal",
  15237. height: math.unit(138, "cm"),
  15238. default: true
  15239. },
  15240. {
  15241. name: "Macro",
  15242. height: math.unit(30, "m")
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15248. {
  15249. front: {
  15250. height: math.unit(5.24, "feet"),
  15251. weight: math.unit(150, "lb"),
  15252. name: "Front",
  15253. image: {
  15254. source: "./media/characters/shayla/front.svg",
  15255. extra: 1512 / 1414,
  15256. bottom: 0.01
  15257. }
  15258. },
  15259. back: {
  15260. height: math.unit(5.24, "feet"),
  15261. weight: math.unit(150, "lb"),
  15262. name: "Back",
  15263. image: {
  15264. source: "./media/characters/shayla/back.svg",
  15265. extra: 1512 / 1414
  15266. }
  15267. },
  15268. hand: {
  15269. height: math.unit(0.7781496062992126, "feet"),
  15270. name: "Hand",
  15271. image: {
  15272. source: "./media/characters/shayla/hand.svg"
  15273. }
  15274. },
  15275. foot: {
  15276. height: math.unit(1.4206036745406823, "feet"),
  15277. name: "Foot",
  15278. image: {
  15279. source: "./media/characters/shayla/foot.svg"
  15280. }
  15281. },
  15282. },
  15283. [
  15284. {
  15285. name: "Micro",
  15286. height: math.unit(0.32, "feet")
  15287. },
  15288. {
  15289. name: "Normal",
  15290. height: math.unit(5.24, "feet"),
  15291. default: true
  15292. },
  15293. {
  15294. name: "Macro",
  15295. height: math.unit(492.12, "feet")
  15296. },
  15297. {
  15298. name: "Megamacro",
  15299. height: math.unit(186.41, "miles")
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15305. {
  15306. front: {
  15307. height: math.unit(2.2, "m"),
  15308. weight: math.unit(120, "kg"),
  15309. name: "Front",
  15310. image: {
  15311. source: "./media/characters/pia-jr/front.svg",
  15312. extra: 1000 / 970,
  15313. bottom: 0.035
  15314. }
  15315. },
  15316. hand: {
  15317. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15318. name: "Hand",
  15319. image: {
  15320. source: "./media/characters/pia-jr/hand.svg"
  15321. }
  15322. },
  15323. paw: {
  15324. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15325. name: "Paw",
  15326. image: {
  15327. source: "./media/characters/pia-jr/paw.svg"
  15328. }
  15329. },
  15330. },
  15331. [
  15332. {
  15333. name: "Micro",
  15334. height: math.unit(1.2, "cm")
  15335. },
  15336. {
  15337. name: "Normal",
  15338. height: math.unit(2.2, "m"),
  15339. default: true
  15340. },
  15341. {
  15342. name: "Macro",
  15343. height: math.unit(180, "m")
  15344. },
  15345. {
  15346. name: "Megamacro",
  15347. height: math.unit(420, "km")
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15353. {
  15354. front: {
  15355. height: math.unit(2, "m"),
  15356. weight: math.unit(115, "kg"),
  15357. name: "Front",
  15358. image: {
  15359. source: "./media/characters/pia-sr/front.svg",
  15360. extra: 760 / 730,
  15361. bottom: 0.015
  15362. }
  15363. },
  15364. back: {
  15365. height: math.unit(2, "m"),
  15366. weight: math.unit(115, "kg"),
  15367. name: "Back",
  15368. image: {
  15369. source: "./media/characters/pia-sr/back.svg",
  15370. extra: 760 / 730,
  15371. bottom: 0.01
  15372. }
  15373. },
  15374. hand: {
  15375. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15376. name: "Hand",
  15377. image: {
  15378. source: "./media/characters/pia-sr/hand.svg"
  15379. }
  15380. },
  15381. foot: {
  15382. height: math.unit(1.83, "feet"),
  15383. name: "Foot",
  15384. image: {
  15385. source: "./media/characters/pia-sr/foot.svg"
  15386. }
  15387. },
  15388. },
  15389. [
  15390. {
  15391. name: "Micro",
  15392. height: math.unit(88, "mm")
  15393. },
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(2, "m"),
  15397. default: true
  15398. },
  15399. {
  15400. name: "Macro",
  15401. height: math.unit(200, "m")
  15402. },
  15403. {
  15404. name: "Megamacro",
  15405. height: math.unit(420, "km")
  15406. },
  15407. ]
  15408. ))
  15409. characterMakers.push(() => makeCharacter(
  15410. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15411. {
  15412. front: {
  15413. height: math.unit(8 + 2 / 12, "feet"),
  15414. weight: math.unit(300, "lb"),
  15415. name: "Front",
  15416. image: {
  15417. source: "./media/characters/kibibyte/front.svg",
  15418. extra: 2221 / 2098,
  15419. bottom: 0.04
  15420. }
  15421. },
  15422. },
  15423. [
  15424. {
  15425. name: "Normal",
  15426. height: math.unit(8 + 2 / 12, "feet"),
  15427. default: true
  15428. },
  15429. {
  15430. name: "Socialable Macro",
  15431. height: math.unit(50, "feet")
  15432. },
  15433. {
  15434. name: "Macro",
  15435. height: math.unit(300, "feet")
  15436. },
  15437. {
  15438. name: "Megamacro",
  15439. height: math.unit(500, "miles")
  15440. },
  15441. ]
  15442. ))
  15443. characterMakers.push(() => makeCharacter(
  15444. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15445. {
  15446. front: {
  15447. height: math.unit(6, "feet"),
  15448. weight: math.unit(150, "lb"),
  15449. name: "Front",
  15450. image: {
  15451. source: "./media/characters/felix/front.svg",
  15452. extra: 762 / 722,
  15453. bottom: 0.02
  15454. }
  15455. },
  15456. frontClothed: {
  15457. height: math.unit(6, "feet"),
  15458. weight: math.unit(150, "lb"),
  15459. name: "Front (Clothed)",
  15460. image: {
  15461. source: "./media/characters/felix/front-clothed.svg",
  15462. extra: 762 / 722,
  15463. bottom: 0.02
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(6 + 8 / 12, "feet"),
  15471. default: true
  15472. },
  15473. {
  15474. name: "Macro",
  15475. height: math.unit(2600, "feet")
  15476. },
  15477. {
  15478. name: "Megamacro",
  15479. height: math.unit(450, "miles")
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15485. {
  15486. front: {
  15487. height: math.unit(6 + 1 / 12, "feet"),
  15488. weight: math.unit(250, "lb"),
  15489. name: "Front",
  15490. image: {
  15491. source: "./media/characters/tobo/front.svg",
  15492. extra: 608 / 586,
  15493. bottom: 0.023
  15494. }
  15495. },
  15496. back: {
  15497. height: math.unit(6 + 1 / 12, "feet"),
  15498. weight: math.unit(250, "lb"),
  15499. name: "Back",
  15500. image: {
  15501. source: "./media/characters/tobo/back.svg",
  15502. extra: 608 / 586
  15503. }
  15504. },
  15505. },
  15506. [
  15507. {
  15508. name: "Nano",
  15509. height: math.unit(2, "nm")
  15510. },
  15511. {
  15512. name: "Megamicro",
  15513. height: math.unit(0.1, "mm")
  15514. },
  15515. {
  15516. name: "Micro",
  15517. height: math.unit(1, "inch"),
  15518. default: true
  15519. },
  15520. {
  15521. name: "Human-sized",
  15522. height: math.unit(6 + 1 / 12, "feet")
  15523. },
  15524. {
  15525. name: "Macro",
  15526. height: math.unit(250, "feet")
  15527. },
  15528. {
  15529. name: "Megamacro",
  15530. height: math.unit(75, "miles")
  15531. },
  15532. {
  15533. name: "Texas-sized",
  15534. height: math.unit(750, "miles")
  15535. },
  15536. {
  15537. name: "Teramacro",
  15538. height: math.unit(50000, "miles")
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15544. {
  15545. front: {
  15546. height: math.unit(6, "feet"),
  15547. weight: math.unit(269, "lb"),
  15548. name: "Front",
  15549. image: {
  15550. source: "./media/characters/danny-kapowsky/front.svg",
  15551. extra: 766 / 736,
  15552. bottom: 0.044
  15553. }
  15554. },
  15555. back: {
  15556. height: math.unit(6, "feet"),
  15557. weight: math.unit(269, "lb"),
  15558. name: "Back",
  15559. image: {
  15560. source: "./media/characters/danny-kapowsky/back.svg",
  15561. extra: 797 / 760,
  15562. bottom: 0.025
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Macro",
  15569. height: math.unit(150, "feet"),
  15570. default: true
  15571. },
  15572. {
  15573. name: "Macro+",
  15574. height: math.unit(200, "feet")
  15575. },
  15576. {
  15577. name: "Macro++",
  15578. height: math.unit(300, "feet")
  15579. },
  15580. {
  15581. name: "Macro+++",
  15582. height: math.unit(400, "feet")
  15583. },
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15588. {
  15589. side: {
  15590. height: math.unit(6, "feet"),
  15591. weight: math.unit(170, "lb"),
  15592. name: "Side",
  15593. image: {
  15594. source: "./media/characters/finn/side.svg",
  15595. extra: 1953 / 1807,
  15596. bottom: 0.057
  15597. }
  15598. },
  15599. },
  15600. [
  15601. {
  15602. name: "Megamacro",
  15603. height: math.unit(14445, "feet"),
  15604. default: true
  15605. },
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15610. {
  15611. front: {
  15612. height: math.unit(5 + 6 / 12, "feet"),
  15613. weight: math.unit(125, "lb"),
  15614. name: "Front",
  15615. image: {
  15616. source: "./media/characters/roy/front.svg",
  15617. extra: 1,
  15618. bottom: 0.11
  15619. }
  15620. },
  15621. },
  15622. [
  15623. {
  15624. name: "Micro",
  15625. height: math.unit(3, "inches"),
  15626. default: true
  15627. },
  15628. {
  15629. name: "Normal",
  15630. height: math.unit(5 + 6 / 12, "feet")
  15631. },
  15632. {
  15633. name: "Lesser Macro",
  15634. height: math.unit(60, "feet")
  15635. },
  15636. {
  15637. name: "Greater Macro",
  15638. height: math.unit(120, "feet")
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(6, "feet"),
  15647. weight: math.unit(100, "lb"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/aevsivs/front.svg",
  15651. extra: 1,
  15652. bottom: 0.03
  15653. }
  15654. },
  15655. back: {
  15656. height: math.unit(6, "feet"),
  15657. weight: math.unit(100, "lb"),
  15658. name: "Back",
  15659. image: {
  15660. source: "./media/characters/aevsivs/back.svg"
  15661. }
  15662. },
  15663. },
  15664. [
  15665. {
  15666. name: "Micro",
  15667. height: math.unit(2, "inches"),
  15668. default: true
  15669. },
  15670. {
  15671. name: "Normal",
  15672. height: math.unit(5, "feet")
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15678. {
  15679. front: {
  15680. height: math.unit(5 + 7 / 12, "feet"),
  15681. weight: math.unit(159, "lb"),
  15682. name: "Front",
  15683. image: {
  15684. source: "./media/characters/hildegard/front.svg",
  15685. extra: 289 / 269,
  15686. bottom: 7.63 / 297.8
  15687. }
  15688. },
  15689. back: {
  15690. height: math.unit(5 + 7 / 12, "feet"),
  15691. weight: math.unit(159, "lb"),
  15692. name: "Back",
  15693. image: {
  15694. source: "./media/characters/hildegard/back.svg",
  15695. extra: 280 / 260,
  15696. bottom: 2.3 / 282
  15697. }
  15698. },
  15699. },
  15700. [
  15701. {
  15702. name: "Normal",
  15703. height: math.unit(5 + 7 / 12, "feet"),
  15704. default: true
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15710. {
  15711. bernard: {
  15712. height: math.unit(2 + 7 / 12, "feet"),
  15713. weight: math.unit(66, "lb"),
  15714. name: "Bernard",
  15715. rename: true,
  15716. image: {
  15717. source: "./media/characters/bernard-wilder/bernard.svg",
  15718. extra: 192 / 128,
  15719. bottom: 0.05
  15720. }
  15721. },
  15722. wilder: {
  15723. height: math.unit(5 + 8 / 12, "feet"),
  15724. weight: math.unit(143, "lb"),
  15725. name: "Wilder",
  15726. rename: true,
  15727. image: {
  15728. source: "./media/characters/bernard-wilder/wilder.svg",
  15729. extra: 361 / 312,
  15730. bottom: 0.02
  15731. }
  15732. },
  15733. },
  15734. [
  15735. {
  15736. name: "Normal",
  15737. height: math.unit(2 + 7 / 12, "feet"),
  15738. default: true
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15744. {
  15745. anthro: {
  15746. height: math.unit(6 + 1 / 12, "feet"),
  15747. weight: math.unit(155, "lb"),
  15748. name: "Anthro",
  15749. image: {
  15750. source: "./media/characters/hearth/anthro.svg",
  15751. extra: 1178/1136,
  15752. bottom: 28/1206
  15753. }
  15754. },
  15755. feral: {
  15756. height: math.unit(3.78, "feet"),
  15757. weight: math.unit(35, "kg"),
  15758. name: "Feral",
  15759. image: {
  15760. source: "./media/characters/hearth/feral.svg",
  15761. extra: 153 / 135,
  15762. bottom: 0.03
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Normal",
  15769. height: math.unit(6 + 1 / 12, "feet"),
  15770. default: true
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15776. {
  15777. front: {
  15778. height: math.unit(6, "feet"),
  15779. weight: math.unit(182, "lb"),
  15780. name: "Front",
  15781. image: {
  15782. source: "./media/characters/ingrid/front.svg",
  15783. extra: 294 / 268,
  15784. bottom: 0.027
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Normal",
  15791. height: math.unit(6, "feet"),
  15792. default: true
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15798. {
  15799. eevee: {
  15800. height: math.unit(2 + 10 / 12, "feet"),
  15801. weight: math.unit(86, "lb"),
  15802. name: "Malgam",
  15803. image: {
  15804. source: "./media/characters/malgam/eevee.svg",
  15805. extra: 952/784,
  15806. bottom: 38/990
  15807. }
  15808. },
  15809. sylveon: {
  15810. height: math.unit(4, "feet"),
  15811. weight: math.unit(101, "lb"),
  15812. name: "Future Malgam",
  15813. rename: true,
  15814. image: {
  15815. source: "./media/characters/malgam/sylveon.svg",
  15816. extra: 371 / 325,
  15817. bottom: 0.015
  15818. }
  15819. },
  15820. gigantamax: {
  15821. height: math.unit(50, "feet"),
  15822. name: "Gigantamax Malgam",
  15823. rename: true,
  15824. image: {
  15825. source: "./media/characters/malgam/gigantamax.svg"
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Normal",
  15832. height: math.unit(2 + 10 / 12, "feet"),
  15833. default: true
  15834. },
  15835. ]
  15836. ))
  15837. characterMakers.push(() => makeCharacter(
  15838. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15839. {
  15840. front: {
  15841. height: math.unit(5 + 11 / 12, "feet"),
  15842. weight: math.unit(188, "lb"),
  15843. name: "Front",
  15844. image: {
  15845. source: "./media/characters/fleur/front.svg",
  15846. extra: 309 / 283,
  15847. bottom: 0.007
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Normal",
  15854. height: math.unit(5 + 11 / 12, "feet"),
  15855. default: true
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15861. {
  15862. front: {
  15863. height: math.unit(5 + 4 / 12, "feet"),
  15864. weight: math.unit(122, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/jude/front.svg",
  15868. extra: 288 / 273,
  15869. bottom: 0.03
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(5 + 4 / 12, "feet"),
  15877. default: true
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15883. {
  15884. front: {
  15885. height: math.unit(5 + 11 / 12, "feet"),
  15886. weight: math.unit(190, "lb"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/seara/front.svg",
  15890. extra: 1,
  15891. bottom: 0.05
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(5 + 11 / 12, "feet"),
  15899. default: true
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(16 + 5 / 12, "feet"),
  15908. weight: math.unit(524, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/caspian-lugia/front.svg",
  15912. extra: 1,
  15913. bottom: 0.04
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Normal",
  15920. height: math.unit(16 + 5 / 12, "feet"),
  15921. default: true
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15927. {
  15928. front: {
  15929. height: math.unit(5 + 7 / 12, "feet"),
  15930. weight: math.unit(170, "lb"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/mika/front.svg",
  15934. extra: 1,
  15935. bottom: 0.016
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(5 + 7 / 12, "feet"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(6 + 2 / 12, "feet"),
  15952. weight: math.unit(268, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/sol/front.svg",
  15956. extra: 247 / 231,
  15957. bottom: 0.05
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Normal",
  15964. height: math.unit(6 + 2 / 12, "feet"),
  15965. default: true
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15971. {
  15972. buizel: {
  15973. height: math.unit(2 + 5 / 12, "feet"),
  15974. weight: math.unit(87, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/umiko/buizel.svg",
  15978. extra: 172 / 157,
  15979. bottom: 0.01
  15980. },
  15981. form: "buizel",
  15982. default: true
  15983. },
  15984. floatzel: {
  15985. height: math.unit(5 + 9 / 12, "feet"),
  15986. weight: math.unit(250, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/umiko/floatzel.svg",
  15990. extra: 1076/1006,
  15991. bottom: 15/1091
  15992. },
  15993. form: "floatzel",
  15994. default: true
  15995. },
  15996. },
  15997. [
  15998. {
  15999. name: "Normal",
  16000. height: math.unit(2 + 5 / 12, "feet"),
  16001. form: "buizel",
  16002. default: true
  16003. },
  16004. {
  16005. name: "Normal",
  16006. height: math.unit(5 + 9 / 12, "feet"),
  16007. form: "floatzel",
  16008. default: true
  16009. },
  16010. ],
  16011. {
  16012. "buizel": {
  16013. name: "Buizel"
  16014. },
  16015. "floatzel": {
  16016. name: "Floatzel",
  16017. default: true
  16018. }
  16019. }
  16020. ))
  16021. characterMakers.push(() => makeCharacter(
  16022. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16023. {
  16024. front: {
  16025. height: math.unit(6 + 2 / 12, "feet"),
  16026. weight: math.unit(146, "lb"),
  16027. name: "Front",
  16028. image: {
  16029. source: "./media/characters/iliac/front.svg",
  16030. extra: 389 / 365,
  16031. bottom: 0.035
  16032. }
  16033. },
  16034. },
  16035. [
  16036. {
  16037. name: "Normal",
  16038. height: math.unit(6 + 2 / 12, "feet"),
  16039. default: true
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16045. {
  16046. front: {
  16047. height: math.unit(6, "feet"),
  16048. weight: math.unit(170, "lb"),
  16049. name: "Front",
  16050. image: {
  16051. source: "./media/characters/topaz/front.svg",
  16052. extra: 317 / 303,
  16053. bottom: 0.055
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Normal",
  16060. height: math.unit(6, "feet"),
  16061. default: true
  16062. },
  16063. ]
  16064. ))
  16065. characterMakers.push(() => makeCharacter(
  16066. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16067. {
  16068. front: {
  16069. height: math.unit(5 + 11 / 12, "feet"),
  16070. weight: math.unit(144, "lb"),
  16071. name: "Front",
  16072. image: {
  16073. source: "./media/characters/gabriel/front.svg",
  16074. extra: 285 / 262,
  16075. bottom: 0.004
  16076. }
  16077. },
  16078. },
  16079. [
  16080. {
  16081. name: "Normal",
  16082. height: math.unit(5 + 11 / 12, "feet"),
  16083. default: true
  16084. },
  16085. ]
  16086. ))
  16087. characterMakers.push(() => makeCharacter(
  16088. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16089. {
  16090. side: {
  16091. height: math.unit(6 + 5 / 12, "feet"),
  16092. weight: math.unit(300, "lb"),
  16093. name: "Side",
  16094. image: {
  16095. source: "./media/characters/tempest-suicune/side.svg",
  16096. extra: 195 / 154,
  16097. bottom: 0.04
  16098. }
  16099. },
  16100. },
  16101. [
  16102. {
  16103. name: "Normal",
  16104. height: math.unit(6 + 5 / 12, "feet"),
  16105. default: true
  16106. },
  16107. ]
  16108. ))
  16109. characterMakers.push(() => makeCharacter(
  16110. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16111. {
  16112. front: {
  16113. height: math.unit(7 + 2 / 12, "feet"),
  16114. weight: math.unit(322, "lb"),
  16115. name: "Front",
  16116. image: {
  16117. source: "./media/characters/vulcan/front.svg",
  16118. extra: 154 / 147,
  16119. bottom: 0.04
  16120. }
  16121. },
  16122. },
  16123. [
  16124. {
  16125. name: "Normal",
  16126. height: math.unit(7 + 2 / 12, "feet"),
  16127. default: true
  16128. },
  16129. ]
  16130. ))
  16131. characterMakers.push(() => makeCharacter(
  16132. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16133. {
  16134. front: {
  16135. height: math.unit(5 + 10 / 12, "feet"),
  16136. weight: math.unit(264, "lb"),
  16137. name: "Front",
  16138. image: {
  16139. source: "./media/characters/gault/front.svg",
  16140. extra: 161 / 140,
  16141. bottom: 0.028
  16142. }
  16143. },
  16144. },
  16145. [
  16146. {
  16147. name: "Normal",
  16148. height: math.unit(5 + 10 / 12, "feet"),
  16149. default: true
  16150. },
  16151. ]
  16152. ))
  16153. characterMakers.push(() => makeCharacter(
  16154. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16155. {
  16156. front: {
  16157. height: math.unit(6, "feet"),
  16158. weight: math.unit(150, "lb"),
  16159. name: "Front",
  16160. image: {
  16161. source: "./media/characters/shard/front.svg",
  16162. extra: 273 / 238,
  16163. bottom: 0.02
  16164. }
  16165. },
  16166. },
  16167. [
  16168. {
  16169. name: "Normal",
  16170. height: math.unit(3 + 6 / 12, "feet"),
  16171. default: true
  16172. },
  16173. ]
  16174. ))
  16175. characterMakers.push(() => makeCharacter(
  16176. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16177. {
  16178. front: {
  16179. height: math.unit(5 + 11 / 12, "feet"),
  16180. weight: math.unit(146, "lb"),
  16181. name: "Front",
  16182. image: {
  16183. source: "./media/characters/ashe/front.svg",
  16184. extra: 400 / 373,
  16185. bottom: 0.01
  16186. }
  16187. },
  16188. },
  16189. [
  16190. {
  16191. name: "Normal",
  16192. height: math.unit(5 + 11 / 12, "feet"),
  16193. default: true
  16194. },
  16195. ]
  16196. ))
  16197. characterMakers.push(() => makeCharacter(
  16198. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16199. {
  16200. front: {
  16201. height: math.unit(5 + 5 / 12, "feet"),
  16202. weight: math.unit(135, "lb"),
  16203. name: "Front",
  16204. image: {
  16205. source: "./media/characters/beatrix/front.svg",
  16206. extra: 392 / 379,
  16207. bottom: 0.01
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Normal",
  16214. height: math.unit(6, "feet"),
  16215. default: true
  16216. },
  16217. ]
  16218. ))
  16219. characterMakers.push(() => makeCharacter(
  16220. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16221. {
  16222. front: {
  16223. height: math.unit(6 + 2/12, "feet"),
  16224. weight: math.unit(135, "lb"),
  16225. name: "Front",
  16226. image: {
  16227. source: "./media/characters/ignatius/front.svg",
  16228. extra: 1380/1259,
  16229. bottom: 27/1407
  16230. }
  16231. },
  16232. },
  16233. [
  16234. {
  16235. name: "Normal",
  16236. height: math.unit(6 + 2/12, "feet"),
  16237. default: true
  16238. },
  16239. ]
  16240. ))
  16241. characterMakers.push(() => makeCharacter(
  16242. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16243. {
  16244. front: {
  16245. height: math.unit(6 + 2 / 12, "feet"),
  16246. weight: math.unit(138, "lb"),
  16247. name: "Front",
  16248. image: {
  16249. source: "./media/characters/mei-li/front.svg",
  16250. extra: 237 / 229,
  16251. bottom: 0.03
  16252. }
  16253. },
  16254. },
  16255. [
  16256. {
  16257. name: "Normal",
  16258. height: math.unit(6 + 2 / 12, "feet"),
  16259. default: true
  16260. },
  16261. ]
  16262. ))
  16263. characterMakers.push(() => makeCharacter(
  16264. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16265. {
  16266. front: {
  16267. height: math.unit(2 + 4 / 12, "feet"),
  16268. weight: math.unit(62, "lb"),
  16269. name: "Front",
  16270. image: {
  16271. source: "./media/characters/puru/front.svg",
  16272. extra: 206 / 149,
  16273. bottom: 0.06
  16274. }
  16275. },
  16276. },
  16277. [
  16278. {
  16279. name: "Normal",
  16280. height: math.unit(2 + 4 / 12, "feet"),
  16281. default: true
  16282. },
  16283. ]
  16284. ))
  16285. characterMakers.push(() => makeCharacter(
  16286. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16287. {
  16288. anthro: {
  16289. height: math.unit(5 + 8/12, "feet"),
  16290. weight: math.unit(200, "lb"),
  16291. energyNeed: math.unit(2000, "kcal"),
  16292. name: "Anthro",
  16293. image: {
  16294. source: "./media/characters/kee/anthro.svg",
  16295. extra: 3251/3184,
  16296. bottom: 250/3501
  16297. }
  16298. },
  16299. taur: {
  16300. height: math.unit(11, "feet"),
  16301. weight: math.unit(500, "lb"),
  16302. energyNeed: math.unit(5000, "kcal"),
  16303. name: "Taur",
  16304. image: {
  16305. source: "./media/characters/kee/taur.svg",
  16306. extra: 1362/1320,
  16307. bottom: 83/1445
  16308. }
  16309. },
  16310. },
  16311. [
  16312. {
  16313. name: "Normal",
  16314. height: math.unit(5 + 8/12, "feet"),
  16315. default: true
  16316. },
  16317. {
  16318. name: "Macro",
  16319. height: math.unit(35, "feet")
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16325. {
  16326. anthro: {
  16327. height: math.unit(7, "feet"),
  16328. weight: math.unit(190, "lb"),
  16329. name: "Anthro",
  16330. image: {
  16331. source: "./media/characters/cobalt-dracha/anthro.svg",
  16332. extra: 231 / 225,
  16333. bottom: 0.04
  16334. }
  16335. },
  16336. feral: {
  16337. height: math.unit(9 + 7 / 12, "feet"),
  16338. weight: math.unit(294, "lb"),
  16339. name: "Feral",
  16340. image: {
  16341. source: "./media/characters/cobalt-dracha/feral.svg",
  16342. extra: 692 / 633,
  16343. bottom: 0.05
  16344. }
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Normal",
  16350. height: math.unit(7, "feet"),
  16351. default: true
  16352. },
  16353. ]
  16354. ))
  16355. characterMakers.push(() => makeCharacter(
  16356. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16357. {
  16358. fallen: {
  16359. height: math.unit(11 + 8 / 12, "feet"),
  16360. weight: math.unit(485, "lb"),
  16361. name: "Java (Fallen)",
  16362. rename: true,
  16363. image: {
  16364. source: "./media/characters/java/fallen.svg",
  16365. extra: 226 / 208,
  16366. bottom: 0.005
  16367. }
  16368. },
  16369. godkin: {
  16370. height: math.unit(10 + 6 / 12, "feet"),
  16371. weight: math.unit(328, "lb"),
  16372. name: "Java (Godkin)",
  16373. rename: true,
  16374. image: {
  16375. source: "./media/characters/java/godkin.svg",
  16376. extra: 1104/1068,
  16377. bottom: 36/1140
  16378. }
  16379. },
  16380. },
  16381. [
  16382. {
  16383. name: "Normal",
  16384. height: math.unit(11 + 8 / 12, "feet"),
  16385. default: true
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16391. {
  16392. front: {
  16393. height: math.unit(5 + 9 / 12, "feet"),
  16394. weight: math.unit(170, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/purna/front.svg",
  16398. extra: 239 / 229,
  16399. bottom: 0.01
  16400. }
  16401. },
  16402. },
  16403. [
  16404. {
  16405. name: "Normal",
  16406. height: math.unit(5 + 9 / 12, "feet"),
  16407. default: true
  16408. },
  16409. ]
  16410. ))
  16411. characterMakers.push(() => makeCharacter(
  16412. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16413. {
  16414. front: {
  16415. height: math.unit(5 + 9 / 12, "feet"),
  16416. weight: math.unit(142, "lb"),
  16417. name: "Front",
  16418. image: {
  16419. source: "./media/characters/kuva/front.svg",
  16420. extra: 281 / 271,
  16421. bottom: 0.006
  16422. }
  16423. },
  16424. },
  16425. [
  16426. {
  16427. name: "Normal",
  16428. height: math.unit(5 + 9 / 12, "feet"),
  16429. default: true
  16430. },
  16431. ]
  16432. ))
  16433. characterMakers.push(() => makeCharacter(
  16434. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16435. {
  16436. anthro: {
  16437. height: math.unit(9 + 2 / 12, "feet"),
  16438. weight: math.unit(270, "lb"),
  16439. name: "Anthro",
  16440. image: {
  16441. source: "./media/characters/embra/anthro.svg",
  16442. extra: 200 / 187,
  16443. bottom: 0.02
  16444. }
  16445. },
  16446. feral: {
  16447. height: math.unit(18 + 8 / 12, "feet"),
  16448. weight: math.unit(576, "lb"),
  16449. name: "Feral",
  16450. image: {
  16451. source: "./media/characters/embra/feral.svg",
  16452. extra: 152 / 137,
  16453. bottom: 0.037
  16454. }
  16455. },
  16456. },
  16457. [
  16458. {
  16459. name: "Normal",
  16460. height: math.unit(9 + 2 / 12, "feet"),
  16461. default: true
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16467. {
  16468. anthro: {
  16469. height: math.unit(10 + 9 / 12, "feet"),
  16470. weight: math.unit(224, "lb"),
  16471. name: "Anthro",
  16472. image: {
  16473. source: "./media/characters/grottos/anthro.svg",
  16474. extra: 350 / 332,
  16475. bottom: 0.045
  16476. }
  16477. },
  16478. feral: {
  16479. height: math.unit(20 + 7 / 12, "feet"),
  16480. weight: math.unit(629, "lb"),
  16481. name: "Feral",
  16482. image: {
  16483. source: "./media/characters/grottos/feral.svg",
  16484. extra: 207 / 190,
  16485. bottom: 0.05
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Normal",
  16492. height: math.unit(10 + 9 / 12, "feet"),
  16493. default: true
  16494. },
  16495. ]
  16496. ))
  16497. characterMakers.push(() => makeCharacter(
  16498. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16499. {
  16500. anthro: {
  16501. height: math.unit(9 + 6 / 12, "feet"),
  16502. weight: math.unit(298, "lb"),
  16503. name: "Anthro",
  16504. image: {
  16505. source: "./media/characters/frifna/anthro.svg",
  16506. extra: 282 / 269,
  16507. bottom: 0.015
  16508. }
  16509. },
  16510. feral: {
  16511. height: math.unit(16 + 2 / 12, "feet"),
  16512. weight: math.unit(624, "lb"),
  16513. name: "Feral",
  16514. image: {
  16515. source: "./media/characters/frifna/feral.svg"
  16516. }
  16517. },
  16518. },
  16519. [
  16520. {
  16521. name: "Normal",
  16522. height: math.unit(9 + 6 / 12, "feet"),
  16523. default: true
  16524. },
  16525. ]
  16526. ))
  16527. characterMakers.push(() => makeCharacter(
  16528. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16529. {
  16530. front: {
  16531. height: math.unit(6 + 2 / 12, "feet"),
  16532. weight: math.unit(168, "lb"),
  16533. name: "Front",
  16534. image: {
  16535. source: "./media/characters/elise/front.svg",
  16536. extra: 276 / 271
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(6 + 2 / 12, "feet"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16550. {
  16551. front: {
  16552. height: math.unit(5 + 10 / 12, "feet"),
  16553. weight: math.unit(210, "lb"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/glade/front.svg",
  16557. extra: 258 / 247,
  16558. bottom: 0.008
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Normal",
  16565. height: math.unit(5 + 10 / 12, "feet"),
  16566. default: true
  16567. },
  16568. ]
  16569. ))
  16570. characterMakers.push(() => makeCharacter(
  16571. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16572. {
  16573. front: {
  16574. height: math.unit(5 + 10 / 12, "feet"),
  16575. weight: math.unit(129, "lb"),
  16576. name: "Front",
  16577. image: {
  16578. source: "./media/characters/rina/front.svg",
  16579. extra: 266 / 255,
  16580. bottom: 0.005
  16581. }
  16582. },
  16583. },
  16584. [
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(5 + 10 / 12, "feet"),
  16588. default: true
  16589. },
  16590. ]
  16591. ))
  16592. characterMakers.push(() => makeCharacter(
  16593. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16594. {
  16595. front: {
  16596. height: math.unit(6 + 1 / 12, "feet"),
  16597. weight: math.unit(192, "lb"),
  16598. name: "Front",
  16599. image: {
  16600. source: "./media/characters/veronica/front.svg",
  16601. extra: 319 / 309,
  16602. bottom: 0.005
  16603. }
  16604. },
  16605. },
  16606. [
  16607. {
  16608. name: "Normal",
  16609. height: math.unit(6 + 1 / 12, "feet"),
  16610. default: true
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16616. {
  16617. front: {
  16618. height: math.unit(9 + 3 / 12, "feet"),
  16619. weight: math.unit(1100, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/braxton/front.svg",
  16623. extra: 1057 / 984,
  16624. bottom: 0.05
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(9 + 3 / 12, "feet")
  16632. },
  16633. {
  16634. name: "Giant",
  16635. height: math.unit(300, "feet"),
  16636. default: true
  16637. },
  16638. {
  16639. name: "Macro",
  16640. height: math.unit(700, "feet")
  16641. },
  16642. {
  16643. name: "Megamacro",
  16644. height: math.unit(6000, "feet")
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16650. {
  16651. front: {
  16652. height: math.unit(6 + 7 / 12, "feet"),
  16653. weight: math.unit(150, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/blue-feyonics/front.svg",
  16657. extra: 1403 / 1306,
  16658. bottom: 0.047
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Normal",
  16665. height: math.unit(6 + 7 / 12, "feet"),
  16666. default: true
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16672. {
  16673. front: {
  16674. height: math.unit(1.8, "meters"),
  16675. weight: math.unit(60, "kg"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/maxwell/front.svg",
  16679. extra: 2060 / 1873
  16680. }
  16681. },
  16682. },
  16683. [
  16684. {
  16685. name: "Micro",
  16686. height: math.unit(1, "mm")
  16687. },
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(1.8, "meter"),
  16691. default: true
  16692. },
  16693. {
  16694. name: "Macro",
  16695. height: math.unit(30, "meters")
  16696. },
  16697. {
  16698. name: "Megamacro",
  16699. height: math.unit(10, "km")
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16705. {
  16706. front: {
  16707. height: math.unit(6, "feet"),
  16708. weight: math.unit(150, "lb"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/jack/front.svg",
  16712. extra: 1754 / 1640,
  16713. bottom: 0.01
  16714. }
  16715. },
  16716. },
  16717. [
  16718. {
  16719. name: "Normal",
  16720. height: math.unit(80000, "feet"),
  16721. default: true
  16722. },
  16723. {
  16724. name: "Max size",
  16725. height: math.unit(10, "lightyears")
  16726. },
  16727. ]
  16728. ))
  16729. characterMakers.push(() => makeCharacter(
  16730. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16731. {
  16732. urban: {
  16733. height: math.unit(5, "feet"),
  16734. weight: math.unit(240, "lb"),
  16735. name: "Urban",
  16736. image: {
  16737. source: "./media/characters/cafat/urban.svg",
  16738. extra: 1223/1126,
  16739. bottom: 205/1428
  16740. }
  16741. },
  16742. summer: {
  16743. height: math.unit(5, "feet"),
  16744. weight: math.unit(240, "lb"),
  16745. name: "Summer",
  16746. image: {
  16747. source: "./media/characters/cafat/summer.svg",
  16748. extra: 1223/1126,
  16749. bottom: 205/1428
  16750. }
  16751. },
  16752. winter: {
  16753. height: math.unit(5, "feet"),
  16754. weight: math.unit(240, "lb"),
  16755. name: "Winter",
  16756. image: {
  16757. source: "./media/characters/cafat/winter.svg",
  16758. extra: 1223/1126,
  16759. bottom: 205/1428
  16760. }
  16761. },
  16762. lingerie: {
  16763. height: math.unit(5, "feet"),
  16764. weight: math.unit(240, "lb"),
  16765. name: "Lingerie",
  16766. image: {
  16767. source: "./media/characters/cafat/lingerie.svg",
  16768. extra: 1223/1126,
  16769. bottom: 205/1428
  16770. }
  16771. },
  16772. upright: {
  16773. height: math.unit(6.3, "feet"),
  16774. weight: math.unit(240, "lb"),
  16775. name: "Upright",
  16776. image: {
  16777. source: "./media/characters/cafat/upright.svg",
  16778. bottom: 0.01
  16779. }
  16780. },
  16781. uprightFull: {
  16782. height: math.unit(6.3, "feet"),
  16783. weight: math.unit(240, "lb"),
  16784. name: "Upright (Full)",
  16785. image: {
  16786. source: "./media/characters/cafat/upright-full.svg",
  16787. bottom: 0.01
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Small",
  16794. height: math.unit(5, "feet"),
  16795. default: true
  16796. },
  16797. {
  16798. name: "Large",
  16799. height: math.unit(13, "feet")
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(6, "feet"),
  16808. weight: math.unit(150, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/verin-raharra/front.svg",
  16812. extra: 5019 / 4835,
  16813. bottom: 0.023
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(7 + 5 / 12, "feet"),
  16821. default: true
  16822. },
  16823. {
  16824. name: "Upsized",
  16825. height: math.unit(20, "feet")
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16831. {
  16832. front: {
  16833. height: math.unit(7, "feet"),
  16834. weight: math.unit(230, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/nakata/front.svg",
  16838. extra: 1.005,
  16839. bottom: 0.01
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(7, "feet"),
  16847. default: true
  16848. },
  16849. {
  16850. name: "Big",
  16851. height: math.unit(14, "feet")
  16852. },
  16853. {
  16854. name: "Macro",
  16855. height: math.unit(400, "feet")
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16861. {
  16862. front: {
  16863. height: math.unit(4.91, "feet"),
  16864. weight: math.unit(100, "lb"),
  16865. name: "Front",
  16866. image: {
  16867. source: "./media/characters/lily/front.svg",
  16868. extra: 1585 / 1415,
  16869. bottom: 0.02
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Normal",
  16876. height: math.unit(4.91, "feet"),
  16877. default: true
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16883. {
  16884. laying: {
  16885. height: math.unit(4 + 4 / 12, "feet"),
  16886. weight: math.unit(600, "lb"),
  16887. name: "Laying",
  16888. image: {
  16889. source: "./media/characters/sheila/laying.svg",
  16890. extra: 1333 / 1265,
  16891. bottom: 0.16
  16892. }
  16893. },
  16894. },
  16895. [
  16896. {
  16897. name: "Normal",
  16898. height: math.unit(4 + 4 / 12, "feet"),
  16899. default: true
  16900. },
  16901. ]
  16902. ))
  16903. characterMakers.push(() => makeCharacter(
  16904. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16905. {
  16906. front: {
  16907. height: math.unit(6, "feet"),
  16908. weight: math.unit(190, "lb"),
  16909. name: "Front",
  16910. image: {
  16911. source: "./media/characters/sax/front.svg",
  16912. extra: 1187 / 973,
  16913. bottom: 0.042
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Micro",
  16920. height: math.unit(4, "inches"),
  16921. default: true
  16922. },
  16923. ]
  16924. ))
  16925. characterMakers.push(() => makeCharacter(
  16926. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16927. {
  16928. front: {
  16929. height: math.unit(6, "feet"),
  16930. weight: math.unit(150, "lb"),
  16931. name: "Front",
  16932. image: {
  16933. source: "./media/characters/pandora/front.svg",
  16934. extra: 2720 / 2556,
  16935. bottom: 0.015
  16936. }
  16937. },
  16938. back: {
  16939. height: math.unit(6, "feet"),
  16940. weight: math.unit(150, "lb"),
  16941. name: "Back",
  16942. image: {
  16943. source: "./media/characters/pandora/back.svg",
  16944. extra: 2720 / 2556,
  16945. bottom: 0.01
  16946. }
  16947. },
  16948. beans: {
  16949. height: math.unit(6 / 8, "feet"),
  16950. name: "Beans",
  16951. image: {
  16952. source: "./media/characters/pandora/beans.svg"
  16953. }
  16954. },
  16955. collar: {
  16956. height: math.unit(0.31, "feet"),
  16957. name: "Collar",
  16958. image: {
  16959. source: "./media/characters/pandora/collar.svg"
  16960. }
  16961. },
  16962. skirt: {
  16963. height: math.unit(6, "feet"),
  16964. weight: math.unit(150, "lb"),
  16965. name: "Skirt",
  16966. image: {
  16967. source: "./media/characters/pandora/skirt.svg",
  16968. extra: 1622 / 1525,
  16969. bottom: 0.015
  16970. }
  16971. },
  16972. hoodie: {
  16973. height: math.unit(6, "feet"),
  16974. weight: math.unit(150, "lb"),
  16975. name: "Hoodie",
  16976. image: {
  16977. source: "./media/characters/pandora/hoodie.svg",
  16978. extra: 1622 / 1525,
  16979. bottom: 0.015
  16980. }
  16981. },
  16982. casual: {
  16983. height: math.unit(6, "feet"),
  16984. weight: math.unit(150, "lb"),
  16985. name: "Casual",
  16986. image: {
  16987. source: "./media/characters/pandora/casual.svg",
  16988. extra: 1622 / 1525,
  16989. bottom: 0.015
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Normal",
  16996. height: math.unit(6, "feet")
  16997. },
  16998. {
  16999. name: "Big Steppy",
  17000. height: math.unit(1, "km"),
  17001. default: true
  17002. },
  17003. {
  17004. name: "Galactic Steppy",
  17005. height: math.unit(2, "gigameters")
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17011. {
  17012. side: {
  17013. height: math.unit(10, "feet"),
  17014. weight: math.unit(800, "kg"),
  17015. name: "Side",
  17016. image: {
  17017. source: "./media/characters/venio-darcony/side.svg",
  17018. extra: 1373 / 1003,
  17019. bottom: 0.037
  17020. }
  17021. },
  17022. front: {
  17023. height: math.unit(19, "feet"),
  17024. weight: math.unit(800, "kg"),
  17025. name: "Front",
  17026. image: {
  17027. source: "./media/characters/venio-darcony/front.svg"
  17028. }
  17029. },
  17030. back: {
  17031. height: math.unit(19, "feet"),
  17032. weight: math.unit(800, "kg"),
  17033. name: "Back",
  17034. image: {
  17035. source: "./media/characters/venio-darcony/back.svg"
  17036. }
  17037. },
  17038. sideNsfw: {
  17039. height: math.unit(10, "feet"),
  17040. weight: math.unit(800, "kg"),
  17041. name: "Side (NSFW)",
  17042. image: {
  17043. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17044. extra: 1373 / 1003,
  17045. bottom: 0.037
  17046. }
  17047. },
  17048. frontNsfw: {
  17049. height: math.unit(19, "feet"),
  17050. weight: math.unit(800, "kg"),
  17051. name: "Front (NSFW)",
  17052. image: {
  17053. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17054. }
  17055. },
  17056. backNsfw: {
  17057. height: math.unit(19, "feet"),
  17058. weight: math.unit(800, "kg"),
  17059. name: "Back (NSFW)",
  17060. image: {
  17061. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17062. }
  17063. },
  17064. sideArmored: {
  17065. height: math.unit(10, "feet"),
  17066. weight: math.unit(800, "kg"),
  17067. name: "Side (Armored)",
  17068. image: {
  17069. source: "./media/characters/venio-darcony/side-armored.svg",
  17070. extra: 1373 / 1003,
  17071. bottom: 0.037
  17072. }
  17073. },
  17074. frontArmored: {
  17075. height: math.unit(19, "feet"),
  17076. weight: math.unit(900, "kg"),
  17077. name: "Front (Armored)",
  17078. image: {
  17079. source: "./media/characters/venio-darcony/front-armored.svg"
  17080. }
  17081. },
  17082. backArmored: {
  17083. height: math.unit(19, "feet"),
  17084. weight: math.unit(900, "kg"),
  17085. name: "Back (Armored)",
  17086. image: {
  17087. source: "./media/characters/venio-darcony/back-armored.svg"
  17088. }
  17089. },
  17090. sword: {
  17091. height: math.unit(10, "feet"),
  17092. weight: math.unit(50, "lb"),
  17093. name: "Sword",
  17094. image: {
  17095. source: "./media/characters/venio-darcony/sword.svg"
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(10, "feet")
  17103. },
  17104. {
  17105. name: "Macro",
  17106. height: math.unit(130, "feet"),
  17107. default: true
  17108. },
  17109. {
  17110. name: "Macro+",
  17111. height: math.unit(240, "feet")
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17117. {
  17118. front: {
  17119. height: math.unit(6, "feet"),
  17120. weight: math.unit(150, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/veski/front.svg",
  17124. extra: 1299 / 1225,
  17125. bottom: 0.04
  17126. }
  17127. },
  17128. back: {
  17129. height: math.unit(6, "feet"),
  17130. weight: math.unit(150, "lb"),
  17131. name: "Back",
  17132. image: {
  17133. source: "./media/characters/veski/back.svg",
  17134. extra: 1299 / 1225,
  17135. bottom: 0.008
  17136. }
  17137. },
  17138. maw: {
  17139. height: math.unit(1.5 * 1.21, "feet"),
  17140. name: "Maw",
  17141. image: {
  17142. source: "./media/characters/veski/maw.svg"
  17143. }
  17144. },
  17145. },
  17146. [
  17147. {
  17148. name: "Macro",
  17149. height: math.unit(2, "km"),
  17150. default: true
  17151. },
  17152. ]
  17153. ))
  17154. characterMakers.push(() => makeCharacter(
  17155. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17156. {
  17157. front: {
  17158. height: math.unit(5 + 7 / 12, "feet"),
  17159. name: "Front",
  17160. image: {
  17161. source: "./media/characters/isabelle/front.svg",
  17162. extra: 2130 / 1976,
  17163. bottom: 0.05
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Supermicro",
  17170. height: math.unit(10, "micrometers")
  17171. },
  17172. {
  17173. name: "Micro",
  17174. height: math.unit(1, "inch")
  17175. },
  17176. {
  17177. name: "Tiny",
  17178. height: math.unit(5, "inches")
  17179. },
  17180. {
  17181. name: "Standard",
  17182. height: math.unit(5 + 7 / 12, "inches")
  17183. },
  17184. {
  17185. name: "Macro",
  17186. height: math.unit(80, "meters"),
  17187. default: true
  17188. },
  17189. {
  17190. name: "Megamacro",
  17191. height: math.unit(250, "meters")
  17192. },
  17193. {
  17194. name: "Gigamacro",
  17195. height: math.unit(5, "km")
  17196. },
  17197. {
  17198. name: "Cosmic",
  17199. height: math.unit(2.5e6, "miles")
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17205. {
  17206. front: {
  17207. height: math.unit(6, "feet"),
  17208. weight: math.unit(150, "lb"),
  17209. name: "Front",
  17210. image: {
  17211. source: "./media/characters/hanzo/front.svg",
  17212. extra: 374 / 344,
  17213. bottom: 0.02
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(8, "feet"),
  17221. default: true
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17227. {
  17228. front: {
  17229. height: math.unit(7, "feet"),
  17230. weight: math.unit(130, "lb"),
  17231. name: "Front",
  17232. image: {
  17233. source: "./media/characters/anna/front.svg",
  17234. extra: 169 / 145,
  17235. bottom: 0.06
  17236. }
  17237. },
  17238. full: {
  17239. height: math.unit(4.96, "feet"),
  17240. weight: math.unit(220, "lb"),
  17241. name: "Full",
  17242. image: {
  17243. source: "./media/characters/anna/full.svg",
  17244. extra: 138 / 114,
  17245. bottom: 0.15
  17246. }
  17247. },
  17248. tongue: {
  17249. height: math.unit(2.53, "feet"),
  17250. name: "Tongue",
  17251. image: {
  17252. source: "./media/characters/anna/tongue.svg"
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(7, "feet"),
  17260. default: true
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(7, "feet"),
  17269. weight: math.unit(150, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/ian-corvid/front.svg",
  17273. extra: 150 / 142,
  17274. bottom: 0.02
  17275. }
  17276. },
  17277. back: {
  17278. height: math.unit(7, "feet"),
  17279. weight: math.unit(150, "lb"),
  17280. name: "Back",
  17281. image: {
  17282. source: "./media/characters/ian-corvid/back.svg",
  17283. extra: 150 / 143,
  17284. bottom: 0.01
  17285. }
  17286. },
  17287. stomping: {
  17288. height: math.unit(7, "feet"),
  17289. weight: math.unit(150, "lb"),
  17290. name: "Stomping",
  17291. image: {
  17292. source: "./media/characters/ian-corvid/stomping.svg",
  17293. extra: 76 / 72
  17294. }
  17295. },
  17296. sitting: {
  17297. height: math.unit(7 / 1.8, "feet"),
  17298. weight: math.unit(150, "lb"),
  17299. name: "Sitting",
  17300. image: {
  17301. source: "./media/characters/ian-corvid/sitting.svg",
  17302. extra: 1400 / 1269,
  17303. bottom: 0.15
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Tiny Microw",
  17310. height: math.unit(1, "inch")
  17311. },
  17312. {
  17313. name: "Microw",
  17314. height: math.unit(6, "inches")
  17315. },
  17316. {
  17317. name: "Crow",
  17318. height: math.unit(7 + 1 / 12, "feet"),
  17319. default: true
  17320. },
  17321. {
  17322. name: "Macrow",
  17323. height: math.unit(176, "feet")
  17324. },
  17325. ]
  17326. ))
  17327. characterMakers.push(() => makeCharacter(
  17328. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17329. {
  17330. front: {
  17331. height: math.unit(5 + 7 / 12, "feet"),
  17332. weight: math.unit(147, "lb"),
  17333. name: "Front",
  17334. image: {
  17335. source: "./media/characters/natalie-kellon/front.svg",
  17336. extra: 1214 / 1141,
  17337. bottom: 0.02
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Micro",
  17344. height: math.unit(1 / 16, "inch")
  17345. },
  17346. {
  17347. name: "Tiny",
  17348. height: math.unit(4, "inches")
  17349. },
  17350. {
  17351. name: "Normal",
  17352. height: math.unit(5 + 7 / 12, "feet"),
  17353. default: true
  17354. },
  17355. {
  17356. name: "Amazon",
  17357. height: math.unit(12, "feet")
  17358. },
  17359. {
  17360. name: "Giantess",
  17361. height: math.unit(160, "meters")
  17362. },
  17363. {
  17364. name: "Titaness",
  17365. height: math.unit(800, "meters")
  17366. },
  17367. ]
  17368. ))
  17369. characterMakers.push(() => makeCharacter(
  17370. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17371. {
  17372. front: {
  17373. height: math.unit(6, "feet"),
  17374. weight: math.unit(150, "lb"),
  17375. name: "Front",
  17376. image: {
  17377. source: "./media/characters/alluria/front.svg",
  17378. extra: 806 / 738,
  17379. bottom: 0.01
  17380. }
  17381. },
  17382. side: {
  17383. height: math.unit(6, "feet"),
  17384. weight: math.unit(150, "lb"),
  17385. name: "Side",
  17386. image: {
  17387. source: "./media/characters/alluria/side.svg",
  17388. extra: 800 / 750,
  17389. }
  17390. },
  17391. back: {
  17392. height: math.unit(6, "feet"),
  17393. weight: math.unit(150, "lb"),
  17394. name: "Back",
  17395. image: {
  17396. source: "./media/characters/alluria/back.svg",
  17397. extra: 806 / 738,
  17398. }
  17399. },
  17400. frontMaid: {
  17401. height: math.unit(6, "feet"),
  17402. weight: math.unit(150, "lb"),
  17403. name: "Front (Maid)",
  17404. image: {
  17405. source: "./media/characters/alluria/front-maid.svg",
  17406. extra: 806 / 738,
  17407. bottom: 0.01
  17408. }
  17409. },
  17410. sideMaid: {
  17411. height: math.unit(6, "feet"),
  17412. weight: math.unit(150, "lb"),
  17413. name: "Side (Maid)",
  17414. image: {
  17415. source: "./media/characters/alluria/side-maid.svg",
  17416. extra: 800 / 750,
  17417. bottom: 0.005
  17418. }
  17419. },
  17420. backMaid: {
  17421. height: math.unit(6, "feet"),
  17422. weight: math.unit(150, "lb"),
  17423. name: "Back (Maid)",
  17424. image: {
  17425. source: "./media/characters/alluria/back-maid.svg",
  17426. extra: 806 / 738,
  17427. }
  17428. },
  17429. },
  17430. [
  17431. {
  17432. name: "Micro",
  17433. height: math.unit(6, "inches"),
  17434. default: true
  17435. },
  17436. ]
  17437. ))
  17438. characterMakers.push(() => makeCharacter(
  17439. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17440. {
  17441. front: {
  17442. height: math.unit(6, "feet"),
  17443. weight: math.unit(150, "lb"),
  17444. name: "Front",
  17445. image: {
  17446. source: "./media/characters/kyle/front.svg",
  17447. extra: 1069 / 962,
  17448. bottom: 77.228 / 1727.45
  17449. }
  17450. },
  17451. },
  17452. [
  17453. {
  17454. name: "Macro",
  17455. height: math.unit(150, "feet"),
  17456. default: true
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17462. {
  17463. front: {
  17464. height: math.unit(6, "feet"),
  17465. weight: math.unit(300, "lb"),
  17466. name: "Front",
  17467. image: {
  17468. source: "./media/characters/duncan/front.svg",
  17469. extra: 1650 / 1482,
  17470. bottom: 0.05
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Macro",
  17477. height: math.unit(100, "feet"),
  17478. default: true
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17484. {
  17485. front: {
  17486. height: math.unit(5 + 4 / 12, "feet"),
  17487. weight: math.unit(220, "lb"),
  17488. name: "Front",
  17489. image: {
  17490. source: "./media/characters/memory/front.svg",
  17491. extra: 3641 / 3545,
  17492. bottom: 0.03
  17493. }
  17494. },
  17495. back: {
  17496. height: math.unit(5 + 4 / 12, "feet"),
  17497. weight: math.unit(220, "lb"),
  17498. name: "Back",
  17499. image: {
  17500. source: "./media/characters/memory/back.svg",
  17501. extra: 3641 / 3545,
  17502. bottom: 0.025
  17503. }
  17504. },
  17505. frontSkirt: {
  17506. height: math.unit(5 + 4 / 12, "feet"),
  17507. weight: math.unit(220, "lb"),
  17508. name: "Front (Skirt)",
  17509. image: {
  17510. source: "./media/characters/memory/front-skirt.svg",
  17511. extra: 3641 / 3545,
  17512. bottom: 0.03
  17513. }
  17514. },
  17515. frontDress: {
  17516. height: math.unit(5 + 4 / 12, "feet"),
  17517. weight: math.unit(220, "lb"),
  17518. name: "Front (Dress)",
  17519. image: {
  17520. source: "./media/characters/memory/front-dress.svg",
  17521. extra: 3641 / 3545,
  17522. bottom: 0.03
  17523. }
  17524. },
  17525. },
  17526. [
  17527. {
  17528. name: "Micro",
  17529. height: math.unit(6, "inches"),
  17530. default: true
  17531. },
  17532. {
  17533. name: "Normal",
  17534. height: math.unit(5 + 4 / 12, "feet")
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17540. {
  17541. front: {
  17542. height: math.unit(4 + 11 / 12, "feet"),
  17543. weight: math.unit(100, "lb"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/luno/front.svg",
  17547. extra: 1535 / 1487,
  17548. bottom: 0.03
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Micro",
  17555. height: math.unit(3, "inches")
  17556. },
  17557. {
  17558. name: "Normal",
  17559. height: math.unit(4 + 11 / 12, "feet"),
  17560. default: true
  17561. },
  17562. {
  17563. name: "Macro",
  17564. height: math.unit(300, "feet")
  17565. },
  17566. {
  17567. name: "Megamacro",
  17568. height: math.unit(700, "miles")
  17569. },
  17570. ]
  17571. ))
  17572. characterMakers.push(() => makeCharacter(
  17573. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17574. {
  17575. front: {
  17576. height: math.unit(6 + 2 / 12, "feet"),
  17577. weight: math.unit(170, "lb"),
  17578. name: "Front",
  17579. image: {
  17580. source: "./media/characters/jamesy/front.svg",
  17581. extra: 440 / 382,
  17582. bottom: 0.005
  17583. }
  17584. },
  17585. },
  17586. [
  17587. {
  17588. name: "Micro",
  17589. height: math.unit(3, "inches")
  17590. },
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(6 + 2 / 12, "feet"),
  17594. default: true
  17595. },
  17596. {
  17597. name: "Macro",
  17598. height: math.unit(300, "feet")
  17599. },
  17600. {
  17601. name: "Megamacro",
  17602. height: math.unit(700, "miles")
  17603. },
  17604. ]
  17605. ))
  17606. characterMakers.push(() => makeCharacter(
  17607. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17608. {
  17609. front: {
  17610. height: math.unit(6, "feet"),
  17611. weight: math.unit(160, "lb"),
  17612. name: "Front",
  17613. image: {
  17614. source: "./media/characters/mark/front.svg",
  17615. extra: 3300 / 3100,
  17616. bottom: 136.42 / 3440.47
  17617. }
  17618. },
  17619. },
  17620. [
  17621. {
  17622. name: "Macro",
  17623. height: math.unit(120, "meters")
  17624. },
  17625. {
  17626. name: "Bigger Macro",
  17627. height: math.unit(350, "meters")
  17628. },
  17629. {
  17630. name: "Megamacro",
  17631. height: math.unit(8, "km"),
  17632. default: true
  17633. },
  17634. {
  17635. name: "Continental",
  17636. height: math.unit(4550, "km")
  17637. },
  17638. {
  17639. name: "Planetary",
  17640. height: math.unit(65000, "km")
  17641. },
  17642. ]
  17643. ))
  17644. characterMakers.push(() => makeCharacter(
  17645. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17646. {
  17647. front: {
  17648. height: math.unit(6, "feet"),
  17649. weight: math.unit(400, "lb"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/mac/front.svg",
  17653. extra: 1048 / 987.7,
  17654. bottom: 60 / 1107.6,
  17655. }
  17656. },
  17657. },
  17658. [
  17659. {
  17660. name: "Macro",
  17661. height: math.unit(500, "feet"),
  17662. default: true
  17663. },
  17664. ]
  17665. ))
  17666. characterMakers.push(() => makeCharacter(
  17667. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17668. {
  17669. front: {
  17670. height: math.unit(5 + 2 / 12, "feet"),
  17671. weight: math.unit(190, "lb"),
  17672. name: "Front",
  17673. image: {
  17674. source: "./media/characters/bari/front.svg",
  17675. extra: 3156 / 2880,
  17676. bottom: 0.03
  17677. }
  17678. },
  17679. back: {
  17680. height: math.unit(5 + 2 / 12, "feet"),
  17681. weight: math.unit(190, "lb"),
  17682. name: "Back",
  17683. image: {
  17684. source: "./media/characters/bari/back.svg",
  17685. extra: 3260 / 2834,
  17686. bottom: 0.025
  17687. }
  17688. },
  17689. frontPlush: {
  17690. height: math.unit(5 + 2 / 12, "feet"),
  17691. weight: math.unit(190, "lb"),
  17692. name: "Front (Plush)",
  17693. image: {
  17694. source: "./media/characters/bari/front-plush.svg",
  17695. extra: 1112 / 1061,
  17696. bottom: 0.002
  17697. }
  17698. },
  17699. },
  17700. [
  17701. {
  17702. name: "Micro",
  17703. height: math.unit(3, "inches")
  17704. },
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(5 + 2 / 12, "feet"),
  17708. default: true
  17709. },
  17710. {
  17711. name: "Macro",
  17712. height: math.unit(20, "feet")
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(6 + 1 / 12, "feet"),
  17721. weight: math.unit(275, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/hunter-misha-raven/front.svg"
  17725. }
  17726. },
  17727. },
  17728. [
  17729. {
  17730. name: "Mortal",
  17731. height: math.unit(6 + 1 / 12, "feet")
  17732. },
  17733. {
  17734. name: "Divine",
  17735. height: math.unit(1.12134e34, "parsecs"),
  17736. default: true
  17737. },
  17738. ]
  17739. ))
  17740. characterMakers.push(() => makeCharacter(
  17741. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17742. {
  17743. front: {
  17744. height: math.unit(6 + 3 / 12, "feet"),
  17745. weight: math.unit(220, "lb"),
  17746. name: "Front",
  17747. image: {
  17748. source: "./media/characters/max-calore/front.svg",
  17749. extra: 1700 / 1648,
  17750. bottom: 0.01
  17751. }
  17752. },
  17753. back: {
  17754. height: math.unit(6 + 3 / 12, "feet"),
  17755. weight: math.unit(220, "lb"),
  17756. name: "Back",
  17757. image: {
  17758. source: "./media/characters/max-calore/back.svg",
  17759. extra: 1700 / 1648,
  17760. bottom: 0.01
  17761. }
  17762. },
  17763. },
  17764. [
  17765. {
  17766. name: "Normal",
  17767. height: math.unit(6 + 3 / 12, "feet"),
  17768. default: true
  17769. },
  17770. ]
  17771. ))
  17772. characterMakers.push(() => makeCharacter(
  17773. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17774. {
  17775. side: {
  17776. height: math.unit(2 + 8 / 12, "feet"),
  17777. weight: math.unit(99, "lb"),
  17778. name: "Side",
  17779. image: {
  17780. source: "./media/characters/aspen/side.svg",
  17781. extra: 152 / 138,
  17782. bottom: 0.032
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Normal",
  17789. height: math.unit(2 + 8 / 12, "feet"),
  17790. default: true
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17796. {
  17797. side: {
  17798. height: math.unit(3 + 2 / 12, "feet"),
  17799. weight: math.unit(224, "lb"),
  17800. name: "Side",
  17801. image: {
  17802. source: "./media/characters/sheila-feral-wolf/side.svg",
  17803. extra: 179 / 166,
  17804. bottom: 0.03
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Normal",
  17811. height: math.unit(3 + 2 / 12, "feet"),
  17812. default: true
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17818. {
  17819. side: {
  17820. height: math.unit(1 + 9 / 12, "feet"),
  17821. weight: math.unit(38, "lb"),
  17822. name: "Side",
  17823. image: {
  17824. source: "./media/characters/michelle/side.svg",
  17825. extra: 147 / 136.7,
  17826. bottom: 0.03
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(1 + 9 / 12, "feet"),
  17834. default: true
  17835. },
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17840. {
  17841. front: {
  17842. height: math.unit(1.54, "feet"),
  17843. weight: math.unit(50, "lb"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/nino/front.svg"
  17847. }
  17848. },
  17849. },
  17850. [
  17851. {
  17852. name: "Normal",
  17853. height: math.unit(1.54, "feet"),
  17854. default: true
  17855. },
  17856. ]
  17857. ))
  17858. characterMakers.push(() => makeCharacter(
  17859. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17860. {
  17861. front: {
  17862. height: math.unit(1.49, "feet"),
  17863. weight: math.unit(45, "lb"),
  17864. name: "Front",
  17865. image: {
  17866. source: "./media/characters/viola/front.svg"
  17867. }
  17868. },
  17869. },
  17870. [
  17871. {
  17872. name: "Normal",
  17873. height: math.unit(1.49, "feet"),
  17874. default: true
  17875. },
  17876. ]
  17877. ))
  17878. characterMakers.push(() => makeCharacter(
  17879. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17880. {
  17881. front: {
  17882. height: math.unit(6 + 5 / 12, "feet"),
  17883. weight: math.unit(580, "lb"),
  17884. name: "Front",
  17885. image: {
  17886. source: "./media/characters/atlas/front.svg",
  17887. extra: 298.5 / 290,
  17888. bottom: 0.015
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Normal",
  17895. height: math.unit(6 + 5 / 12, "feet"),
  17896. default: true
  17897. },
  17898. ]
  17899. ))
  17900. characterMakers.push(() => makeCharacter(
  17901. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17902. {
  17903. side: {
  17904. height: math.unit(15.6, "inches"),
  17905. weight: math.unit(10, "lb"),
  17906. name: "Side",
  17907. image: {
  17908. source: "./media/characters/davy/side.svg",
  17909. extra: 200 / 170,
  17910. bottom: 0.01
  17911. }
  17912. },
  17913. },
  17914. [
  17915. {
  17916. name: "Normal",
  17917. height: math.unit(15.6, "inches"),
  17918. default: true
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17924. {
  17925. side: {
  17926. height: math.unit(4 + 8 / 12, "feet"),
  17927. weight: math.unit(166, "lb"),
  17928. name: "Side",
  17929. image: {
  17930. source: "./media/characters/fiona/side.svg",
  17931. extra: 232 / 220,
  17932. bottom: 0.03
  17933. }
  17934. },
  17935. },
  17936. [
  17937. {
  17938. name: "Normal",
  17939. height: math.unit(4 + 8 / 12, "feet"),
  17940. default: true
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17946. {
  17947. front: {
  17948. height: math.unit(26, "inches"),
  17949. weight: math.unit(35, "lb"),
  17950. name: "Front",
  17951. image: {
  17952. source: "./media/characters/lyla/front.svg",
  17953. bottom: 0.1
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(3, "feet"),
  17961. default: true
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17967. {
  17968. side: {
  17969. height: math.unit(1.8, "feet"),
  17970. weight: math.unit(44, "lb"),
  17971. name: "Side",
  17972. image: {
  17973. source: "./media/characters/perseus/side.svg",
  17974. bottom: 0.21
  17975. }
  17976. },
  17977. },
  17978. [
  17979. {
  17980. name: "Normal",
  17981. height: math.unit(1.8, "feet"),
  17982. default: true
  17983. },
  17984. ]
  17985. ))
  17986. characterMakers.push(() => makeCharacter(
  17987. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17988. {
  17989. side: {
  17990. height: math.unit(4 + 2 / 12, "feet"),
  17991. weight: math.unit(20, "lb"),
  17992. name: "Side",
  17993. image: {
  17994. source: "./media/characters/remus/side.svg"
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(4 + 2 / 12, "feet"),
  18002. default: true
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18008. {
  18009. front: {
  18010. height: math.unit(4 + 11 / 12, "feet"),
  18011. weight: math.unit(114, "lb"),
  18012. name: "Front",
  18013. image: {
  18014. source: "./media/characters/raf/front.svg",
  18015. extra: 1504/1339,
  18016. bottom: 26/1530
  18017. }
  18018. },
  18019. side: {
  18020. height: math.unit(4 + 11 / 12, "feet"),
  18021. weight: math.unit(114, "lb"),
  18022. name: "Side",
  18023. image: {
  18024. source: "./media/characters/raf/side.svg",
  18025. extra: 1466/1316,
  18026. bottom: 29/1495
  18027. }
  18028. },
  18029. paw: {
  18030. height: math.unit(1.45, "feet"),
  18031. name: "Paw",
  18032. image: {
  18033. source: "./media/characters/raf/paw.svg"
  18034. },
  18035. extraAttributes: {
  18036. "toeSize": {
  18037. name: "Toe Size",
  18038. power: 2,
  18039. type: "area",
  18040. base: math.unit(0.004, "m^2")
  18041. },
  18042. "padSize": {
  18043. name: "Pad Size",
  18044. power: 2,
  18045. type: "area",
  18046. base: math.unit(0.04, "m^2")
  18047. },
  18048. "footSize": {
  18049. name: "Foot Size",
  18050. power: 2,
  18051. type: "area",
  18052. base: math.unit(0.08, "m^2")
  18053. },
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Micro",
  18060. height: math.unit(2, "inches")
  18061. },
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(4 + 11 / 12, "feet"),
  18065. default: true
  18066. },
  18067. {
  18068. name: "Macro",
  18069. height: math.unit(70, "feet")
  18070. },
  18071. ]
  18072. ))
  18073. characterMakers.push(() => makeCharacter(
  18074. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18075. {
  18076. front: {
  18077. height: math.unit(1.5, "meters"),
  18078. weight: math.unit(68, "kg"),
  18079. name: "Front",
  18080. image: {
  18081. source: "./media/characters/liam-einarr/front.svg",
  18082. extra: 2822 / 2666
  18083. }
  18084. },
  18085. back: {
  18086. height: math.unit(1.5, "meters"),
  18087. weight: math.unit(68, "kg"),
  18088. name: "Back",
  18089. image: {
  18090. source: "./media/characters/liam-einarr/back.svg",
  18091. extra: 2822 / 2666,
  18092. bottom: 0.015
  18093. }
  18094. },
  18095. },
  18096. [
  18097. {
  18098. name: "Normal",
  18099. height: math.unit(1.5, "meters"),
  18100. default: true
  18101. },
  18102. {
  18103. name: "Macro",
  18104. height: math.unit(150, "meters")
  18105. },
  18106. {
  18107. name: "Megamacro",
  18108. height: math.unit(35, "km")
  18109. },
  18110. ]
  18111. ))
  18112. characterMakers.push(() => makeCharacter(
  18113. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18114. {
  18115. front: {
  18116. height: math.unit(6, "feet"),
  18117. weight: math.unit(75, "kg"),
  18118. name: "Front",
  18119. image: {
  18120. source: "./media/characters/linda/front.svg",
  18121. extra: 930 / 874,
  18122. bottom: 0.004
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Normal",
  18129. height: math.unit(6, "feet"),
  18130. default: true
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(6 + 8 / 12, "feet"),
  18139. weight: math.unit(220, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/caylex/front.svg",
  18143. extra: 821 / 772,
  18144. bottom: 0.07
  18145. }
  18146. },
  18147. back: {
  18148. height: math.unit(6 + 8 / 12, "feet"),
  18149. weight: math.unit(220, "lb"),
  18150. name: "Back",
  18151. image: {
  18152. source: "./media/characters/caylex/back.svg",
  18153. extra: 821 / 772,
  18154. bottom: 0.022
  18155. }
  18156. },
  18157. hand: {
  18158. height: math.unit(1.25, "feet"),
  18159. name: "Hand",
  18160. image: {
  18161. source: "./media/characters/caylex/hand.svg"
  18162. }
  18163. },
  18164. foot: {
  18165. height: math.unit(1.6, "feet"),
  18166. name: "Foot",
  18167. image: {
  18168. source: "./media/characters/caylex/foot.svg"
  18169. }
  18170. },
  18171. armored: {
  18172. height: math.unit(6 + 8 / 12, "feet"),
  18173. weight: math.unit(250, "lb"),
  18174. name: "Armored",
  18175. image: {
  18176. source: "./media/characters/caylex/armored.svg",
  18177. extra: 1420 / 1310,
  18178. bottom: 0.045
  18179. }
  18180. },
  18181. },
  18182. [
  18183. {
  18184. name: "Normal",
  18185. height: math.unit(6 + 8 / 12, "feet"),
  18186. default: true
  18187. },
  18188. {
  18189. name: "Normal+",
  18190. height: math.unit(12, "feet")
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18196. {
  18197. front: {
  18198. height: math.unit(7 + 6 / 12, "feet"),
  18199. weight: math.unit(288, "lb"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/alana/front.svg",
  18203. extra: 679 / 653,
  18204. bottom: 22.5 / 701
  18205. }
  18206. },
  18207. },
  18208. [
  18209. {
  18210. name: "Normal",
  18211. height: math.unit(7 + 6 / 12, "feet")
  18212. },
  18213. {
  18214. name: "Large",
  18215. height: math.unit(50, "feet")
  18216. },
  18217. {
  18218. name: "Macro",
  18219. height: math.unit(100, "feet"),
  18220. default: true
  18221. },
  18222. {
  18223. name: "Macro+",
  18224. height: math.unit(200, "feet")
  18225. },
  18226. ]
  18227. ))
  18228. characterMakers.push(() => makeCharacter(
  18229. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18230. {
  18231. front: {
  18232. height: math.unit(6 + 1 / 12, "feet"),
  18233. weight: math.unit(210, "lb"),
  18234. name: "Front",
  18235. image: {
  18236. source: "./media/characters/hasani/front.svg",
  18237. extra: 244 / 232,
  18238. bottom: 0.01
  18239. }
  18240. },
  18241. back: {
  18242. height: math.unit(6 + 1 / 12, "feet"),
  18243. weight: math.unit(210, "lb"),
  18244. name: "Back",
  18245. image: {
  18246. source: "./media/characters/hasani/back.svg",
  18247. extra: 244 / 232,
  18248. bottom: 0.01
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(6 + 1 / 12, "feet")
  18256. },
  18257. {
  18258. name: "Macro",
  18259. height: math.unit(175, "feet"),
  18260. default: true
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(1.82, "meters"),
  18269. weight: math.unit(140, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/nita/front.svg",
  18273. extra: 2473 / 2363,
  18274. bottom: 0.01
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Normal",
  18281. height: math.unit(1.82, "m")
  18282. },
  18283. {
  18284. name: "Macro",
  18285. height: math.unit(300, "m")
  18286. },
  18287. {
  18288. name: "Mistake Canon",
  18289. height: math.unit(0.5, "miles"),
  18290. default: true
  18291. },
  18292. {
  18293. name: "Big Mistake",
  18294. height: math.unit(13, "miles")
  18295. },
  18296. {
  18297. name: "Playing God",
  18298. height: math.unit(2450, "miles")
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18304. {
  18305. front: {
  18306. height: math.unit(4, "feet"),
  18307. weight: math.unit(120, "lb"),
  18308. name: "Front",
  18309. image: {
  18310. source: "./media/characters/shiriko/front.svg",
  18311. extra: 970/934,
  18312. bottom: 5/975
  18313. }
  18314. },
  18315. },
  18316. [
  18317. {
  18318. name: "Normal",
  18319. height: math.unit(4, "feet"),
  18320. default: true
  18321. },
  18322. ]
  18323. ))
  18324. characterMakers.push(() => makeCharacter(
  18325. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18326. {
  18327. front: {
  18328. height: math.unit(6, "feet"),
  18329. name: "front",
  18330. image: {
  18331. source: "./media/characters/deja/front.svg",
  18332. extra: 926 / 840,
  18333. bottom: 0.07
  18334. }
  18335. },
  18336. },
  18337. [
  18338. {
  18339. name: "Planck Length",
  18340. height: math.unit(1.6e-35, "meters")
  18341. },
  18342. {
  18343. name: "Normal",
  18344. height: math.unit(30.48, "meters"),
  18345. default: true
  18346. },
  18347. {
  18348. name: "Universal",
  18349. height: math.unit(8.8e26, "meters")
  18350. },
  18351. ]
  18352. ))
  18353. characterMakers.push(() => makeCharacter(
  18354. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18355. {
  18356. side: {
  18357. height: math.unit(8, "feet"),
  18358. weight: math.unit(6300, "lb"),
  18359. name: "Side",
  18360. image: {
  18361. source: "./media/characters/anima/side.svg",
  18362. bottom: 0.035
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Normal",
  18369. height: math.unit(8, "feet"),
  18370. default: true
  18371. },
  18372. ]
  18373. ))
  18374. characterMakers.push(() => makeCharacter(
  18375. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18376. {
  18377. front: {
  18378. height: math.unit(8, "feet"),
  18379. weight: math.unit(350, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/bianca/front.svg",
  18383. extra: 234 / 225,
  18384. bottom: 0.03
  18385. }
  18386. },
  18387. },
  18388. [
  18389. {
  18390. name: "Normal",
  18391. height: math.unit(8, "feet"),
  18392. default: true
  18393. },
  18394. ]
  18395. ))
  18396. characterMakers.push(() => makeCharacter(
  18397. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18398. {
  18399. front: {
  18400. height: math.unit(11 + 5/12, "feet"),
  18401. weight: math.unit(1200, "lb"),
  18402. name: "Front",
  18403. image: {
  18404. source: "./media/characters/adinia/front.svg",
  18405. extra: 1767/1641,
  18406. bottom: 44/1811
  18407. },
  18408. extraAttributes: {
  18409. "energyIntake": {
  18410. name: "Energy Intake",
  18411. power: 3,
  18412. type: "energy",
  18413. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18414. },
  18415. }
  18416. },
  18417. back: {
  18418. height: math.unit(11 + 5/12, "feet"),
  18419. weight: math.unit(1200, "lb"),
  18420. name: "Back",
  18421. image: {
  18422. source: "./media/characters/adinia/back.svg",
  18423. extra: 1834/1684,
  18424. bottom: 14/1848
  18425. },
  18426. extraAttributes: {
  18427. "energyIntake": {
  18428. name: "Energy Intake",
  18429. power: 3,
  18430. type: "energy",
  18431. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18432. },
  18433. }
  18434. },
  18435. maw: {
  18436. height: math.unit(3.79, "feet"),
  18437. name: "Maw",
  18438. image: {
  18439. source: "./media/characters/adinia/maw.svg"
  18440. }
  18441. },
  18442. rump: {
  18443. height: math.unit(4.6, "feet"),
  18444. name: "Rump",
  18445. image: {
  18446. source: "./media/characters/adinia/rump.svg"
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Normal",
  18453. height: math.unit(11 + 5 / 12, "feet"),
  18454. default: true
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18460. {
  18461. front: {
  18462. height: math.unit(3, "meters"),
  18463. weight: math.unit(200, "kg"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/lykasa/front.svg",
  18467. extra: 1076 / 976,
  18468. bottom: 0.06
  18469. }
  18470. },
  18471. },
  18472. [
  18473. {
  18474. name: "Normal",
  18475. height: math.unit(3, "meters")
  18476. },
  18477. {
  18478. name: "Kaiju",
  18479. height: math.unit(120, "meters"),
  18480. default: true
  18481. },
  18482. {
  18483. name: "Mega Kaiju",
  18484. height: math.unit(240, "km")
  18485. },
  18486. {
  18487. name: "Giga Kaiju",
  18488. height: math.unit(400, "megameters")
  18489. },
  18490. {
  18491. name: "Tera Kaiju",
  18492. height: math.unit(800, "gigameters")
  18493. },
  18494. {
  18495. name: "Kaiju Dragon Goddess",
  18496. height: math.unit(26, "zettaparsecs")
  18497. },
  18498. ]
  18499. ))
  18500. characterMakers.push(() => makeCharacter(
  18501. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18502. {
  18503. side: {
  18504. height: math.unit(283 / 124 * 6, "feet"),
  18505. weight: math.unit(35000, "lb"),
  18506. name: "Side",
  18507. image: {
  18508. source: "./media/characters/malfaren/side.svg",
  18509. extra: 1310/529,
  18510. bottom: 24/1334
  18511. }
  18512. },
  18513. front: {
  18514. height: math.unit(22.36, "feet"),
  18515. weight: math.unit(35000, "lb"),
  18516. name: "Front",
  18517. image: {
  18518. source: "./media/characters/malfaren/front.svg",
  18519. extra: 1237/1115,
  18520. bottom: 32/1269
  18521. }
  18522. },
  18523. maw: {
  18524. height: math.unit(6.9, "feet"),
  18525. name: "Maw",
  18526. image: {
  18527. source: "./media/characters/malfaren/maw.svg"
  18528. }
  18529. },
  18530. dick: {
  18531. height: math.unit(6.19, "feet"),
  18532. name: "Dick",
  18533. image: {
  18534. source: "./media/characters/malfaren/dick.svg"
  18535. }
  18536. },
  18537. eye: {
  18538. height: math.unit(0.69, "feet"),
  18539. name: "Eye",
  18540. image: {
  18541. source: "./media/characters/malfaren/eye.svg"
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Big",
  18548. height: math.unit(283 / 162 * 6, "feet"),
  18549. },
  18550. {
  18551. name: "Bigger",
  18552. height: math.unit(283 / 124 * 6, "feet")
  18553. },
  18554. {
  18555. name: "Massive",
  18556. height: math.unit(283 / 92 * 6, "feet"),
  18557. default: true
  18558. },
  18559. {
  18560. name: "👀💦",
  18561. height: math.unit(283 / 73 * 6, "feet"),
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(1.7, "m"),
  18570. weight: math.unit(70, "kg"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/kernel/front.svg",
  18574. extra: 222 / 210,
  18575. bottom: 0.007
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Nano",
  18582. height: math.unit(17, "micrometers")
  18583. },
  18584. {
  18585. name: "Micro",
  18586. height: math.unit(1.7, "mm")
  18587. },
  18588. {
  18589. name: "Small",
  18590. height: math.unit(1.7, "cm")
  18591. },
  18592. {
  18593. name: "Normal",
  18594. height: math.unit(1.7, "m"),
  18595. default: true
  18596. },
  18597. ]
  18598. ))
  18599. characterMakers.push(() => makeCharacter(
  18600. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18601. {
  18602. front: {
  18603. height: math.unit(1.75, "meters"),
  18604. weight: math.unit(65, "kg"),
  18605. name: "Front",
  18606. image: {
  18607. source: "./media/characters/jayne-folest/front.svg",
  18608. extra: 2115 / 2007,
  18609. bottom: 0.02
  18610. }
  18611. },
  18612. back: {
  18613. height: math.unit(1.75, "meters"),
  18614. weight: math.unit(65, "kg"),
  18615. name: "Back",
  18616. image: {
  18617. source: "./media/characters/jayne-folest/back.svg",
  18618. extra: 2115 / 2007,
  18619. bottom: 0.005
  18620. }
  18621. },
  18622. frontClothed: {
  18623. height: math.unit(1.75, "meters"),
  18624. weight: math.unit(65, "kg"),
  18625. name: "Front (Clothed)",
  18626. image: {
  18627. source: "./media/characters/jayne-folest/front-clothed.svg",
  18628. extra: 2115 / 2007,
  18629. bottom: 0.035
  18630. }
  18631. },
  18632. hand: {
  18633. height: math.unit(1 / 1.260, "feet"),
  18634. name: "Hand",
  18635. image: {
  18636. source: "./media/characters/jayne-folest/hand.svg"
  18637. }
  18638. },
  18639. foot: {
  18640. height: math.unit(1 / 0.918, "feet"),
  18641. name: "Foot",
  18642. image: {
  18643. source: "./media/characters/jayne-folest/foot.svg"
  18644. }
  18645. },
  18646. },
  18647. [
  18648. {
  18649. name: "Micro",
  18650. height: math.unit(4, "cm")
  18651. },
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(1.75, "meters")
  18655. },
  18656. {
  18657. name: "Macro",
  18658. height: math.unit(47.5, "meters"),
  18659. default: true
  18660. },
  18661. ]
  18662. ))
  18663. characterMakers.push(() => makeCharacter(
  18664. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18665. {
  18666. front: {
  18667. height: math.unit(180, "cm"),
  18668. weight: math.unit(70, "kg"),
  18669. name: "Front",
  18670. image: {
  18671. source: "./media/characters/algier/front.svg",
  18672. extra: 596 / 572,
  18673. bottom: 0.04
  18674. }
  18675. },
  18676. back: {
  18677. height: math.unit(180, "cm"),
  18678. weight: math.unit(70, "kg"),
  18679. name: "Back",
  18680. image: {
  18681. source: "./media/characters/algier/back.svg",
  18682. extra: 596 / 572,
  18683. bottom: 0.025
  18684. }
  18685. },
  18686. frontdressed: {
  18687. height: math.unit(180, "cm"),
  18688. weight: math.unit(150, "kg"),
  18689. name: "Front-dressed",
  18690. image: {
  18691. source: "./media/characters/algier/front-dressed.svg",
  18692. extra: 596 / 572,
  18693. bottom: 0.038
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Micro",
  18700. height: math.unit(5, "cm")
  18701. },
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(180, "cm"),
  18705. default: true
  18706. },
  18707. {
  18708. name: "Macro",
  18709. height: math.unit(64, "m")
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18715. {
  18716. upright: {
  18717. height: math.unit(7, "feet"),
  18718. weight: math.unit(300, "lb"),
  18719. name: "Upright",
  18720. image: {
  18721. source: "./media/characters/pretzel/upright.svg",
  18722. extra: 534 / 522,
  18723. bottom: 0.065
  18724. }
  18725. },
  18726. sprawling: {
  18727. height: math.unit(3.75, "feet"),
  18728. weight: math.unit(300, "lb"),
  18729. name: "Sprawling",
  18730. image: {
  18731. source: "./media/characters/pretzel/sprawling.svg",
  18732. extra: 314 / 281,
  18733. bottom: 0.1
  18734. }
  18735. },
  18736. tongue: {
  18737. height: math.unit(2, "feet"),
  18738. name: "Tongue",
  18739. image: {
  18740. source: "./media/characters/pretzel/tongue.svg"
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Normal",
  18747. height: math.unit(7, "feet"),
  18748. default: true
  18749. },
  18750. {
  18751. name: "Oversized",
  18752. height: math.unit(15, "feet")
  18753. },
  18754. {
  18755. name: "Huge",
  18756. height: math.unit(30, "feet")
  18757. },
  18758. {
  18759. name: "Macro",
  18760. height: math.unit(250, "feet")
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18766. {
  18767. sideFront: {
  18768. height: math.unit(5 + 2 / 12, "feet"),
  18769. weight: math.unit(120, "lb"),
  18770. name: "Front Side",
  18771. image: {
  18772. source: "./media/characters/roxi/side-front.svg",
  18773. extra: 2924 / 2717,
  18774. bottom: 0.08
  18775. }
  18776. },
  18777. sideBack: {
  18778. height: math.unit(5 + 2 / 12, "feet"),
  18779. weight: math.unit(120, "lb"),
  18780. name: "Back Side",
  18781. image: {
  18782. source: "./media/characters/roxi/side-back.svg",
  18783. extra: 2904 / 2693,
  18784. bottom: 0.06
  18785. }
  18786. },
  18787. front: {
  18788. height: math.unit(5 + 2 / 12, "feet"),
  18789. weight: math.unit(120, "lb"),
  18790. name: "Front",
  18791. image: {
  18792. source: "./media/characters/roxi/front.svg",
  18793. extra: 2028 / 1907,
  18794. bottom: 0.01
  18795. }
  18796. },
  18797. frontAlt: {
  18798. height: math.unit(5 + 2 / 12, "feet"),
  18799. weight: math.unit(120, "lb"),
  18800. name: "Front (Alt)",
  18801. image: {
  18802. source: "./media/characters/roxi/front-alt.svg",
  18803. extra: 1828 / 1798,
  18804. bottom: 0.01
  18805. }
  18806. },
  18807. sitting: {
  18808. height: math.unit(2.8, "feet"),
  18809. weight: math.unit(120, "lb"),
  18810. name: "Sitting",
  18811. image: {
  18812. source: "./media/characters/roxi/sitting.svg",
  18813. extra: 2660 / 2462,
  18814. bottom: 0.1
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Normal",
  18821. height: math.unit(5 + 2 / 12, "feet"),
  18822. default: true
  18823. },
  18824. ]
  18825. ))
  18826. characterMakers.push(() => makeCharacter(
  18827. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18828. {
  18829. side: {
  18830. height: math.unit(55, "feet"),
  18831. weight: math.unit(153, "tons"),
  18832. name: "Side",
  18833. image: {
  18834. source: "./media/characters/shadow/side.svg",
  18835. extra: 701 / 628,
  18836. bottom: 0.02
  18837. }
  18838. },
  18839. flying: {
  18840. height: math.unit(145, "feet"),
  18841. weight: math.unit(153, "tons"),
  18842. name: "Flying",
  18843. image: {
  18844. source: "./media/characters/shadow/flying.svg"
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(55, "feet"),
  18852. default: true
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18858. {
  18859. front: {
  18860. height: math.unit(6, "feet"),
  18861. weight: math.unit(200, "lb"),
  18862. name: "Front",
  18863. image: {
  18864. source: "./media/characters/marcie/front.svg",
  18865. extra: 960 / 876,
  18866. bottom: 58 / 1017.87
  18867. }
  18868. },
  18869. },
  18870. [
  18871. {
  18872. name: "Macro",
  18873. height: math.unit(1, "mile"),
  18874. default: true
  18875. },
  18876. ]
  18877. ))
  18878. characterMakers.push(() => makeCharacter(
  18879. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18880. {
  18881. front: {
  18882. height: math.unit(7, "feet"),
  18883. weight: math.unit(200, "lb"),
  18884. name: "Front",
  18885. image: {
  18886. source: "./media/characters/kachina/front.svg",
  18887. extra: 1290.68 / 1119,
  18888. bottom: 36.5 / 1327.18
  18889. }
  18890. },
  18891. },
  18892. [
  18893. {
  18894. name: "Normal",
  18895. height: math.unit(7, "feet"),
  18896. default: true
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18902. {
  18903. looking: {
  18904. height: math.unit(2, "meters"),
  18905. weight: math.unit(300, "kg"),
  18906. name: "Looking",
  18907. image: {
  18908. source: "./media/characters/kash/looking.svg",
  18909. extra: 474 / 344,
  18910. bottom: 0.03
  18911. }
  18912. },
  18913. side: {
  18914. height: math.unit(2, "meters"),
  18915. weight: math.unit(300, "kg"),
  18916. name: "Side",
  18917. image: {
  18918. source: "./media/characters/kash/side.svg",
  18919. extra: 302 / 251,
  18920. bottom: 0.03
  18921. }
  18922. },
  18923. front: {
  18924. height: math.unit(2, "meters"),
  18925. weight: math.unit(300, "kg"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/kash/front.svg",
  18929. extra: 495 / 360,
  18930. bottom: 0.015
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Normal",
  18937. height: math.unit(2, "meters"),
  18938. default: true
  18939. },
  18940. {
  18941. name: "Big",
  18942. height: math.unit(3, "meters")
  18943. },
  18944. {
  18945. name: "Large",
  18946. height: math.unit(5, "meters")
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18952. {
  18953. feeding: {
  18954. height: math.unit(6.7, "feet"),
  18955. weight: math.unit(350, "lb"),
  18956. name: "Feeding",
  18957. image: {
  18958. source: "./media/characters/lalim/feeding.svg",
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(6.7, "feet"),
  18966. default: true
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(9.5, "feet"),
  18975. weight: math.unit(600, "lb"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/de'vout/front.svg",
  18979. extra: 1443 / 1328,
  18980. bottom: 0.025
  18981. }
  18982. },
  18983. back: {
  18984. height: math.unit(9.5, "feet"),
  18985. weight: math.unit(600, "lb"),
  18986. name: "Back",
  18987. image: {
  18988. source: "./media/characters/de'vout/back.svg",
  18989. extra: 1443 / 1328
  18990. }
  18991. },
  18992. frontDressed: {
  18993. height: math.unit(9.5, "feet"),
  18994. weight: math.unit(600, "lb"),
  18995. name: "Front (Dressed",
  18996. image: {
  18997. source: "./media/characters/de'vout/front-dressed.svg",
  18998. extra: 1443 / 1328,
  18999. bottom: 0.025
  19000. }
  19001. },
  19002. backDressed: {
  19003. height: math.unit(9.5, "feet"),
  19004. weight: math.unit(600, "lb"),
  19005. name: "Back (Dressed",
  19006. image: {
  19007. source: "./media/characters/de'vout/back-dressed.svg",
  19008. extra: 1443 / 1328
  19009. }
  19010. },
  19011. },
  19012. [
  19013. {
  19014. name: "Normal",
  19015. height: math.unit(9.5, "feet"),
  19016. default: true
  19017. },
  19018. ]
  19019. ))
  19020. characterMakers.push(() => makeCharacter(
  19021. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19022. {
  19023. front: {
  19024. height: math.unit(8, "feet"),
  19025. weight: math.unit(225, "lb"),
  19026. name: "Front",
  19027. image: {
  19028. source: "./media/characters/talana/front.svg",
  19029. extra: 1410 / 1300,
  19030. bottom: 0.015
  19031. }
  19032. },
  19033. frontDressed: {
  19034. height: math.unit(8, "feet"),
  19035. weight: math.unit(225, "lb"),
  19036. name: "Front (Dressed",
  19037. image: {
  19038. source: "./media/characters/talana/front-dressed.svg",
  19039. extra: 1410 / 1300,
  19040. bottom: 0.015
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(8, "feet"),
  19048. default: true
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19054. {
  19055. side: {
  19056. height: math.unit(7.2, "feet"),
  19057. weight: math.unit(150, "lb"),
  19058. name: "Side",
  19059. image: {
  19060. source: "./media/characters/xeauvok/side.svg",
  19061. extra: 1975 / 1523,
  19062. bottom: 0.07
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(7.2, "feet"),
  19070. default: true
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19076. {
  19077. side: {
  19078. height: math.unit(4, "meters"),
  19079. weight: math.unit(2200, "kg"),
  19080. name: "Side",
  19081. image: {
  19082. source: "./media/characters/zara/side.svg",
  19083. extra: 765/744,
  19084. bottom: 156/921
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(4, "meters"),
  19092. default: true
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19098. {
  19099. side: {
  19100. height: math.unit(6, "feet"),
  19101. weight: math.unit(150, "lb"),
  19102. name: "Side",
  19103. image: {
  19104. source: "./media/characters/richard-dragon/side.svg",
  19105. extra: 845 / 340,
  19106. bottom: 0.017
  19107. }
  19108. },
  19109. maw: {
  19110. height: math.unit(2.97, "feet"),
  19111. name: "Maw",
  19112. image: {
  19113. source: "./media/characters/richard-dragon/maw.svg"
  19114. }
  19115. },
  19116. },
  19117. [
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(4, "feet"),
  19125. weight: math.unit(100, "lb"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/richard-smeargle/front.svg",
  19129. extra: 2952 / 2820,
  19130. bottom: 0.028
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(4, "feet"),
  19138. default: true
  19139. },
  19140. {
  19141. name: "Dynamax",
  19142. height: math.unit(20, "meters")
  19143. },
  19144. ]
  19145. ))
  19146. characterMakers.push(() => makeCharacter(
  19147. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19148. {
  19149. front: {
  19150. height: math.unit(6, "feet"),
  19151. weight: math.unit(110, "lb"),
  19152. name: "Front",
  19153. image: {
  19154. source: "./media/characters/klay/front.svg",
  19155. extra: 962 / 883,
  19156. bottom: 0.04
  19157. }
  19158. },
  19159. back: {
  19160. height: math.unit(6, "feet"),
  19161. weight: math.unit(110, "lb"),
  19162. name: "Back",
  19163. image: {
  19164. source: "./media/characters/klay/back.svg",
  19165. extra: 962 / 883
  19166. }
  19167. },
  19168. beans: {
  19169. height: math.unit(1.15, "feet"),
  19170. name: "Beans",
  19171. image: {
  19172. source: "./media/characters/klay/beans.svg"
  19173. }
  19174. },
  19175. },
  19176. [
  19177. {
  19178. name: "Micro",
  19179. height: math.unit(6, "inches")
  19180. },
  19181. {
  19182. name: "Mini",
  19183. height: math.unit(3, "feet")
  19184. },
  19185. {
  19186. name: "Normal",
  19187. height: math.unit(6, "feet"),
  19188. default: true
  19189. },
  19190. {
  19191. name: "Big",
  19192. height: math.unit(25, "feet")
  19193. },
  19194. {
  19195. name: "Macro",
  19196. height: math.unit(100, "feet")
  19197. },
  19198. {
  19199. name: "Megamacro",
  19200. height: math.unit(400, "feet")
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19206. {
  19207. front: {
  19208. height: math.unit(6, "feet"),
  19209. weight: math.unit(160, "lb"),
  19210. name: "Front",
  19211. image: {
  19212. source: "./media/characters/marcus/front.svg",
  19213. extra: 734 / 676,
  19214. bottom: 0.03
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Little",
  19221. height: math.unit(6, "feet")
  19222. },
  19223. {
  19224. name: "Normal",
  19225. height: math.unit(110, "feet"),
  19226. default: true
  19227. },
  19228. {
  19229. name: "Macro",
  19230. height: math.unit(250, "feet")
  19231. },
  19232. {
  19233. name: "Megamacro",
  19234. height: math.unit(1000, "feet")
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(7, "feet"),
  19243. weight: math.unit(275, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/claude-delroute/front.svg",
  19247. extra: 902/827,
  19248. bottom: 26/928
  19249. }
  19250. },
  19251. side: {
  19252. height: math.unit(7, "feet"),
  19253. weight: math.unit(275, "lb"),
  19254. name: "Side",
  19255. image: {
  19256. source: "./media/characters/claude-delroute/side.svg",
  19257. extra: 908/853,
  19258. bottom: 16/924
  19259. }
  19260. },
  19261. back: {
  19262. height: math.unit(7, "feet"),
  19263. weight: math.unit(275, "lb"),
  19264. name: "Back",
  19265. image: {
  19266. source: "./media/characters/claude-delroute/back.svg",
  19267. extra: 911/829,
  19268. bottom: 18/929
  19269. }
  19270. },
  19271. maw: {
  19272. height: math.unit(0.6407, "meters"),
  19273. name: "Maw",
  19274. image: {
  19275. source: "./media/characters/claude-delroute/maw.svg"
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(7, "feet"),
  19283. default: true
  19284. },
  19285. {
  19286. name: "Lorge",
  19287. height: math.unit(20, "feet")
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(8 + 4 / 12, "feet"),
  19296. weight: math.unit(600, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/dragonien/front.svg",
  19300. extra: 100 / 94,
  19301. bottom: 3.3 / 103.3445
  19302. }
  19303. },
  19304. back: {
  19305. height: math.unit(8 + 4 / 12, "feet"),
  19306. weight: math.unit(600, "lb"),
  19307. name: "Back",
  19308. image: {
  19309. source: "./media/characters/dragonien/back.svg",
  19310. extra: 776 / 746,
  19311. bottom: 6.4 / 782.0616
  19312. }
  19313. },
  19314. foot: {
  19315. height: math.unit(1.54, "feet"),
  19316. name: "Foot",
  19317. image: {
  19318. source: "./media/characters/dragonien/foot.svg",
  19319. }
  19320. },
  19321. },
  19322. [
  19323. {
  19324. name: "Normal",
  19325. height: math.unit(8 + 4 / 12, "feet"),
  19326. default: true
  19327. },
  19328. {
  19329. name: "Macro",
  19330. height: math.unit(200, "feet")
  19331. },
  19332. {
  19333. name: "Megamacro",
  19334. height: math.unit(1, "mile")
  19335. },
  19336. {
  19337. name: "Gigamacro",
  19338. height: math.unit(1000, "miles")
  19339. },
  19340. ]
  19341. ))
  19342. characterMakers.push(() => makeCharacter(
  19343. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19344. {
  19345. front: {
  19346. height: math.unit(5 + 2 / 12, "feet"),
  19347. weight: math.unit(110, "lb"),
  19348. name: "Front",
  19349. image: {
  19350. source: "./media/characters/desta/front.svg",
  19351. extra: 767 / 726,
  19352. bottom: 11.7 / 779
  19353. }
  19354. },
  19355. back: {
  19356. height: math.unit(5 + 2 / 12, "feet"),
  19357. weight: math.unit(110, "lb"),
  19358. name: "Back",
  19359. image: {
  19360. source: "./media/characters/desta/back.svg",
  19361. extra: 777 / 728,
  19362. bottom: 6 / 784
  19363. }
  19364. },
  19365. frontAlt: {
  19366. height: math.unit(5 + 2 / 12, "feet"),
  19367. weight: math.unit(110, "lb"),
  19368. name: "Front",
  19369. image: {
  19370. source: "./media/characters/desta/front-alt.svg",
  19371. extra: 1482 / 1417
  19372. }
  19373. },
  19374. side: {
  19375. height: math.unit(5 + 2 / 12, "feet"),
  19376. weight: math.unit(110, "lb"),
  19377. name: "Side",
  19378. image: {
  19379. source: "./media/characters/desta/side.svg",
  19380. extra: 2579 / 2491,
  19381. bottom: 0.053
  19382. }
  19383. },
  19384. },
  19385. [
  19386. {
  19387. name: "Micro",
  19388. height: math.unit(6, "inches")
  19389. },
  19390. {
  19391. name: "Normal",
  19392. height: math.unit(5 + 2 / 12, "feet"),
  19393. default: true
  19394. },
  19395. {
  19396. name: "Macro",
  19397. height: math.unit(62, "feet")
  19398. },
  19399. {
  19400. name: "Megamacro",
  19401. height: math.unit(1800, "feet")
  19402. },
  19403. ]
  19404. ))
  19405. characterMakers.push(() => makeCharacter(
  19406. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19407. {
  19408. front: {
  19409. height: math.unit(10, "feet"),
  19410. weight: math.unit(700, "lb"),
  19411. name: "Front",
  19412. image: {
  19413. source: "./media/characters/storm-alystar/front.svg",
  19414. extra: 2112 / 1898,
  19415. bottom: 0.034
  19416. }
  19417. },
  19418. },
  19419. [
  19420. {
  19421. name: "Micro",
  19422. height: math.unit(3.5, "inches")
  19423. },
  19424. {
  19425. name: "Normal",
  19426. height: math.unit(10, "feet"),
  19427. default: true
  19428. },
  19429. {
  19430. name: "Macro",
  19431. height: math.unit(400, "feet")
  19432. },
  19433. {
  19434. name: "Deific",
  19435. height: math.unit(60, "miles")
  19436. },
  19437. ]
  19438. ))
  19439. characterMakers.push(() => makeCharacter(
  19440. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19441. {
  19442. front: {
  19443. height: math.unit(2.35, "meters"),
  19444. weight: math.unit(119, "kg"),
  19445. name: "Front",
  19446. image: {
  19447. source: "./media/characters/ilia/front.svg",
  19448. extra: 1285 / 1255,
  19449. bottom: 0.06
  19450. }
  19451. },
  19452. },
  19453. [
  19454. {
  19455. name: "Normal",
  19456. height: math.unit(2.35, "meters")
  19457. },
  19458. {
  19459. name: "Macro",
  19460. height: math.unit(140, "meters"),
  19461. default: true
  19462. },
  19463. {
  19464. name: "Megamacro",
  19465. height: math.unit(100, "miles")
  19466. },
  19467. ]
  19468. ))
  19469. characterMakers.push(() => makeCharacter(
  19470. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19471. {
  19472. front: {
  19473. height: math.unit(6 + 5 / 12, "feet"),
  19474. weight: math.unit(190, "lb"),
  19475. name: "Front",
  19476. image: {
  19477. source: "./media/characters/kingdead/front.svg",
  19478. extra: 1228 / 1177
  19479. }
  19480. },
  19481. },
  19482. [
  19483. {
  19484. name: "Micro",
  19485. height: math.unit(7, "inches")
  19486. },
  19487. {
  19488. name: "Normal",
  19489. height: math.unit(6 + 5 / 12, "feet")
  19490. },
  19491. {
  19492. name: "Macro",
  19493. height: math.unit(150, "feet"),
  19494. default: true
  19495. },
  19496. {
  19497. name: "Megamacro",
  19498. height: math.unit(200, "miles")
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19504. {
  19505. front: {
  19506. height: math.unit(8, "feet"),
  19507. weight: math.unit(600, "lb"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/kyrehx/front.svg",
  19511. extra: 1195 / 1095,
  19512. bottom: 0.034
  19513. }
  19514. },
  19515. },
  19516. [
  19517. {
  19518. name: "Micro",
  19519. height: math.unit(2, "inches")
  19520. },
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(8, "feet"),
  19524. default: true
  19525. },
  19526. {
  19527. name: "Macro",
  19528. height: math.unit(255, "feet")
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19534. {
  19535. front: {
  19536. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19537. weight: math.unit(184, "lb"),
  19538. name: "Front",
  19539. image: {
  19540. source: "./media/characters/xang/front.svg",
  19541. extra: 845 / 755
  19542. }
  19543. },
  19544. },
  19545. [
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19549. default: true
  19550. },
  19551. {
  19552. name: "Macro",
  19553. height: math.unit(0.935 * 146, "feet")
  19554. },
  19555. {
  19556. name: "Megamacro",
  19557. height: math.unit(0.935 * 3, "miles")
  19558. },
  19559. ]
  19560. ))
  19561. characterMakers.push(() => makeCharacter(
  19562. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19563. {
  19564. frontDressed: {
  19565. height: math.unit(5 + 7 / 12, "feet"),
  19566. weight: math.unit(140, "lb"),
  19567. name: "Front (Dressed)",
  19568. image: {
  19569. source: "./media/characters/doc-weardno/front-dressed.svg",
  19570. extra: 263 / 234
  19571. }
  19572. },
  19573. backDressed: {
  19574. height: math.unit(5 + 7 / 12, "feet"),
  19575. weight: math.unit(140, "lb"),
  19576. name: "Back (Dressed)",
  19577. image: {
  19578. source: "./media/characters/doc-weardno/back-dressed.svg",
  19579. extra: 266 / 238
  19580. }
  19581. },
  19582. front: {
  19583. height: math.unit(5 + 7 / 12, "feet"),
  19584. weight: math.unit(140, "lb"),
  19585. name: "Front",
  19586. image: {
  19587. source: "./media/characters/doc-weardno/front.svg",
  19588. extra: 254 / 233
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Micro",
  19595. height: math.unit(3, "inches")
  19596. },
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(5 + 7 / 12, "feet"),
  19600. default: true
  19601. },
  19602. {
  19603. name: "Macro",
  19604. height: math.unit(25, "feet")
  19605. },
  19606. {
  19607. name: "Megamacro",
  19608. height: math.unit(2, "miles")
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19614. {
  19615. front: {
  19616. height: math.unit(6 + 2 / 12, "feet"),
  19617. weight: math.unit(153, "lb"),
  19618. name: "Front",
  19619. image: {
  19620. source: "./media/characters/seth-whilst/front.svg",
  19621. bottom: 0.07
  19622. }
  19623. },
  19624. },
  19625. [
  19626. {
  19627. name: "Micro",
  19628. height: math.unit(5, "inches")
  19629. },
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(6 + 2 / 12, "feet"),
  19633. default: true
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19639. {
  19640. front: {
  19641. height: math.unit(3, "inches"),
  19642. weight: math.unit(8, "grams"),
  19643. name: "Front",
  19644. image: {
  19645. source: "./media/characters/pocket-jabari/front.svg",
  19646. extra: 1024 / 974,
  19647. bottom: 0.039
  19648. }
  19649. },
  19650. },
  19651. [
  19652. {
  19653. name: "Minimicro",
  19654. height: math.unit(8, "mm")
  19655. },
  19656. {
  19657. name: "Micro",
  19658. height: math.unit(3, "inches"),
  19659. default: true
  19660. },
  19661. {
  19662. name: "Normal",
  19663. height: math.unit(3, "feet")
  19664. },
  19665. ]
  19666. ))
  19667. characterMakers.push(() => makeCharacter(
  19668. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19669. {
  19670. frontDressed: {
  19671. height: math.unit(15, "feet"),
  19672. weight: math.unit(3280, "lb"),
  19673. name: "Front (Dressed)",
  19674. image: {
  19675. source: "./media/characters/sapphy/front-dressed.svg",
  19676. extra: 1951/1654,
  19677. bottom: 194/2145
  19678. },
  19679. form: "anthro",
  19680. default: true
  19681. },
  19682. backDressed: {
  19683. height: math.unit(15, "feet"),
  19684. weight: math.unit(3280, "lb"),
  19685. name: "Back (Dressed)",
  19686. image: {
  19687. source: "./media/characters/sapphy/back-dressed.svg",
  19688. extra: 2058/1918,
  19689. bottom: 125/2183
  19690. },
  19691. form: "anthro"
  19692. },
  19693. frontNude: {
  19694. height: math.unit(15, "feet"),
  19695. weight: math.unit(3280, "lb"),
  19696. name: "Front (Nude)",
  19697. image: {
  19698. source: "./media/characters/sapphy/front-nude.svg",
  19699. extra: 1951/1654,
  19700. bottom: 194/2145
  19701. },
  19702. form: "anthro"
  19703. },
  19704. backNude: {
  19705. height: math.unit(15, "feet"),
  19706. weight: math.unit(3280, "lb"),
  19707. name: "Back (Nude)",
  19708. image: {
  19709. source: "./media/characters/sapphy/back-nude.svg",
  19710. extra: 2058/1918,
  19711. bottom: 125/2183
  19712. },
  19713. form: "anthro"
  19714. },
  19715. full: {
  19716. height: math.unit(15, "feet"),
  19717. weight: math.unit(3280, "lb"),
  19718. name: "Full",
  19719. image: {
  19720. source: "./media/characters/sapphy/full.svg",
  19721. extra: 1396/1317,
  19722. bottom: 44/1440
  19723. },
  19724. form: "anthro"
  19725. },
  19726. dick: {
  19727. height: math.unit(3.8, "feet"),
  19728. name: "Dick",
  19729. image: {
  19730. source: "./media/characters/sapphy/dick.svg"
  19731. },
  19732. form: "anthro"
  19733. },
  19734. feral: {
  19735. height: math.unit(35, "feet"),
  19736. weight: math.unit(160, "tons"),
  19737. name: "Feral",
  19738. image: {
  19739. source: "./media/characters/sapphy/feral.svg",
  19740. extra: 1050/573,
  19741. bottom: 60/1110
  19742. },
  19743. form: "feral",
  19744. default: true
  19745. },
  19746. },
  19747. [
  19748. {
  19749. name: "Normal",
  19750. height: math.unit(15, "feet"),
  19751. form: "anthro"
  19752. },
  19753. {
  19754. name: "Casual Macro",
  19755. height: math.unit(120, "feet"),
  19756. form: "anthro"
  19757. },
  19758. {
  19759. name: "Macro",
  19760. height: math.unit(2150, "feet"),
  19761. default: true,
  19762. form: "anthro"
  19763. },
  19764. {
  19765. name: "Megamacro",
  19766. height: math.unit(8, "miles"),
  19767. form: "anthro"
  19768. },
  19769. {
  19770. name: "Galaxy Mom",
  19771. height: math.unit(6, "megalightyears"),
  19772. form: "anthro"
  19773. },
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(35, "feet"),
  19777. form: "feral",
  19778. default: true
  19779. },
  19780. {
  19781. name: "Macro",
  19782. height: math.unit(300, "feet"),
  19783. form: "feral"
  19784. },
  19785. {
  19786. name: "Galaxy Mom",
  19787. height: math.unit(10, "megalightyears"),
  19788. form: "feral"
  19789. },
  19790. ],
  19791. {
  19792. "anthro": {
  19793. name: "Anthro",
  19794. default: true
  19795. },
  19796. "feral": {
  19797. name: "Feral"
  19798. }
  19799. }
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19803. {
  19804. front: {
  19805. height: math.unit(6, "feet"),
  19806. weight: math.unit(170, "lb"),
  19807. name: "Front",
  19808. image: {
  19809. source: "./media/characters/kiro/front.svg",
  19810. extra: 1064 / 1012,
  19811. bottom: 0.052
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Micro",
  19818. height: math.unit(6, "inches")
  19819. },
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(6, "feet"),
  19823. default: true
  19824. },
  19825. {
  19826. name: "Macro",
  19827. height: math.unit(72, "feet")
  19828. },
  19829. ]
  19830. ))
  19831. characterMakers.push(() => makeCharacter(
  19832. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19833. {
  19834. front: {
  19835. height: math.unit(5 + 9 / 12, "feet"),
  19836. weight: math.unit(175, "lb"),
  19837. name: "Front",
  19838. image: {
  19839. source: "./media/characters/irishfox/front.svg",
  19840. extra: 1912 / 1680,
  19841. bottom: 0.02
  19842. }
  19843. },
  19844. },
  19845. [
  19846. {
  19847. name: "Nano",
  19848. height: math.unit(1, "mm")
  19849. },
  19850. {
  19851. name: "Micro",
  19852. height: math.unit(2, "inches")
  19853. },
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(5 + 9 / 12, "feet"),
  19857. default: true
  19858. },
  19859. {
  19860. name: "Macro",
  19861. height: math.unit(45, "feet")
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19867. {
  19868. front: {
  19869. height: math.unit(6 + 1 / 12, "feet"),
  19870. weight: math.unit(75, "lb"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/aronai-sieyes/front.svg",
  19874. extra: 1532/1450,
  19875. bottom: 42/1574
  19876. }
  19877. },
  19878. side: {
  19879. height: math.unit(6 + 1 / 12, "feet"),
  19880. weight: math.unit(75, "lb"),
  19881. name: "Side",
  19882. image: {
  19883. source: "./media/characters/aronai-sieyes/side.svg",
  19884. extra: 1422/1365,
  19885. bottom: 148/1570
  19886. }
  19887. },
  19888. back: {
  19889. height: math.unit(6 + 1 / 12, "feet"),
  19890. weight: math.unit(75, "lb"),
  19891. name: "Back",
  19892. image: {
  19893. source: "./media/characters/aronai-sieyes/back.svg",
  19894. extra: 1526/1464,
  19895. bottom: 51/1577
  19896. }
  19897. },
  19898. dressed: {
  19899. height: math.unit(6 + 1 / 12, "feet"),
  19900. weight: math.unit(75, "lb"),
  19901. name: "Dressed",
  19902. image: {
  19903. source: "./media/characters/aronai-sieyes/dressed.svg",
  19904. extra: 1559/1483,
  19905. bottom: 39/1598
  19906. }
  19907. },
  19908. slit: {
  19909. height: math.unit(1.3, "feet"),
  19910. name: "Slit",
  19911. image: {
  19912. source: "./media/characters/aronai-sieyes/slit.svg"
  19913. }
  19914. },
  19915. slitSpread: {
  19916. height: math.unit(0.9, "feet"),
  19917. name: "Slit (Spread)",
  19918. image: {
  19919. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19920. }
  19921. },
  19922. rump: {
  19923. height: math.unit(1.3, "feet"),
  19924. name: "Rump",
  19925. image: {
  19926. source: "./media/characters/aronai-sieyes/rump.svg"
  19927. }
  19928. },
  19929. maw: {
  19930. height: math.unit(1.25, "feet"),
  19931. name: "Maw",
  19932. image: {
  19933. source: "./media/characters/aronai-sieyes/maw.svg"
  19934. }
  19935. },
  19936. feral: {
  19937. height: math.unit(18, "feet"),
  19938. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19939. name: "Feral",
  19940. image: {
  19941. source: "./media/characters/aronai-sieyes/feral.svg",
  19942. extra: 1530 / 1240,
  19943. bottom: 0.035
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Micro",
  19950. height: math.unit(2, "inches")
  19951. },
  19952. {
  19953. name: "Normal",
  19954. height: math.unit(6 + 1 / 12, "feet"),
  19955. default: true
  19956. }
  19957. ]
  19958. ))
  19959. characterMakers.push(() => makeCharacter(
  19960. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19961. {
  19962. front: {
  19963. height: math.unit(12, "feet"),
  19964. weight: math.unit(410, "kg"),
  19965. name: "Front",
  19966. image: {
  19967. source: "./media/characters/xuna/front.svg",
  19968. extra: 2184 / 1980
  19969. }
  19970. },
  19971. side: {
  19972. height: math.unit(12, "feet"),
  19973. weight: math.unit(410, "kg"),
  19974. name: "Side",
  19975. image: {
  19976. source: "./media/characters/xuna/side.svg",
  19977. extra: 2184 / 1980
  19978. }
  19979. },
  19980. back: {
  19981. height: math.unit(12, "feet"),
  19982. weight: math.unit(410, "kg"),
  19983. name: "Back",
  19984. image: {
  19985. source: "./media/characters/xuna/back.svg",
  19986. extra: 2184 / 1980
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Nano glow",
  19993. height: math.unit(10, "nm")
  19994. },
  19995. {
  19996. name: "Micro floof",
  19997. height: math.unit(0.3, "m")
  19998. },
  19999. {
  20000. name: "Huggable softy boi",
  20001. height: math.unit(3.6576, "m"),
  20002. default: true
  20003. },
  20004. {
  20005. name: "Admirable floof",
  20006. height: math.unit(80, "meters")
  20007. },
  20008. {
  20009. name: "Gentle macro",
  20010. height: math.unit(300, "meters")
  20011. },
  20012. {
  20013. name: "Very careful floof",
  20014. height: math.unit(3200, "meters")
  20015. },
  20016. {
  20017. name: "The mega floof",
  20018. height: math.unit(36000, "meters")
  20019. },
  20020. {
  20021. name: "Giga-fur-Wicker",
  20022. height: math.unit(4800000, "meters")
  20023. },
  20024. {
  20025. name: "Licky world",
  20026. height: math.unit(20000000, "meters")
  20027. },
  20028. {
  20029. name: "Floofy cyan sun",
  20030. height: math.unit(1500000000, "meters")
  20031. },
  20032. {
  20033. name: "Milky Wicker",
  20034. height: math.unit(1000000000000000000000, "meters")
  20035. },
  20036. {
  20037. name: "The observing Wicker",
  20038. height: math.unit(999999999999999999999999999, "meters")
  20039. },
  20040. ]
  20041. ))
  20042. characterMakers.push(() => makeCharacter(
  20043. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20044. {
  20045. front: {
  20046. height: math.unit(5 + 9 / 12, "feet"),
  20047. weight: math.unit(150, "lb"),
  20048. name: "Front",
  20049. image: {
  20050. source: "./media/characters/arokha-sieyes/front.svg",
  20051. extra: 1425 / 1284,
  20052. bottom: 0.05
  20053. }
  20054. },
  20055. },
  20056. [
  20057. {
  20058. name: "Normal",
  20059. height: math.unit(5 + 9 / 12, "feet")
  20060. },
  20061. {
  20062. name: "Macro",
  20063. height: math.unit(30, "meters"),
  20064. default: true
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20070. {
  20071. front: {
  20072. height: math.unit(6, "feet"),
  20073. weight: math.unit(180, "lb"),
  20074. name: "Front",
  20075. image: {
  20076. source: "./media/characters/arokh-sieyes/front.svg",
  20077. extra: 1830 / 1769,
  20078. bottom: 0.01
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(6, "feet")
  20086. },
  20087. {
  20088. name: "Macro",
  20089. height: math.unit(30, "meters"),
  20090. default: true
  20091. },
  20092. ]
  20093. ))
  20094. characterMakers.push(() => makeCharacter(
  20095. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20096. {
  20097. side: {
  20098. height: math.unit(13 + 1 / 12, "feet"),
  20099. weight: math.unit(8.5, "tonnes"),
  20100. name: "Side",
  20101. image: {
  20102. source: "./media/characters/goldeneye/side.svg",
  20103. extra: 1182 / 778,
  20104. bottom: 0.067
  20105. }
  20106. },
  20107. paw: {
  20108. height: math.unit(3.4, "feet"),
  20109. name: "Paw",
  20110. image: {
  20111. source: "./media/characters/goldeneye/paw.svg"
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(13 + 1 / 12, "feet"),
  20119. default: true
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20125. {
  20126. front: {
  20127. height: math.unit(6 + 1 / 12, "feet"),
  20128. weight: math.unit(210, "lb"),
  20129. name: "Front",
  20130. image: {
  20131. source: "./media/characters/leonardo-lycheborne/front.svg",
  20132. extra: 776/723,
  20133. bottom: 34/810
  20134. }
  20135. },
  20136. side: {
  20137. height: math.unit(6 + 1 / 12, "feet"),
  20138. weight: math.unit(210, "lb"),
  20139. name: "Side",
  20140. image: {
  20141. source: "./media/characters/leonardo-lycheborne/side.svg",
  20142. extra: 780/728,
  20143. bottom: 12/792
  20144. }
  20145. },
  20146. back: {
  20147. height: math.unit(6 + 1 / 12, "feet"),
  20148. weight: math.unit(210, "lb"),
  20149. name: "Back",
  20150. image: {
  20151. source: "./media/characters/leonardo-lycheborne/back.svg",
  20152. extra: 775/721,
  20153. bottom: 17/792
  20154. }
  20155. },
  20156. hand: {
  20157. height: math.unit(1.08, "feet"),
  20158. name: "Hand",
  20159. image: {
  20160. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20161. }
  20162. },
  20163. foot: {
  20164. height: math.unit(1.32, "feet"),
  20165. name: "Foot",
  20166. image: {
  20167. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20168. }
  20169. },
  20170. maw: {
  20171. height: math.unit(1, "feet"),
  20172. name: "Maw",
  20173. image: {
  20174. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20175. }
  20176. },
  20177. were: {
  20178. height: math.unit(20, "feet"),
  20179. weight: math.unit(7800, "lb"),
  20180. name: "Were",
  20181. image: {
  20182. source: "./media/characters/leonardo-lycheborne/were.svg",
  20183. extra: 1224/1165,
  20184. bottom: 72/1296
  20185. }
  20186. },
  20187. feral: {
  20188. height: math.unit(7.5, "feet"),
  20189. weight: math.unit(600, "lb"),
  20190. name: "Feral",
  20191. image: {
  20192. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20193. extra: 797/702,
  20194. bottom: 139/936
  20195. }
  20196. },
  20197. taur: {
  20198. height: math.unit(11, "feet"),
  20199. weight: math.unit(3300, "lb"),
  20200. name: "Taur",
  20201. image: {
  20202. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20203. extra: 1271/1197,
  20204. bottom: 47/1318
  20205. }
  20206. },
  20207. barghest: {
  20208. height: math.unit(11, "feet"),
  20209. weight: math.unit(1300, "lb"),
  20210. name: "Barghest",
  20211. image: {
  20212. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20213. extra: 1291/1204,
  20214. bottom: 37/1328
  20215. }
  20216. },
  20217. dick: {
  20218. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20219. name: "Dick",
  20220. image: {
  20221. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20222. }
  20223. },
  20224. dickWere: {
  20225. height: math.unit((20) / 3.8, "feet"),
  20226. name: "Dick (Were)",
  20227. image: {
  20228. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20229. }
  20230. },
  20231. },
  20232. [
  20233. {
  20234. name: "Normal",
  20235. height: math.unit(6 + 1 / 12, "feet"),
  20236. default: true
  20237. },
  20238. ]
  20239. ))
  20240. characterMakers.push(() => makeCharacter(
  20241. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20242. {
  20243. front: {
  20244. height: math.unit(10, "feet"),
  20245. weight: math.unit(350, "lb"),
  20246. name: "Front",
  20247. image: {
  20248. source: "./media/characters/jet/front.svg",
  20249. extra: 2050 / 1980,
  20250. bottom: 0.013
  20251. }
  20252. },
  20253. back: {
  20254. height: math.unit(10, "feet"),
  20255. weight: math.unit(350, "lb"),
  20256. name: "Back",
  20257. image: {
  20258. source: "./media/characters/jet/back.svg",
  20259. extra: 2050 / 1980,
  20260. bottom: 0.013
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Micro",
  20267. height: math.unit(6, "inches")
  20268. },
  20269. {
  20270. name: "Normal",
  20271. height: math.unit(10, "feet"),
  20272. default: true
  20273. },
  20274. {
  20275. name: "Macro",
  20276. height: math.unit(100, "feet")
  20277. },
  20278. ]
  20279. ))
  20280. characterMakers.push(() => makeCharacter(
  20281. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20282. {
  20283. front: {
  20284. height: math.unit(15, "feet"),
  20285. weight: math.unit(2800, "lb"),
  20286. name: "Front",
  20287. image: {
  20288. source: "./media/characters/tanarath/front.svg",
  20289. extra: 2392 / 2220,
  20290. bottom: 0.03
  20291. }
  20292. },
  20293. back: {
  20294. height: math.unit(15, "feet"),
  20295. weight: math.unit(2800, "lb"),
  20296. name: "Back",
  20297. image: {
  20298. source: "./media/characters/tanarath/back.svg",
  20299. extra: 2392 / 2220,
  20300. bottom: 0.03
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Normal",
  20307. height: math.unit(15, "feet"),
  20308. default: true
  20309. },
  20310. ]
  20311. ))
  20312. characterMakers.push(() => makeCharacter(
  20313. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20314. {
  20315. front: {
  20316. height: math.unit(7 + 1 / 12, "feet"),
  20317. weight: math.unit(175, "lb"),
  20318. name: "Front",
  20319. image: {
  20320. source: "./media/characters/patty-cattybatty/front.svg",
  20321. extra: 908 / 874,
  20322. bottom: 0.025
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Micro",
  20329. height: math.unit(1, "inch")
  20330. },
  20331. {
  20332. name: "Normal",
  20333. height: math.unit(7 + 1 / 12, "feet")
  20334. },
  20335. {
  20336. name: "Mini Macro",
  20337. height: math.unit(155, "feet")
  20338. },
  20339. {
  20340. name: "Macro",
  20341. height: math.unit(1077, "feet")
  20342. },
  20343. {
  20344. name: "Mega Macro",
  20345. height: math.unit(47650, "feet"),
  20346. default: true
  20347. },
  20348. {
  20349. name: "Giga Macro",
  20350. height: math.unit(440, "miles")
  20351. },
  20352. {
  20353. name: "Tera Macro",
  20354. height: math.unit(8700, "miles")
  20355. },
  20356. {
  20357. name: "Planetary Macro",
  20358. height: math.unit(32700, "miles")
  20359. },
  20360. {
  20361. name: "Solar Macro",
  20362. height: math.unit(550000, "miles")
  20363. },
  20364. {
  20365. name: "Celestial Macro",
  20366. height: math.unit(2.5, "AU")
  20367. },
  20368. ]
  20369. ))
  20370. characterMakers.push(() => makeCharacter(
  20371. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20372. {
  20373. front: {
  20374. height: math.unit(4 + 5 / 12, "feet"),
  20375. weight: math.unit(90, "lb"),
  20376. name: "Front",
  20377. image: {
  20378. source: "./media/characters/cappu/front.svg",
  20379. extra: 1247 / 1152,
  20380. bottom: 0.012
  20381. }
  20382. },
  20383. },
  20384. [
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(4 + 5 / 12, "feet"),
  20388. default: true
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20394. {
  20395. frontDressed: {
  20396. height: math.unit(70, "cm"),
  20397. weight: math.unit(6, "kg"),
  20398. name: "Front (Dressed)",
  20399. image: {
  20400. source: "./media/characters/sebi/front-dressed.svg",
  20401. extra: 713.5 / 686.5,
  20402. bottom: 0.003
  20403. }
  20404. },
  20405. front: {
  20406. height: math.unit(70, "cm"),
  20407. weight: math.unit(5, "kg"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/sebi/front.svg",
  20411. extra: 713.5 / 686.5,
  20412. bottom: 0.003
  20413. }
  20414. }
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(70, "cm"),
  20420. default: true
  20421. },
  20422. {
  20423. name: "Macro",
  20424. height: math.unit(8, "meters")
  20425. },
  20426. ]
  20427. ))
  20428. characterMakers.push(() => makeCharacter(
  20429. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20430. {
  20431. front: {
  20432. height: math.unit(6, "feet"),
  20433. weight: math.unit(150, "lb"),
  20434. name: "Front",
  20435. image: {
  20436. source: "./media/characters/typhek/front.svg",
  20437. extra: 1948 / 1929,
  20438. bottom: 0.025
  20439. }
  20440. },
  20441. side: {
  20442. height: math.unit(6, "feet"),
  20443. weight: math.unit(150, "lb"),
  20444. name: "Side",
  20445. image: {
  20446. source: "./media/characters/typhek/side.svg",
  20447. extra: 2034 / 2010,
  20448. bottom: 0.003
  20449. }
  20450. },
  20451. back: {
  20452. height: math.unit(6, "feet"),
  20453. weight: math.unit(150, "lb"),
  20454. name: "Back",
  20455. image: {
  20456. source: "./media/characters/typhek/back.svg",
  20457. extra: 2005 / 1978,
  20458. bottom: 0.004
  20459. }
  20460. },
  20461. palm: {
  20462. height: math.unit(1.2, "feet"),
  20463. name: "Palm",
  20464. image: {
  20465. source: "./media/characters/typhek/palm.svg"
  20466. }
  20467. },
  20468. fist: {
  20469. height: math.unit(1.1, "feet"),
  20470. name: "Fist",
  20471. image: {
  20472. source: "./media/characters/typhek/fist.svg"
  20473. }
  20474. },
  20475. foot: {
  20476. height: math.unit(1.57, "feet"),
  20477. name: "Foot",
  20478. image: {
  20479. source: "./media/characters/typhek/foot.svg"
  20480. }
  20481. },
  20482. sole: {
  20483. height: math.unit(2.05, "feet"),
  20484. name: "Sole",
  20485. image: {
  20486. source: "./media/characters/typhek/sole.svg"
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Macro",
  20493. height: math.unit(40, "stories"),
  20494. default: true
  20495. },
  20496. {
  20497. name: "Megamacro",
  20498. height: math.unit(1, "mile")
  20499. },
  20500. {
  20501. name: "Gigamacro",
  20502. height: math.unit(4000, "solarradii")
  20503. },
  20504. {
  20505. name: "Universal",
  20506. height: math.unit(1.1, "universes")
  20507. }
  20508. ]
  20509. ))
  20510. characterMakers.push(() => makeCharacter(
  20511. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20512. {
  20513. side: {
  20514. height: math.unit(5 + 7 / 12, "feet"),
  20515. weight: math.unit(150, "lb"),
  20516. name: "Side",
  20517. image: {
  20518. source: "./media/characters/kassy/side.svg",
  20519. extra: 1280 / 1225,
  20520. bottom: 0.002
  20521. }
  20522. },
  20523. front: {
  20524. height: math.unit(5 + 7 / 12, "feet"),
  20525. weight: math.unit(150, "lb"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/kassy/front.svg",
  20529. extra: 1280 / 1225,
  20530. bottom: 0.025
  20531. }
  20532. },
  20533. back: {
  20534. height: math.unit(5 + 7 / 12, "feet"),
  20535. weight: math.unit(150, "lb"),
  20536. name: "Back",
  20537. image: {
  20538. source: "./media/characters/kassy/back.svg",
  20539. extra: 1280 / 1225,
  20540. bottom: 0.002
  20541. }
  20542. },
  20543. foot: {
  20544. height: math.unit(1.266, "feet"),
  20545. name: "Foot",
  20546. image: {
  20547. source: "./media/characters/kassy/foot.svg"
  20548. }
  20549. },
  20550. },
  20551. [
  20552. {
  20553. name: "Normal",
  20554. height: math.unit(5 + 7 / 12, "feet")
  20555. },
  20556. {
  20557. name: "Macro",
  20558. height: math.unit(137, "feet"),
  20559. default: true
  20560. },
  20561. {
  20562. name: "Megamacro",
  20563. height: math.unit(1, "mile")
  20564. },
  20565. ]
  20566. ))
  20567. characterMakers.push(() => makeCharacter(
  20568. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20569. {
  20570. front: {
  20571. height: math.unit(6 + 1 / 12, "feet"),
  20572. weight: math.unit(200, "lb"),
  20573. name: "Front",
  20574. image: {
  20575. source: "./media/characters/neil/front.svg",
  20576. extra: 1326 / 1250,
  20577. bottom: 0.023
  20578. }
  20579. },
  20580. },
  20581. [
  20582. {
  20583. name: "Normal",
  20584. height: math.unit(6 + 1 / 12, "feet"),
  20585. default: true
  20586. },
  20587. {
  20588. name: "Macro",
  20589. height: math.unit(200, "feet")
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20595. {
  20596. front: {
  20597. height: math.unit(5 + 9 / 12, "feet"),
  20598. weight: math.unit(190, "lb"),
  20599. name: "Front",
  20600. image: {
  20601. source: "./media/characters/atticus/front.svg",
  20602. extra: 2934 / 2785,
  20603. bottom: 0.025
  20604. }
  20605. },
  20606. },
  20607. [
  20608. {
  20609. name: "Normal",
  20610. height: math.unit(5 + 9 / 12, "feet"),
  20611. default: true
  20612. },
  20613. {
  20614. name: "Macro",
  20615. height: math.unit(180, "feet")
  20616. },
  20617. ]
  20618. ))
  20619. characterMakers.push(() => makeCharacter(
  20620. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20621. {
  20622. side: {
  20623. height: math.unit(9, "feet"),
  20624. weight: math.unit(650, "lb"),
  20625. name: "Side",
  20626. image: {
  20627. source: "./media/characters/milo/side.svg",
  20628. extra: 2644 / 2310,
  20629. bottom: 0.032
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Normal",
  20636. height: math.unit(9, "feet"),
  20637. default: true
  20638. },
  20639. {
  20640. name: "Macro",
  20641. height: math.unit(300, "feet")
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20647. {
  20648. side: {
  20649. height: math.unit(8, "meters"),
  20650. weight: math.unit(90000, "kg"),
  20651. name: "Side",
  20652. image: {
  20653. source: "./media/characters/ijzer/side.svg",
  20654. extra: 2756 / 1600,
  20655. bottom: 0.01
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Small",
  20662. height: math.unit(3, "meters")
  20663. },
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(8, "meters"),
  20667. default: true
  20668. },
  20669. {
  20670. name: "Normal+",
  20671. height: math.unit(10, "meters")
  20672. },
  20673. {
  20674. name: "Bigger",
  20675. height: math.unit(24, "meters")
  20676. },
  20677. {
  20678. name: "Huge",
  20679. height: math.unit(80, "meters")
  20680. },
  20681. ]
  20682. ))
  20683. characterMakers.push(() => makeCharacter(
  20684. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20685. {
  20686. front: {
  20687. height: math.unit(6 + 2 / 12, "feet"),
  20688. weight: math.unit(153, "lb"),
  20689. name: "Front",
  20690. image: {
  20691. source: "./media/characters/luca-cervicum/front.svg",
  20692. extra: 370 / 327,
  20693. bottom: 0.015
  20694. }
  20695. },
  20696. back: {
  20697. height: math.unit(6 + 2 / 12, "feet"),
  20698. weight: math.unit(153, "lb"),
  20699. name: "Back",
  20700. image: {
  20701. source: "./media/characters/luca-cervicum/back.svg",
  20702. extra: 367 / 333,
  20703. bottom: 0.005
  20704. }
  20705. },
  20706. frontGear: {
  20707. height: math.unit(6 + 2 / 12, "feet"),
  20708. weight: math.unit(173, "lb"),
  20709. name: "Front (Gear)",
  20710. image: {
  20711. source: "./media/characters/luca-cervicum/front-gear.svg",
  20712. extra: 377 / 333,
  20713. bottom: 0.006
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(6 + 2 / 12, "feet"),
  20721. default: true
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(6 + 1 / 12, "feet"),
  20730. weight: math.unit(304, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/oliver/front.svg",
  20734. extra: 157 / 143,
  20735. bottom: 0.08
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(6 + 1 / 12, "feet"),
  20743. default: true
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(5 + 7 / 12, "feet"),
  20752. weight: math.unit(140, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/shane/front.svg",
  20756. extra: 304 / 289,
  20757. bottom: 0.005
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Normal",
  20764. height: math.unit(5 + 7 / 12, "feet"),
  20765. default: true
  20766. },
  20767. ]
  20768. ))
  20769. characterMakers.push(() => makeCharacter(
  20770. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20771. {
  20772. front: {
  20773. height: math.unit(5 + 9 / 12, "feet"),
  20774. weight: math.unit(178, "lb"),
  20775. name: "Front",
  20776. image: {
  20777. source: "./media/characters/shin/front.svg",
  20778. extra: 159 / 151,
  20779. bottom: 0.015
  20780. }
  20781. },
  20782. },
  20783. [
  20784. {
  20785. name: "Normal",
  20786. height: math.unit(5 + 9 / 12, "feet"),
  20787. default: true
  20788. },
  20789. ]
  20790. ))
  20791. characterMakers.push(() => makeCharacter(
  20792. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20793. {
  20794. front: {
  20795. height: math.unit(5 + 10 / 12, "feet"),
  20796. weight: math.unit(168, "lb"),
  20797. name: "Front",
  20798. image: {
  20799. source: "./media/characters/xerxes/front.svg",
  20800. extra: 282 / 260,
  20801. bottom: 0.045
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(5 + 10 / 12, "feet"),
  20809. default: true
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20815. {
  20816. front: {
  20817. height: math.unit(6 + 7 / 12, "feet"),
  20818. weight: math.unit(208, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/chaska/front.svg",
  20822. extra: 332 / 319,
  20823. bottom: 0.015
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(6 + 7 / 12, "feet"),
  20831. default: true
  20832. },
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20837. {
  20838. front: {
  20839. height: math.unit(5 + 8 / 12, "feet"),
  20840. weight: math.unit(208, "lb"),
  20841. name: "Front",
  20842. image: {
  20843. source: "./media/characters/enuk/front.svg",
  20844. extra: 437 / 406,
  20845. bottom: 0.02
  20846. }
  20847. },
  20848. },
  20849. [
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(5 + 8 / 12, "feet"),
  20853. default: true
  20854. },
  20855. ]
  20856. ))
  20857. characterMakers.push(() => makeCharacter(
  20858. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20859. {
  20860. front: {
  20861. height: math.unit(5 + 10 / 12, "feet"),
  20862. weight: math.unit(252, "lb"),
  20863. name: "Front",
  20864. image: {
  20865. source: "./media/characters/bruun/front.svg",
  20866. extra: 197 / 187,
  20867. bottom: 0.012
  20868. }
  20869. },
  20870. },
  20871. [
  20872. {
  20873. name: "Normal",
  20874. height: math.unit(5 + 10 / 12, "feet"),
  20875. default: true
  20876. },
  20877. ]
  20878. ))
  20879. characterMakers.push(() => makeCharacter(
  20880. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20881. {
  20882. front: {
  20883. height: math.unit(6 + 10 / 12, "feet"),
  20884. weight: math.unit(255, "lb"),
  20885. name: "Front",
  20886. image: {
  20887. source: "./media/characters/alexeev/front.svg",
  20888. extra: 213 / 200,
  20889. bottom: 0.05
  20890. }
  20891. },
  20892. },
  20893. [
  20894. {
  20895. name: "Normal",
  20896. height: math.unit(6 + 10 / 12, "feet"),
  20897. default: true
  20898. },
  20899. ]
  20900. ))
  20901. characterMakers.push(() => makeCharacter(
  20902. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20903. {
  20904. front: {
  20905. height: math.unit(2 + 8 / 12, "feet"),
  20906. weight: math.unit(22, "lb"),
  20907. name: "Front",
  20908. image: {
  20909. source: "./media/characters/evelyn/front.svg",
  20910. extra: 208 / 180
  20911. }
  20912. },
  20913. },
  20914. [
  20915. {
  20916. name: "Normal",
  20917. height: math.unit(2 + 8 / 12, "feet"),
  20918. default: true
  20919. },
  20920. ]
  20921. ))
  20922. characterMakers.push(() => makeCharacter(
  20923. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20924. {
  20925. front: {
  20926. height: math.unit(5 + 9 / 12, "feet"),
  20927. weight: math.unit(139, "lb"),
  20928. name: "Front",
  20929. image: {
  20930. source: "./media/characters/inca/front.svg",
  20931. extra: 294 / 291,
  20932. bottom: 0.03
  20933. }
  20934. },
  20935. },
  20936. [
  20937. {
  20938. name: "Normal",
  20939. height: math.unit(5 + 9 / 12, "feet"),
  20940. default: true
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20946. {
  20947. front: {
  20948. height: math.unit(6 + 3 / 12, "feet"),
  20949. weight: math.unit(185, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/mera/front.svg",
  20953. extra: 291 / 277,
  20954. bottom: 0.03
  20955. }
  20956. },
  20957. },
  20958. [
  20959. {
  20960. name: "Normal",
  20961. height: math.unit(6 + 3 / 12, "feet"),
  20962. default: true
  20963. },
  20964. ]
  20965. ))
  20966. characterMakers.push(() => makeCharacter(
  20967. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20968. {
  20969. front: {
  20970. height: math.unit(6 + 7 / 12, "feet"),
  20971. weight: math.unit(160, "lb"),
  20972. name: "Front",
  20973. image: {
  20974. source: "./media/characters/ceres/front.svg",
  20975. extra: 1023 / 950,
  20976. bottom: 0.027
  20977. }
  20978. },
  20979. back: {
  20980. height: math.unit(6 + 7 / 12, "feet"),
  20981. weight: math.unit(160, "lb"),
  20982. name: "Back",
  20983. image: {
  20984. source: "./media/characters/ceres/back.svg",
  20985. extra: 1023 / 950
  20986. }
  20987. },
  20988. },
  20989. [
  20990. {
  20991. name: "Normal",
  20992. height: math.unit(6 + 7 / 12, "feet"),
  20993. default: true
  20994. },
  20995. ]
  20996. ))
  20997. characterMakers.push(() => makeCharacter(
  20998. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20999. {
  21000. front: {
  21001. height: math.unit(5 + 10 / 12, "feet"),
  21002. weight: math.unit(150, "lb"),
  21003. name: "Front",
  21004. image: {
  21005. source: "./media/characters/kris/front.svg",
  21006. extra: 885 / 803,
  21007. bottom: 0.03
  21008. }
  21009. },
  21010. },
  21011. [
  21012. {
  21013. name: "Normal",
  21014. height: math.unit(5 + 10 / 12, "feet"),
  21015. default: true
  21016. },
  21017. ]
  21018. ))
  21019. characterMakers.push(() => makeCharacter(
  21020. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21021. {
  21022. front: {
  21023. height: math.unit(7, "feet"),
  21024. weight: math.unit(120, "kg"),
  21025. name: "Front",
  21026. image: {
  21027. source: "./media/characters/taluthus/front.svg",
  21028. extra: 903 / 833,
  21029. bottom: 0.015
  21030. }
  21031. },
  21032. },
  21033. [
  21034. {
  21035. name: "Normal",
  21036. height: math.unit(7, "feet"),
  21037. default: true
  21038. },
  21039. {
  21040. name: "Macro",
  21041. height: math.unit(300, "feet")
  21042. },
  21043. ]
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21047. {
  21048. front: {
  21049. height: math.unit(5 + 9 / 12, "feet"),
  21050. weight: math.unit(145, "lb"),
  21051. name: "Front",
  21052. image: {
  21053. source: "./media/characters/dawn/front.svg",
  21054. extra: 2094 / 2016,
  21055. bottom: 0.025
  21056. }
  21057. },
  21058. back: {
  21059. height: math.unit(5 + 9 / 12, "feet"),
  21060. weight: math.unit(160, "lb"),
  21061. name: "Back",
  21062. image: {
  21063. source: "./media/characters/dawn/back.svg",
  21064. extra: 2112 / 2080,
  21065. bottom: 0.005
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(6 + 7 / 12, "feet"),
  21073. default: true
  21074. },
  21075. ]
  21076. ))
  21077. characterMakers.push(() => makeCharacter(
  21078. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21079. {
  21080. anthro: {
  21081. height: math.unit(8 + 3 / 12, "feet"),
  21082. weight: math.unit(450, "lb"),
  21083. name: "Anthro",
  21084. image: {
  21085. source: "./media/characters/arador/anthro.svg",
  21086. extra: 1835 / 1718,
  21087. bottom: 0.025
  21088. }
  21089. },
  21090. feral: {
  21091. height: math.unit(4, "feet"),
  21092. weight: math.unit(200, "lb"),
  21093. name: "Feral",
  21094. image: {
  21095. source: "./media/characters/arador/feral.svg",
  21096. extra: 1683 / 1514,
  21097. bottom: 0.07
  21098. }
  21099. },
  21100. },
  21101. [
  21102. {
  21103. name: "Normal",
  21104. height: math.unit(8 + 3 / 12, "feet")
  21105. },
  21106. {
  21107. name: "Macro",
  21108. height: math.unit(82.5, "feet"),
  21109. default: true
  21110. },
  21111. ]
  21112. ))
  21113. characterMakers.push(() => makeCharacter(
  21114. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21115. {
  21116. front: {
  21117. height: math.unit(5 + 10 / 12, "feet"),
  21118. weight: math.unit(125, "lb"),
  21119. name: "Front",
  21120. image: {
  21121. source: "./media/characters/dharsi/front.svg",
  21122. extra: 716 / 630,
  21123. bottom: 0.035
  21124. }
  21125. },
  21126. },
  21127. [
  21128. {
  21129. name: "Nano",
  21130. height: math.unit(100, "nm")
  21131. },
  21132. {
  21133. name: "Micro",
  21134. height: math.unit(2, "inches")
  21135. },
  21136. {
  21137. name: "Normal",
  21138. height: math.unit(5 + 10 / 12, "feet"),
  21139. default: true
  21140. },
  21141. {
  21142. name: "Macro",
  21143. height: math.unit(1000, "feet")
  21144. },
  21145. {
  21146. name: "Megamacro",
  21147. height: math.unit(10, "miles")
  21148. },
  21149. {
  21150. name: "Gigamacro",
  21151. height: math.unit(3000, "miles")
  21152. },
  21153. {
  21154. name: "Teramacro",
  21155. height: math.unit(500000, "miles")
  21156. },
  21157. {
  21158. name: "Teramacro+",
  21159. height: math.unit(30, "galaxies")
  21160. },
  21161. ]
  21162. ))
  21163. characterMakers.push(() => makeCharacter(
  21164. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21165. {
  21166. front: {
  21167. height: math.unit(6, "feet"),
  21168. weight: math.unit(150, "lb"),
  21169. name: "Front",
  21170. image: {
  21171. source: "./media/characters/deathy/front.svg",
  21172. extra: 1552 / 1463,
  21173. bottom: 0.025
  21174. }
  21175. },
  21176. side: {
  21177. height: math.unit(6, "feet"),
  21178. weight: math.unit(150, "lb"),
  21179. name: "Side",
  21180. image: {
  21181. source: "./media/characters/deathy/side.svg",
  21182. extra: 1604 / 1455,
  21183. bottom: 0.025
  21184. }
  21185. },
  21186. back: {
  21187. height: math.unit(6, "feet"),
  21188. weight: math.unit(150, "lb"),
  21189. name: "Back",
  21190. image: {
  21191. source: "./media/characters/deathy/back.svg",
  21192. extra: 1580 / 1463,
  21193. bottom: 0.005
  21194. }
  21195. },
  21196. },
  21197. [
  21198. {
  21199. name: "Micro",
  21200. height: math.unit(5, "millimeters")
  21201. },
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(6 + 5 / 12, "feet"),
  21205. default: true
  21206. },
  21207. ]
  21208. ))
  21209. characterMakers.push(() => makeCharacter(
  21210. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21211. {
  21212. front: {
  21213. height: math.unit(16, "feet"),
  21214. weight: math.unit(4000, "lb"),
  21215. name: "Front",
  21216. image: {
  21217. source: "./media/characters/juniper/front.svg",
  21218. bottom: 0.04
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Normal",
  21225. height: math.unit(16, "feet"),
  21226. default: true
  21227. },
  21228. ]
  21229. ))
  21230. characterMakers.push(() => makeCharacter(
  21231. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21232. {
  21233. front: {
  21234. height: math.unit(6, "feet"),
  21235. weight: math.unit(150, "lb"),
  21236. name: "Front",
  21237. image: {
  21238. source: "./media/characters/hipster/front.svg",
  21239. extra: 1312 / 1209,
  21240. bottom: 0.025
  21241. }
  21242. },
  21243. back: {
  21244. height: math.unit(6, "feet"),
  21245. weight: math.unit(150, "lb"),
  21246. name: "Back",
  21247. image: {
  21248. source: "./media/characters/hipster/back.svg",
  21249. extra: 1281 / 1196,
  21250. bottom: 0.01
  21251. }
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Micro",
  21257. height: math.unit(1, "mm")
  21258. },
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(4, "inches"),
  21262. default: true
  21263. },
  21264. {
  21265. name: "Macro",
  21266. height: math.unit(500, "feet")
  21267. },
  21268. {
  21269. name: "Megamacro",
  21270. height: math.unit(1000, "miles")
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21276. {
  21277. front: {
  21278. height: math.unit(6, "feet"),
  21279. weight: math.unit(150, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/tendirmuldr/front.svg",
  21283. extra: 1878 / 1772,
  21284. bottom: 0.015
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Megamacro",
  21291. height: math.unit(1500, "miles"),
  21292. default: true
  21293. },
  21294. ]
  21295. ))
  21296. characterMakers.push(() => makeCharacter(
  21297. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21298. {
  21299. front: {
  21300. height: math.unit(14, "feet"),
  21301. weight: math.unit(12000, "lb"),
  21302. name: "Front",
  21303. image: {
  21304. source: "./media/characters/mort/front.svg",
  21305. extra: 365 / 318,
  21306. bottom: 0.01
  21307. }
  21308. },
  21309. side: {
  21310. height: math.unit(14, "feet"),
  21311. weight: math.unit(12000, "lb"),
  21312. name: "Side",
  21313. image: {
  21314. source: "./media/characters/mort/side.svg",
  21315. extra: 365 / 318,
  21316. bottom: 0.052
  21317. },
  21318. default: true
  21319. },
  21320. back: {
  21321. height: math.unit(14, "feet"),
  21322. weight: math.unit(12000, "lb"),
  21323. name: "Back",
  21324. image: {
  21325. source: "./media/characters/mort/back.svg",
  21326. extra: 371 / 332,
  21327. bottom: 0.18
  21328. }
  21329. },
  21330. },
  21331. [
  21332. {
  21333. name: "Normal",
  21334. height: math.unit(14, "feet"),
  21335. default: true
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21341. {
  21342. front: {
  21343. height: math.unit(8, "feet"),
  21344. weight: math.unit(1, "ton"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/lycoa/front.svg",
  21348. extra: 1836/1728,
  21349. bottom: 81/1917
  21350. }
  21351. },
  21352. back: {
  21353. height: math.unit(8, "feet"),
  21354. weight: math.unit(1, "ton"),
  21355. name: "Back",
  21356. image: {
  21357. source: "./media/characters/lycoa/back.svg",
  21358. extra: 1785/1720,
  21359. bottom: 91/1876
  21360. }
  21361. },
  21362. head: {
  21363. height: math.unit(1.6243, "feet"),
  21364. name: "Head",
  21365. image: {
  21366. source: "./media/characters/lycoa/head.svg",
  21367. extra: 1011/782,
  21368. bottom: 0/1011
  21369. }
  21370. },
  21371. tailmaw: {
  21372. height: math.unit(1.9, "feet"),
  21373. name: "Tailmaw",
  21374. image: {
  21375. source: "./media/characters/lycoa/tailmaw.svg"
  21376. }
  21377. },
  21378. tentacles: {
  21379. height: math.unit(2.1, "feet"),
  21380. name: "Tentacles",
  21381. image: {
  21382. source: "./media/characters/lycoa/tentacles.svg"
  21383. }
  21384. },
  21385. dick: {
  21386. height: math.unit(1.73, "feet"),
  21387. name: "Dick",
  21388. image: {
  21389. source: "./media/characters/lycoa/dick.svg"
  21390. }
  21391. },
  21392. },
  21393. [
  21394. {
  21395. name: "Normal",
  21396. height: math.unit(8, "feet"),
  21397. default: true
  21398. },
  21399. {
  21400. name: "Macro",
  21401. height: math.unit(30, "feet")
  21402. },
  21403. ]
  21404. ))
  21405. characterMakers.push(() => makeCharacter(
  21406. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21407. {
  21408. front: {
  21409. height: math.unit(4 + 2 / 12, "feet"),
  21410. weight: math.unit(70, "lb"),
  21411. name: "Front",
  21412. image: {
  21413. source: "./media/characters/naldara/front.svg",
  21414. extra: 1664/1387,
  21415. bottom: 81/1745
  21416. },
  21417. form: "anthro",
  21418. default: true
  21419. },
  21420. naga: {
  21421. height: math.unit(20, "feet"),
  21422. weight: math.unit(15000, "kg"),
  21423. name: "Front",
  21424. image: {
  21425. source: "./media/characters/naldara/naga.svg",
  21426. extra: 1590/1396,
  21427. bottom: 285/1875
  21428. },
  21429. form: "naga",
  21430. default: true
  21431. },
  21432. },
  21433. [
  21434. {
  21435. name: "Normal",
  21436. height: math.unit(4 + 2 / 12, "feet"),
  21437. form: "anthro",
  21438. default: true
  21439. },
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(20, "feet"),
  21443. form: "naga",
  21444. default: true
  21445. },
  21446. ],
  21447. {
  21448. "anthro": {
  21449. name: "Anthro",
  21450. default: true
  21451. },
  21452. "naga": {
  21453. name: "Naga"
  21454. }
  21455. }
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21459. {
  21460. front: {
  21461. height: math.unit(13 + 7 / 12, "feet"),
  21462. weight: math.unit(1500, "lb"),
  21463. name: "Front",
  21464. image: {
  21465. source: "./media/characters/briar/front.svg",
  21466. extra: 1223/1157,
  21467. bottom: 123/1346
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(13 + 7 / 12, "feet"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21481. {
  21482. side: {
  21483. height: math.unit(16, "feet"),
  21484. weight: math.unit(500, "lb"),
  21485. name: "Side",
  21486. image: {
  21487. source: "./media/characters/vanguard/side.svg",
  21488. extra: 1022/914,
  21489. bottom: 30/1052
  21490. }
  21491. },
  21492. sideAlt: {
  21493. height: math.unit(10, "feet"),
  21494. weight: math.unit(500, "lb"),
  21495. name: "Side (Alt)",
  21496. image: {
  21497. source: "./media/characters/vanguard/side-alt.svg",
  21498. extra: 502 / 425,
  21499. bottom: 0.087
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Normal",
  21506. height: math.unit(17.71, "feet"),
  21507. default: true
  21508. },
  21509. ]
  21510. ))
  21511. characterMakers.push(() => makeCharacter(
  21512. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21513. {
  21514. front: {
  21515. height: math.unit(7.5, "feet"),
  21516. weight: math.unit(2, "lb"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/artemis/work-safe-front.svg",
  21520. extra: 1192 / 1075,
  21521. bottom: 0.07
  21522. },
  21523. form: "work-safe",
  21524. default: true
  21525. },
  21526. frontNsfw: {
  21527. height: math.unit(7.5, "feet"),
  21528. weight: math.unit(2, "lb"),
  21529. name: "Front",
  21530. image: {
  21531. source: "./media/characters/artemis/calibrating-front.svg",
  21532. extra: 1192 / 1075,
  21533. bottom: 0.07
  21534. },
  21535. form: "calibrating",
  21536. default: true
  21537. },
  21538. frontNsfwer: {
  21539. height: math.unit(7.5, "feet"),
  21540. weight: math.unit(2, "lb"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/artemis/oversize-load-front.svg",
  21544. extra: 1192 / 1075,
  21545. bottom: 0.07
  21546. },
  21547. form: "oversize-load",
  21548. default: true
  21549. },
  21550. side: {
  21551. height: math.unit(7.5, "feet"),
  21552. weight: math.unit(2, "lb"),
  21553. name: "Side",
  21554. image: {
  21555. source: "./media/characters/artemis/work-safe-side.svg",
  21556. extra: 1192 / 1075,
  21557. bottom: 0.07
  21558. },
  21559. form: "work-safe"
  21560. },
  21561. sideNsfw: {
  21562. height: math.unit(7.5, "feet"),
  21563. weight: math.unit(2, "lb"),
  21564. name: "Side",
  21565. image: {
  21566. source: "./media/characters/artemis/calibrating-side.svg",
  21567. extra: 1192 / 1075,
  21568. bottom: 0.07
  21569. },
  21570. form: "calibrating"
  21571. },
  21572. sideNsfwer: {
  21573. height: math.unit(7.5, "feet"),
  21574. weight: math.unit(2, "lb"),
  21575. name: "Side",
  21576. image: {
  21577. source: "./media/characters/artemis/oversize-load-side.svg",
  21578. extra: 1192 / 1075,
  21579. bottom: 0.07
  21580. },
  21581. form: "oversize-load"
  21582. },
  21583. maw: {
  21584. height: math.unit(1.1, "feet"),
  21585. name: "Maw",
  21586. image: {
  21587. source: "./media/characters/artemis/maw.svg"
  21588. },
  21589. form: "work-safe"
  21590. },
  21591. stomach: {
  21592. height: math.unit(0.95, "feet"),
  21593. name: "Stomach",
  21594. image: {
  21595. source: "./media/characters/artemis/stomach.svg"
  21596. },
  21597. form: "work-safe"
  21598. },
  21599. dickCanine: {
  21600. height: math.unit(1, "feet"),
  21601. name: "Dick (Canine)",
  21602. image: {
  21603. source: "./media/characters/artemis/dick-canine.svg"
  21604. },
  21605. form: "calibrating"
  21606. },
  21607. dickEquine: {
  21608. height: math.unit(0.85, "feet"),
  21609. name: "Dick (Equine)",
  21610. image: {
  21611. source: "./media/characters/artemis/dick-equine.svg"
  21612. },
  21613. form: "calibrating"
  21614. },
  21615. dickExotic: {
  21616. height: math.unit(0.85, "feet"),
  21617. name: "Dick (Exotic)",
  21618. image: {
  21619. source: "./media/characters/artemis/dick-exotic.svg"
  21620. },
  21621. form: "calibrating"
  21622. },
  21623. dickCanineBigger: {
  21624. height: math.unit(1 * 1.33, "feet"),
  21625. name: "Dick (Canine)",
  21626. image: {
  21627. source: "./media/characters/artemis/dick-canine.svg"
  21628. },
  21629. form: "oversize-load"
  21630. },
  21631. dickEquineBigger: {
  21632. height: math.unit(0.85 * 1.33, "feet"),
  21633. name: "Dick (Equine)",
  21634. image: {
  21635. source: "./media/characters/artemis/dick-equine.svg"
  21636. },
  21637. form: "oversize-load"
  21638. },
  21639. dickExoticBigger: {
  21640. height: math.unit(0.85 * 1.33, "feet"),
  21641. name: "Dick (Exotic)",
  21642. image: {
  21643. source: "./media/characters/artemis/dick-exotic.svg"
  21644. },
  21645. form: "oversize-load"
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Normal",
  21651. height: math.unit(7.5, "feet"),
  21652. form: "work-safe",
  21653. default: true
  21654. },
  21655. {
  21656. name: "Normal",
  21657. height: math.unit(7.5, "feet"),
  21658. form: "calibrating",
  21659. default: true
  21660. },
  21661. {
  21662. name: "Normal",
  21663. height: math.unit(7.5, "feet"),
  21664. form: "oversize-load",
  21665. default: true
  21666. },
  21667. {
  21668. name: "Enlarged",
  21669. height: math.unit(12, "feet"),
  21670. form: "work-safe",
  21671. },
  21672. {
  21673. name: "Enlarged",
  21674. height: math.unit(12, "feet"),
  21675. form: "calibrating",
  21676. },
  21677. {
  21678. name: "Enlarged",
  21679. height: math.unit(12, "feet"),
  21680. form: "oversize-load",
  21681. },
  21682. ],
  21683. {
  21684. "work-safe": {
  21685. name: "Work-Safe",
  21686. default: true
  21687. },
  21688. "calibrating": {
  21689. name: "Calibrating"
  21690. },
  21691. "oversize-load": {
  21692. name: "Oversize Load"
  21693. }
  21694. }
  21695. ))
  21696. characterMakers.push(() => makeCharacter(
  21697. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21698. {
  21699. front: {
  21700. height: math.unit(5 + 3 / 12, "feet"),
  21701. weight: math.unit(160, "lb"),
  21702. name: "Front",
  21703. image: {
  21704. source: "./media/characters/kira/front.svg",
  21705. extra: 906 / 786,
  21706. bottom: 0.01
  21707. }
  21708. },
  21709. back: {
  21710. height: math.unit(5 + 3 / 12, "feet"),
  21711. weight: math.unit(160, "lb"),
  21712. name: "Back",
  21713. image: {
  21714. source: "./media/characters/kira/back.svg",
  21715. extra: 882 / 757,
  21716. bottom: 0.005
  21717. }
  21718. },
  21719. frontDressed: {
  21720. height: math.unit(5 + 3 / 12, "feet"),
  21721. weight: math.unit(160, "lb"),
  21722. name: "Front (Dressed)",
  21723. image: {
  21724. source: "./media/characters/kira/front-dressed.svg",
  21725. extra: 906 / 786,
  21726. bottom: 0.01
  21727. }
  21728. },
  21729. beans: {
  21730. height: math.unit(0.92, "feet"),
  21731. name: "Beans",
  21732. image: {
  21733. source: "./media/characters/kira/beans.svg"
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(5 + 3 / 12, "feet"),
  21741. default: true
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(5 + 4 / 12, "feet"),
  21750. weight: math.unit(145, "lb"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/scramble/front.svg",
  21754. extra: 763 / 727,
  21755. bottom: 0.05
  21756. }
  21757. },
  21758. back: {
  21759. height: math.unit(5 + 4 / 12, "feet"),
  21760. weight: math.unit(145, "lb"),
  21761. name: "Back",
  21762. image: {
  21763. source: "./media/characters/scramble/back.svg",
  21764. extra: 826 / 737,
  21765. bottom: 0.002
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Normal",
  21772. height: math.unit(5 + 4 / 12, "feet"),
  21773. default: true
  21774. },
  21775. ]
  21776. ))
  21777. characterMakers.push(() => makeCharacter(
  21778. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21779. {
  21780. side: {
  21781. height: math.unit(6 + 2 / 12, "feet"),
  21782. weight: math.unit(190, "lb"),
  21783. name: "Side",
  21784. image: {
  21785. source: "./media/characters/biscuit/side.svg",
  21786. extra: 858 / 791,
  21787. bottom: 0.044
  21788. }
  21789. },
  21790. },
  21791. [
  21792. {
  21793. name: "Normal",
  21794. height: math.unit(6 + 2 / 12, "feet"),
  21795. default: true
  21796. },
  21797. ]
  21798. ))
  21799. characterMakers.push(() => makeCharacter(
  21800. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21801. {
  21802. front: {
  21803. height: math.unit(5 + 2 / 12, "feet"),
  21804. weight: math.unit(120, "lb"),
  21805. name: "Front",
  21806. image: {
  21807. source: "./media/characters/poffin/front.svg",
  21808. extra: 786 / 680,
  21809. bottom: 0.005
  21810. }
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Normal",
  21816. height: math.unit(5 + 2 / 12, "feet"),
  21817. default: true
  21818. },
  21819. ]
  21820. ))
  21821. characterMakers.push(() => makeCharacter(
  21822. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21823. {
  21824. front: {
  21825. height: math.unit(6 + 3 / 12, "feet"),
  21826. weight: math.unit(519, "lb"),
  21827. name: "Front",
  21828. image: {
  21829. source: "./media/characters/dhari/front.svg",
  21830. extra: 1048 / 946,
  21831. bottom: 0.015
  21832. }
  21833. },
  21834. back: {
  21835. height: math.unit(6 + 3 / 12, "feet"),
  21836. weight: math.unit(519, "lb"),
  21837. name: "Back",
  21838. image: {
  21839. source: "./media/characters/dhari/back.svg",
  21840. extra: 1048 / 931,
  21841. bottom: 0.005
  21842. }
  21843. },
  21844. frontDressed: {
  21845. height: math.unit(6 + 3 / 12, "feet"),
  21846. weight: math.unit(519, "lb"),
  21847. name: "Front (Dressed)",
  21848. image: {
  21849. source: "./media/characters/dhari/front-dressed.svg",
  21850. extra: 1713 / 1546,
  21851. bottom: 0.02
  21852. }
  21853. },
  21854. backDressed: {
  21855. height: math.unit(6 + 3 / 12, "feet"),
  21856. weight: math.unit(519, "lb"),
  21857. name: "Back (Dressed)",
  21858. image: {
  21859. source: "./media/characters/dhari/back-dressed.svg",
  21860. extra: 1699 / 1537,
  21861. bottom: 0.01
  21862. }
  21863. },
  21864. maw: {
  21865. height: math.unit(0.95, "feet"),
  21866. name: "Maw",
  21867. image: {
  21868. source: "./media/characters/dhari/maw.svg"
  21869. }
  21870. },
  21871. wereFront: {
  21872. height: math.unit(12 + 8 / 12, "feet"),
  21873. weight: math.unit(4000, "lb"),
  21874. name: "Front (Were)",
  21875. image: {
  21876. source: "./media/characters/dhari/were-front.svg",
  21877. extra: 1065 / 969,
  21878. bottom: 0.015
  21879. }
  21880. },
  21881. wereBack: {
  21882. height: math.unit(12 + 8 / 12, "feet"),
  21883. weight: math.unit(4000, "lb"),
  21884. name: "Back (Were)",
  21885. image: {
  21886. source: "./media/characters/dhari/were-back.svg",
  21887. extra: 1065 / 969,
  21888. bottom: 0.012
  21889. }
  21890. },
  21891. wereMaw: {
  21892. height: math.unit(0.625, "meters"),
  21893. name: "Maw (Were)",
  21894. image: {
  21895. source: "./media/characters/dhari/were-maw.svg"
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Normal",
  21902. height: math.unit(6 + 3 / 12, "feet"),
  21903. default: true
  21904. },
  21905. ]
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21909. {
  21910. anthro: {
  21911. height: math.unit(5 + 7 / 12, "feet"),
  21912. weight: math.unit(175, "lb"),
  21913. name: "Anthro",
  21914. image: {
  21915. source: "./media/characters/rena-dyne/anthro.svg",
  21916. extra: 1849 / 1785,
  21917. bottom: 0.005
  21918. }
  21919. },
  21920. taur: {
  21921. height: math.unit(15 + 6 / 12, "feet"),
  21922. weight: math.unit(8000, "lb"),
  21923. name: "Taur",
  21924. image: {
  21925. source: "./media/characters/rena-dyne/taur.svg",
  21926. extra: 2315 / 2234,
  21927. bottom: 0.033
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Normal",
  21934. height: math.unit(5 + 7 / 12, "feet"),
  21935. default: true
  21936. },
  21937. ]
  21938. ))
  21939. characterMakers.push(() => makeCharacter(
  21940. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21941. {
  21942. front: {
  21943. height: math.unit(8, "feet"),
  21944. weight: math.unit(600, "lb"),
  21945. name: "Front",
  21946. image: {
  21947. source: "./media/characters/weremeep/front.svg",
  21948. extra: 970/849,
  21949. bottom: 7/977
  21950. }
  21951. },
  21952. },
  21953. [
  21954. {
  21955. name: "Normal",
  21956. height: math.unit(8, "feet"),
  21957. default: true
  21958. },
  21959. {
  21960. name: "Lorg",
  21961. height: math.unit(12, "feet")
  21962. },
  21963. {
  21964. name: "Oh Lawd She Comin'",
  21965. height: math.unit(20, "feet")
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21971. {
  21972. front: {
  21973. height: math.unit(4, "feet"),
  21974. weight: math.unit(90, "lb"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/reza/front.svg",
  21978. extra: 1183 / 1111,
  21979. bottom: 0.017
  21980. }
  21981. },
  21982. back: {
  21983. height: math.unit(4, "feet"),
  21984. weight: math.unit(90, "lb"),
  21985. name: "Back",
  21986. image: {
  21987. source: "./media/characters/reza/back.svg",
  21988. extra: 1183 / 1111,
  21989. bottom: 0.01
  21990. }
  21991. },
  21992. drake: {
  21993. height: math.unit(30, "feet"),
  21994. weight: math.unit(246960, "lb"),
  21995. name: "Drake",
  21996. image: {
  21997. source: "./media/characters/reza/drake.svg",
  21998. extra: 2350 / 2024,
  21999. bottom: 60.7 / 2403
  22000. }
  22001. },
  22002. },
  22003. [
  22004. {
  22005. name: "Normal",
  22006. height: math.unit(4, "feet"),
  22007. default: true
  22008. },
  22009. ]
  22010. ))
  22011. characterMakers.push(() => makeCharacter(
  22012. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22013. {
  22014. side: {
  22015. height: math.unit(15, "feet"),
  22016. weight: math.unit(14, "tons"),
  22017. name: "Side",
  22018. image: {
  22019. source: "./media/characters/athea/side.svg",
  22020. extra: 960 / 540,
  22021. bottom: 0.003
  22022. }
  22023. },
  22024. sitting: {
  22025. height: math.unit(6 * 2.85, "feet"),
  22026. weight: math.unit(14, "tons"),
  22027. name: "Sitting",
  22028. image: {
  22029. source: "./media/characters/athea/sitting.svg",
  22030. extra: 621 / 581,
  22031. bottom: 0.075
  22032. }
  22033. },
  22034. maw: {
  22035. height: math.unit(7.59498031496063, "feet"),
  22036. name: "Maw",
  22037. image: {
  22038. source: "./media/characters/athea/maw.svg"
  22039. }
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Lap Cat",
  22045. height: math.unit(2.5, "feet")
  22046. },
  22047. {
  22048. name: "Minimacro",
  22049. height: math.unit(15, "feet"),
  22050. default: true
  22051. },
  22052. {
  22053. name: "Macro",
  22054. height: math.unit(120, "feet")
  22055. },
  22056. {
  22057. name: "Macro+",
  22058. height: math.unit(640, "feet")
  22059. },
  22060. {
  22061. name: "Colossus",
  22062. height: math.unit(2.2, "miles")
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22068. {
  22069. front: {
  22070. height: math.unit(8 + 8 / 12, "feet"),
  22071. weight: math.unit(130, "kg"),
  22072. name: "Front",
  22073. image: {
  22074. source: "./media/characters/seroko/front.svg",
  22075. extra: 1385 / 1280,
  22076. bottom: 0.025
  22077. }
  22078. },
  22079. back: {
  22080. height: math.unit(8 + 8 / 12, "feet"),
  22081. weight: math.unit(130, "kg"),
  22082. name: "Back",
  22083. image: {
  22084. source: "./media/characters/seroko/back.svg",
  22085. extra: 1369 / 1238,
  22086. bottom: 0.018
  22087. }
  22088. },
  22089. frontDressed: {
  22090. height: math.unit(8 + 8 / 12, "feet"),
  22091. weight: math.unit(130, "kg"),
  22092. name: "Front (Dressed)",
  22093. image: {
  22094. source: "./media/characters/seroko/front-dressed.svg",
  22095. extra: 1366 / 1275,
  22096. bottom: 0.03
  22097. }
  22098. },
  22099. },
  22100. [
  22101. {
  22102. name: "Normal",
  22103. height: math.unit(8 + 8 / 12, "feet"),
  22104. default: true
  22105. },
  22106. ]
  22107. ))
  22108. characterMakers.push(() => makeCharacter(
  22109. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22110. {
  22111. front: {
  22112. height: math.unit(5.5, "feet"),
  22113. weight: math.unit(160, "lb"),
  22114. name: "Front",
  22115. image: {
  22116. source: "./media/characters/quatzi/front.svg",
  22117. extra: 2346 / 2242,
  22118. bottom: 0.015
  22119. }
  22120. },
  22121. },
  22122. [
  22123. {
  22124. name: "Normal",
  22125. height: math.unit(5.5, "feet"),
  22126. default: true
  22127. },
  22128. {
  22129. name: "Big",
  22130. height: math.unit(7.7, "feet")
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22136. {
  22137. front: {
  22138. height: math.unit(5 + 11 / 12, "feet"),
  22139. weight: math.unit(180, "lb"),
  22140. name: "Front",
  22141. image: {
  22142. source: "./media/characters/sen/front.svg",
  22143. extra: 1321 / 1254,
  22144. bottom: 0.015
  22145. }
  22146. },
  22147. side: {
  22148. height: math.unit(5 + 11 / 12, "feet"),
  22149. weight: math.unit(180, "lb"),
  22150. name: "Side",
  22151. image: {
  22152. source: "./media/characters/sen/side.svg",
  22153. extra: 1321 / 1254,
  22154. bottom: 0.007
  22155. }
  22156. },
  22157. back: {
  22158. height: math.unit(5 + 11 / 12, "feet"),
  22159. weight: math.unit(180, "lb"),
  22160. name: "Back",
  22161. image: {
  22162. source: "./media/characters/sen/back.svg",
  22163. extra: 1321 / 1254
  22164. }
  22165. },
  22166. },
  22167. [
  22168. {
  22169. name: "Normal",
  22170. height: math.unit(5 + 11 / 12, "feet"),
  22171. default: true
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22177. {
  22178. front: {
  22179. height: math.unit(166.6, "cm"),
  22180. weight: math.unit(66.6, "kg"),
  22181. name: "Front",
  22182. image: {
  22183. source: "./media/characters/fruity/front.svg",
  22184. extra: 1510 / 1386,
  22185. bottom: 0.04
  22186. }
  22187. },
  22188. back: {
  22189. height: math.unit(166.6, "cm"),
  22190. weight: math.unit(66.6, "lb"),
  22191. name: "Back",
  22192. image: {
  22193. source: "./media/characters/fruity/back.svg",
  22194. extra: 1563 / 1435,
  22195. bottom: 0.005
  22196. }
  22197. },
  22198. },
  22199. [
  22200. {
  22201. name: "Normal",
  22202. height: math.unit(166.6, "cm"),
  22203. default: true
  22204. },
  22205. {
  22206. name: "Demonic",
  22207. height: math.unit(166.6, "feet")
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22213. {
  22214. side: {
  22215. height: math.unit(10, "feet"),
  22216. weight: math.unit(500, "lb"),
  22217. name: "Side",
  22218. image: {
  22219. source: "./media/characters/zost/side.svg",
  22220. extra: 2870/2533,
  22221. bottom: 252/3122
  22222. }
  22223. },
  22224. mawFront: {
  22225. height: math.unit(1.08, "meters"),
  22226. name: "Maw (Front)",
  22227. image: {
  22228. source: "./media/characters/zost/maw-front.svg"
  22229. }
  22230. },
  22231. mawSide: {
  22232. height: math.unit(2.66, "feet"),
  22233. name: "Maw (Side)",
  22234. image: {
  22235. source: "./media/characters/zost/maw-side.svg"
  22236. }
  22237. },
  22238. wingspan: {
  22239. height: math.unit(7.4, "feet"),
  22240. name: "Wingspan",
  22241. image: {
  22242. source: "./media/characters/zost/wingspan.svg"
  22243. }
  22244. },
  22245. },
  22246. [
  22247. {
  22248. name: "Normal",
  22249. height: math.unit(10, "feet"),
  22250. default: true
  22251. },
  22252. ]
  22253. ))
  22254. characterMakers.push(() => makeCharacter(
  22255. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22256. {
  22257. front: {
  22258. height: math.unit(5 + 4 / 12, "feet"),
  22259. weight: math.unit(120, "lb"),
  22260. name: "Front",
  22261. image: {
  22262. source: "./media/characters/luci/front.svg",
  22263. extra: 1985 / 1884,
  22264. bottom: 0.04
  22265. }
  22266. },
  22267. back: {
  22268. height: math.unit(5 + 4 / 12, "feet"),
  22269. weight: math.unit(120, "lb"),
  22270. name: "Back",
  22271. image: {
  22272. source: "./media/characters/luci/back.svg",
  22273. extra: 1892 / 1791,
  22274. bottom: 0.002
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Normal",
  22281. height: math.unit(5 + 4 / 12, "feet"),
  22282. default: true
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(1500, "feet"),
  22291. weight: math.unit(3.8e6, "tons"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/2th/front.svg",
  22295. extra: 3489 / 3350,
  22296. bottom: 0.1
  22297. }
  22298. },
  22299. foot: {
  22300. height: math.unit(461, "feet"),
  22301. name: "Foot",
  22302. image: {
  22303. source: "./media/characters/2th/foot.svg"
  22304. }
  22305. },
  22306. },
  22307. [
  22308. {
  22309. name: "\"Micro\"",
  22310. height: math.unit(15 + 7 / 12, "feet")
  22311. },
  22312. {
  22313. name: "Normal",
  22314. height: math.unit(1500, "feet"),
  22315. default: true
  22316. },
  22317. {
  22318. name: "Macro",
  22319. height: math.unit(5000, "feet")
  22320. },
  22321. {
  22322. name: "Megamacro",
  22323. height: math.unit(15, "miles")
  22324. },
  22325. {
  22326. name: "Gigamacro",
  22327. height: math.unit(4000, "miles")
  22328. },
  22329. {
  22330. name: "Galactic",
  22331. height: math.unit(50, "AU")
  22332. },
  22333. ]
  22334. ))
  22335. characterMakers.push(() => makeCharacter(
  22336. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22337. {
  22338. front: {
  22339. height: math.unit(5 + 6 / 12, "feet"),
  22340. weight: math.unit(220, "lb"),
  22341. name: "Front",
  22342. image: {
  22343. source: "./media/characters/amethyst/front.svg",
  22344. extra: 2078 / 2040,
  22345. bottom: 0.045
  22346. }
  22347. },
  22348. back: {
  22349. height: math.unit(5 + 6 / 12, "feet"),
  22350. weight: math.unit(220, "lb"),
  22351. name: "Back",
  22352. image: {
  22353. source: "./media/characters/amethyst/back.svg",
  22354. extra: 2021 / 1989,
  22355. bottom: 0.02
  22356. }
  22357. },
  22358. },
  22359. [
  22360. {
  22361. name: "Normal",
  22362. height: math.unit(5 + 6 / 12, "feet"),
  22363. default: true
  22364. },
  22365. ]
  22366. ))
  22367. characterMakers.push(() => makeCharacter(
  22368. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22369. {
  22370. front: {
  22371. height: math.unit(4 + 11 / 12, "feet"),
  22372. weight: math.unit(120, "lb"),
  22373. name: "Front",
  22374. image: {
  22375. source: "./media/characters/yumi-akiyama/front.svg",
  22376. extra: 1327 / 1235,
  22377. bottom: 0.02
  22378. }
  22379. },
  22380. back: {
  22381. height: math.unit(4 + 11 / 12, "feet"),
  22382. weight: math.unit(120, "lb"),
  22383. name: "Back",
  22384. image: {
  22385. source: "./media/characters/yumi-akiyama/back.svg",
  22386. extra: 1287 / 1245,
  22387. bottom: 0.002
  22388. }
  22389. },
  22390. },
  22391. [
  22392. {
  22393. name: "Galactic",
  22394. height: math.unit(50, "galaxies"),
  22395. default: true
  22396. },
  22397. {
  22398. name: "Universal",
  22399. height: math.unit(100, "universes")
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22405. {
  22406. front: {
  22407. height: math.unit(8, "feet"),
  22408. weight: math.unit(500, "lb"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/rifter-yrmori/front.svg",
  22412. extra: 1180 / 1125,
  22413. bottom: 0.02
  22414. }
  22415. },
  22416. back: {
  22417. height: math.unit(8, "feet"),
  22418. weight: math.unit(500, "lb"),
  22419. name: "Back",
  22420. image: {
  22421. source: "./media/characters/rifter-yrmori/back.svg",
  22422. extra: 1190 / 1145,
  22423. bottom: 0.001
  22424. }
  22425. },
  22426. wings: {
  22427. height: math.unit(7.75, "feet"),
  22428. weight: math.unit(500, "lb"),
  22429. name: "Wings",
  22430. image: {
  22431. source: "./media/characters/rifter-yrmori/wings.svg",
  22432. extra: 1357 / 1285
  22433. }
  22434. },
  22435. maw: {
  22436. height: math.unit(0.8, "feet"),
  22437. name: "Maw",
  22438. image: {
  22439. source: "./media/characters/rifter-yrmori/maw.svg"
  22440. }
  22441. },
  22442. mawfront: {
  22443. height: math.unit(1.45, "feet"),
  22444. name: "Maw (Front)",
  22445. image: {
  22446. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Normal",
  22453. height: math.unit(8, "feet"),
  22454. default: true
  22455. },
  22456. {
  22457. name: "Macro",
  22458. height: math.unit(42, "meters")
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22464. {
  22465. were: {
  22466. height: math.unit(25 + 6 / 12, "feet"),
  22467. weight: math.unit(10000, "lb"),
  22468. name: "Were",
  22469. image: {
  22470. source: "./media/characters/tahajin/were.svg",
  22471. extra: 801 / 770,
  22472. bottom: 0.042
  22473. }
  22474. },
  22475. aquatic: {
  22476. height: math.unit(6 + 4 / 12, "feet"),
  22477. weight: math.unit(160, "lb"),
  22478. name: "Aquatic",
  22479. image: {
  22480. source: "./media/characters/tahajin/aquatic.svg",
  22481. extra: 572 / 542,
  22482. bottom: 0.04
  22483. }
  22484. },
  22485. chow: {
  22486. height: math.unit(8 + 11 / 12, "feet"),
  22487. weight: math.unit(450, "lb"),
  22488. name: "Chow",
  22489. image: {
  22490. source: "./media/characters/tahajin/chow.svg",
  22491. extra: 660 / 640,
  22492. bottom: 0.015
  22493. }
  22494. },
  22495. demiNaga: {
  22496. height: math.unit(6 + 8 / 12, "feet"),
  22497. weight: math.unit(300, "lb"),
  22498. name: "Demi Naga",
  22499. image: {
  22500. source: "./media/characters/tahajin/demi-naga.svg",
  22501. extra: 643 / 615,
  22502. bottom: 0.1
  22503. }
  22504. },
  22505. data: {
  22506. height: math.unit(5, "inches"),
  22507. weight: math.unit(0.1, "lb"),
  22508. name: "Data",
  22509. image: {
  22510. source: "./media/characters/tahajin/data.svg"
  22511. }
  22512. },
  22513. fluu: {
  22514. height: math.unit(5 + 7 / 12, "feet"),
  22515. weight: math.unit(140, "lb"),
  22516. name: "Fluu",
  22517. image: {
  22518. source: "./media/characters/tahajin/fluu.svg",
  22519. extra: 628 / 592,
  22520. bottom: 0.02
  22521. }
  22522. },
  22523. starWarrior: {
  22524. height: math.unit(4 + 5 / 12, "feet"),
  22525. weight: math.unit(50, "lb"),
  22526. name: "Star Warrior",
  22527. image: {
  22528. source: "./media/characters/tahajin/star-warrior.svg"
  22529. }
  22530. },
  22531. },
  22532. [
  22533. {
  22534. name: "Normal",
  22535. height: math.unit(25 + 6 / 12, "feet"),
  22536. default: true
  22537. },
  22538. ]
  22539. ))
  22540. characterMakers.push(() => makeCharacter(
  22541. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22542. {
  22543. front: {
  22544. height: math.unit(8, "feet"),
  22545. weight: math.unit(350, "lb"),
  22546. name: "Front",
  22547. image: {
  22548. source: "./media/characters/gabira/front.svg",
  22549. extra: 1261/1154,
  22550. bottom: 51/1312
  22551. }
  22552. },
  22553. back: {
  22554. height: math.unit(8, "feet"),
  22555. weight: math.unit(350, "lb"),
  22556. name: "Back",
  22557. image: {
  22558. source: "./media/characters/gabira/back.svg",
  22559. extra: 1265/1163,
  22560. bottom: 46/1311
  22561. }
  22562. },
  22563. head: {
  22564. height: math.unit(2.85, "feet"),
  22565. name: "Head",
  22566. image: {
  22567. source: "./media/characters/gabira/head.svg"
  22568. }
  22569. },
  22570. },
  22571. [
  22572. {
  22573. name: "Normal",
  22574. height: math.unit(8, "feet"),
  22575. default: true
  22576. },
  22577. ]
  22578. ))
  22579. characterMakers.push(() => makeCharacter(
  22580. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22581. {
  22582. front: {
  22583. height: math.unit(5 + 3 / 12, "feet"),
  22584. weight: math.unit(137, "lb"),
  22585. name: "Front",
  22586. image: {
  22587. source: "./media/characters/sasha-katraine/front.svg",
  22588. extra: 1745/1694,
  22589. bottom: 37/1782
  22590. }
  22591. },
  22592. back: {
  22593. height: math.unit(5 + 3 / 12, "feet"),
  22594. weight: math.unit(137, "lb"),
  22595. name: "Back",
  22596. image: {
  22597. source: "./media/characters/sasha-katraine/back.svg",
  22598. extra: 1776/1699,
  22599. bottom: 26/1802
  22600. }
  22601. },
  22602. },
  22603. [
  22604. {
  22605. name: "Micro",
  22606. height: math.unit(5, "inches")
  22607. },
  22608. {
  22609. name: "Normal",
  22610. height: math.unit(5 + 3 / 12, "feet"),
  22611. default: true
  22612. },
  22613. ]
  22614. ))
  22615. characterMakers.push(() => makeCharacter(
  22616. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22617. {
  22618. side: {
  22619. height: math.unit(4, "inches"),
  22620. weight: math.unit(200, "grams"),
  22621. name: "Side",
  22622. image: {
  22623. source: "./media/characters/der/side.svg",
  22624. extra: 719 / 400,
  22625. bottom: 30.6 / 749.9187
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Micro",
  22632. height: math.unit(4, "inches"),
  22633. default: true
  22634. },
  22635. ]
  22636. ))
  22637. characterMakers.push(() => makeCharacter(
  22638. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22639. {
  22640. side: {
  22641. height: math.unit(30, "meters"),
  22642. weight: math.unit(700, "tonnes"),
  22643. name: "Side",
  22644. image: {
  22645. source: "./media/characters/fixerdragon/side.svg",
  22646. extra: (1293.0514 - 116.03) / 1106.86,
  22647. bottom: 116.03 / 1293.0514
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Planck",
  22654. height: math.unit(1.6e-35, "meters")
  22655. },
  22656. {
  22657. name: "Micro",
  22658. height: math.unit(0.4, "meters")
  22659. },
  22660. {
  22661. name: "Normal",
  22662. height: math.unit(30, "meters"),
  22663. default: true
  22664. },
  22665. {
  22666. name: "Megamacro",
  22667. height: math.unit(1.2, "megameters")
  22668. },
  22669. {
  22670. name: "Teramacro",
  22671. height: math.unit(130, "terameters")
  22672. },
  22673. {
  22674. name: "Yottamacro",
  22675. height: math.unit(6200, "yottameters")
  22676. },
  22677. ]
  22678. ));
  22679. characterMakers.push(() => makeCharacter(
  22680. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22681. {
  22682. front: {
  22683. height: math.unit(8, "feet"),
  22684. weight: math.unit(250, "lb"),
  22685. name: "Front",
  22686. image: {
  22687. source: "./media/characters/kite/front.svg",
  22688. extra: 2796 / 2659,
  22689. bottom: 0.002
  22690. }
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Normal",
  22696. height: math.unit(8, "feet"),
  22697. default: true
  22698. },
  22699. {
  22700. name: "Macro",
  22701. height: math.unit(360, "feet")
  22702. },
  22703. {
  22704. name: "Megamacro",
  22705. height: math.unit(1500, "feet")
  22706. },
  22707. ]
  22708. ))
  22709. characterMakers.push(() => makeCharacter(
  22710. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22711. {
  22712. front: {
  22713. height: math.unit(5 + 11/12, "feet"),
  22714. weight: math.unit(170, "lb"),
  22715. name: "Front",
  22716. image: {
  22717. source: "./media/characters/poojawa-vynar/front.svg",
  22718. extra: 1735/1585,
  22719. bottom: 96/1831
  22720. }
  22721. },
  22722. back: {
  22723. height: math.unit(5 + 11/12, "feet"),
  22724. weight: math.unit(170, "lb"),
  22725. name: "Back",
  22726. image: {
  22727. source: "./media/characters/poojawa-vynar/back.svg",
  22728. extra: 1749/1607,
  22729. bottom: 28/1777
  22730. }
  22731. },
  22732. male: {
  22733. height: math.unit(5 + 11/12, "feet"),
  22734. weight: math.unit(170, "lb"),
  22735. name: "Male",
  22736. image: {
  22737. source: "./media/characters/poojawa-vynar/male.svg",
  22738. extra: 1855/1713,
  22739. bottom: 63/1918
  22740. }
  22741. },
  22742. taur: {
  22743. height: math.unit(5 + 11/12, "feet"),
  22744. weight: math.unit(170, "lb"),
  22745. name: "Taur",
  22746. image: {
  22747. source: "./media/characters/poojawa-vynar/taur.svg",
  22748. extra: 1151/1059,
  22749. bottom: 356/1507
  22750. }
  22751. },
  22752. frontDressed: {
  22753. height: math.unit(5 + 11/12, "feet"),
  22754. weight: math.unit(170, "lb"),
  22755. name: "Front (Dressed)",
  22756. image: {
  22757. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22758. extra: 1735/1585,
  22759. bottom: 96/1831
  22760. }
  22761. },
  22762. backDressed: {
  22763. height: math.unit(5 + 11/12, "feet"),
  22764. weight: math.unit(170, "lb"),
  22765. name: "Back (Dressed)",
  22766. image: {
  22767. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22768. extra: 1749/1607,
  22769. bottom: 28/1777
  22770. }
  22771. },
  22772. maleDressed: {
  22773. height: math.unit(5 + 11/12, "feet"),
  22774. weight: math.unit(170, "lb"),
  22775. name: "Male (Dressed)",
  22776. image: {
  22777. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22778. extra: 1855/1713,
  22779. bottom: 63/1918
  22780. }
  22781. },
  22782. taurDressed: {
  22783. height: math.unit(5 + 11/12, "feet"),
  22784. weight: math.unit(170, "lb"),
  22785. name: "Taur (Dressed)",
  22786. image: {
  22787. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22788. extra: 1151/1059,
  22789. bottom: 356/1507
  22790. }
  22791. },
  22792. maw: {
  22793. height: math.unit(1.46, "feet"),
  22794. name: "Maw",
  22795. image: {
  22796. source: "./media/characters/poojawa-vynar/maw.svg"
  22797. }
  22798. },
  22799. head: {
  22800. height: math.unit(2.34, "feet"),
  22801. name: "Head",
  22802. image: {
  22803. source: "./media/characters/poojawa-vynar/head.svg"
  22804. }
  22805. },
  22806. paw: {
  22807. height: math.unit(1.61, "feet"),
  22808. name: "Paw",
  22809. image: {
  22810. source: "./media/characters/poojawa-vynar/paw.svg"
  22811. }
  22812. },
  22813. pawToering: {
  22814. height: math.unit(1.72, "feet"),
  22815. name: "Paw (Toering)",
  22816. image: {
  22817. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22818. }
  22819. },
  22820. toering: {
  22821. height: math.unit(2.9, "inches"),
  22822. name: "Toering",
  22823. image: {
  22824. source: "./media/characters/poojawa-vynar/toering.svg"
  22825. }
  22826. },
  22827. shaft: {
  22828. height: math.unit(0.625, "feet"),
  22829. name: "Shaft",
  22830. image: {
  22831. source: "./media/characters/poojawa-vynar/shaft.svg"
  22832. }
  22833. },
  22834. spade: {
  22835. height: math.unit(0.42, "feet"),
  22836. name: "Spade",
  22837. image: {
  22838. source: "./media/characters/poojawa-vynar/spade.svg"
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Shortstack",
  22845. height: math.unit(4, "feet")
  22846. },
  22847. {
  22848. name: "Normal",
  22849. height: math.unit(5 + 11 / 12, "feet"),
  22850. default: true
  22851. },
  22852. {
  22853. name: "Tauric",
  22854. height: math.unit(4, "meters")
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(293, "meters"),
  22863. weight: math.unit(70400, "tons"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/violette/front.svg",
  22867. extra: 1227 / 1180,
  22868. bottom: 0.005
  22869. }
  22870. },
  22871. back: {
  22872. height: math.unit(293, "meters"),
  22873. weight: math.unit(70400, "tons"),
  22874. name: "Back",
  22875. image: {
  22876. source: "./media/characters/violette/back.svg",
  22877. extra: 1227 / 1180,
  22878. bottom: 0.005
  22879. }
  22880. },
  22881. },
  22882. [
  22883. {
  22884. name: "Macro",
  22885. height: math.unit(293, "meters"),
  22886. default: true
  22887. },
  22888. ]
  22889. ))
  22890. characterMakers.push(() => makeCharacter(
  22891. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22892. {
  22893. front: {
  22894. height: math.unit(1050, "feet"),
  22895. weight: math.unit(200000, "tons"),
  22896. name: "Front",
  22897. image: {
  22898. source: "./media/characters/alessandra/front.svg",
  22899. extra: 960 / 912,
  22900. bottom: 0.06
  22901. }
  22902. },
  22903. },
  22904. [
  22905. {
  22906. name: "Macro",
  22907. height: math.unit(1050, "feet")
  22908. },
  22909. {
  22910. name: "Macro+",
  22911. height: math.unit(900, "meters"),
  22912. default: true
  22913. },
  22914. ]
  22915. ))
  22916. characterMakers.push(() => makeCharacter(
  22917. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22918. {
  22919. front: {
  22920. height: math.unit(5, "feet"),
  22921. weight: math.unit(187, "lb"),
  22922. name: "Front",
  22923. image: {
  22924. source: "./media/characters/person/front.svg",
  22925. extra: 3087 / 2945,
  22926. bottom: 91 / 3181
  22927. }
  22928. },
  22929. },
  22930. [
  22931. {
  22932. name: "Micro",
  22933. height: math.unit(3, "inches")
  22934. },
  22935. {
  22936. name: "Normal",
  22937. height: math.unit(5, "feet"),
  22938. default: true
  22939. },
  22940. {
  22941. name: "Macro",
  22942. height: math.unit(90, "feet")
  22943. },
  22944. {
  22945. name: "Max Size",
  22946. height: math.unit(280, "feet")
  22947. },
  22948. ]
  22949. ))
  22950. characterMakers.push(() => makeCharacter(
  22951. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22952. {
  22953. front: {
  22954. height: math.unit(4.5, "meters"),
  22955. weight: math.unit(3200, "lb"),
  22956. name: "Front",
  22957. image: {
  22958. source: "./media/characters/ty/front.svg",
  22959. extra: 1038 / 960,
  22960. bottom: 31.156 / 1068
  22961. }
  22962. },
  22963. back: {
  22964. height: math.unit(4.5, "meters"),
  22965. weight: math.unit(3200, "lb"),
  22966. name: "Back",
  22967. image: {
  22968. source: "./media/characters/ty/back.svg",
  22969. extra: 1044 / 966,
  22970. bottom: 7.48 / 1049
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Normal",
  22977. height: math.unit(4.5, "meters"),
  22978. default: true
  22979. },
  22980. ]
  22981. ))
  22982. characterMakers.push(() => makeCharacter(
  22983. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22984. {
  22985. front: {
  22986. height: math.unit(5 + 4 / 12, "feet"),
  22987. weight: math.unit(115, "lb"),
  22988. name: "Front",
  22989. image: {
  22990. source: "./media/characters/rocky/front.svg",
  22991. extra: 1012 / 975,
  22992. bottom: 54 / 1066
  22993. }
  22994. },
  22995. },
  22996. [
  22997. {
  22998. name: "Normal",
  22999. height: math.unit(5 + 4 / 12, "feet"),
  23000. default: true
  23001. },
  23002. ]
  23003. ))
  23004. characterMakers.push(() => makeCharacter(
  23005. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23006. {
  23007. upright: {
  23008. height: math.unit(6, "meters"),
  23009. weight: math.unit(4000, "kg"),
  23010. name: "Upright",
  23011. image: {
  23012. source: "./media/characters/ruin/upright.svg",
  23013. extra: 668 / 661,
  23014. bottom: 42 / 799.8396
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Normal",
  23021. height: math.unit(6, "meters"),
  23022. default: true
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23028. {
  23029. front: {
  23030. height: math.unit(5, "feet"),
  23031. weight: math.unit(106, "lb"),
  23032. name: "Front",
  23033. image: {
  23034. source: "./media/characters/robin/front.svg",
  23035. extra: 862 / 799,
  23036. bottom: 42.4 / 914.8856
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Normal",
  23043. height: math.unit(5, "feet"),
  23044. default: true
  23045. },
  23046. ]
  23047. ))
  23048. characterMakers.push(() => makeCharacter(
  23049. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23050. {
  23051. side: {
  23052. height: math.unit(3, "feet"),
  23053. weight: math.unit(225, "lb"),
  23054. name: "Side",
  23055. image: {
  23056. source: "./media/characters/saian/side.svg",
  23057. extra: 566 / 356,
  23058. bottom: 79.7 / 643
  23059. }
  23060. },
  23061. maw: {
  23062. height: math.unit(2.85, "feet"),
  23063. name: "Maw",
  23064. image: {
  23065. source: "./media/characters/saian/maw.svg"
  23066. }
  23067. },
  23068. },
  23069. [
  23070. {
  23071. name: "Normal",
  23072. height: math.unit(3, "feet"),
  23073. default: true
  23074. },
  23075. ]
  23076. ))
  23077. characterMakers.push(() => makeCharacter(
  23078. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23079. {
  23080. side: {
  23081. height: math.unit(8, "feet"),
  23082. weight: math.unit(300, "lb"),
  23083. name: "Side",
  23084. image: {
  23085. source: "./media/characters/equus-silvermane/side.svg",
  23086. extra: 2176 / 2050,
  23087. bottom: 65.7 / 2245
  23088. }
  23089. },
  23090. front: {
  23091. height: math.unit(8, "feet"),
  23092. weight: math.unit(300, "lb"),
  23093. name: "Front",
  23094. image: {
  23095. source: "./media/characters/equus-silvermane/front.svg",
  23096. extra: 4633 / 4400,
  23097. bottom: 71.3 / 4706.915
  23098. }
  23099. },
  23100. sideStepping: {
  23101. height: math.unit(8, "feet"),
  23102. weight: math.unit(300, "lb"),
  23103. name: "Side (Stepping)",
  23104. image: {
  23105. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23106. extra: 1968 / 1860,
  23107. bottom: 16.4 / 1989
  23108. }
  23109. },
  23110. },
  23111. [
  23112. {
  23113. name: "Normal",
  23114. height: math.unit(8, "feet")
  23115. },
  23116. {
  23117. name: "Minimacro",
  23118. height: math.unit(75, "feet"),
  23119. default: true
  23120. },
  23121. {
  23122. name: "Macro",
  23123. height: math.unit(150, "feet")
  23124. },
  23125. {
  23126. name: "Macro+",
  23127. height: math.unit(1000, "feet")
  23128. },
  23129. {
  23130. name: "Megamacro",
  23131. height: math.unit(1, "mile")
  23132. },
  23133. ]
  23134. ))
  23135. characterMakers.push(() => makeCharacter(
  23136. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23137. {
  23138. side: {
  23139. height: math.unit(20, "feet"),
  23140. weight: math.unit(30000, "kg"),
  23141. name: "Side",
  23142. image: {
  23143. source: "./media/characters/windar/side.svg",
  23144. extra: 1491 / 1248,
  23145. bottom: 82.56 / 1568
  23146. }
  23147. },
  23148. },
  23149. [
  23150. {
  23151. name: "Normal",
  23152. height: math.unit(20, "feet"),
  23153. default: true
  23154. },
  23155. ]
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23159. {
  23160. side: {
  23161. height: math.unit(15.66, "feet"),
  23162. weight: math.unit(150, "lb"),
  23163. name: "Side",
  23164. image: {
  23165. source: "./media/characters/melody/side.svg",
  23166. extra: 1097 / 944,
  23167. bottom: 11.8 / 1109
  23168. }
  23169. },
  23170. sideOutfit: {
  23171. height: math.unit(15.66, "feet"),
  23172. weight: math.unit(150, "lb"),
  23173. name: "Side (Outfit)",
  23174. image: {
  23175. source: "./media/characters/melody/side-outfit.svg",
  23176. extra: 1097 / 944,
  23177. bottom: 11.8 / 1109
  23178. }
  23179. },
  23180. },
  23181. [
  23182. {
  23183. name: "Normal",
  23184. height: math.unit(15.66, "feet"),
  23185. default: true
  23186. },
  23187. ]
  23188. ))
  23189. characterMakers.push(() => makeCharacter(
  23190. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23191. {
  23192. armoredFront: {
  23193. height: math.unit(8, "feet"),
  23194. weight: math.unit(325, "lb"),
  23195. name: "Front",
  23196. image: {
  23197. source: "./media/characters/windera/armored-front.svg",
  23198. extra: 1830/1598,
  23199. bottom: 151/1981
  23200. },
  23201. form: "armored",
  23202. default: true
  23203. },
  23204. macroFront: {
  23205. height: math.unit(70, "feet"),
  23206. weight: math.unit(315453, "lb"),
  23207. name: "Front",
  23208. image: {
  23209. source: "./media/characters/windera/macro-front.svg",
  23210. extra: 963/883,
  23211. bottom: 23/986
  23212. },
  23213. form: "macro",
  23214. default: true
  23215. },
  23216. },
  23217. [
  23218. {
  23219. name: "Normal",
  23220. height: math.unit(8, "feet"),
  23221. default: true,
  23222. form: "armored"
  23223. },
  23224. {
  23225. name: "Normal",
  23226. height: math.unit(70, "feet"),
  23227. default: true,
  23228. form: "macro"
  23229. },
  23230. ],
  23231. {
  23232. "armored": {
  23233. name: "Armored",
  23234. default: true
  23235. },
  23236. "macro": {
  23237. name: "Macro",
  23238. },
  23239. }
  23240. ))
  23241. characterMakers.push(() => makeCharacter(
  23242. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23243. {
  23244. front: {
  23245. height: math.unit(28.75, "feet"),
  23246. weight: math.unit(2000, "kg"),
  23247. name: "Front",
  23248. image: {
  23249. source: "./media/characters/sonear/front.svg",
  23250. extra: 1041.1 / 964.9,
  23251. bottom: 53.7 / 1096.6
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Normal",
  23258. height: math.unit(28.75, "feet"),
  23259. default: true
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23265. {
  23266. side: {
  23267. height: math.unit(25.5, "feet"),
  23268. weight: math.unit(23000, "kg"),
  23269. name: "Side",
  23270. image: {
  23271. source: "./media/characters/kanara/side.svg"
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(25.5, "feet"),
  23279. default: true
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23285. {
  23286. side: {
  23287. height: math.unit(10, "feet"),
  23288. weight: math.unit(1000, "kg"),
  23289. name: "Side",
  23290. image: {
  23291. source: "./media/characters/ereus/side.svg",
  23292. extra: 1157 / 959,
  23293. bottom: 153 / 1312.5
  23294. }
  23295. },
  23296. },
  23297. [
  23298. {
  23299. name: "Normal",
  23300. height: math.unit(10, "feet"),
  23301. default: true
  23302. },
  23303. ]
  23304. ))
  23305. characterMakers.push(() => makeCharacter(
  23306. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23307. {
  23308. side: {
  23309. height: math.unit(4.5, "feet"),
  23310. weight: math.unit(500, "lb"),
  23311. name: "Side",
  23312. image: {
  23313. source: "./media/characters/e-ter/side.svg",
  23314. extra: 1550 / 1248,
  23315. bottom: 146 / 1694
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Normal",
  23322. height: math.unit(4.5, "feet"),
  23323. default: true
  23324. },
  23325. ]
  23326. ))
  23327. characterMakers.push(() => makeCharacter(
  23328. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23329. {
  23330. side: {
  23331. height: math.unit(9.7, "feet"),
  23332. weight: math.unit(4000, "kg"),
  23333. name: "Side",
  23334. image: {
  23335. source: "./media/characters/yamie/side.svg"
  23336. }
  23337. },
  23338. },
  23339. [
  23340. {
  23341. name: "Normal",
  23342. height: math.unit(9.7, "feet"),
  23343. default: true
  23344. },
  23345. ]
  23346. ))
  23347. characterMakers.push(() => makeCharacter(
  23348. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23349. {
  23350. front: {
  23351. height: math.unit(50, "feet"),
  23352. weight: math.unit(50000, "kg"),
  23353. name: "Front",
  23354. image: {
  23355. source: "./media/characters/anders/front.svg",
  23356. extra: 570 / 539,
  23357. bottom: 14.7 / 586.7
  23358. }
  23359. },
  23360. },
  23361. [
  23362. {
  23363. name: "Large",
  23364. height: math.unit(50, "feet")
  23365. },
  23366. {
  23367. name: "Macro",
  23368. height: math.unit(2000, "feet"),
  23369. default: true
  23370. },
  23371. {
  23372. name: "Megamacro",
  23373. height: math.unit(12, "miles")
  23374. },
  23375. ]
  23376. ))
  23377. characterMakers.push(() => makeCharacter(
  23378. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23379. {
  23380. front: {
  23381. height: math.unit(7 + 2 / 12, "feet"),
  23382. weight: math.unit(300, "lb"),
  23383. name: "Front",
  23384. image: {
  23385. source: "./media/characters/reban/front.svg",
  23386. extra: 1287/1212,
  23387. bottom: 148/1435
  23388. }
  23389. },
  23390. head: {
  23391. height: math.unit(1.95, "feet"),
  23392. name: "Head",
  23393. image: {
  23394. source: "./media/characters/reban/head.svg"
  23395. }
  23396. },
  23397. maw: {
  23398. height: math.unit(0.95, "feet"),
  23399. name: "Maw",
  23400. image: {
  23401. source: "./media/characters/reban/maw.svg"
  23402. }
  23403. },
  23404. foot: {
  23405. height: math.unit(1.65, "feet"),
  23406. name: "Foot",
  23407. image: {
  23408. source: "./media/characters/reban/foot.svg"
  23409. }
  23410. },
  23411. dick: {
  23412. height: math.unit(7 / 5, "feet"),
  23413. name: "Dick",
  23414. image: {
  23415. source: "./media/characters/reban/dick.svg"
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "Natural Height",
  23422. height: math.unit(7 + 2 / 12, "feet")
  23423. },
  23424. {
  23425. name: "Macro",
  23426. height: math.unit(500, "feet"),
  23427. default: true
  23428. },
  23429. {
  23430. name: "Canon Height",
  23431. height: math.unit(50, "AU")
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23437. {
  23438. front: {
  23439. height: math.unit(6, "feet"),
  23440. weight: math.unit(150, "lb"),
  23441. name: "Front",
  23442. image: {
  23443. source: "./media/characters/terrance-keayes/front.svg",
  23444. extra: 1.005,
  23445. bottom: 151 / 1615
  23446. }
  23447. },
  23448. side: {
  23449. height: math.unit(6, "feet"),
  23450. weight: math.unit(150, "lb"),
  23451. name: "Side",
  23452. image: {
  23453. source: "./media/characters/terrance-keayes/side.svg",
  23454. extra: 1.005,
  23455. bottom: 129.4 / 1544
  23456. }
  23457. },
  23458. back: {
  23459. height: math.unit(6, "feet"),
  23460. weight: math.unit(150, "lb"),
  23461. name: "Back",
  23462. image: {
  23463. source: "./media/characters/terrance-keayes/back.svg",
  23464. extra: 1.005,
  23465. bottom: 58.4 / 1557.3
  23466. }
  23467. },
  23468. dick: {
  23469. height: math.unit(6 * 0.208, "feet"),
  23470. name: "Dick",
  23471. image: {
  23472. source: "./media/characters/terrance-keayes/dick.svg"
  23473. }
  23474. },
  23475. },
  23476. [
  23477. {
  23478. name: "Canon Height",
  23479. height: math.unit(35, "miles"),
  23480. default: true
  23481. },
  23482. ]
  23483. ))
  23484. characterMakers.push(() => makeCharacter(
  23485. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23486. {
  23487. front: {
  23488. height: math.unit(6, "feet"),
  23489. weight: math.unit(150, "lb"),
  23490. name: "Front",
  23491. image: {
  23492. source: "./media/characters/ofelia/front.svg",
  23493. extra: 1130/1117,
  23494. bottom: 91/1221
  23495. }
  23496. },
  23497. back: {
  23498. height: math.unit(6, "feet"),
  23499. weight: math.unit(150, "lb"),
  23500. name: "Back",
  23501. image: {
  23502. source: "./media/characters/ofelia/back.svg",
  23503. extra: 1172/1159,
  23504. bottom: 28/1200
  23505. }
  23506. },
  23507. maw: {
  23508. height: math.unit(1, "feet"),
  23509. name: "Maw",
  23510. image: {
  23511. source: "./media/characters/ofelia/maw.svg"
  23512. }
  23513. },
  23514. foot: {
  23515. height: math.unit(1.949, "feet"),
  23516. name: "Foot",
  23517. image: {
  23518. source: "./media/characters/ofelia/foot.svg"
  23519. }
  23520. },
  23521. },
  23522. [
  23523. {
  23524. name: "Canon Height",
  23525. height: math.unit(2000, "miles"),
  23526. default: true
  23527. },
  23528. ]
  23529. ))
  23530. characterMakers.push(() => makeCharacter(
  23531. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23532. {
  23533. front: {
  23534. height: math.unit(6, "feet"),
  23535. weight: math.unit(150, "lb"),
  23536. name: "Front",
  23537. image: {
  23538. source: "./media/characters/samuel/front.svg",
  23539. extra: 265 / 258,
  23540. bottom: 2 / 266.1566
  23541. }
  23542. },
  23543. },
  23544. [
  23545. {
  23546. name: "Macro",
  23547. height: math.unit(100, "feet"),
  23548. default: true
  23549. },
  23550. {
  23551. name: "Full Size",
  23552. height: math.unit(1000, "miles")
  23553. },
  23554. ]
  23555. ))
  23556. characterMakers.push(() => makeCharacter(
  23557. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23558. {
  23559. front: {
  23560. height: math.unit(6, "feet"),
  23561. weight: math.unit(300, "lb"),
  23562. name: "Front",
  23563. image: {
  23564. source: "./media/characters/beishir-kiel/front.svg",
  23565. extra: 569 / 547,
  23566. bottom: 41.9 / 609
  23567. }
  23568. },
  23569. maw: {
  23570. height: math.unit(6 * 0.202, "feet"),
  23571. name: "Maw",
  23572. image: {
  23573. source: "./media/characters/beishir-kiel/maw.svg"
  23574. }
  23575. },
  23576. },
  23577. [
  23578. {
  23579. name: "Macro",
  23580. height: math.unit(300, "feet"),
  23581. default: true
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23587. {
  23588. front: {
  23589. height: math.unit(5 + 7/12, "feet"),
  23590. weight: math.unit(120, "lb"),
  23591. name: "Front",
  23592. image: {
  23593. source: "./media/characters/logan-grey/front.svg",
  23594. extra: 1836/1738,
  23595. bottom: 108/1944
  23596. }
  23597. },
  23598. back: {
  23599. height: math.unit(5 + 7/12, "feet"),
  23600. weight: math.unit(120, "lb"),
  23601. name: "Back",
  23602. image: {
  23603. source: "./media/characters/logan-grey/back.svg",
  23604. extra: 1880/1794,
  23605. bottom: 24/1904
  23606. }
  23607. },
  23608. frontSfw: {
  23609. height: math.unit(5 + 7/12, "feet"),
  23610. weight: math.unit(120, "lb"),
  23611. name: "Front (SFW)",
  23612. image: {
  23613. source: "./media/characters/logan-grey/front-sfw.svg",
  23614. extra: 1836/1738,
  23615. bottom: 108/1944
  23616. }
  23617. },
  23618. backSfw: {
  23619. height: math.unit(5 + 7/12, "feet"),
  23620. weight: math.unit(120, "lb"),
  23621. name: "Back (SFW)",
  23622. image: {
  23623. source: "./media/characters/logan-grey/back-sfw.svg",
  23624. extra: 1880/1794,
  23625. bottom: 24/1904
  23626. }
  23627. },
  23628. hands: {
  23629. height: math.unit(0.84, "feet"),
  23630. name: "Hands",
  23631. image: {
  23632. source: "./media/characters/logan-grey/hands.svg"
  23633. }
  23634. },
  23635. paws: {
  23636. height: math.unit(0.72, "feet"),
  23637. name: "Paws",
  23638. image: {
  23639. source: "./media/characters/logan-grey/paws.svg"
  23640. }
  23641. },
  23642. cock: {
  23643. height: math.unit(1.45, "feet"),
  23644. name: "Cock",
  23645. image: {
  23646. source: "./media/characters/logan-grey/cock.svg"
  23647. }
  23648. },
  23649. cockAlt: {
  23650. height: math.unit(1.437, "feet"),
  23651. name: "Cock (alt)",
  23652. image: {
  23653. source: "./media/characters/logan-grey/cock-alt.svg"
  23654. }
  23655. },
  23656. },
  23657. [
  23658. {
  23659. name: "Normal",
  23660. height: math.unit(5 + 8 / 12, "feet")
  23661. },
  23662. {
  23663. name: "The 500 Foot Femboy",
  23664. height: math.unit(500, "feet"),
  23665. default: true
  23666. },
  23667. {
  23668. name: "Megmacro",
  23669. height: math.unit(20, "miles")
  23670. },
  23671. ]
  23672. ))
  23673. characterMakers.push(() => makeCharacter(
  23674. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23675. {
  23676. front: {
  23677. height: math.unit(8 + 2 / 12, "feet"),
  23678. weight: math.unit(275, "lb"),
  23679. name: "Front",
  23680. image: {
  23681. source: "./media/characters/draganta/front.svg",
  23682. extra: 1177 / 1135,
  23683. bottom: 33.46 / 1212.1
  23684. }
  23685. },
  23686. },
  23687. [
  23688. {
  23689. name: "Normal",
  23690. height: math.unit(8 + 6 / 12, "feet"),
  23691. default: true
  23692. },
  23693. {
  23694. name: "Macro",
  23695. height: math.unit(150, "feet")
  23696. },
  23697. {
  23698. name: "Megamacro",
  23699. height: math.unit(1000, "miles")
  23700. },
  23701. ]
  23702. ))
  23703. characterMakers.push(() => makeCharacter(
  23704. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23705. {
  23706. front: {
  23707. height: math.unit(1.72, "m"),
  23708. weight: math.unit(80, "lb"),
  23709. name: "Front",
  23710. image: {
  23711. source: "./media/characters/voski/front.svg",
  23712. extra: 2076.22 / 2022.4,
  23713. bottom: 102.7 / 2177.3866
  23714. }
  23715. },
  23716. frontFlaccid: {
  23717. height: math.unit(1.72, "m"),
  23718. weight: math.unit(80, "lb"),
  23719. name: "Front (Flaccid)",
  23720. image: {
  23721. source: "./media/characters/voski/front-flaccid.svg",
  23722. extra: 2076.22 / 2022.4,
  23723. bottom: 102.7 / 2177.3866
  23724. }
  23725. },
  23726. frontErect: {
  23727. height: math.unit(1.72, "m"),
  23728. weight: math.unit(80, "lb"),
  23729. name: "Front (Erect)",
  23730. image: {
  23731. source: "./media/characters/voski/front-erect.svg",
  23732. extra: 2076.22 / 2022.4,
  23733. bottom: 102.7 / 2177.3866
  23734. }
  23735. },
  23736. back: {
  23737. height: math.unit(1.72, "m"),
  23738. weight: math.unit(80, "lb"),
  23739. name: "Back",
  23740. image: {
  23741. source: "./media/characters/voski/back.svg",
  23742. extra: 2104 / 2051,
  23743. bottom: 10.45 / 2113.63
  23744. }
  23745. },
  23746. },
  23747. [
  23748. {
  23749. name: "Normal",
  23750. height: math.unit(1.72, "m")
  23751. },
  23752. {
  23753. name: "Macro",
  23754. height: math.unit(55, "m"),
  23755. default: true
  23756. },
  23757. {
  23758. name: "Macro+",
  23759. height: math.unit(300, "m")
  23760. },
  23761. {
  23762. name: "Macro++",
  23763. height: math.unit(700, "m")
  23764. },
  23765. {
  23766. name: "Macro+++",
  23767. height: math.unit(4500, "m")
  23768. },
  23769. {
  23770. name: "Macro++++",
  23771. height: math.unit(45, "km")
  23772. },
  23773. {
  23774. name: "Macro+++++",
  23775. height: math.unit(1220, "km")
  23776. },
  23777. ]
  23778. ))
  23779. characterMakers.push(() => makeCharacter(
  23780. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23781. {
  23782. front: {
  23783. height: math.unit(2.3, "m"),
  23784. weight: math.unit(304, "kg"),
  23785. name: "Front",
  23786. image: {
  23787. source: "./media/characters/icowom-lee/front.svg",
  23788. extra: 985 / 955,
  23789. bottom: 25.4 / 1012
  23790. }
  23791. },
  23792. fronttentacles: {
  23793. height: math.unit(2.3, "m"),
  23794. weight: math.unit(304, "kg"),
  23795. name: "Front-tentacles",
  23796. image: {
  23797. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23798. extra: 985 / 955,
  23799. bottom: 25.4 / 1012
  23800. }
  23801. },
  23802. back: {
  23803. height: math.unit(2.3, "m"),
  23804. weight: math.unit(304, "kg"),
  23805. name: "Back",
  23806. image: {
  23807. source: "./media/characters/icowom-lee/back.svg",
  23808. extra: 975 / 954,
  23809. bottom: 9.5 / 985
  23810. }
  23811. },
  23812. backtentacles: {
  23813. height: math.unit(2.3, "m"),
  23814. weight: math.unit(304, "kg"),
  23815. name: "Back-tentacles",
  23816. image: {
  23817. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23818. extra: 975 / 954,
  23819. bottom: 9.5 / 985
  23820. }
  23821. },
  23822. frontDressed: {
  23823. height: math.unit(2.3, "m"),
  23824. weight: math.unit(304, "kg"),
  23825. name: "Front (Dressed)",
  23826. image: {
  23827. source: "./media/characters/icowom-lee/front-dressed.svg",
  23828. extra: 3076 / 2933,
  23829. bottom: 51.4 / 3125.1889
  23830. }
  23831. },
  23832. rump: {
  23833. height: math.unit(0.776, "meters"),
  23834. name: "Rump",
  23835. image: {
  23836. source: "./media/characters/icowom-lee/rump.svg"
  23837. }
  23838. },
  23839. genitals: {
  23840. height: math.unit(0.78, "meters"),
  23841. name: "Genitals",
  23842. image: {
  23843. source: "./media/characters/icowom-lee/genitals.svg"
  23844. }
  23845. },
  23846. },
  23847. [
  23848. {
  23849. name: "Normal",
  23850. height: math.unit(2.3, "meters"),
  23851. default: true
  23852. },
  23853. {
  23854. name: "Macro",
  23855. height: math.unit(94, "meters"),
  23856. default: true
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23862. {
  23863. front: {
  23864. height: math.unit(22, "meters"),
  23865. weight: math.unit(21000, "kg"),
  23866. name: "Front",
  23867. image: {
  23868. source: "./media/characters/shock-diamond/front.svg",
  23869. extra: 2204 / 2053,
  23870. bottom: 65 / 2239.47
  23871. }
  23872. },
  23873. frontNude: {
  23874. height: math.unit(22, "meters"),
  23875. weight: math.unit(21000, "kg"),
  23876. name: "Front (Nude)",
  23877. image: {
  23878. source: "./media/characters/shock-diamond/front-nude.svg",
  23879. extra: 2514 / 2285,
  23880. bottom: 13 / 2527.56
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Normal",
  23887. height: math.unit(3, "meters")
  23888. },
  23889. {
  23890. name: "Macro",
  23891. height: math.unit(22, "meters"),
  23892. default: true
  23893. },
  23894. ]
  23895. ))
  23896. characterMakers.push(() => makeCharacter(
  23897. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23898. {
  23899. front: {
  23900. height: math.unit(5 + 4 / 12, "feet"),
  23901. weight: math.unit(120, "lb"),
  23902. name: "Front",
  23903. image: {
  23904. source: "./media/characters/rory/front.svg",
  23905. extra: 1318/1241,
  23906. bottom: 42/1360
  23907. }
  23908. },
  23909. back: {
  23910. height: math.unit(5 + 4 / 12, "feet"),
  23911. weight: math.unit(120, "lb"),
  23912. name: "Back",
  23913. image: {
  23914. source: "./media/characters/rory/back.svg",
  23915. extra: 1318/1241,
  23916. bottom: 42/1360
  23917. }
  23918. },
  23919. butt: {
  23920. height: math.unit(1.74, "feet"),
  23921. name: "Butt",
  23922. image: {
  23923. source: "./media/characters/rory/butt.svg"
  23924. }
  23925. },
  23926. dick: {
  23927. height: math.unit(1.02, "feet"),
  23928. name: "Dick",
  23929. image: {
  23930. source: "./media/characters/rory/dick.svg"
  23931. }
  23932. },
  23933. paws: {
  23934. height: math.unit(1, "feet"),
  23935. name: "Paws",
  23936. image: {
  23937. source: "./media/characters/rory/paws.svg"
  23938. }
  23939. },
  23940. frontAlt: {
  23941. height: math.unit(5 + 4 / 12, "feet"),
  23942. weight: math.unit(120, "lb"),
  23943. name: "Front (Alt)",
  23944. image: {
  23945. source: "./media/characters/rory/front-alt.svg",
  23946. extra: 589 / 556,
  23947. bottom: 45.7 / 635.76
  23948. }
  23949. },
  23950. frontAltNude: {
  23951. height: math.unit(5 + 4 / 12, "feet"),
  23952. weight: math.unit(120, "lb"),
  23953. name: "Front (Alt, Nude)",
  23954. image: {
  23955. source: "./media/characters/rory/front-alt-nude.svg",
  23956. extra: 589 / 556,
  23957. bottom: 45.7 / 635.76
  23958. }
  23959. },
  23960. side: {
  23961. height: math.unit(5 + 4 / 12, "feet"),
  23962. weight: math.unit(120, "lb"),
  23963. name: "Side",
  23964. image: {
  23965. source: "./media/characters/rory/side.svg",
  23966. extra: 597 / 564,
  23967. bottom: 55 / 653
  23968. }
  23969. },
  23970. backAlt: {
  23971. height: math.unit(5 + 4 / 12, "feet"),
  23972. weight: math.unit(120, "lb"),
  23973. name: "Back (Alt)",
  23974. image: {
  23975. source: "./media/characters/rory/back-alt.svg",
  23976. extra: 620 / 585,
  23977. bottom: 8.86 / 630.43
  23978. }
  23979. },
  23980. dickAlt: {
  23981. height: math.unit(0.86, "feet"),
  23982. name: "Dick (Alt)",
  23983. image: {
  23984. source: "./media/characters/rory/dick-alt.svg"
  23985. }
  23986. },
  23987. },
  23988. [
  23989. {
  23990. name: "Normal",
  23991. height: math.unit(5 + 4 / 12, "feet"),
  23992. default: true
  23993. },
  23994. {
  23995. name: "Macro",
  23996. height: math.unit(100, "feet")
  23997. },
  23998. {
  23999. name: "Macro+",
  24000. height: math.unit(140, "feet")
  24001. },
  24002. {
  24003. name: "Macro++",
  24004. height: math.unit(300, "feet")
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24010. {
  24011. front: {
  24012. height: math.unit(5 + 9 / 12, "feet"),
  24013. weight: math.unit(190, "lb"),
  24014. name: "Front",
  24015. image: {
  24016. source: "./media/characters/sprisk/front.svg",
  24017. extra: 1225 / 1180,
  24018. bottom: 42.7 / 1266.4
  24019. }
  24020. },
  24021. frontNsfw: {
  24022. height: math.unit(5 + 9 / 12, "feet"),
  24023. weight: math.unit(190, "lb"),
  24024. name: "Front (NSFW)",
  24025. image: {
  24026. source: "./media/characters/sprisk/front-nsfw.svg",
  24027. extra: 1225 / 1180,
  24028. bottom: 42.7 / 1266.4
  24029. }
  24030. },
  24031. back: {
  24032. height: math.unit(5 + 9 / 12, "feet"),
  24033. weight: math.unit(190, "lb"),
  24034. name: "Back",
  24035. image: {
  24036. source: "./media/characters/sprisk/back.svg",
  24037. extra: 1247 / 1200,
  24038. bottom: 5.6 / 1253.04
  24039. }
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "Tiny",
  24045. height: math.unit(2, "inches")
  24046. },
  24047. {
  24048. name: "Normal",
  24049. height: math.unit(5 + 9 / 12, "feet"),
  24050. default: true
  24051. },
  24052. {
  24053. name: "Mini Macro",
  24054. height: math.unit(18, "feet")
  24055. },
  24056. {
  24057. name: "Macro",
  24058. height: math.unit(100, "feet")
  24059. },
  24060. {
  24061. name: "MACRO",
  24062. height: math.unit(50, "miles")
  24063. },
  24064. {
  24065. name: "M A C R O",
  24066. height: math.unit(300, "miles")
  24067. },
  24068. ]
  24069. ))
  24070. characterMakers.push(() => makeCharacter(
  24071. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24072. {
  24073. side: {
  24074. height: math.unit(15.6, "meters"),
  24075. weight: math.unit(700000, "kg"),
  24076. name: "Side",
  24077. image: {
  24078. source: "./media/characters/bunsen/side.svg",
  24079. extra: 1644 / 358
  24080. }
  24081. },
  24082. foot: {
  24083. height: math.unit(1.611 * 1644 / 358, "meter"),
  24084. name: "Foot",
  24085. image: {
  24086. source: "./media/characters/bunsen/foot.svg"
  24087. }
  24088. },
  24089. },
  24090. [
  24091. {
  24092. name: "Small",
  24093. height: math.unit(10, "feet")
  24094. },
  24095. {
  24096. name: "Normal",
  24097. height: math.unit(15.6, "meters"),
  24098. default: true
  24099. },
  24100. ]
  24101. ))
  24102. characterMakers.push(() => makeCharacter(
  24103. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24104. {
  24105. front: {
  24106. height: math.unit(4 + 11 / 12, "feet"),
  24107. weight: math.unit(140, "lb"),
  24108. name: "Front",
  24109. image: {
  24110. source: "./media/characters/sesh/front.svg",
  24111. extra: 3420 / 3231,
  24112. bottom: 72 / 3949.5
  24113. }
  24114. },
  24115. },
  24116. [
  24117. {
  24118. name: "Normal",
  24119. height: math.unit(4 + 11 / 12, "feet")
  24120. },
  24121. {
  24122. name: "Grown",
  24123. height: math.unit(15, "feet"),
  24124. default: true
  24125. },
  24126. {
  24127. name: "Macro",
  24128. height: math.unit(1500, "feet")
  24129. },
  24130. {
  24131. name: "Megamacro",
  24132. height: math.unit(30, "miles")
  24133. },
  24134. {
  24135. name: "Continental",
  24136. height: math.unit(3000, "miles")
  24137. },
  24138. {
  24139. name: "Gravity Mass",
  24140. height: math.unit(300000, "miles")
  24141. },
  24142. {
  24143. name: "Planet Buster",
  24144. height: math.unit(30000000, "miles")
  24145. },
  24146. {
  24147. name: "Big",
  24148. height: math.unit(3000000000, "miles")
  24149. },
  24150. ]
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24154. {
  24155. front: {
  24156. height: math.unit(9, "feet"),
  24157. weight: math.unit(350, "lb"),
  24158. name: "Front",
  24159. image: {
  24160. source: "./media/characters/pepper/front.svg",
  24161. extra: 1448 / 1312,
  24162. bottom: 9.4 / 1457.88
  24163. }
  24164. },
  24165. back: {
  24166. height: math.unit(9, "feet"),
  24167. weight: math.unit(350, "lb"),
  24168. name: "Back",
  24169. image: {
  24170. source: "./media/characters/pepper/back.svg",
  24171. extra: 1423 / 1300,
  24172. bottom: 4.6 / 1429
  24173. }
  24174. },
  24175. maw: {
  24176. height: math.unit(0.932, "feet"),
  24177. name: "Maw",
  24178. image: {
  24179. source: "./media/characters/pepper/maw.svg"
  24180. }
  24181. },
  24182. },
  24183. [
  24184. {
  24185. name: "Normal",
  24186. height: math.unit(9, "feet"),
  24187. default: true
  24188. },
  24189. ]
  24190. ))
  24191. characterMakers.push(() => makeCharacter(
  24192. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24193. {
  24194. front: {
  24195. height: math.unit(6, "feet"),
  24196. weight: math.unit(150, "lb"),
  24197. name: "Front",
  24198. image: {
  24199. source: "./media/characters/maelstrom/front.svg",
  24200. extra: 2100 / 1883,
  24201. bottom: 94 / 2196.7
  24202. }
  24203. },
  24204. },
  24205. [
  24206. {
  24207. name: "Less Kaiju",
  24208. height: math.unit(200, "feet")
  24209. },
  24210. {
  24211. name: "Kaiju",
  24212. height: math.unit(400, "feet"),
  24213. default: true
  24214. },
  24215. {
  24216. name: "Kaiju-er",
  24217. height: math.unit(600, "feet")
  24218. },
  24219. ]
  24220. ))
  24221. characterMakers.push(() => makeCharacter(
  24222. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24223. {
  24224. front: {
  24225. height: math.unit(6 + 5 / 12, "feet"),
  24226. weight: math.unit(180, "lb"),
  24227. name: "Front",
  24228. image: {
  24229. source: "./media/characters/lexir/front.svg",
  24230. extra: 180 / 172,
  24231. bottom: 12 / 192
  24232. }
  24233. },
  24234. back: {
  24235. height: math.unit(6 + 5 / 12, "feet"),
  24236. weight: math.unit(180, "lb"),
  24237. name: "Back",
  24238. image: {
  24239. source: "./media/characters/lexir/back.svg",
  24240. extra: 1273/1201,
  24241. bottom: 39/1312
  24242. }
  24243. },
  24244. },
  24245. [
  24246. {
  24247. name: "Very Smal",
  24248. height: math.unit(1, "nm")
  24249. },
  24250. {
  24251. name: "Normal",
  24252. height: math.unit(6 + 5 / 12, "feet"),
  24253. default: true
  24254. },
  24255. {
  24256. name: "Macro",
  24257. height: math.unit(1, "mile")
  24258. },
  24259. {
  24260. name: "Megamacro",
  24261. height: math.unit(50, "miles")
  24262. },
  24263. ]
  24264. ))
  24265. characterMakers.push(() => makeCharacter(
  24266. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24267. {
  24268. front: {
  24269. height: math.unit(1.5, "meters"),
  24270. weight: math.unit(100, "lb"),
  24271. name: "Front",
  24272. image: {
  24273. source: "./media/characters/maksio/front.svg",
  24274. extra: 1549 / 1531,
  24275. bottom: 123.7 / 1674.5429
  24276. }
  24277. },
  24278. back: {
  24279. height: math.unit(1.5, "meters"),
  24280. weight: math.unit(100, "lb"),
  24281. name: "Back",
  24282. image: {
  24283. source: "./media/characters/maksio/back.svg",
  24284. extra: 1541 / 1509,
  24285. bottom: 97 / 1639
  24286. }
  24287. },
  24288. hand: {
  24289. height: math.unit(0.621, "feet"),
  24290. name: "Hand",
  24291. image: {
  24292. source: "./media/characters/maksio/hand.svg"
  24293. }
  24294. },
  24295. foot: {
  24296. height: math.unit(1.611, "feet"),
  24297. name: "Foot",
  24298. image: {
  24299. source: "./media/characters/maksio/foot.svg"
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Shrunken",
  24306. height: math.unit(10, "cm")
  24307. },
  24308. {
  24309. name: "Normal",
  24310. height: math.unit(150, "cm"),
  24311. default: true
  24312. },
  24313. ]
  24314. ))
  24315. characterMakers.push(() => makeCharacter(
  24316. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24317. {
  24318. front: {
  24319. height: math.unit(100, "feet"),
  24320. name: "Front",
  24321. image: {
  24322. source: "./media/characters/erza-bear/front.svg",
  24323. extra: 2449 / 2390,
  24324. bottom: 46 / 2494
  24325. }
  24326. },
  24327. back: {
  24328. height: math.unit(100, "feet"),
  24329. name: "Back",
  24330. image: {
  24331. source: "./media/characters/erza-bear/back.svg",
  24332. extra: 2489 / 2430,
  24333. bottom: 85.4 / 2480
  24334. }
  24335. },
  24336. tail: {
  24337. height: math.unit(42, "feet"),
  24338. name: "Tail",
  24339. image: {
  24340. source: "./media/characters/erza-bear/tail.svg"
  24341. }
  24342. },
  24343. tongue: {
  24344. height: math.unit(8, "feet"),
  24345. name: "Tongue",
  24346. image: {
  24347. source: "./media/characters/erza-bear/tongue.svg"
  24348. }
  24349. },
  24350. dick: {
  24351. height: math.unit(10.5, "feet"),
  24352. name: "Dick",
  24353. image: {
  24354. source: "./media/characters/erza-bear/dick.svg"
  24355. }
  24356. },
  24357. dickVertical: {
  24358. height: math.unit(16.9, "feet"),
  24359. name: "Dick (Vertical)",
  24360. image: {
  24361. source: "./media/characters/erza-bear/dick-vertical.svg"
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Macro",
  24368. height: math.unit(100, "feet"),
  24369. default: true
  24370. },
  24371. ]
  24372. ))
  24373. characterMakers.push(() => makeCharacter(
  24374. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24375. {
  24376. front: {
  24377. height: math.unit(172, "cm"),
  24378. weight: math.unit(73, "kg"),
  24379. name: "Front",
  24380. image: {
  24381. source: "./media/characters/violet-flor/front.svg",
  24382. extra: 1530 / 1442,
  24383. bottom: 61.9 / 1588.8
  24384. }
  24385. },
  24386. back: {
  24387. height: math.unit(180, "cm"),
  24388. weight: math.unit(73, "kg"),
  24389. name: "Back",
  24390. image: {
  24391. source: "./media/characters/violet-flor/back.svg",
  24392. extra: 1692 / 1630,
  24393. bottom: 20 / 1712
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Normal",
  24400. height: math.unit(172, "cm"),
  24401. default: true
  24402. },
  24403. ]
  24404. ))
  24405. characterMakers.push(() => makeCharacter(
  24406. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24407. {
  24408. front: {
  24409. height: math.unit(6, "feet"),
  24410. weight: math.unit(220, "lb"),
  24411. name: "Front",
  24412. image: {
  24413. source: "./media/characters/lynn-rhea/front.svg",
  24414. extra: 310 / 273
  24415. }
  24416. },
  24417. back: {
  24418. height: math.unit(6, "feet"),
  24419. weight: math.unit(220, "lb"),
  24420. name: "Back",
  24421. image: {
  24422. source: "./media/characters/lynn-rhea/back.svg",
  24423. extra: 310 / 273
  24424. }
  24425. },
  24426. dicks: {
  24427. height: math.unit(0.9, "feet"),
  24428. name: "Dicks",
  24429. image: {
  24430. source: "./media/characters/lynn-rhea/dicks.svg"
  24431. }
  24432. },
  24433. slit: {
  24434. height: math.unit(0.4, "feet"),
  24435. name: "Slit",
  24436. image: {
  24437. source: "./media/characters/lynn-rhea/slit.svg"
  24438. }
  24439. },
  24440. },
  24441. [
  24442. {
  24443. name: "Micro",
  24444. height: math.unit(1, "inch")
  24445. },
  24446. {
  24447. name: "Macro",
  24448. height: math.unit(60, "feet"),
  24449. default: true
  24450. },
  24451. {
  24452. name: "Megamacro",
  24453. height: math.unit(2, "miles")
  24454. },
  24455. {
  24456. name: "Gigamacro",
  24457. height: math.unit(3, "earths")
  24458. },
  24459. {
  24460. name: "Galactic",
  24461. height: math.unit(0.8, "galaxies")
  24462. },
  24463. ]
  24464. ))
  24465. characterMakers.push(() => makeCharacter(
  24466. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24467. {
  24468. front: {
  24469. height: math.unit(1600, "feet"),
  24470. weight: math.unit(85758785169, "kg"),
  24471. name: "Front",
  24472. image: {
  24473. source: "./media/characters/valathos/front.svg",
  24474. extra: 1451 / 1339
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Macro",
  24481. height: math.unit(1600, "feet"),
  24482. default: true
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24488. {
  24489. front: {
  24490. height: math.unit(7 + 5 / 12, "feet"),
  24491. weight: math.unit(300, "lb"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/azula/front.svg",
  24495. extra: 3208 / 2880,
  24496. bottom: 80.2 / 3277
  24497. }
  24498. },
  24499. back: {
  24500. height: math.unit(7 + 5 / 12, "feet"),
  24501. weight: math.unit(300, "lb"),
  24502. name: "Back",
  24503. image: {
  24504. source: "./media/characters/azula/back.svg",
  24505. extra: 3169 / 2822,
  24506. bottom: 150.6 / 3321
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(7 + 5 / 12, "feet"),
  24514. default: true
  24515. },
  24516. {
  24517. name: "Big",
  24518. height: math.unit(20, "feet")
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24524. {
  24525. front: {
  24526. height: math.unit(5 + 1 / 12, "feet"),
  24527. weight: math.unit(110, "lb"),
  24528. name: "Front",
  24529. image: {
  24530. source: "./media/characters/rupert/front.svg",
  24531. extra: 1549 / 1495,
  24532. bottom: 54.2 / 1604.4
  24533. }
  24534. },
  24535. },
  24536. [
  24537. {
  24538. name: "Normal",
  24539. height: math.unit(5 + 1 / 12, "feet"),
  24540. default: true
  24541. },
  24542. ]
  24543. ))
  24544. characterMakers.push(() => makeCharacter(
  24545. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24546. {
  24547. front: {
  24548. height: math.unit(8 + 4 / 12, "feet"),
  24549. weight: math.unit(350, "lb"),
  24550. name: "Front",
  24551. image: {
  24552. source: "./media/characters/sheera-castellar/front.svg",
  24553. extra: 1957 / 1894,
  24554. bottom: 26.97 / 1975.017
  24555. }
  24556. },
  24557. side: {
  24558. height: math.unit(8 + 4 / 12, "feet"),
  24559. weight: math.unit(350, "lb"),
  24560. name: "Side",
  24561. image: {
  24562. source: "./media/characters/sheera-castellar/side.svg",
  24563. extra: 1957 / 1894
  24564. }
  24565. },
  24566. back: {
  24567. height: math.unit(8 + 4 / 12, "feet"),
  24568. weight: math.unit(350, "lb"),
  24569. name: "Back",
  24570. image: {
  24571. source: "./media/characters/sheera-castellar/back.svg",
  24572. extra: 1957 / 1894
  24573. }
  24574. },
  24575. angled: {
  24576. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24577. weight: math.unit(350, "lb"),
  24578. name: "Angled",
  24579. image: {
  24580. source: "./media/characters/sheera-castellar/angled.svg",
  24581. extra: 1807 / 1707,
  24582. bottom: 68 / 1875
  24583. }
  24584. },
  24585. genitals: {
  24586. height: math.unit(2.2, "feet"),
  24587. name: "Genitals",
  24588. image: {
  24589. source: "./media/characters/sheera-castellar/genitals.svg"
  24590. }
  24591. },
  24592. taur: {
  24593. height: math.unit(10 + 6/12, "feet"),
  24594. name: "Taur",
  24595. image: {
  24596. source: "./media/characters/sheera-castellar/taur.svg",
  24597. extra: 2017/1909,
  24598. bottom: 185/2202
  24599. }
  24600. },
  24601. },
  24602. [
  24603. {
  24604. name: "Normal",
  24605. height: math.unit(8 + 4 / 12, "feet")
  24606. },
  24607. {
  24608. name: "Macro",
  24609. height: math.unit(150, "feet"),
  24610. default: true
  24611. },
  24612. {
  24613. name: "Macro+",
  24614. height: math.unit(800, "feet")
  24615. },
  24616. ]
  24617. ))
  24618. characterMakers.push(() => makeCharacter(
  24619. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24620. {
  24621. front: {
  24622. height: math.unit(6, "feet"),
  24623. weight: math.unit(150, "lb"),
  24624. name: "Front",
  24625. image: {
  24626. source: "./media/characters/jaipur/front.svg",
  24627. extra: 3860 / 3731,
  24628. bottom: 287 / 4140
  24629. }
  24630. },
  24631. back: {
  24632. height: math.unit(6, "feet"),
  24633. weight: math.unit(150, "lb"),
  24634. name: "Back",
  24635. image: {
  24636. source: "./media/characters/jaipur/back.svg",
  24637. extra: 1637/1561,
  24638. bottom: 154/1791
  24639. }
  24640. },
  24641. },
  24642. [
  24643. {
  24644. name: "Normal",
  24645. height: math.unit(1.85, "meters"),
  24646. default: true
  24647. },
  24648. {
  24649. name: "Macro",
  24650. height: math.unit(150, "meters")
  24651. },
  24652. {
  24653. name: "Macro+",
  24654. height: math.unit(0.5, "miles")
  24655. },
  24656. {
  24657. name: "Macro++",
  24658. height: math.unit(2.5, "miles")
  24659. },
  24660. {
  24661. name: "Macro+++",
  24662. height: math.unit(12, "miles")
  24663. },
  24664. {
  24665. name: "Macro++++",
  24666. height: math.unit(120, "miles")
  24667. },
  24668. {
  24669. name: "Macro+++++",
  24670. height: math.unit(1200, "miles")
  24671. },
  24672. ]
  24673. ))
  24674. characterMakers.push(() => makeCharacter(
  24675. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24676. {
  24677. front: {
  24678. height: math.unit(6, "feet"),
  24679. weight: math.unit(150, "lb"),
  24680. name: "Front",
  24681. image: {
  24682. source: "./media/characters/sheila-wolf/front.svg",
  24683. extra: 1931 / 1808,
  24684. bottom: 29.5 / 1960
  24685. }
  24686. },
  24687. dick: {
  24688. height: math.unit(1.464, "feet"),
  24689. name: "Dick",
  24690. image: {
  24691. source: "./media/characters/sheila-wolf/dick.svg"
  24692. }
  24693. },
  24694. muzzle: {
  24695. height: math.unit(0.513, "feet"),
  24696. name: "Muzzle",
  24697. image: {
  24698. source: "./media/characters/sheila-wolf/muzzle.svg"
  24699. }
  24700. },
  24701. },
  24702. [
  24703. {
  24704. name: "Macro",
  24705. height: math.unit(70, "feet"),
  24706. default: true
  24707. },
  24708. ]
  24709. ))
  24710. characterMakers.push(() => makeCharacter(
  24711. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24712. {
  24713. front: {
  24714. height: math.unit(32, "meters"),
  24715. weight: math.unit(300000, "kg"),
  24716. name: "Front",
  24717. image: {
  24718. source: "./media/characters/almor/front.svg",
  24719. extra: 1408 / 1322,
  24720. bottom: 94.6 / 1506.5
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Macro",
  24727. height: math.unit(32, "meters"),
  24728. default: true
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(7, "feet"),
  24737. weight: math.unit(200, "lb"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/silver/front.svg",
  24741. extra: 472.1 / 450.5,
  24742. bottom: 26.5 / 499.424
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Normal",
  24749. height: math.unit(7, "feet"),
  24750. default: true
  24751. },
  24752. {
  24753. name: "Macro",
  24754. height: math.unit(800, "feet")
  24755. },
  24756. {
  24757. name: "Megamacro",
  24758. height: math.unit(250, "miles")
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24764. {
  24765. front: {
  24766. height: math.unit(6, "feet"),
  24767. weight: math.unit(150, "lb"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/pliskin/front.svg",
  24771. extra: 1469 / 1359,
  24772. bottom: 70 / 1540
  24773. }
  24774. },
  24775. },
  24776. [
  24777. {
  24778. name: "Micro",
  24779. height: math.unit(3, "inches")
  24780. },
  24781. {
  24782. name: "Normal",
  24783. height: math.unit(5 + 11 / 12, "feet"),
  24784. default: true
  24785. },
  24786. {
  24787. name: "Macro",
  24788. height: math.unit(120, "feet")
  24789. },
  24790. ]
  24791. ))
  24792. characterMakers.push(() => makeCharacter(
  24793. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24794. {
  24795. front: {
  24796. height: math.unit(6, "feet"),
  24797. weight: math.unit(150, "lb"),
  24798. name: "Front",
  24799. image: {
  24800. source: "./media/characters/sammy/front.svg",
  24801. extra: 1193 / 1089,
  24802. bottom: 30.5 / 1226
  24803. }
  24804. },
  24805. },
  24806. [
  24807. {
  24808. name: "Macro",
  24809. height: math.unit(1700, "feet"),
  24810. default: true
  24811. },
  24812. {
  24813. name: "Examacro",
  24814. height: math.unit(2.5e9, "lightyears")
  24815. },
  24816. ]
  24817. ))
  24818. characterMakers.push(() => makeCharacter(
  24819. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24820. {
  24821. front: {
  24822. height: math.unit(21, "meters"),
  24823. weight: math.unit(12, "tonnes"),
  24824. name: "Front",
  24825. image: {
  24826. source: "./media/characters/kuru/front.svg",
  24827. extra: 4301 / 3785,
  24828. bottom: 371.3 / 4691
  24829. }
  24830. },
  24831. },
  24832. [
  24833. {
  24834. name: "Macro",
  24835. height: math.unit(21, "meters"),
  24836. default: true
  24837. },
  24838. ]
  24839. ))
  24840. characterMakers.push(() => makeCharacter(
  24841. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24842. {
  24843. front: {
  24844. height: math.unit(23, "meters"),
  24845. weight: math.unit(12.2, "tonnes"),
  24846. name: "Front",
  24847. image: {
  24848. source: "./media/characters/rakka/front.svg",
  24849. extra: 4670 / 4169,
  24850. bottom: 301 / 4968.7
  24851. }
  24852. },
  24853. },
  24854. [
  24855. {
  24856. name: "Macro",
  24857. height: math.unit(23, "meters"),
  24858. default: true
  24859. },
  24860. ]
  24861. ))
  24862. characterMakers.push(() => makeCharacter(
  24863. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24864. {
  24865. front: {
  24866. height: math.unit(6, "feet"),
  24867. weight: math.unit(150, "lb"),
  24868. name: "Front",
  24869. image: {
  24870. source: "./media/characters/rhys-feline/front.svg",
  24871. extra: 2488 / 2308,
  24872. bottom: 35.67 / 2519.19
  24873. }
  24874. },
  24875. },
  24876. [
  24877. {
  24878. name: "Really Small",
  24879. height: math.unit(1, "nm")
  24880. },
  24881. {
  24882. name: "Micro",
  24883. height: math.unit(4, "inches")
  24884. },
  24885. {
  24886. name: "Normal",
  24887. height: math.unit(4 + 10 / 12, "feet"),
  24888. default: true
  24889. },
  24890. {
  24891. name: "Macro",
  24892. height: math.unit(100, "feet")
  24893. },
  24894. {
  24895. name: "Megamacto",
  24896. height: math.unit(50, "miles")
  24897. },
  24898. ]
  24899. ))
  24900. characterMakers.push(() => makeCharacter(
  24901. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24902. {
  24903. side: {
  24904. height: math.unit(30, "feet"),
  24905. weight: math.unit(35000, "kg"),
  24906. name: "Side",
  24907. image: {
  24908. source: "./media/characters/alydar/side.svg",
  24909. extra: 234 / 222,
  24910. bottom: 6.5 / 241
  24911. }
  24912. },
  24913. front: {
  24914. height: math.unit(30, "feet"),
  24915. weight: math.unit(35000, "kg"),
  24916. name: "Front",
  24917. image: {
  24918. source: "./media/characters/alydar/front.svg",
  24919. extra: 223.37 / 210.2,
  24920. bottom: 22.3 / 246.76
  24921. }
  24922. },
  24923. top: {
  24924. height: math.unit(64.54, "feet"),
  24925. weight: math.unit(35000, "kg"),
  24926. name: "Top",
  24927. image: {
  24928. source: "./media/characters/alydar/top.svg"
  24929. }
  24930. },
  24931. anthro: {
  24932. height: math.unit(30, "feet"),
  24933. weight: math.unit(9000, "kg"),
  24934. name: "Anthro",
  24935. image: {
  24936. source: "./media/characters/alydar/anthro.svg",
  24937. extra: 432 / 421,
  24938. bottom: 7.18 / 440
  24939. }
  24940. },
  24941. maw: {
  24942. height: math.unit(11.693, "feet"),
  24943. name: "Maw",
  24944. image: {
  24945. source: "./media/characters/alydar/maw.svg"
  24946. }
  24947. },
  24948. head: {
  24949. height: math.unit(11.693, "feet"),
  24950. name: "Head",
  24951. image: {
  24952. source: "./media/characters/alydar/head.svg"
  24953. }
  24954. },
  24955. headAlt: {
  24956. height: math.unit(12.861, "feet"),
  24957. name: "Head (Alt)",
  24958. image: {
  24959. source: "./media/characters/alydar/head-alt.svg"
  24960. }
  24961. },
  24962. wing: {
  24963. height: math.unit(20.712, "feet"),
  24964. name: "Wing",
  24965. image: {
  24966. source: "./media/characters/alydar/wing.svg"
  24967. }
  24968. },
  24969. wingFeather: {
  24970. height: math.unit(9.662, "feet"),
  24971. name: "Wing Feather",
  24972. image: {
  24973. source: "./media/characters/alydar/wing-feather.svg"
  24974. }
  24975. },
  24976. countourFeather: {
  24977. height: math.unit(4.154, "feet"),
  24978. name: "Contour Feather",
  24979. image: {
  24980. source: "./media/characters/alydar/contour-feather.svg"
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Diplomatic",
  24987. height: math.unit(13, "feet"),
  24988. default: true
  24989. },
  24990. {
  24991. name: "Small",
  24992. height: math.unit(30, "feet")
  24993. },
  24994. {
  24995. name: "Normal",
  24996. height: math.unit(95, "feet"),
  24997. default: true
  24998. },
  24999. {
  25000. name: "Large",
  25001. height: math.unit(285, "feet")
  25002. },
  25003. {
  25004. name: "Incomprehensible",
  25005. height: math.unit(450, "megameters")
  25006. },
  25007. ]
  25008. ))
  25009. characterMakers.push(() => makeCharacter(
  25010. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25011. {
  25012. side: {
  25013. height: math.unit(11, "feet"),
  25014. weight: math.unit(1750, "kg"),
  25015. name: "Side",
  25016. image: {
  25017. source: "./media/characters/selicia/side.svg",
  25018. extra: 440 / 396,
  25019. bottom: 24.8 / 465.979
  25020. }
  25021. },
  25022. maw: {
  25023. height: math.unit(4.665, "feet"),
  25024. name: "Maw",
  25025. image: {
  25026. source: "./media/characters/selicia/maw.svg"
  25027. }
  25028. },
  25029. },
  25030. [
  25031. {
  25032. name: "Normal",
  25033. height: math.unit(11, "feet"),
  25034. default: true
  25035. },
  25036. ]
  25037. ))
  25038. characterMakers.push(() => makeCharacter(
  25039. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25040. {
  25041. side: {
  25042. height: math.unit(2 + 6 / 12, "feet"),
  25043. weight: math.unit(30, "lb"),
  25044. name: "Side",
  25045. image: {
  25046. source: "./media/characters/layla/side.svg",
  25047. extra: 244 / 188,
  25048. bottom: 18.2 / 262.1
  25049. }
  25050. },
  25051. back: {
  25052. height: math.unit(2 + 6 / 12, "feet"),
  25053. weight: math.unit(30, "lb"),
  25054. name: "Back",
  25055. image: {
  25056. source: "./media/characters/layla/back.svg",
  25057. extra: 308 / 241.5,
  25058. bottom: 8.9 / 316.8
  25059. }
  25060. },
  25061. cumming: {
  25062. height: math.unit(2 + 6 / 12, "feet"),
  25063. weight: math.unit(30, "lb"),
  25064. name: "Cumming",
  25065. image: {
  25066. source: "./media/characters/layla/cumming.svg",
  25067. extra: 342 / 279,
  25068. bottom: 595 / 938
  25069. }
  25070. },
  25071. dickFlaccid: {
  25072. height: math.unit(2.595, "feet"),
  25073. name: "Flaccid Genitals",
  25074. image: {
  25075. source: "./media/characters/layla/dick-flaccid.svg"
  25076. }
  25077. },
  25078. dickErect: {
  25079. height: math.unit(2.359, "feet"),
  25080. name: "Erect Genitals",
  25081. image: {
  25082. source: "./media/characters/layla/dick-erect.svg"
  25083. }
  25084. },
  25085. dragon: {
  25086. height: math.unit(40, "feet"),
  25087. name: "Dragon",
  25088. image: {
  25089. source: "./media/characters/layla/dragon.svg",
  25090. extra: 610/535,
  25091. bottom: 367/977
  25092. }
  25093. },
  25094. taur: {
  25095. height: math.unit(30, "feet"),
  25096. name: "Taur",
  25097. image: {
  25098. source: "./media/characters/layla/taur.svg",
  25099. extra: 1268/1199,
  25100. bottom: 112/1380
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Micro",
  25107. height: math.unit(1, "inch")
  25108. },
  25109. {
  25110. name: "Small",
  25111. height: math.unit(1, "foot")
  25112. },
  25113. {
  25114. name: "Normal",
  25115. height: math.unit(2 + 6 / 12, "feet"),
  25116. default: true
  25117. },
  25118. {
  25119. name: "Macro",
  25120. height: math.unit(200, "feet")
  25121. },
  25122. {
  25123. name: "Megamacro",
  25124. height: math.unit(1000, "miles")
  25125. },
  25126. {
  25127. name: "Planetary",
  25128. height: math.unit(8000, "miles")
  25129. },
  25130. {
  25131. name: "True Layla",
  25132. height: math.unit(200000 * 7, "multiverses")
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25138. {
  25139. back: {
  25140. height: math.unit(10.5, "feet"),
  25141. weight: math.unit(800, "lb"),
  25142. name: "Back",
  25143. image: {
  25144. source: "./media/characters/knox/back.svg",
  25145. extra: 1486 / 1089,
  25146. bottom: 107 / 1601.4
  25147. }
  25148. },
  25149. side: {
  25150. height: math.unit(10.5, "feet"),
  25151. weight: math.unit(800, "lb"),
  25152. name: "Side",
  25153. image: {
  25154. source: "./media/characters/knox/side.svg",
  25155. extra: 244 / 218,
  25156. bottom: 14 / 260
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Compact",
  25163. height: math.unit(10.5, "feet"),
  25164. default: true
  25165. },
  25166. {
  25167. name: "Dynamax",
  25168. height: math.unit(210, "feet")
  25169. },
  25170. {
  25171. name: "Full Macro",
  25172. height: math.unit(850, "feet")
  25173. },
  25174. ]
  25175. ))
  25176. characterMakers.push(() => makeCharacter(
  25177. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25178. {
  25179. front: {
  25180. height: math.unit(28, "feet"),
  25181. weight: math.unit(10500, "lb"),
  25182. name: "Front",
  25183. image: {
  25184. source: "./media/characters/kayda/front.svg",
  25185. extra: 1536 / 1428,
  25186. bottom: 68.7 / 1603
  25187. }
  25188. },
  25189. back: {
  25190. height: math.unit(28, "feet"),
  25191. weight: math.unit(10500, "lb"),
  25192. name: "Back",
  25193. image: {
  25194. source: "./media/characters/kayda/back.svg",
  25195. extra: 1557 / 1464,
  25196. bottom: 39.5 / 1597.49
  25197. }
  25198. },
  25199. dick: {
  25200. height: math.unit(3.858, "feet"),
  25201. name: "Dick",
  25202. image: {
  25203. source: "./media/characters/kayda/dick.svg"
  25204. }
  25205. },
  25206. },
  25207. [
  25208. {
  25209. name: "Macro",
  25210. height: math.unit(28, "feet"),
  25211. default: true
  25212. },
  25213. ]
  25214. ))
  25215. characterMakers.push(() => makeCharacter(
  25216. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25217. {
  25218. front: {
  25219. height: math.unit(10 + 11 / 12, "feet"),
  25220. weight: math.unit(1400, "lb"),
  25221. name: "Front",
  25222. image: {
  25223. source: "./media/characters/brian/front.svg",
  25224. extra: 737 / 692,
  25225. bottom: 55.4 / 785
  25226. }
  25227. },
  25228. },
  25229. [
  25230. {
  25231. name: "Normal",
  25232. height: math.unit(10 + 11 / 12, "feet"),
  25233. default: true
  25234. },
  25235. ]
  25236. ))
  25237. characterMakers.push(() => makeCharacter(
  25238. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25239. {
  25240. front: {
  25241. height: math.unit(5 + 8 / 12, "feet"),
  25242. weight: math.unit(140, "lb"),
  25243. name: "Front",
  25244. image: {
  25245. source: "./media/characters/khemri/front.svg",
  25246. extra: 4780 / 4059,
  25247. bottom: 80.1 / 4859.25
  25248. }
  25249. },
  25250. },
  25251. [
  25252. {
  25253. name: "Micro",
  25254. height: math.unit(6, "inches")
  25255. },
  25256. {
  25257. name: "Normal",
  25258. height: math.unit(5 + 8 / 12, "feet"),
  25259. default: true
  25260. },
  25261. ]
  25262. ))
  25263. characterMakers.push(() => makeCharacter(
  25264. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25265. {
  25266. front: {
  25267. height: math.unit(13, "feet"),
  25268. weight: math.unit(1700, "lb"),
  25269. name: "Front",
  25270. image: {
  25271. source: "./media/characters/felix-braveheart/front.svg",
  25272. extra: 1222 / 1157,
  25273. bottom: 53.2 / 1280
  25274. }
  25275. },
  25276. back: {
  25277. height: math.unit(13, "feet"),
  25278. weight: math.unit(1700, "lb"),
  25279. name: "Back",
  25280. image: {
  25281. source: "./media/characters/felix-braveheart/back.svg",
  25282. extra: 1277 / 1203,
  25283. bottom: 50.2 / 1327
  25284. }
  25285. },
  25286. feral: {
  25287. height: math.unit(6, "feet"),
  25288. weight: math.unit(400, "lb"),
  25289. name: "Feral",
  25290. image: {
  25291. source: "./media/characters/felix-braveheart/feral.svg",
  25292. extra: 682 / 625,
  25293. bottom: 6.9 / 688
  25294. }
  25295. },
  25296. },
  25297. [
  25298. {
  25299. name: "Normal",
  25300. height: math.unit(13, "feet"),
  25301. default: true
  25302. },
  25303. ]
  25304. ))
  25305. characterMakers.push(() => makeCharacter(
  25306. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25307. {
  25308. side: {
  25309. height: math.unit(5 + 11 / 12, "feet"),
  25310. weight: math.unit(1400, "lb"),
  25311. name: "Side",
  25312. image: {
  25313. source: "./media/characters/shadow-blade/side.svg",
  25314. extra: 1726 / 1267,
  25315. bottom: 58.4 / 1785
  25316. }
  25317. },
  25318. },
  25319. [
  25320. {
  25321. name: "Normal",
  25322. height: math.unit(5 + 11 / 12, "feet"),
  25323. default: true
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25329. {
  25330. front: {
  25331. height: math.unit(1 + 6 / 12, "feet"),
  25332. weight: math.unit(25, "lb"),
  25333. name: "Front",
  25334. image: {
  25335. source: "./media/characters/karla-halldor/front.svg",
  25336. extra: 1459 / 1383,
  25337. bottom: 12 / 1472
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(1 + 6 / 12, "feet"),
  25345. default: true
  25346. },
  25347. ]
  25348. ))
  25349. characterMakers.push(() => makeCharacter(
  25350. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25351. {
  25352. front: {
  25353. height: math.unit(6 + 2 / 12, "feet"),
  25354. weight: math.unit(160, "lb"),
  25355. name: "Front",
  25356. image: {
  25357. source: "./media/characters/ariam/front.svg",
  25358. extra: 1073/976,
  25359. bottom: 52/1125
  25360. }
  25361. },
  25362. back: {
  25363. height: math.unit(6 + 2/12, "feet"),
  25364. weight: math.unit(160, "lb"),
  25365. name: "Back",
  25366. image: {
  25367. source: "./media/characters/ariam/back.svg",
  25368. extra: 1103/1023,
  25369. bottom: 9/1112
  25370. }
  25371. },
  25372. dressed: {
  25373. height: math.unit(6 + 2/12, "feet"),
  25374. weight: math.unit(160, "lb"),
  25375. name: "Dressed",
  25376. image: {
  25377. source: "./media/characters/ariam/dressed.svg",
  25378. extra: 1099/1009,
  25379. bottom: 25/1124
  25380. }
  25381. },
  25382. squatting: {
  25383. height: math.unit(4.1, "feet"),
  25384. weight: math.unit(160, "lb"),
  25385. name: "Squatting",
  25386. image: {
  25387. source: "./media/characters/ariam/squatting.svg",
  25388. extra: 2617 / 2112,
  25389. bottom: 61.2 / 2681,
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(6 + 2 / 12, "feet"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Normal+",
  25401. height: math.unit(4, "meters")
  25402. },
  25403. {
  25404. name: "Macro",
  25405. height: math.unit(50, "meters")
  25406. },
  25407. {
  25408. name: "Macro+",
  25409. height: math.unit(100, "meters")
  25410. },
  25411. {
  25412. name: "Megamacro",
  25413. height: math.unit(20, "km")
  25414. },
  25415. {
  25416. name: "Caretaker",
  25417. height: math.unit(444, "megameters")
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25423. {
  25424. front: {
  25425. height: math.unit(1.67, "meters"),
  25426. weight: math.unit(140, "lb"),
  25427. name: "Front",
  25428. image: {
  25429. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25430. extra: 438 / 410,
  25431. bottom: 0.75 / 439
  25432. }
  25433. },
  25434. },
  25435. [
  25436. {
  25437. name: "Shrunken",
  25438. height: math.unit(7.6, "cm")
  25439. },
  25440. {
  25441. name: "Human Scale",
  25442. height: math.unit(1.67, "meters")
  25443. },
  25444. {
  25445. name: "Wolxi Scale",
  25446. height: math.unit(36.7, "meters"),
  25447. default: true
  25448. },
  25449. ]
  25450. ))
  25451. characterMakers.push(() => makeCharacter(
  25452. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25453. {
  25454. front: {
  25455. height: math.unit(1.73, "meters"),
  25456. weight: math.unit(240, "lb"),
  25457. name: "Front",
  25458. image: {
  25459. source: "./media/characters/izue-two-mothers/front.svg",
  25460. extra: 469 / 437,
  25461. bottom: 1.24 / 470.6
  25462. }
  25463. },
  25464. },
  25465. [
  25466. {
  25467. name: "Shrunken",
  25468. height: math.unit(7.86, "cm")
  25469. },
  25470. {
  25471. name: "Human Scale",
  25472. height: math.unit(1.73, "meters")
  25473. },
  25474. {
  25475. name: "Wolxi Scale",
  25476. height: math.unit(38, "meters"),
  25477. default: true
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25483. {
  25484. front: {
  25485. height: math.unit(1.55, "meters"),
  25486. weight: math.unit(120, "lb"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/teeku-love-shack/front.svg",
  25490. extra: 387 / 362,
  25491. bottom: 1.51 / 388
  25492. }
  25493. },
  25494. },
  25495. [
  25496. {
  25497. name: "Shrunken",
  25498. height: math.unit(7, "cm")
  25499. },
  25500. {
  25501. name: "Human Scale",
  25502. height: math.unit(1.55, "meters")
  25503. },
  25504. {
  25505. name: "Wolxi Scale",
  25506. height: math.unit(34.1, "meters"),
  25507. default: true
  25508. },
  25509. ]
  25510. ))
  25511. characterMakers.push(() => makeCharacter(
  25512. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25513. {
  25514. front: {
  25515. height: math.unit(1.83, "meters"),
  25516. weight: math.unit(135, "lb"),
  25517. name: "Front",
  25518. image: {
  25519. source: "./media/characters/dejma-the-red/front.svg",
  25520. extra: 480 / 458,
  25521. bottom: 1.8 / 482
  25522. }
  25523. },
  25524. },
  25525. [
  25526. {
  25527. name: "Shrunken",
  25528. height: math.unit(8.3, "cm")
  25529. },
  25530. {
  25531. name: "Human Scale",
  25532. height: math.unit(1.83, "meters")
  25533. },
  25534. {
  25535. name: "Wolxi Scale",
  25536. height: math.unit(40, "meters"),
  25537. default: true
  25538. },
  25539. ]
  25540. ))
  25541. characterMakers.push(() => makeCharacter(
  25542. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25543. {
  25544. front: {
  25545. height: math.unit(1.78, "meters"),
  25546. weight: math.unit(65, "kg"),
  25547. name: "Front",
  25548. image: {
  25549. source: "./media/characters/aki/front.svg",
  25550. extra: 452 / 415
  25551. }
  25552. },
  25553. frontNsfw: {
  25554. height: math.unit(1.78, "meters"),
  25555. weight: math.unit(65, "kg"),
  25556. name: "Front (NSFW)",
  25557. image: {
  25558. source: "./media/characters/aki/front-nsfw.svg",
  25559. extra: 452 / 415
  25560. }
  25561. },
  25562. back: {
  25563. height: math.unit(1.78, "meters"),
  25564. weight: math.unit(65, "kg"),
  25565. name: "Back",
  25566. image: {
  25567. source: "./media/characters/aki/back.svg",
  25568. extra: 452 / 415
  25569. }
  25570. },
  25571. rump: {
  25572. height: math.unit(2.05, "feet"),
  25573. name: "Rump",
  25574. image: {
  25575. source: "./media/characters/aki/rump.svg"
  25576. }
  25577. },
  25578. dick: {
  25579. height: math.unit(0.95, "feet"),
  25580. name: "Dick",
  25581. image: {
  25582. source: "./media/characters/aki/dick.svg"
  25583. }
  25584. },
  25585. },
  25586. [
  25587. {
  25588. name: "Micro",
  25589. height: math.unit(15, "cm")
  25590. },
  25591. {
  25592. name: "Normal",
  25593. height: math.unit(178, "cm"),
  25594. default: true
  25595. },
  25596. {
  25597. name: "Macro",
  25598. height: math.unit(214, "m")
  25599. },
  25600. {
  25601. name: "Macro+",
  25602. height: math.unit(534, "m")
  25603. },
  25604. ]
  25605. ))
  25606. characterMakers.push(() => makeCharacter(
  25607. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25608. {
  25609. front: {
  25610. height: math.unit(5 + 5 / 12, "feet"),
  25611. weight: math.unit(120, "lb"),
  25612. name: "Front",
  25613. image: {
  25614. source: "./media/characters/ari/front.svg",
  25615. extra: 1550/1471,
  25616. bottom: 39/1589
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Normal",
  25623. height: math.unit(5 + 5 / 12, "feet")
  25624. },
  25625. {
  25626. name: "Macro",
  25627. height: math.unit(100, "feet"),
  25628. default: true
  25629. },
  25630. {
  25631. name: "Megamacro",
  25632. height: math.unit(100, "miles")
  25633. },
  25634. {
  25635. name: "Gigamacro",
  25636. height: math.unit(80000, "miles")
  25637. },
  25638. ]
  25639. ))
  25640. characterMakers.push(() => makeCharacter(
  25641. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25642. {
  25643. side: {
  25644. height: math.unit(9, "feet"),
  25645. weight: math.unit(400, "kg"),
  25646. name: "Side",
  25647. image: {
  25648. source: "./media/characters/bolt/side.svg",
  25649. extra: 1126 / 896,
  25650. bottom: 60 / 1187.3,
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Micro",
  25657. height: math.unit(5, "inches")
  25658. },
  25659. {
  25660. name: "Normal",
  25661. height: math.unit(9, "feet"),
  25662. default: true
  25663. },
  25664. {
  25665. name: "Macro",
  25666. height: math.unit(700, "feet")
  25667. },
  25668. {
  25669. name: "Max Size",
  25670. height: math.unit(1.52e22, "yottameters")
  25671. },
  25672. ]
  25673. ))
  25674. characterMakers.push(() => makeCharacter(
  25675. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25676. {
  25677. front: {
  25678. height: math.unit(4.3, "meters"),
  25679. weight: math.unit(3, "tons"),
  25680. name: "Front",
  25681. image: {
  25682. source: "./media/characters/draekon-sylviar/front.svg",
  25683. extra: 2072/1512,
  25684. bottom: 74/2146
  25685. }
  25686. },
  25687. back: {
  25688. height: math.unit(4.3, "meters"),
  25689. weight: math.unit(3, "tons"),
  25690. name: "Back",
  25691. image: {
  25692. source: "./media/characters/draekon-sylviar/back.svg",
  25693. extra: 1639/1483,
  25694. bottom: 41/1680
  25695. }
  25696. },
  25697. feral: {
  25698. height: math.unit(1.15, "meters"),
  25699. weight: math.unit(3, "tons"),
  25700. name: "Feral",
  25701. image: {
  25702. source: "./media/characters/draekon-sylviar/feral.svg",
  25703. extra: 1033/395,
  25704. bottom: 130/1163
  25705. }
  25706. },
  25707. maw: {
  25708. height: math.unit(1.3, "meters"),
  25709. name: "Maw",
  25710. image: {
  25711. source: "./media/characters/draekon-sylviar/maw.svg"
  25712. }
  25713. },
  25714. mawSeparated: {
  25715. height: math.unit(1.53, "meters"),
  25716. name: "Separated Maw",
  25717. image: {
  25718. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25719. }
  25720. },
  25721. tail: {
  25722. height: math.unit(1.15, "meters"),
  25723. name: "Tail",
  25724. image: {
  25725. source: "./media/characters/draekon-sylviar/tail.svg"
  25726. }
  25727. },
  25728. tailDick: {
  25729. height: math.unit(1.15, "meters"),
  25730. name: "Tail (Dick)",
  25731. image: {
  25732. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25733. }
  25734. },
  25735. tailDickSeparated: {
  25736. height: math.unit(1.19, "meters"),
  25737. name: "Tail (Separated Dick)",
  25738. image: {
  25739. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25740. }
  25741. },
  25742. slit: {
  25743. height: math.unit(1, "meters"),
  25744. name: "Slit",
  25745. image: {
  25746. source: "./media/characters/draekon-sylviar/slit.svg"
  25747. }
  25748. },
  25749. dick: {
  25750. height: math.unit(1.15, "meters"),
  25751. name: "Dick",
  25752. image: {
  25753. source: "./media/characters/draekon-sylviar/dick.svg"
  25754. }
  25755. },
  25756. dickSeparated: {
  25757. height: math.unit(1.1, "meters"),
  25758. name: "Separated Dick",
  25759. image: {
  25760. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25761. }
  25762. },
  25763. sheath: {
  25764. height: math.unit(1.15, "meters"),
  25765. name: "Sheath",
  25766. image: {
  25767. source: "./media/characters/draekon-sylviar/sheath.svg"
  25768. }
  25769. },
  25770. },
  25771. [
  25772. {
  25773. name: "Small",
  25774. height: math.unit(4.53 / 2, "meters"),
  25775. default: true
  25776. },
  25777. {
  25778. name: "Normal",
  25779. height: math.unit(4.53, "meters"),
  25780. default: true
  25781. },
  25782. {
  25783. name: "Large",
  25784. height: math.unit(4.53 * 2, "meters"),
  25785. },
  25786. ]
  25787. ))
  25788. characterMakers.push(() => makeCharacter(
  25789. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25790. {
  25791. front: {
  25792. height: math.unit(6 + 2 / 12, "feet"),
  25793. weight: math.unit(180, "lb"),
  25794. name: "Front",
  25795. image: {
  25796. source: "./media/characters/brawler/front.svg",
  25797. extra: 3301 / 3027,
  25798. bottom: 138 / 3439
  25799. }
  25800. },
  25801. },
  25802. [
  25803. {
  25804. name: "Normal",
  25805. height: math.unit(6 + 2 / 12, "feet"),
  25806. default: true
  25807. },
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25812. {
  25813. front: {
  25814. height: math.unit(11, "feet"),
  25815. weight: math.unit(1000, "lb"),
  25816. name: "Front",
  25817. image: {
  25818. source: "./media/characters/alex/front.svg",
  25819. bottom: 44.5 / 620
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Micro",
  25826. height: math.unit(5, "inches")
  25827. },
  25828. {
  25829. name: "Normal",
  25830. height: math.unit(11, "feet"),
  25831. default: true
  25832. },
  25833. {
  25834. name: "Macro",
  25835. height: math.unit(9.5e9, "feet")
  25836. },
  25837. {
  25838. name: "Max Size",
  25839. height: math.unit(1.4e283, "yottameters")
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25845. {
  25846. female: {
  25847. height: math.unit(29.9, "m"),
  25848. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25849. name: "Female",
  25850. image: {
  25851. source: "./media/characters/zenari/female.svg",
  25852. extra: 3281.6 / 3217,
  25853. bottom: 72.2 / 3353
  25854. }
  25855. },
  25856. male: {
  25857. height: math.unit(27.7, "m"),
  25858. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25859. name: "Male",
  25860. image: {
  25861. source: "./media/characters/zenari/male.svg",
  25862. extra: 3008 / 2991,
  25863. bottom: 54.6 / 3069
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "Macro",
  25870. height: math.unit(29.7, "meters"),
  25871. default: true
  25872. },
  25873. ]
  25874. ))
  25875. characterMakers.push(() => makeCharacter(
  25876. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25877. {
  25878. female: {
  25879. height: math.unit(23.8, "m"),
  25880. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25881. name: "Female",
  25882. image: {
  25883. source: "./media/characters/mactarian/female.svg",
  25884. extra: 2662 / 2569,
  25885. bottom: 73 / 2736
  25886. }
  25887. },
  25888. male: {
  25889. height: math.unit(23.8, "m"),
  25890. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25891. name: "Male",
  25892. image: {
  25893. source: "./media/characters/mactarian/male.svg",
  25894. extra: 2673 / 2600,
  25895. bottom: 76 / 2750
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Macro",
  25902. height: math.unit(23.8, "meters"),
  25903. default: true
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25909. {
  25910. female: {
  25911. height: math.unit(19.3, "m"),
  25912. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25913. name: "Female",
  25914. image: {
  25915. source: "./media/characters/umok/female.svg",
  25916. extra: 2186 / 2078,
  25917. bottom: 87 / 2277
  25918. }
  25919. },
  25920. male: {
  25921. height: math.unit(19.5, "m"),
  25922. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25923. name: "Male",
  25924. image: {
  25925. source: "./media/characters/umok/male.svg",
  25926. extra: 2233 / 2140,
  25927. bottom: 24.4 / 2258
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Macro",
  25934. height: math.unit(19.3, "meters"),
  25935. default: true
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25941. {
  25942. female: {
  25943. height: math.unit(26.15, "m"),
  25944. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25945. name: "Female",
  25946. image: {
  25947. source: "./media/characters/joraxian/female.svg",
  25948. extra: 2912 / 2824,
  25949. bottom: 36 / 2956
  25950. }
  25951. },
  25952. male: {
  25953. height: math.unit(25.4, "m"),
  25954. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25955. name: "Male",
  25956. image: {
  25957. source: "./media/characters/joraxian/male.svg",
  25958. extra: 2877 / 2721,
  25959. bottom: 82 / 2967
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Macro",
  25966. height: math.unit(26.15, "meters"),
  25967. default: true
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25973. {
  25974. female: {
  25975. height: math.unit(21.6, "m"),
  25976. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25977. name: "Female",
  25978. image: {
  25979. source: "./media/characters/sthara/female.svg",
  25980. extra: 2516 / 2347,
  25981. bottom: 21.5 / 2537
  25982. }
  25983. },
  25984. male: {
  25985. height: math.unit(24, "m"),
  25986. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25987. name: "Male",
  25988. image: {
  25989. source: "./media/characters/sthara/male.svg",
  25990. extra: 2732 / 2607,
  25991. bottom: 23 / 2732
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Macro",
  25998. height: math.unit(21.6, "meters"),
  25999. default: true
  26000. },
  26001. ]
  26002. ))
  26003. characterMakers.push(() => makeCharacter(
  26004. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26005. {
  26006. front: {
  26007. height: math.unit(6 + 4 / 12, "feet"),
  26008. weight: math.unit(175, "lb"),
  26009. name: "Front",
  26010. image: {
  26011. source: "./media/characters/luka-bryzant/front.svg",
  26012. extra: 311 / 289,
  26013. bottom: 4 / 315
  26014. }
  26015. },
  26016. back: {
  26017. height: math.unit(6 + 4 / 12, "feet"),
  26018. weight: math.unit(175, "lb"),
  26019. name: "Back",
  26020. image: {
  26021. source: "./media/characters/luka-bryzant/back.svg",
  26022. extra: 311 / 289,
  26023. bottom: 3.8 / 313.7
  26024. }
  26025. },
  26026. },
  26027. [
  26028. {
  26029. name: "Micro",
  26030. height: math.unit(10, "inches")
  26031. },
  26032. {
  26033. name: "Normal",
  26034. height: math.unit(6 + 4 / 12, "feet"),
  26035. default: true
  26036. },
  26037. {
  26038. name: "Large",
  26039. height: math.unit(12, "feet")
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(5 + 7 / 12, "feet"),
  26048. weight: math.unit(185, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/aman-aquila/front.svg",
  26052. extra: 1013 / 976,
  26053. bottom: 45.6 / 1057
  26054. }
  26055. },
  26056. side: {
  26057. height: math.unit(5 + 7 / 12, "feet"),
  26058. weight: math.unit(185, "lb"),
  26059. name: "Side",
  26060. image: {
  26061. source: "./media/characters/aman-aquila/side.svg",
  26062. extra: 1054 / 1011,
  26063. bottom: 15 / 1070
  26064. }
  26065. },
  26066. back: {
  26067. height: math.unit(5 + 7 / 12, "feet"),
  26068. weight: math.unit(185, "lb"),
  26069. name: "Back",
  26070. image: {
  26071. source: "./media/characters/aman-aquila/back.svg",
  26072. extra: 1026 / 970,
  26073. bottom: 12 / 1039
  26074. }
  26075. },
  26076. head: {
  26077. height: math.unit(1.211, "feet"),
  26078. name: "Head",
  26079. image: {
  26080. source: "./media/characters/aman-aquila/head.svg",
  26081. }
  26082. },
  26083. },
  26084. [
  26085. {
  26086. name: "Minimicro",
  26087. height: math.unit(0.057, "inches")
  26088. },
  26089. {
  26090. name: "Micro",
  26091. height: math.unit(7, "inches")
  26092. },
  26093. {
  26094. name: "Mini",
  26095. height: math.unit(3 + 7 / 12, "feet")
  26096. },
  26097. {
  26098. name: "Normal",
  26099. height: math.unit(5 + 7 / 12, "feet"),
  26100. default: true
  26101. },
  26102. {
  26103. name: "Macro",
  26104. height: math.unit(157 + 7 / 12, "feet")
  26105. },
  26106. {
  26107. name: "Megamacro",
  26108. height: math.unit(1557 + 7 / 12, "feet")
  26109. },
  26110. {
  26111. name: "Gigamacro",
  26112. height: math.unit(15557 + 7 / 12, "feet")
  26113. },
  26114. ]
  26115. ))
  26116. characterMakers.push(() => makeCharacter(
  26117. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26118. {
  26119. front: {
  26120. height: math.unit(3 + 2 / 12, "inches"),
  26121. weight: math.unit(0.3, "ounces"),
  26122. name: "Front",
  26123. image: {
  26124. source: "./media/characters/hiphae/front.svg",
  26125. extra: 1931 / 1683,
  26126. bottom: 24 / 1955
  26127. }
  26128. },
  26129. },
  26130. [
  26131. {
  26132. name: "Normal",
  26133. height: math.unit(3 + 1 / 2, "inches"),
  26134. default: true
  26135. },
  26136. ]
  26137. ))
  26138. characterMakers.push(() => makeCharacter(
  26139. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26140. {
  26141. front: {
  26142. height: math.unit(5 + 10 / 12, "feet"),
  26143. weight: math.unit(165, "lb"),
  26144. name: "Front",
  26145. image: {
  26146. source: "./media/characters/nicky/front.svg",
  26147. extra: 3144 / 2886,
  26148. bottom: 45.6 / 3192
  26149. }
  26150. },
  26151. back: {
  26152. height: math.unit(5 + 10 / 12, "feet"),
  26153. weight: math.unit(165, "lb"),
  26154. name: "Back",
  26155. image: {
  26156. source: "./media/characters/nicky/back.svg",
  26157. extra: 3055 / 2804,
  26158. bottom: 28.4 / 3087
  26159. }
  26160. },
  26161. frontclothed: {
  26162. height: math.unit(5 + 10 / 12, "feet"),
  26163. weight: math.unit(165, "lb"),
  26164. name: "Front-clothed",
  26165. image: {
  26166. source: "./media/characters/nicky/front-clothed.svg",
  26167. extra: 3184.9 / 2926.9,
  26168. bottom: 86.5 / 3239.9
  26169. }
  26170. },
  26171. foot: {
  26172. height: math.unit(1.16, "feet"),
  26173. name: "Foot",
  26174. image: {
  26175. source: "./media/characters/nicky/foot.svg"
  26176. }
  26177. },
  26178. feet: {
  26179. height: math.unit(1.34, "feet"),
  26180. name: "Feet",
  26181. image: {
  26182. source: "./media/characters/nicky/feet.svg"
  26183. }
  26184. },
  26185. maw: {
  26186. height: math.unit(0.9, "feet"),
  26187. name: "Maw",
  26188. image: {
  26189. source: "./media/characters/nicky/maw.svg"
  26190. }
  26191. },
  26192. },
  26193. [
  26194. {
  26195. name: "Normal",
  26196. height: math.unit(5 + 10 / 12, "feet"),
  26197. default: true
  26198. },
  26199. {
  26200. name: "Macro",
  26201. height: math.unit(60, "feet")
  26202. },
  26203. {
  26204. name: "Megamacro",
  26205. height: math.unit(1, "mile")
  26206. },
  26207. ]
  26208. ))
  26209. characterMakers.push(() => makeCharacter(
  26210. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26211. {
  26212. side: {
  26213. height: math.unit(10, "feet"),
  26214. weight: math.unit(600, "lb"),
  26215. name: "Side",
  26216. image: {
  26217. source: "./media/characters/blair/side.svg",
  26218. bottom: 16.6 / 475,
  26219. extra: 458 / 431
  26220. }
  26221. },
  26222. },
  26223. [
  26224. {
  26225. name: "Micro",
  26226. height: math.unit(8, "inches")
  26227. },
  26228. {
  26229. name: "Normal",
  26230. height: math.unit(10, "feet"),
  26231. default: true
  26232. },
  26233. {
  26234. name: "Macro",
  26235. height: math.unit(180, "feet")
  26236. },
  26237. ]
  26238. ))
  26239. characterMakers.push(() => makeCharacter(
  26240. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26241. {
  26242. front: {
  26243. height: math.unit(5 + 4 / 12, "feet"),
  26244. weight: math.unit(125, "lb"),
  26245. name: "Front",
  26246. image: {
  26247. source: "./media/characters/fisher/front.svg",
  26248. extra: 444 / 390,
  26249. bottom: 2 / 444.8
  26250. }
  26251. },
  26252. },
  26253. [
  26254. {
  26255. name: "Micro",
  26256. height: math.unit(4, "inches")
  26257. },
  26258. {
  26259. name: "Normal",
  26260. height: math.unit(5 + 4 / 12, "feet"),
  26261. default: true
  26262. },
  26263. {
  26264. name: "Macro",
  26265. height: math.unit(100, "feet")
  26266. },
  26267. ]
  26268. ))
  26269. characterMakers.push(() => makeCharacter(
  26270. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26271. {
  26272. front: {
  26273. height: math.unit(6.71, "feet"),
  26274. weight: math.unit(200, "lb"),
  26275. preyCapacity: math.unit(1000000, "people"),
  26276. name: "Front",
  26277. image: {
  26278. source: "./media/characters/gliss/front.svg",
  26279. extra: 2347 / 2231,
  26280. bottom: 113 / 2462
  26281. }
  26282. },
  26283. hammerspaceSize: {
  26284. height: math.unit(6.71 * 717, "feet"),
  26285. weight: math.unit(200, "lb"),
  26286. preyCapacity: math.unit(1000000, "people"),
  26287. name: "Hammerspace Size",
  26288. image: {
  26289. source: "./media/characters/gliss/front.svg",
  26290. extra: 2347 / 2231,
  26291. bottom: 113 / 2462
  26292. }
  26293. },
  26294. },
  26295. [
  26296. {
  26297. name: "Normal",
  26298. height: math.unit(6.71, "feet"),
  26299. default: true
  26300. },
  26301. ]
  26302. ))
  26303. characterMakers.push(() => makeCharacter(
  26304. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26305. {
  26306. side: {
  26307. height: math.unit(1.44, "m"),
  26308. weight: math.unit(80, "kg"),
  26309. name: "Side",
  26310. image: {
  26311. source: "./media/characters/dune-anderson/side.svg",
  26312. bottom: 49 / 1426
  26313. }
  26314. },
  26315. },
  26316. [
  26317. {
  26318. name: "Wolf-sized",
  26319. height: math.unit(1.44, "meters")
  26320. },
  26321. {
  26322. name: "Normal",
  26323. height: math.unit(5.05, "meters"),
  26324. default: true
  26325. },
  26326. {
  26327. name: "Big",
  26328. height: math.unit(14.4, "meters")
  26329. },
  26330. {
  26331. name: "Huge",
  26332. height: math.unit(144, "meters")
  26333. },
  26334. ]
  26335. ))
  26336. characterMakers.push(() => makeCharacter(
  26337. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26338. {
  26339. front: {
  26340. height: math.unit(7, "feet"),
  26341. weight: math.unit(425, "lb"),
  26342. name: "Front",
  26343. image: {
  26344. source: "./media/characters/hind/front.svg",
  26345. extra: 2091 / 1860,
  26346. bottom: 129 / 2220
  26347. }
  26348. },
  26349. back: {
  26350. height: math.unit(7, "feet"),
  26351. weight: math.unit(425, "lb"),
  26352. name: "Back",
  26353. image: {
  26354. source: "./media/characters/hind/back.svg",
  26355. extra: 2091 / 1860,
  26356. bottom: 24.6 / 2309
  26357. }
  26358. },
  26359. tail: {
  26360. height: math.unit(2.8, "feet"),
  26361. name: "Tail",
  26362. image: {
  26363. source: "./media/characters/hind/tail.svg"
  26364. }
  26365. },
  26366. head: {
  26367. height: math.unit(2.55, "feet"),
  26368. name: "Head",
  26369. image: {
  26370. source: "./media/characters/hind/head.svg"
  26371. }
  26372. },
  26373. },
  26374. [
  26375. {
  26376. name: "XS",
  26377. height: math.unit(0.7, "feet")
  26378. },
  26379. {
  26380. name: "Normal",
  26381. height: math.unit(7, "feet"),
  26382. default: true
  26383. },
  26384. {
  26385. name: "XL",
  26386. height: math.unit(70, "feet")
  26387. },
  26388. ]
  26389. ))
  26390. characterMakers.push(() => makeCharacter(
  26391. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26392. {
  26393. front: {
  26394. height: math.unit(2.1, "meters"),
  26395. weight: math.unit(150, "lb"),
  26396. name: "Front",
  26397. image: {
  26398. source: "./media/characters/tharquench-sizestealer/front.svg",
  26399. extra: 1605/1470,
  26400. bottom: 36/1641
  26401. }
  26402. },
  26403. frontAlt: {
  26404. height: math.unit(2.1, "meters"),
  26405. weight: math.unit(150, "lb"),
  26406. name: "Front (Alt)",
  26407. image: {
  26408. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26409. extra: 2318 / 2063,
  26410. bottom: 93.4 / 2410
  26411. }
  26412. },
  26413. },
  26414. [
  26415. {
  26416. name: "Nano",
  26417. height: math.unit(1, "mm")
  26418. },
  26419. {
  26420. name: "Micro",
  26421. height: math.unit(1, "cm")
  26422. },
  26423. {
  26424. name: "Normal",
  26425. height: math.unit(2.1, "meters"),
  26426. default: true
  26427. },
  26428. ]
  26429. ))
  26430. characterMakers.push(() => makeCharacter(
  26431. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26432. {
  26433. front: {
  26434. height: math.unit(7 + 5 / 12, "feet"),
  26435. weight: math.unit(357, "lb"),
  26436. name: "Front",
  26437. image: {
  26438. source: "./media/characters/solex-draconov/front.svg",
  26439. extra: 1993 / 1865,
  26440. bottom: 117 / 2111
  26441. }
  26442. },
  26443. },
  26444. [
  26445. {
  26446. name: "Natural Height",
  26447. height: math.unit(7 + 5 / 12, "feet"),
  26448. default: true
  26449. },
  26450. {
  26451. name: "Macro",
  26452. height: math.unit(350, "feet")
  26453. },
  26454. {
  26455. name: "Macro+",
  26456. height: math.unit(1000, "feet")
  26457. },
  26458. {
  26459. name: "Megamacro",
  26460. height: math.unit(20, "km")
  26461. },
  26462. {
  26463. name: "Megamacro+",
  26464. height: math.unit(1000, "km")
  26465. },
  26466. {
  26467. name: "Gigamacro",
  26468. height: math.unit(2.5, "Gm")
  26469. },
  26470. {
  26471. name: "Teramacro",
  26472. height: math.unit(15, "Tm")
  26473. },
  26474. {
  26475. name: "Galactic",
  26476. height: math.unit(30, "Zm")
  26477. },
  26478. {
  26479. name: "Universal",
  26480. height: math.unit(21000, "Ym")
  26481. },
  26482. {
  26483. name: "Omniversal",
  26484. height: math.unit(9.861e50, "Ym")
  26485. },
  26486. {
  26487. name: "Existential",
  26488. height: math.unit(1e300, "meters")
  26489. },
  26490. ]
  26491. ))
  26492. characterMakers.push(() => makeCharacter(
  26493. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26494. {
  26495. side: {
  26496. height: math.unit(25, "feet"),
  26497. weight: math.unit(90000, "lb"),
  26498. name: "Side",
  26499. image: {
  26500. source: "./media/characters/mandarax/side.svg",
  26501. extra: 614 / 332,
  26502. bottom: 55 / 630
  26503. }
  26504. },
  26505. lounging: {
  26506. height: math.unit(15.4, "feet"),
  26507. weight: math.unit(90000, "lb"),
  26508. name: "Lounging",
  26509. image: {
  26510. source: "./media/characters/mandarax/lounging.svg",
  26511. extra: 817/609,
  26512. bottom: 685/1502
  26513. }
  26514. },
  26515. head: {
  26516. height: math.unit(11.4, "feet"),
  26517. name: "Head",
  26518. image: {
  26519. source: "./media/characters/mandarax/head.svg"
  26520. }
  26521. },
  26522. belly: {
  26523. height: math.unit(33, "feet"),
  26524. name: "Belly",
  26525. preyCapacity: math.unit(500, "people"),
  26526. image: {
  26527. source: "./media/characters/mandarax/belly.svg"
  26528. }
  26529. },
  26530. dick: {
  26531. height: math.unit(8.46, "feet"),
  26532. name: "Dick",
  26533. image: {
  26534. source: "./media/characters/mandarax/dick.svg"
  26535. }
  26536. },
  26537. top: {
  26538. height: math.unit(28, "meters"),
  26539. name: "Top",
  26540. image: {
  26541. source: "./media/characters/mandarax/top.svg"
  26542. }
  26543. },
  26544. },
  26545. [
  26546. {
  26547. name: "Normal",
  26548. height: math.unit(25, "feet"),
  26549. default: true
  26550. },
  26551. ]
  26552. ))
  26553. characterMakers.push(() => makeCharacter(
  26554. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26555. {
  26556. front: {
  26557. height: math.unit(5, "feet"),
  26558. weight: math.unit(90, "lb"),
  26559. name: "Front",
  26560. image: {
  26561. source: "./media/characters/pixil/front.svg",
  26562. extra: 2000 / 1618,
  26563. bottom: 12.3 / 2011
  26564. }
  26565. },
  26566. },
  26567. [
  26568. {
  26569. name: "Normal",
  26570. height: math.unit(5, "feet"),
  26571. default: true
  26572. },
  26573. {
  26574. name: "Megamacro",
  26575. height: math.unit(10, "miles"),
  26576. },
  26577. ]
  26578. ))
  26579. characterMakers.push(() => makeCharacter(
  26580. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26581. {
  26582. front: {
  26583. height: math.unit(7 + 2 / 12, "feet"),
  26584. weight: math.unit(200, "lb"),
  26585. name: "Front",
  26586. image: {
  26587. source: "./media/characters/angel/front.svg",
  26588. extra: 1830 / 1737,
  26589. bottom: 22.6 / 1854,
  26590. }
  26591. },
  26592. },
  26593. [
  26594. {
  26595. name: "Normal",
  26596. height: math.unit(7 + 2 / 12, "feet"),
  26597. default: true
  26598. },
  26599. {
  26600. name: "Macro",
  26601. height: math.unit(1000, "feet")
  26602. },
  26603. {
  26604. name: "Megamacro",
  26605. height: math.unit(2, "miles")
  26606. },
  26607. {
  26608. name: "Gigamacro",
  26609. height: math.unit(20, "earths")
  26610. },
  26611. ]
  26612. ))
  26613. characterMakers.push(() => makeCharacter(
  26614. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26615. {
  26616. front: {
  26617. height: math.unit(5, "feet"),
  26618. weight: math.unit(180, "lb"),
  26619. name: "Front",
  26620. image: {
  26621. source: "./media/characters/mekana/front.svg",
  26622. extra: 1671 / 1605,
  26623. bottom: 3.5 / 1691
  26624. }
  26625. },
  26626. side: {
  26627. height: math.unit(5, "feet"),
  26628. weight: math.unit(180, "lb"),
  26629. name: "Side",
  26630. image: {
  26631. source: "./media/characters/mekana/side.svg",
  26632. extra: 1671 / 1605,
  26633. bottom: 3.5 / 1691
  26634. }
  26635. },
  26636. back: {
  26637. height: math.unit(5, "feet"),
  26638. weight: math.unit(180, "lb"),
  26639. name: "Back",
  26640. image: {
  26641. source: "./media/characters/mekana/back.svg",
  26642. extra: 1671 / 1605,
  26643. bottom: 3.5 / 1691
  26644. }
  26645. },
  26646. },
  26647. [
  26648. {
  26649. name: "Normal",
  26650. height: math.unit(5, "feet"),
  26651. default: true
  26652. },
  26653. ]
  26654. ))
  26655. characterMakers.push(() => makeCharacter(
  26656. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26657. {
  26658. front: {
  26659. height: math.unit(4 + 6 / 12, "feet"),
  26660. weight: math.unit(80, "lb"),
  26661. name: "Front",
  26662. image: {
  26663. source: "./media/characters/pixie/front.svg",
  26664. extra: 1924 / 1825,
  26665. bottom: 22.4 / 1946
  26666. }
  26667. },
  26668. },
  26669. [
  26670. {
  26671. name: "Normal",
  26672. height: math.unit(4 + 6 / 12, "feet"),
  26673. default: true
  26674. },
  26675. {
  26676. name: "Macro",
  26677. height: math.unit(40, "feet")
  26678. },
  26679. ]
  26680. ))
  26681. characterMakers.push(() => makeCharacter(
  26682. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26683. {
  26684. front: {
  26685. height: math.unit(2.1, "meters"),
  26686. weight: math.unit(200, "lb"),
  26687. name: "Front",
  26688. image: {
  26689. source: "./media/characters/the-lascivious/front.svg",
  26690. extra: 1 / 0.893,
  26691. bottom: 3.5 / 573.7
  26692. }
  26693. },
  26694. },
  26695. [
  26696. {
  26697. name: "Human Scale",
  26698. height: math.unit(2.1, "meters")
  26699. },
  26700. {
  26701. name: "Wolxi Scale",
  26702. height: math.unit(46.2, "m"),
  26703. default: true
  26704. },
  26705. {
  26706. name: "Boinker of Buildings",
  26707. height: math.unit(10, "km")
  26708. },
  26709. {
  26710. name: "Shagger of Skyscrapers",
  26711. height: math.unit(40, "km")
  26712. },
  26713. {
  26714. name: "Banger of Boroughs",
  26715. height: math.unit(4000, "km")
  26716. },
  26717. {
  26718. name: "Screwer of States",
  26719. height: math.unit(100000, "km")
  26720. },
  26721. {
  26722. name: "Pounder of Planets",
  26723. height: math.unit(2000000, "km")
  26724. },
  26725. ]
  26726. ))
  26727. characterMakers.push(() => makeCharacter(
  26728. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26729. {
  26730. front: {
  26731. height: math.unit(6, "feet"),
  26732. weight: math.unit(150, "lb"),
  26733. name: "Front",
  26734. image: {
  26735. source: "./media/characters/aj/front.svg",
  26736. extra: 2039 / 1562,
  26737. bottom: 40 / 2079
  26738. }
  26739. },
  26740. },
  26741. [
  26742. {
  26743. name: "Normal",
  26744. height: math.unit(11 + 6 / 12, "feet"),
  26745. default: true
  26746. },
  26747. {
  26748. name: "Megamacro",
  26749. height: math.unit(60, "megameters")
  26750. },
  26751. ]
  26752. ))
  26753. characterMakers.push(() => makeCharacter(
  26754. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26755. {
  26756. side: {
  26757. height: math.unit(31 + 8 / 12, "feet"),
  26758. weight: math.unit(75000, "kg"),
  26759. name: "Side",
  26760. image: {
  26761. source: "./media/characters/koros/side.svg",
  26762. extra: 1442 / 1297,
  26763. bottom: 122.7 / 1562
  26764. }
  26765. },
  26766. dicksKingsCrown: {
  26767. height: math.unit(6, "feet"),
  26768. name: "Dicks (King's Crown)",
  26769. image: {
  26770. source: "./media/characters/koros/dicks-kings-crown.svg"
  26771. }
  26772. },
  26773. dicksTailSet: {
  26774. height: math.unit(3, "feet"),
  26775. name: "Dicks (Tail Set)",
  26776. image: {
  26777. source: "./media/characters/koros/dicks-tail-set.svg"
  26778. }
  26779. },
  26780. dickCumming: {
  26781. height: math.unit(7.98, "feet"),
  26782. name: "Dick (Cumming)",
  26783. image: {
  26784. source: "./media/characters/koros/dick-cumming.svg"
  26785. }
  26786. },
  26787. dicksBack: {
  26788. height: math.unit(5.9, "feet"),
  26789. name: "Dicks (Back)",
  26790. image: {
  26791. source: "./media/characters/koros/dicks-back.svg"
  26792. }
  26793. },
  26794. dicksFront: {
  26795. height: math.unit(3.72, "feet"),
  26796. name: "Dicks (Front)",
  26797. image: {
  26798. source: "./media/characters/koros/dicks-front.svg"
  26799. }
  26800. },
  26801. dicksPeeking: {
  26802. height: math.unit(3.0, "feet"),
  26803. name: "Dicks (Peeking)",
  26804. image: {
  26805. source: "./media/characters/koros/dicks-peeking.svg"
  26806. }
  26807. },
  26808. eye: {
  26809. height: math.unit(1.7, "feet"),
  26810. name: "Eye",
  26811. image: {
  26812. source: "./media/characters/koros/eye.svg"
  26813. }
  26814. },
  26815. headFront: {
  26816. height: math.unit(11.69, "feet"),
  26817. name: "Head (Front)",
  26818. image: {
  26819. source: "./media/characters/koros/head-front.svg"
  26820. }
  26821. },
  26822. headSide: {
  26823. height: math.unit(14, "feet"),
  26824. name: "Head (Side)",
  26825. image: {
  26826. source: "./media/characters/koros/head-side.svg"
  26827. }
  26828. },
  26829. leg: {
  26830. height: math.unit(17, "feet"),
  26831. name: "Leg",
  26832. image: {
  26833. source: "./media/characters/koros/leg.svg"
  26834. }
  26835. },
  26836. mawSide: {
  26837. height: math.unit(12.8, "feet"),
  26838. name: "Maw (Side)",
  26839. image: {
  26840. source: "./media/characters/koros/maw-side.svg"
  26841. }
  26842. },
  26843. mawSpitting: {
  26844. height: math.unit(17, "feet"),
  26845. name: "Maw (Spitting)",
  26846. image: {
  26847. source: "./media/characters/koros/maw-spitting.svg"
  26848. }
  26849. },
  26850. slit: {
  26851. height: math.unit(2.8, "feet"),
  26852. name: "Slit",
  26853. image: {
  26854. source: "./media/characters/koros/slit.svg"
  26855. }
  26856. },
  26857. stomach: {
  26858. height: math.unit(6.8, "feet"),
  26859. preyCapacity: math.unit(20, "people"),
  26860. name: "Stomach",
  26861. image: {
  26862. source: "./media/characters/koros/stomach.svg"
  26863. }
  26864. },
  26865. wingspanBottom: {
  26866. height: math.unit(114, "feet"),
  26867. name: "Wingspan (Bottom)",
  26868. image: {
  26869. source: "./media/characters/koros/wingspan-bottom.svg"
  26870. }
  26871. },
  26872. wingspanTop: {
  26873. height: math.unit(104, "feet"),
  26874. name: "Wingspan (Top)",
  26875. image: {
  26876. source: "./media/characters/koros/wingspan-top.svg"
  26877. }
  26878. },
  26879. },
  26880. [
  26881. {
  26882. name: "Normal",
  26883. height: math.unit(31 + 8 / 12, "feet"),
  26884. default: true
  26885. },
  26886. ]
  26887. ))
  26888. characterMakers.push(() => makeCharacter(
  26889. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26890. {
  26891. front: {
  26892. height: math.unit(18 + 5 / 12, "feet"),
  26893. weight: math.unit(3750, "kg"),
  26894. name: "Front",
  26895. image: {
  26896. source: "./media/characters/vexx/front.svg",
  26897. extra: 426 / 396,
  26898. bottom: 31.5 / 458
  26899. }
  26900. },
  26901. maw: {
  26902. height: math.unit(6, "feet"),
  26903. name: "Maw",
  26904. image: {
  26905. source: "./media/characters/vexx/maw.svg"
  26906. }
  26907. },
  26908. },
  26909. [
  26910. {
  26911. name: "Normal",
  26912. height: math.unit(18 + 5 / 12, "feet"),
  26913. default: true
  26914. },
  26915. ]
  26916. ))
  26917. characterMakers.push(() => makeCharacter(
  26918. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26919. {
  26920. front: {
  26921. height: math.unit(17 + 6 / 12, "feet"),
  26922. weight: math.unit(150, "lb"),
  26923. name: "Front",
  26924. image: {
  26925. source: "./media/characters/baadra/front.svg",
  26926. extra: 1694/1553,
  26927. bottom: 179/1873
  26928. }
  26929. },
  26930. frontAlt: {
  26931. height: math.unit(17 + 6 / 12, "feet"),
  26932. weight: math.unit(150, "lb"),
  26933. name: "Front (Alt)",
  26934. image: {
  26935. source: "./media/characters/baadra/front-alt.svg",
  26936. extra: 3137 / 2890,
  26937. bottom: 168.4 / 3305
  26938. }
  26939. },
  26940. back: {
  26941. height: math.unit(17 + 6 / 12, "feet"),
  26942. weight: math.unit(150, "lb"),
  26943. name: "Back",
  26944. image: {
  26945. source: "./media/characters/baadra/back.svg",
  26946. extra: 3142 / 2890,
  26947. bottom: 220 / 3371
  26948. }
  26949. },
  26950. head: {
  26951. height: math.unit(5.45, "feet"),
  26952. name: "Head",
  26953. image: {
  26954. source: "./media/characters/baadra/head.svg"
  26955. }
  26956. },
  26957. headAngry: {
  26958. height: math.unit(4.95, "feet"),
  26959. name: "Head (Angry)",
  26960. image: {
  26961. source: "./media/characters/baadra/head-angry.svg"
  26962. }
  26963. },
  26964. headOpen: {
  26965. height: math.unit(6, "feet"),
  26966. name: "Head (Open)",
  26967. image: {
  26968. source: "./media/characters/baadra/head-open.svg"
  26969. }
  26970. },
  26971. },
  26972. [
  26973. {
  26974. name: "Normal",
  26975. height: math.unit(17 + 6 / 12, "feet"),
  26976. default: true
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26982. {
  26983. front: {
  26984. height: math.unit(7 + 3 / 12, "feet"),
  26985. weight: math.unit(180, "lb"),
  26986. name: "Front",
  26987. image: {
  26988. source: "./media/characters/juri/front.svg",
  26989. extra: 1401 / 1237,
  26990. bottom: 18.5 / 1418
  26991. }
  26992. },
  26993. side: {
  26994. height: math.unit(7 + 3 / 12, "feet"),
  26995. weight: math.unit(180, "lb"),
  26996. name: "Side",
  26997. image: {
  26998. source: "./media/characters/juri/side.svg",
  26999. extra: 1424 / 1242,
  27000. bottom: 18.5 / 1447
  27001. }
  27002. },
  27003. sitting: {
  27004. height: math.unit(6, "feet"),
  27005. weight: math.unit(180, "lb"),
  27006. name: "Sitting",
  27007. image: {
  27008. source: "./media/characters/juri/sitting.svg",
  27009. extra: 1270 / 1143,
  27010. bottom: 100 / 1343
  27011. }
  27012. },
  27013. back: {
  27014. height: math.unit(7 + 3 / 12, "feet"),
  27015. weight: math.unit(180, "lb"),
  27016. name: "Back",
  27017. image: {
  27018. source: "./media/characters/juri/back.svg",
  27019. extra: 1377 / 1240,
  27020. bottom: 23.7 / 1405
  27021. }
  27022. },
  27023. maw: {
  27024. height: math.unit(2.8, "feet"),
  27025. name: "Maw",
  27026. image: {
  27027. source: "./media/characters/juri/maw.svg"
  27028. }
  27029. },
  27030. stomach: {
  27031. height: math.unit(0.89, "feet"),
  27032. preyCapacity: math.unit(4, "liters"),
  27033. name: "Stomach",
  27034. image: {
  27035. source: "./media/characters/juri/stomach.svg"
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Normal",
  27042. height: math.unit(7 + 3 / 12, "feet"),
  27043. default: true
  27044. },
  27045. ]
  27046. ))
  27047. characterMakers.push(() => makeCharacter(
  27048. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27049. {
  27050. fox: {
  27051. height: math.unit(5 + 6 / 12, "feet"),
  27052. weight: math.unit(140, "lb"),
  27053. name: "Fox",
  27054. image: {
  27055. source: "./media/characters/maxene-sita/fox.svg",
  27056. extra: 146 / 138,
  27057. bottom: 2.1 / 148.19
  27058. }
  27059. },
  27060. foxLaying: {
  27061. height: math.unit(1.70, "feet"),
  27062. weight: math.unit(140, "lb"),
  27063. name: "Fox (Laying)",
  27064. image: {
  27065. source: "./media/characters/maxene-sita/fox-laying.svg",
  27066. extra: 910 / 572,
  27067. bottom: 71 / 981
  27068. }
  27069. },
  27070. kitsune: {
  27071. height: math.unit(10, "feet"),
  27072. weight: math.unit(800, "lb"),
  27073. name: "Kitsune",
  27074. image: {
  27075. source: "./media/characters/maxene-sita/kitsune.svg",
  27076. extra: 185 / 176,
  27077. bottom: 4.7 / 189.9
  27078. }
  27079. },
  27080. hellhound: {
  27081. height: math.unit(10, "feet"),
  27082. weight: math.unit(700, "lb"),
  27083. name: "Hellhound",
  27084. image: {
  27085. source: "./media/characters/maxene-sita/hellhound.svg",
  27086. extra: 1600 / 1545,
  27087. bottom: 81 / 1681
  27088. }
  27089. },
  27090. },
  27091. [
  27092. {
  27093. name: "Normal",
  27094. height: math.unit(5 + 6 / 12, "feet"),
  27095. default: true
  27096. },
  27097. ]
  27098. ))
  27099. characterMakers.push(() => makeCharacter(
  27100. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27101. {
  27102. front: {
  27103. height: math.unit(3 + 4 / 12, "feet"),
  27104. weight: math.unit(70, "lb"),
  27105. name: "Front",
  27106. image: {
  27107. source: "./media/characters/maia/front.svg",
  27108. extra: 227 / 219.5,
  27109. bottom: 40 / 267
  27110. }
  27111. },
  27112. back: {
  27113. height: math.unit(3 + 4 / 12, "feet"),
  27114. weight: math.unit(70, "lb"),
  27115. name: "Back",
  27116. image: {
  27117. source: "./media/characters/maia/back.svg",
  27118. extra: 237 / 225
  27119. }
  27120. },
  27121. },
  27122. [
  27123. {
  27124. name: "Normal",
  27125. height: math.unit(3 + 4 / 12, "feet"),
  27126. default: true
  27127. },
  27128. ]
  27129. ))
  27130. characterMakers.push(() => makeCharacter(
  27131. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27132. {
  27133. front: {
  27134. height: math.unit(5 + 10 / 12, "feet"),
  27135. weight: math.unit(197, "lb"),
  27136. name: "Front",
  27137. image: {
  27138. source: "./media/characters/jabaro/front.svg",
  27139. extra: 225 / 216,
  27140. bottom: 5.06 / 230
  27141. }
  27142. },
  27143. back: {
  27144. height: math.unit(5 + 10 / 12, "feet"),
  27145. weight: math.unit(197, "lb"),
  27146. name: "Back",
  27147. image: {
  27148. source: "./media/characters/jabaro/back.svg",
  27149. extra: 225 / 219,
  27150. bottom: 1.9 / 227
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Normal",
  27157. height: math.unit(5 + 10 / 12, "feet"),
  27158. default: true
  27159. },
  27160. ]
  27161. ))
  27162. characterMakers.push(() => makeCharacter(
  27163. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27164. {
  27165. front: {
  27166. height: math.unit(5 + 8 / 12, "feet"),
  27167. weight: math.unit(139, "lb"),
  27168. name: "Front",
  27169. image: {
  27170. source: "./media/characters/risa/front.svg",
  27171. extra: 270 / 260,
  27172. bottom: 11.2 / 282
  27173. }
  27174. },
  27175. back: {
  27176. height: math.unit(5 + 8 / 12, "feet"),
  27177. weight: math.unit(139, "lb"),
  27178. name: "Back",
  27179. image: {
  27180. source: "./media/characters/risa/back.svg",
  27181. extra: 264 / 255,
  27182. bottom: 4 / 268
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Normal",
  27189. height: math.unit(5 + 8 / 12, "feet"),
  27190. default: true
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(2 + 11 / 12, "feet"),
  27199. weight: math.unit(30, "lb"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/weatley/front.svg",
  27203. bottom: 10.7 / 414,
  27204. extra: 403.5 / 362
  27205. }
  27206. },
  27207. back: {
  27208. height: math.unit(2 + 11 / 12, "feet"),
  27209. weight: math.unit(30, "lb"),
  27210. name: "Back",
  27211. image: {
  27212. source: "./media/characters/weatley/back.svg",
  27213. bottom: 10.7 / 414,
  27214. extra: 403.5 / 362
  27215. }
  27216. },
  27217. },
  27218. [
  27219. {
  27220. name: "Normal",
  27221. height: math.unit(2 + 11 / 12, "feet"),
  27222. default: true
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(5 + 2 / 12, "feet"),
  27231. weight: math.unit(50, "kg"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/mercury-crescent/front.svg",
  27235. extra: 1088 / 1033,
  27236. bottom: 18.9 / 1109
  27237. }
  27238. },
  27239. },
  27240. [
  27241. {
  27242. name: "Normal",
  27243. height: math.unit(5 + 2 / 12, "feet"),
  27244. default: true
  27245. },
  27246. ]
  27247. ))
  27248. characterMakers.push(() => makeCharacter(
  27249. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27250. {
  27251. front: {
  27252. height: math.unit(2, "feet"),
  27253. weight: math.unit(15, "kg"),
  27254. name: "Front",
  27255. image: {
  27256. source: "./media/characters/diamond-jones/front.svg",
  27257. extra: 727/723,
  27258. bottom: 46/773
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Normal",
  27265. height: math.unit(2, "feet"),
  27266. default: true
  27267. },
  27268. ]
  27269. ))
  27270. characterMakers.push(() => makeCharacter(
  27271. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27272. {
  27273. front: {
  27274. height: math.unit(3, "feet"),
  27275. weight: math.unit(30, "kg"),
  27276. name: "Front",
  27277. image: {
  27278. source: "./media/characters/sweet-bit/front.svg",
  27279. extra: 675 / 567,
  27280. bottom: 27.7 / 703
  27281. }
  27282. },
  27283. },
  27284. [
  27285. {
  27286. name: "Normal",
  27287. height: math.unit(3, "feet"),
  27288. default: true
  27289. },
  27290. ]
  27291. ))
  27292. characterMakers.push(() => makeCharacter(
  27293. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27294. {
  27295. side: {
  27296. height: math.unit(9.178, "feet"),
  27297. weight: math.unit(500, "lb"),
  27298. name: "Side",
  27299. image: {
  27300. source: "./media/characters/umbrazen/side.svg",
  27301. extra: 1730 / 1473,
  27302. bottom: 34.6 / 1765
  27303. }
  27304. },
  27305. },
  27306. [
  27307. {
  27308. name: "Normal",
  27309. height: math.unit(9.178, "feet"),
  27310. default: true
  27311. },
  27312. ]
  27313. ))
  27314. characterMakers.push(() => makeCharacter(
  27315. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27316. {
  27317. front: {
  27318. height: math.unit(10, "feet"),
  27319. weight: math.unit(750, "lb"),
  27320. name: "Front",
  27321. image: {
  27322. source: "./media/characters/arlist/front.svg",
  27323. extra: 961 / 778,
  27324. bottom: 6.2 / 986
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(10, "feet"),
  27332. default: true
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27338. {
  27339. front: {
  27340. height: math.unit(5 + 1 / 12, "feet"),
  27341. weight: math.unit(110, "lb"),
  27342. name: "Front",
  27343. image: {
  27344. source: "./media/characters/aradel/front.svg",
  27345. extra: 324 / 303,
  27346. bottom: 3.6 / 329.4
  27347. }
  27348. },
  27349. },
  27350. [
  27351. {
  27352. name: "Normal",
  27353. height: math.unit(5 + 1 / 12, "feet"),
  27354. default: true
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27360. {
  27361. dressed: {
  27362. height: math.unit(3 + 8 / 12, "feet"),
  27363. weight: math.unit(50, "lb"),
  27364. name: "Dressed",
  27365. image: {
  27366. source: "./media/characters/serryn/dressed.svg",
  27367. extra: 1792 / 1656,
  27368. bottom: 43.5 / 1840
  27369. }
  27370. },
  27371. nude: {
  27372. height: math.unit(3 + 8 / 12, "feet"),
  27373. weight: math.unit(50, "lb"),
  27374. name: "Nude",
  27375. image: {
  27376. source: "./media/characters/serryn/nude.svg",
  27377. extra: 1792 / 1656,
  27378. bottom: 43.5 / 1840
  27379. }
  27380. },
  27381. },
  27382. [
  27383. {
  27384. name: "Normal",
  27385. height: math.unit(3 + 8 / 12, "feet"),
  27386. default: true
  27387. },
  27388. ]
  27389. ))
  27390. characterMakers.push(() => makeCharacter(
  27391. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27392. {
  27393. front: {
  27394. height: math.unit(7 + 10 / 12, "feet"),
  27395. weight: math.unit(255, "lb"),
  27396. name: "Front",
  27397. image: {
  27398. source: "./media/characters/xavier-thyme/front.svg",
  27399. extra: 3733 / 3642,
  27400. bottom: 131 / 3869
  27401. }
  27402. },
  27403. frontRaven: {
  27404. height: math.unit(7 + 10 / 12, "feet"),
  27405. weight: math.unit(255, "lb"),
  27406. name: "Front (Raven)",
  27407. image: {
  27408. source: "./media/characters/xavier-thyme/front-raven.svg",
  27409. extra: 4385 / 3642,
  27410. bottom: 131 / 4517
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Normal",
  27417. height: math.unit(7 + 10 / 12, "feet"),
  27418. default: true
  27419. },
  27420. ]
  27421. ))
  27422. characterMakers.push(() => makeCharacter(
  27423. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27424. {
  27425. front: {
  27426. height: math.unit(1.6, "m"),
  27427. weight: math.unit(50, "kg"),
  27428. name: "Front",
  27429. image: {
  27430. source: "./media/characters/kiki/front.svg",
  27431. extra: 4682 / 3610,
  27432. bottom: 115 / 4777
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Normal",
  27439. height: math.unit(1.6, "meters"),
  27440. default: true
  27441. },
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27446. {
  27447. front: {
  27448. height: math.unit(50, "m"),
  27449. weight: math.unit(500, "tonnes"),
  27450. name: "Front",
  27451. image: {
  27452. source: "./media/characters/ryoko/front.svg",
  27453. extra: 4632 / 3926,
  27454. bottom: 193 / 4823
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Normal",
  27461. height: math.unit(50, "meters"),
  27462. default: true
  27463. },
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27468. {
  27469. front: {
  27470. height: math.unit(30, "m"),
  27471. weight: math.unit(22, "tonnes"),
  27472. name: "Front",
  27473. image: {
  27474. source: "./media/characters/elio/front.svg",
  27475. extra: 4582 / 3720,
  27476. bottom: 236 / 4828
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Normal",
  27483. height: math.unit(30, "meters"),
  27484. default: true
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27490. {
  27491. front: {
  27492. height: math.unit(6 + 3 / 12, "feet"),
  27493. weight: math.unit(120, "lb"),
  27494. name: "Front",
  27495. image: {
  27496. source: "./media/characters/azura/front.svg",
  27497. extra: 1149 / 1135,
  27498. bottom: 45 / 1194
  27499. }
  27500. },
  27501. frontClothed: {
  27502. height: math.unit(6 + 3 / 12, "feet"),
  27503. weight: math.unit(120, "lb"),
  27504. name: "Front (Clothed)",
  27505. image: {
  27506. source: "./media/characters/azura/front-clothed.svg",
  27507. extra: 1149 / 1135,
  27508. bottom: 45 / 1194
  27509. }
  27510. },
  27511. },
  27512. [
  27513. {
  27514. name: "Normal",
  27515. height: math.unit(6 + 3 / 12, "feet"),
  27516. default: true
  27517. },
  27518. {
  27519. name: "Macro",
  27520. height: math.unit(20 + 6 / 12, "feet")
  27521. },
  27522. {
  27523. name: "Megamacro",
  27524. height: math.unit(12, "miles")
  27525. },
  27526. {
  27527. name: "Gigamacro",
  27528. height: math.unit(10000, "miles")
  27529. },
  27530. {
  27531. name: "Teramacro",
  27532. height: math.unit(900000, "miles")
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27538. {
  27539. front: {
  27540. height: math.unit(12, "feet"),
  27541. weight: math.unit(1, "ton"),
  27542. capacity: math.unit(660000, "gallons"),
  27543. name: "Front",
  27544. image: {
  27545. source: "./media/characters/zeus/front.svg",
  27546. extra: 5005 / 4717,
  27547. bottom: 363 / 5388
  27548. }
  27549. },
  27550. },
  27551. [
  27552. {
  27553. name: "Normal",
  27554. height: math.unit(12, "feet")
  27555. },
  27556. {
  27557. name: "Preferred Size",
  27558. height: math.unit(0.5, "miles"),
  27559. default: true
  27560. },
  27561. {
  27562. name: "Giga Horse",
  27563. height: math.unit(300, "miles")
  27564. },
  27565. {
  27566. name: "Riding Planets",
  27567. height: math.unit(30, "megameters")
  27568. },
  27569. {
  27570. name: "Cosmic Giant",
  27571. height: math.unit(3, "zettameters")
  27572. },
  27573. {
  27574. name: "Breeding God",
  27575. height: math.unit(9.92e22, "yottameters")
  27576. },
  27577. ]
  27578. ))
  27579. characterMakers.push(() => makeCharacter(
  27580. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27581. {
  27582. side: {
  27583. height: math.unit(9, "feet"),
  27584. weight: math.unit(1500, "kg"),
  27585. name: "Side",
  27586. image: {
  27587. source: "./media/characters/fang/side.svg",
  27588. extra: 924 / 866,
  27589. bottom: 47.5 / 972.3
  27590. }
  27591. },
  27592. },
  27593. [
  27594. {
  27595. name: "Normal",
  27596. height: math.unit(9, "feet"),
  27597. default: true
  27598. },
  27599. {
  27600. name: "Macro",
  27601. height: math.unit(75 + 6 / 12, "feet")
  27602. },
  27603. {
  27604. name: "Teramacro",
  27605. height: math.unit(50000, "miles")
  27606. },
  27607. ]
  27608. ))
  27609. characterMakers.push(() => makeCharacter(
  27610. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27611. {
  27612. front: {
  27613. height: math.unit(10, "feet"),
  27614. weight: math.unit(2, "tons"),
  27615. name: "Front",
  27616. image: {
  27617. source: "./media/characters/rekhit/front.svg",
  27618. extra: 2796 / 2590,
  27619. bottom: 225 / 3022
  27620. }
  27621. },
  27622. },
  27623. [
  27624. {
  27625. name: "Normal",
  27626. height: math.unit(10, "feet"),
  27627. default: true
  27628. },
  27629. {
  27630. name: "Macro",
  27631. height: math.unit(500, "feet")
  27632. },
  27633. ]
  27634. ))
  27635. characterMakers.push(() => makeCharacter(
  27636. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27637. {
  27638. front: {
  27639. height: math.unit(7 + 6.451 / 12, "feet"),
  27640. weight: math.unit(310, "lb"),
  27641. name: "Front",
  27642. image: {
  27643. source: "./media/characters/dahlia-verrick/front.svg",
  27644. extra: 1488 / 1365,
  27645. bottom: 6.2 / 1495
  27646. }
  27647. },
  27648. back: {
  27649. height: math.unit(7 + 6.451 / 12, "feet"),
  27650. weight: math.unit(310, "lb"),
  27651. name: "Back",
  27652. image: {
  27653. source: "./media/characters/dahlia-verrick/back.svg",
  27654. extra: 1472 / 1351,
  27655. bottom: 5.28 / 1477
  27656. }
  27657. },
  27658. frontBusiness: {
  27659. height: math.unit(7 + 6.451 / 12, "feet"),
  27660. weight: math.unit(200, "lb"),
  27661. name: "Front (Business)",
  27662. image: {
  27663. source: "./media/characters/dahlia-verrick/front-business.svg",
  27664. extra: 1478 / 1381,
  27665. bottom: 5.5 / 1484
  27666. }
  27667. },
  27668. frontCasual: {
  27669. height: math.unit(7 + 6.451 / 12, "feet"),
  27670. weight: math.unit(200, "lb"),
  27671. name: "Front (Casual)",
  27672. image: {
  27673. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27674. extra: 1478 / 1381,
  27675. bottom: 5.5 / 1484
  27676. }
  27677. },
  27678. },
  27679. [
  27680. {
  27681. name: "Travel-Sized",
  27682. height: math.unit(7.45, "inches")
  27683. },
  27684. {
  27685. name: "Normal",
  27686. height: math.unit(7 + 6.451 / 12, "feet"),
  27687. default: true
  27688. },
  27689. {
  27690. name: "Hitting the Town",
  27691. height: math.unit(37 + 8 / 12, "feet")
  27692. },
  27693. {
  27694. name: "Stomp in the Suburbs",
  27695. height: math.unit(964 + 9.728 / 12, "feet")
  27696. },
  27697. {
  27698. name: "Sit on the City",
  27699. height: math.unit(61747 + 10.592 / 12, "feet")
  27700. },
  27701. {
  27702. name: "Glomp the Globe",
  27703. height: math.unit(252919327 + 4.832 / 12, "feet")
  27704. },
  27705. ]
  27706. ))
  27707. characterMakers.push(() => makeCharacter(
  27708. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27709. {
  27710. front: {
  27711. height: math.unit(6 + 4 / 12, "feet"),
  27712. weight: math.unit(320, "lb"),
  27713. name: "Front",
  27714. image: {
  27715. source: "./media/characters/balina-mahigan/front.svg",
  27716. extra: 447 / 428,
  27717. bottom: 18 / 466
  27718. }
  27719. },
  27720. back: {
  27721. height: math.unit(6 + 4 / 12, "feet"),
  27722. weight: math.unit(320, "lb"),
  27723. name: "Back",
  27724. image: {
  27725. source: "./media/characters/balina-mahigan/back.svg",
  27726. extra: 445 / 428,
  27727. bottom: 4.07 / 448
  27728. }
  27729. },
  27730. arm: {
  27731. height: math.unit(1.88, "feet"),
  27732. name: "Arm",
  27733. image: {
  27734. source: "./media/characters/balina-mahigan/arm.svg"
  27735. }
  27736. },
  27737. backPort: {
  27738. height: math.unit(0.685, "feet"),
  27739. name: "Back Port",
  27740. image: {
  27741. source: "./media/characters/balina-mahigan/back-port.svg"
  27742. }
  27743. },
  27744. hoofpaw: {
  27745. height: math.unit(1.41, "feet"),
  27746. name: "Hoofpaw",
  27747. image: {
  27748. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27749. }
  27750. },
  27751. leftHandBack: {
  27752. height: math.unit(0.938, "feet"),
  27753. name: "Left Hand (Back)",
  27754. image: {
  27755. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27756. }
  27757. },
  27758. leftHandFront: {
  27759. height: math.unit(0.938, "feet"),
  27760. name: "Left Hand (Front)",
  27761. image: {
  27762. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27763. }
  27764. },
  27765. rightHandBack: {
  27766. height: math.unit(0.95, "feet"),
  27767. name: "Right Hand (Back)",
  27768. image: {
  27769. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27770. }
  27771. },
  27772. rightHandFront: {
  27773. height: math.unit(0.95, "feet"),
  27774. name: "Right Hand (Front)",
  27775. image: {
  27776. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27777. }
  27778. },
  27779. },
  27780. [
  27781. {
  27782. name: "Normal",
  27783. height: math.unit(6 + 4 / 12, "feet"),
  27784. default: true
  27785. },
  27786. ]
  27787. ))
  27788. characterMakers.push(() => makeCharacter(
  27789. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27790. {
  27791. front: {
  27792. height: math.unit(6, "feet"),
  27793. weight: math.unit(320, "lb"),
  27794. name: "Front",
  27795. image: {
  27796. source: "./media/characters/balina-mejeri/front.svg",
  27797. extra: 517 / 488,
  27798. bottom: 44.2 / 561
  27799. }
  27800. },
  27801. },
  27802. [
  27803. {
  27804. name: "Normal",
  27805. height: math.unit(6 + 4 / 12, "feet")
  27806. },
  27807. {
  27808. name: "Business",
  27809. height: math.unit(155, "feet"),
  27810. default: true
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27816. {
  27817. kneeling: {
  27818. height: math.unit(6 + 4 / 12, "feet"),
  27819. weight: math.unit(300 * 20, "lb"),
  27820. name: "Kneeling",
  27821. image: {
  27822. source: "./media/characters/balbarian/kneeling.svg",
  27823. extra: 922 / 862,
  27824. bottom: 42.4 / 965
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Normal",
  27831. height: math.unit(6 + 4 / 12, "feet")
  27832. },
  27833. {
  27834. name: "Treasured",
  27835. height: math.unit(18 + 9 / 12, "feet"),
  27836. default: true
  27837. },
  27838. {
  27839. name: "Macro",
  27840. height: math.unit(900, "feet")
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27846. {
  27847. front: {
  27848. height: math.unit(6 + 4 / 12, "feet"),
  27849. weight: math.unit(325, "lb"),
  27850. name: "Front",
  27851. image: {
  27852. source: "./media/characters/balina-amarini/front.svg",
  27853. extra: 415 / 403,
  27854. bottom: 19 / 433.4
  27855. }
  27856. },
  27857. back: {
  27858. height: math.unit(6 + 4 / 12, "feet"),
  27859. weight: math.unit(325, "lb"),
  27860. name: "Back",
  27861. image: {
  27862. source: "./media/characters/balina-amarini/back.svg",
  27863. extra: 415 / 403,
  27864. bottom: 13.5 / 432
  27865. }
  27866. },
  27867. overdrive: {
  27868. height: math.unit(6 + 4 / 12, "feet"),
  27869. weight: math.unit(400, "lb"),
  27870. name: "Overdrive",
  27871. image: {
  27872. source: "./media/characters/balina-amarini/overdrive.svg",
  27873. extra: 269 / 259,
  27874. bottom: 12 / 282
  27875. }
  27876. },
  27877. },
  27878. [
  27879. {
  27880. name: "Boom",
  27881. height: math.unit(9 + 10 / 12, "feet"),
  27882. default: true
  27883. },
  27884. {
  27885. name: "Macro",
  27886. height: math.unit(280, "feet")
  27887. },
  27888. ]
  27889. ))
  27890. characterMakers.push(() => makeCharacter(
  27891. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27892. {
  27893. goddess: {
  27894. height: math.unit(600, "feet"),
  27895. weight: math.unit(2000000, "tons"),
  27896. name: "Goddess",
  27897. image: {
  27898. source: "./media/characters/lady-kubwa/goddess.svg",
  27899. extra: 1240.5 / 1223,
  27900. bottom: 22 / 1263
  27901. }
  27902. },
  27903. goddesser: {
  27904. height: math.unit(900, "feet"),
  27905. weight: math.unit(20000000, "lb"),
  27906. name: "Goddess-er",
  27907. image: {
  27908. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27909. extra: 899 / 888,
  27910. bottom: 12.6 / 912
  27911. }
  27912. },
  27913. },
  27914. [
  27915. {
  27916. name: "Macro",
  27917. height: math.unit(600, "feet"),
  27918. default: true
  27919. },
  27920. {
  27921. name: "Megamacro",
  27922. height: math.unit(250, "miles")
  27923. },
  27924. ]
  27925. ))
  27926. characterMakers.push(() => makeCharacter(
  27927. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27928. {
  27929. front: {
  27930. height: math.unit(7 + 7 / 12, "feet"),
  27931. weight: math.unit(250, "lb"),
  27932. name: "Front",
  27933. image: {
  27934. source: "./media/characters/tala-grovehorn/front.svg",
  27935. extra: 2636 / 2525,
  27936. bottom: 147 / 2781
  27937. }
  27938. },
  27939. back: {
  27940. height: math.unit(7 + 7 / 12, "feet"),
  27941. weight: math.unit(250, "lb"),
  27942. name: "Back",
  27943. image: {
  27944. source: "./media/characters/tala-grovehorn/back.svg",
  27945. extra: 2635 / 2539,
  27946. bottom: 100 / 2732.8
  27947. }
  27948. },
  27949. mouth: {
  27950. height: math.unit(1.15, "feet"),
  27951. name: "Mouth",
  27952. image: {
  27953. source: "./media/characters/tala-grovehorn/mouth.svg"
  27954. }
  27955. },
  27956. dick: {
  27957. height: math.unit(2.36, "feet"),
  27958. name: "Dick",
  27959. image: {
  27960. source: "./media/characters/tala-grovehorn/dick.svg"
  27961. }
  27962. },
  27963. slit: {
  27964. height: math.unit(0.61, "feet"),
  27965. name: "Slit",
  27966. image: {
  27967. source: "./media/characters/tala-grovehorn/slit.svg"
  27968. }
  27969. },
  27970. },
  27971. [
  27972. ]
  27973. ))
  27974. characterMakers.push(() => makeCharacter(
  27975. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27976. {
  27977. front: {
  27978. height: math.unit(7 + 7 / 12, "feet"),
  27979. weight: math.unit(225, "lb"),
  27980. name: "Front",
  27981. image: {
  27982. source: "./media/characters/epona/front.svg",
  27983. extra: 2445 / 2290,
  27984. bottom: 251 / 2696
  27985. }
  27986. },
  27987. back: {
  27988. height: math.unit(7 + 7 / 12, "feet"),
  27989. weight: math.unit(225, "lb"),
  27990. name: "Back",
  27991. image: {
  27992. source: "./media/characters/epona/back.svg",
  27993. extra: 2546 / 2408,
  27994. bottom: 44 / 2589
  27995. }
  27996. },
  27997. genitals: {
  27998. height: math.unit(1.5, "feet"),
  27999. name: "Genitals",
  28000. image: {
  28001. source: "./media/characters/epona/genitals.svg"
  28002. }
  28003. },
  28004. },
  28005. [
  28006. {
  28007. name: "Normal",
  28008. height: math.unit(7 + 7 / 12, "feet"),
  28009. default: true
  28010. },
  28011. ]
  28012. ))
  28013. characterMakers.push(() => makeCharacter(
  28014. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28015. {
  28016. front: {
  28017. height: math.unit(7, "feet"),
  28018. weight: math.unit(518, "lb"),
  28019. name: "Front",
  28020. image: {
  28021. source: "./media/characters/avia-bloodbourn/front.svg",
  28022. extra: 1466 / 1350,
  28023. bottom: 65 / 1527
  28024. }
  28025. },
  28026. },
  28027. [
  28028. ]
  28029. ))
  28030. characterMakers.push(() => makeCharacter(
  28031. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28032. {
  28033. front: {
  28034. height: math.unit(9.35, "feet"),
  28035. weight: math.unit(600, "lb"),
  28036. name: "Front",
  28037. image: {
  28038. source: "./media/characters/amera/front.svg",
  28039. extra: 891 / 818,
  28040. bottom: 30 / 922.7
  28041. }
  28042. },
  28043. back: {
  28044. height: math.unit(9.35, "feet"),
  28045. weight: math.unit(600, "lb"),
  28046. name: "Back",
  28047. image: {
  28048. source: "./media/characters/amera/back.svg",
  28049. extra: 876 / 824,
  28050. bottom: 6.8 / 884
  28051. }
  28052. },
  28053. dick: {
  28054. height: math.unit(2.14, "feet"),
  28055. name: "Dick",
  28056. image: {
  28057. source: "./media/characters/amera/dick.svg"
  28058. }
  28059. },
  28060. },
  28061. [
  28062. {
  28063. name: "Normal",
  28064. height: math.unit(9.35, "feet"),
  28065. default: true
  28066. },
  28067. ]
  28068. ))
  28069. characterMakers.push(() => makeCharacter(
  28070. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28071. {
  28072. kneeling: {
  28073. height: math.unit(3 + 4 / 12, "feet"),
  28074. weight: math.unit(90, "lb"),
  28075. name: "Kneeling",
  28076. image: {
  28077. source: "./media/characters/rosewen/kneeling.svg",
  28078. extra: 1835 / 1571,
  28079. bottom: 27.7 / 1862
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(3 + 4 / 12, "feet"),
  28087. default: true
  28088. },
  28089. ]
  28090. ))
  28091. characterMakers.push(() => makeCharacter(
  28092. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28093. {
  28094. front: {
  28095. height: math.unit(5 + 10 / 12, "feet"),
  28096. weight: math.unit(200, "lb"),
  28097. name: "Front",
  28098. image: {
  28099. source: "./media/characters/sabah/front.svg",
  28100. extra: 849 / 763,
  28101. bottom: 33.9 / 881
  28102. }
  28103. },
  28104. },
  28105. [
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(5 + 10 / 12, "feet"),
  28109. default: true
  28110. },
  28111. ]
  28112. ))
  28113. characterMakers.push(() => makeCharacter(
  28114. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28115. {
  28116. front: {
  28117. height: math.unit(3 + 5 / 12, "feet"),
  28118. weight: math.unit(40, "kg"),
  28119. name: "Front",
  28120. image: {
  28121. source: "./media/characters/purple-flame/front.svg",
  28122. extra: 1577 / 1412,
  28123. bottom: 97 / 1694
  28124. }
  28125. },
  28126. frontDressed: {
  28127. height: math.unit(3 + 5 / 12, "feet"),
  28128. weight: math.unit(40, "kg"),
  28129. name: "Front (Dressed)",
  28130. image: {
  28131. source: "./media/characters/purple-flame/front-dressed.svg",
  28132. extra: 1577 / 1412,
  28133. bottom: 97 / 1694
  28134. }
  28135. },
  28136. headphones: {
  28137. height: math.unit(0.85, "feet"),
  28138. name: "Headphones",
  28139. image: {
  28140. source: "./media/characters/purple-flame/headphones.svg"
  28141. }
  28142. },
  28143. },
  28144. [
  28145. {
  28146. name: "Really Small",
  28147. height: math.unit(5, "cm")
  28148. },
  28149. {
  28150. name: "Micro",
  28151. height: math.unit(1 + 5 / 12, "feet")
  28152. },
  28153. {
  28154. name: "Normal",
  28155. height: math.unit(3 + 5 / 12, "feet"),
  28156. default: true
  28157. },
  28158. {
  28159. name: "Minimacro",
  28160. height: math.unit(125, "feet")
  28161. },
  28162. {
  28163. name: "Macro",
  28164. height: math.unit(0.5, "miles")
  28165. },
  28166. {
  28167. name: "Megamacro",
  28168. height: math.unit(50, "miles")
  28169. },
  28170. {
  28171. name: "Gigantic",
  28172. height: math.unit(750, "miles")
  28173. },
  28174. {
  28175. name: "Planetary",
  28176. height: math.unit(15000, "miles")
  28177. },
  28178. ]
  28179. ))
  28180. characterMakers.push(() => makeCharacter(
  28181. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28182. {
  28183. front: {
  28184. height: math.unit(14, "feet"),
  28185. weight: math.unit(959, "lb"),
  28186. name: "Front",
  28187. image: {
  28188. source: "./media/characters/arsenal/front.svg",
  28189. extra: 2357 / 2157,
  28190. bottom: 93 / 2458
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Normal",
  28197. height: math.unit(14, "feet"),
  28198. default: true
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28204. {
  28205. front: {
  28206. height: math.unit(6, "feet"),
  28207. weight: math.unit(150, "lb"),
  28208. name: "Front",
  28209. image: {
  28210. source: "./media/characters/adira/front.svg",
  28211. extra: 1078 / 1029,
  28212. bottom: 87 / 1166
  28213. }
  28214. },
  28215. },
  28216. [
  28217. {
  28218. name: "Micro",
  28219. height: math.unit(4, "inches"),
  28220. default: true
  28221. },
  28222. {
  28223. name: "Macro",
  28224. height: math.unit(50, "feet")
  28225. },
  28226. ]
  28227. ))
  28228. characterMakers.push(() => makeCharacter(
  28229. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28230. {
  28231. front: {
  28232. height: math.unit(16, "feet"),
  28233. weight: math.unit(1000, "lb"),
  28234. name: "Front",
  28235. image: {
  28236. source: "./media/characters/grim/front.svg",
  28237. extra: 622 / 614,
  28238. bottom: 18.1 / 642
  28239. }
  28240. },
  28241. back: {
  28242. height: math.unit(16, "feet"),
  28243. weight: math.unit(1000, "lb"),
  28244. name: "Back",
  28245. image: {
  28246. source: "./media/characters/grim/back.svg",
  28247. extra: 610.6 / 602,
  28248. bottom: 40.8 / 652
  28249. }
  28250. },
  28251. hunched: {
  28252. height: math.unit(9.75, "feet"),
  28253. weight: math.unit(1000, "lb"),
  28254. name: "Hunched",
  28255. image: {
  28256. source: "./media/characters/grim/hunched.svg",
  28257. extra: 304 / 297,
  28258. bottom: 35.4 / 394
  28259. }
  28260. },
  28261. },
  28262. [
  28263. {
  28264. name: "Normal",
  28265. height: math.unit(16, "feet"),
  28266. default: true
  28267. },
  28268. ]
  28269. ))
  28270. characterMakers.push(() => makeCharacter(
  28271. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28272. {
  28273. front: {
  28274. height: math.unit(2.3, "meters"),
  28275. weight: math.unit(300, "lb"),
  28276. name: "Front",
  28277. image: {
  28278. source: "./media/characters/sinja/front-sfw.svg",
  28279. extra: 1393 / 1294,
  28280. bottom: 70 / 1463
  28281. }
  28282. },
  28283. frontNsfw: {
  28284. height: math.unit(2.3, "meters"),
  28285. weight: math.unit(300, "lb"),
  28286. name: "Front (NSFW)",
  28287. image: {
  28288. source: "./media/characters/sinja/front-nsfw.svg",
  28289. extra: 1393 / 1294,
  28290. bottom: 70 / 1463
  28291. }
  28292. },
  28293. back: {
  28294. height: math.unit(2.3, "meters"),
  28295. weight: math.unit(300, "lb"),
  28296. name: "Back",
  28297. image: {
  28298. source: "./media/characters/sinja/back.svg",
  28299. extra: 1393 / 1294,
  28300. bottom: 70 / 1463
  28301. }
  28302. },
  28303. head: {
  28304. height: math.unit(1.771, "feet"),
  28305. name: "Head",
  28306. image: {
  28307. source: "./media/characters/sinja/head.svg"
  28308. }
  28309. },
  28310. slit: {
  28311. height: math.unit(0.8, "feet"),
  28312. name: "Slit",
  28313. image: {
  28314. source: "./media/characters/sinja/slit.svg"
  28315. }
  28316. },
  28317. },
  28318. [
  28319. {
  28320. name: "Normal",
  28321. height: math.unit(2.3, "meters")
  28322. },
  28323. {
  28324. name: "Macro",
  28325. height: math.unit(91, "meters"),
  28326. default: true
  28327. },
  28328. {
  28329. name: "Megamacro",
  28330. height: math.unit(91440, "meters")
  28331. },
  28332. {
  28333. name: "Gigamacro",
  28334. height: math.unit(60960000, "meters")
  28335. },
  28336. {
  28337. name: "Teramacro",
  28338. height: math.unit(9144000000, "meters")
  28339. },
  28340. ]
  28341. ))
  28342. characterMakers.push(() => makeCharacter(
  28343. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28344. {
  28345. front: {
  28346. height: math.unit(1.7, "meters"),
  28347. weight: math.unit(130, "lb"),
  28348. name: "Front",
  28349. image: {
  28350. source: "./media/characters/kyu/front.svg",
  28351. extra: 415 / 395,
  28352. bottom: 5 / 420
  28353. }
  28354. },
  28355. head: {
  28356. height: math.unit(1.75, "feet"),
  28357. name: "Head",
  28358. image: {
  28359. source: "./media/characters/kyu/head.svg"
  28360. }
  28361. },
  28362. foot: {
  28363. height: math.unit(0.81, "feet"),
  28364. name: "Foot",
  28365. image: {
  28366. source: "./media/characters/kyu/foot.svg"
  28367. }
  28368. },
  28369. },
  28370. [
  28371. {
  28372. name: "Normal",
  28373. height: math.unit(1.7, "meters")
  28374. },
  28375. {
  28376. name: "Macro",
  28377. height: math.unit(131, "feet"),
  28378. default: true
  28379. },
  28380. {
  28381. name: "Megamacro",
  28382. height: math.unit(91440, "meters")
  28383. },
  28384. {
  28385. name: "Gigamacro",
  28386. height: math.unit(60960000, "meters")
  28387. },
  28388. {
  28389. name: "Teramacro",
  28390. height: math.unit(9144000000, "meters")
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28396. {
  28397. front: {
  28398. height: math.unit(7 + 1 / 12, "feet"),
  28399. weight: math.unit(250, "lb"),
  28400. name: "Front",
  28401. image: {
  28402. source: "./media/characters/joey/front.svg",
  28403. extra: 1791 / 1537,
  28404. bottom: 28 / 1816
  28405. }
  28406. },
  28407. },
  28408. [
  28409. {
  28410. name: "Micro",
  28411. height: math.unit(3, "inches")
  28412. },
  28413. {
  28414. name: "Normal",
  28415. height: math.unit(7 + 1 / 12, "feet"),
  28416. default: true
  28417. },
  28418. ]
  28419. ))
  28420. characterMakers.push(() => makeCharacter(
  28421. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28422. {
  28423. front: {
  28424. height: math.unit(165, "cm"),
  28425. weight: math.unit(140, "lb"),
  28426. name: "Front",
  28427. image: {
  28428. source: "./media/characters/sam-evans/front.svg",
  28429. extra: 3417 / 3230,
  28430. bottom: 41.3 / 3417
  28431. }
  28432. },
  28433. frontSixTails: {
  28434. height: math.unit(165, "cm"),
  28435. weight: math.unit(140, "lb"),
  28436. name: "Front-six-tails",
  28437. image: {
  28438. source: "./media/characters/sam-evans/front-six-tails.svg",
  28439. extra: 3417 / 3230,
  28440. bottom: 41.3 / 3417
  28441. }
  28442. },
  28443. back: {
  28444. height: math.unit(165, "cm"),
  28445. weight: math.unit(140, "lb"),
  28446. name: "Back",
  28447. image: {
  28448. source: "./media/characters/sam-evans/back.svg",
  28449. extra: 3227 / 3032,
  28450. bottom: 6.8 / 3234
  28451. }
  28452. },
  28453. face: {
  28454. height: math.unit(0.68, "feet"),
  28455. name: "Face",
  28456. image: {
  28457. source: "./media/characters/sam-evans/face.svg"
  28458. }
  28459. },
  28460. },
  28461. [
  28462. {
  28463. name: "Normal",
  28464. height: math.unit(165, "cm"),
  28465. default: true
  28466. },
  28467. {
  28468. name: "Macro",
  28469. height: math.unit(100, "meters")
  28470. },
  28471. {
  28472. name: "Macro+",
  28473. height: math.unit(800, "meters")
  28474. },
  28475. {
  28476. name: "Macro++",
  28477. height: math.unit(3, "km")
  28478. },
  28479. {
  28480. name: "Macro+++",
  28481. height: math.unit(30, "km")
  28482. },
  28483. ]
  28484. ))
  28485. characterMakers.push(() => makeCharacter(
  28486. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28487. {
  28488. front: {
  28489. height: math.unit(10, "feet"),
  28490. weight: math.unit(750, "lb"),
  28491. name: "Front",
  28492. image: {
  28493. source: "./media/characters/juliet-a/front.svg",
  28494. extra: 1766 / 1720,
  28495. bottom: 43 / 1809
  28496. }
  28497. },
  28498. back: {
  28499. height: math.unit(10, "feet"),
  28500. weight: math.unit(750, "lb"),
  28501. name: "Back",
  28502. image: {
  28503. source: "./media/characters/juliet-a/back.svg",
  28504. extra: 1781 / 1734,
  28505. bottom: 35 / 1810,
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(10, "feet"),
  28513. default: true
  28514. },
  28515. {
  28516. name: "Dragon Form",
  28517. height: math.unit(250, "feet")
  28518. },
  28519. {
  28520. name: "Macro",
  28521. height: math.unit(1000, "feet")
  28522. },
  28523. {
  28524. name: "Megamacro",
  28525. height: math.unit(10000, "feet")
  28526. }
  28527. ]
  28528. ))
  28529. characterMakers.push(() => makeCharacter(
  28530. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28531. {
  28532. regular: {
  28533. height: math.unit(7 + 3 / 12, "feet"),
  28534. weight: math.unit(260, "lb"),
  28535. name: "Regular",
  28536. image: {
  28537. source: "./media/characters/wild/regular.svg",
  28538. extra: 97.45 / 92,
  28539. bottom: 6.8 / 104.3
  28540. }
  28541. },
  28542. biggums: {
  28543. height: math.unit(8 + 6 / 12, "feet"),
  28544. weight: math.unit(425, "lb"),
  28545. name: "Biggums",
  28546. image: {
  28547. source: "./media/characters/wild/biggums.svg",
  28548. extra: 97.45 / 92,
  28549. bottom: 7.5 / 132.34
  28550. }
  28551. },
  28552. mawRegular: {
  28553. height: math.unit(1.24, "feet"),
  28554. name: "Maw (Regular)",
  28555. image: {
  28556. source: "./media/characters/wild/maw.svg"
  28557. }
  28558. },
  28559. mawBiggums: {
  28560. height: math.unit(1.47, "feet"),
  28561. name: "Maw (Biggums)",
  28562. image: {
  28563. source: "./media/characters/wild/maw.svg"
  28564. }
  28565. },
  28566. },
  28567. [
  28568. {
  28569. name: "Normal",
  28570. height: math.unit(7 + 3 / 12, "feet"),
  28571. default: true
  28572. },
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28577. {
  28578. front: {
  28579. height: math.unit(2.5, "meters"),
  28580. weight: math.unit(200, "kg"),
  28581. name: "Front",
  28582. image: {
  28583. source: "./media/characters/vidar/front.svg",
  28584. extra: 2994 / 2795,
  28585. bottom: 56 / 3061
  28586. }
  28587. },
  28588. back: {
  28589. height: math.unit(2.5, "meters"),
  28590. weight: math.unit(200, "kg"),
  28591. name: "Back",
  28592. image: {
  28593. source: "./media/characters/vidar/back.svg",
  28594. extra: 3131 / 2928,
  28595. bottom: 13.5 / 3141.5
  28596. }
  28597. },
  28598. feral: {
  28599. height: math.unit(2.5, "meters"),
  28600. weight: math.unit(2000, "kg"),
  28601. name: "Feral",
  28602. image: {
  28603. source: "./media/characters/vidar/feral.svg",
  28604. extra: 2790 / 1765,
  28605. bottom: 6 / 2796
  28606. }
  28607. },
  28608. },
  28609. [
  28610. {
  28611. name: "Normal",
  28612. height: math.unit(2.5, "meters"),
  28613. default: true
  28614. },
  28615. {
  28616. name: "Macro",
  28617. height: math.unit(100, "meters")
  28618. },
  28619. ]
  28620. ))
  28621. characterMakers.push(() => makeCharacter(
  28622. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28623. {
  28624. front: {
  28625. height: math.unit(5 + 9 / 12, "feet"),
  28626. weight: math.unit(120, "lb"),
  28627. name: "Front",
  28628. image: {
  28629. source: "./media/characters/ash/front.svg",
  28630. extra: 2189 / 1961,
  28631. bottom: 5.2 / 2194
  28632. }
  28633. },
  28634. },
  28635. [
  28636. {
  28637. name: "Normal",
  28638. height: math.unit(5 + 9 / 12, "feet"),
  28639. default: true
  28640. },
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(9, "feet"),
  28648. weight: math.unit(10000, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/gygabite/front.svg",
  28652. bottom: 31.7 / 537.8,
  28653. extra: 505 / 370
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Normal",
  28660. height: math.unit(9, "feet"),
  28661. default: true
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28667. {
  28668. front: {
  28669. height: math.unit(12, "feet"),
  28670. weight: math.unit(4000, "lb"),
  28671. name: "Front",
  28672. image: {
  28673. source: "./media/characters/p0tat0/front.svg",
  28674. extra: 1065 / 921,
  28675. bottom: 55.7 / 1121.25
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Normal",
  28682. height: math.unit(12, "feet"),
  28683. default: true
  28684. },
  28685. ]
  28686. ))
  28687. characterMakers.push(() => makeCharacter(
  28688. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28689. {
  28690. side: {
  28691. height: math.unit(6.5, "feet"),
  28692. weight: math.unit(800, "lb"),
  28693. name: "Side",
  28694. image: {
  28695. source: "./media/characters/dusk/side.svg",
  28696. extra: 615 / 373,
  28697. bottom: 53 / 664
  28698. }
  28699. },
  28700. sitting: {
  28701. height: math.unit(7, "feet"),
  28702. weight: math.unit(800, "lb"),
  28703. name: "Sitting",
  28704. image: {
  28705. source: "./media/characters/dusk/sitting.svg",
  28706. extra: 753 / 425,
  28707. bottom: 33 / 774
  28708. }
  28709. },
  28710. head: {
  28711. height: math.unit(6.1, "feet"),
  28712. name: "Head",
  28713. image: {
  28714. source: "./media/characters/dusk/head.svg"
  28715. }
  28716. },
  28717. },
  28718. [
  28719. {
  28720. name: "Normal",
  28721. height: math.unit(7, "feet"),
  28722. default: true
  28723. },
  28724. ]
  28725. ))
  28726. characterMakers.push(() => makeCharacter(
  28727. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28728. {
  28729. front: {
  28730. height: math.unit(15, "feet"),
  28731. weight: math.unit(7000, "lb"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/jay-direwolf/front.svg",
  28735. extra: 1810 / 1732,
  28736. bottom: 66 / 1892
  28737. }
  28738. },
  28739. },
  28740. [
  28741. {
  28742. name: "Normal",
  28743. height: math.unit(15, "feet"),
  28744. default: true
  28745. },
  28746. ]
  28747. ))
  28748. characterMakers.push(() => makeCharacter(
  28749. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28750. {
  28751. front: {
  28752. height: math.unit(4 + 9 / 12, "feet"),
  28753. weight: math.unit(130, "lb"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/anchovie/front.svg",
  28757. extra: 382 / 350,
  28758. bottom: 25 / 409
  28759. }
  28760. },
  28761. back: {
  28762. height: math.unit(4 + 9 / 12, "feet"),
  28763. weight: math.unit(130, "lb"),
  28764. name: "Back",
  28765. image: {
  28766. source: "./media/characters/anchovie/back.svg",
  28767. extra: 385 / 352,
  28768. bottom: 16.6 / 402
  28769. }
  28770. },
  28771. frontDressed: {
  28772. height: math.unit(4 + 9 / 12, "feet"),
  28773. weight: math.unit(130, "lb"),
  28774. name: "Front (Dressed)",
  28775. image: {
  28776. source: "./media/characters/anchovie/front-dressed.svg",
  28777. extra: 382 / 350,
  28778. bottom: 25 / 409
  28779. }
  28780. },
  28781. backDressed: {
  28782. height: math.unit(4 + 9 / 12, "feet"),
  28783. weight: math.unit(130, "lb"),
  28784. name: "Back (Dressed)",
  28785. image: {
  28786. source: "./media/characters/anchovie/back-dressed.svg",
  28787. extra: 385 / 352,
  28788. bottom: 16.6 / 402
  28789. }
  28790. },
  28791. },
  28792. [
  28793. {
  28794. name: "Micro",
  28795. height: math.unit(6.4, "inches")
  28796. },
  28797. {
  28798. name: "Normal",
  28799. height: math.unit(4 + 9 / 12, "feet"),
  28800. default: true
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28806. {
  28807. front: {
  28808. height: math.unit(2, "meters"),
  28809. weight: math.unit(180, "lb"),
  28810. name: "Front",
  28811. image: {
  28812. source: "./media/characters/acidrenamon/front.svg",
  28813. extra: 987 / 890,
  28814. bottom: 22.8 / 1009
  28815. }
  28816. },
  28817. back: {
  28818. height: math.unit(2, "meters"),
  28819. weight: math.unit(180, "lb"),
  28820. name: "Back",
  28821. image: {
  28822. source: "./media/characters/acidrenamon/back.svg",
  28823. extra: 983 / 891,
  28824. bottom: 8.4 / 992
  28825. }
  28826. },
  28827. head: {
  28828. height: math.unit(1.92, "feet"),
  28829. name: "Head",
  28830. image: {
  28831. source: "./media/characters/acidrenamon/head.svg"
  28832. }
  28833. },
  28834. rump: {
  28835. height: math.unit(1.72, "feet"),
  28836. name: "Rump",
  28837. image: {
  28838. source: "./media/characters/acidrenamon/rump.svg"
  28839. }
  28840. },
  28841. tail: {
  28842. height: math.unit(4.2, "feet"),
  28843. name: "Tail",
  28844. image: {
  28845. source: "./media/characters/acidrenamon/tail.svg"
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Normal",
  28852. height: math.unit(2, "meters"),
  28853. default: true
  28854. },
  28855. {
  28856. name: "Minimacro",
  28857. height: math.unit(7, "meters")
  28858. },
  28859. {
  28860. name: "Macro",
  28861. height: math.unit(200, "meters")
  28862. },
  28863. {
  28864. name: "Gigamacro",
  28865. height: math.unit(0.2, "earths")
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28871. {
  28872. front: {
  28873. height: math.unit(152, "feet"),
  28874. name: "Front",
  28875. image: {
  28876. source: "./media/characters/kenzie-lee/front.svg",
  28877. extra: 1869/1774,
  28878. bottom: 128/1997
  28879. }
  28880. },
  28881. side: {
  28882. height: math.unit(86, "feet"),
  28883. name: "Side",
  28884. image: {
  28885. source: "./media/characters/kenzie-lee/side.svg",
  28886. extra: 930/815,
  28887. bottom: 177/1107
  28888. }
  28889. },
  28890. paw: {
  28891. height: math.unit(15, "feet"),
  28892. name: "Paw",
  28893. image: {
  28894. source: "./media/characters/kenzie-lee/paw.svg"
  28895. }
  28896. },
  28897. },
  28898. [
  28899. {
  28900. name: "Kenzie Flea",
  28901. height: math.unit(2, "mm"),
  28902. default: true
  28903. },
  28904. {
  28905. name: "Micro",
  28906. height: math.unit(2, "inches")
  28907. },
  28908. {
  28909. name: "Normal",
  28910. height: math.unit(152, "feet")
  28911. },
  28912. {
  28913. name: "Megamacro",
  28914. height: math.unit(7, "miles")
  28915. },
  28916. {
  28917. name: "Gigamacro",
  28918. height: math.unit(8000, "miles")
  28919. },
  28920. ]
  28921. ))
  28922. characterMakers.push(() => makeCharacter(
  28923. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28924. {
  28925. front: {
  28926. height: math.unit(6, "feet"),
  28927. name: "Front",
  28928. image: {
  28929. source: "./media/characters/withers/front.svg",
  28930. extra: 1935/1760,
  28931. bottom: 72/2007
  28932. }
  28933. },
  28934. back: {
  28935. height: math.unit(6, "feet"),
  28936. name: "Back",
  28937. image: {
  28938. source: "./media/characters/withers/back.svg",
  28939. extra: 1944/1792,
  28940. bottom: 12/1956
  28941. }
  28942. },
  28943. dressed: {
  28944. height: math.unit(6, "feet"),
  28945. name: "Dressed",
  28946. image: {
  28947. source: "./media/characters/withers/dressed.svg",
  28948. extra: 1937/1765,
  28949. bottom: 73/2010
  28950. }
  28951. },
  28952. phase1: {
  28953. height: math.unit(1.1, "feet"),
  28954. name: "Phase 1",
  28955. image: {
  28956. source: "./media/characters/withers/phase-1.svg",
  28957. extra: 1885/1232,
  28958. bottom: 0/1885
  28959. }
  28960. },
  28961. phase2: {
  28962. height: math.unit(1.05, "feet"),
  28963. name: "Phase 2",
  28964. image: {
  28965. source: "./media/characters/withers/phase-2.svg",
  28966. extra: 1792/1090,
  28967. bottom: 0/1792
  28968. }
  28969. },
  28970. partyWipe: {
  28971. height: math.unit(1.1, "feet"),
  28972. name: "Party Wipe",
  28973. image: {
  28974. source: "./media/characters/withers/party-wipe.svg",
  28975. extra: 1864/1207,
  28976. bottom: 0/1864
  28977. }
  28978. },
  28979. },
  28980. [
  28981. {
  28982. name: "Macro",
  28983. height: math.unit(167, "feet"),
  28984. default: true
  28985. },
  28986. {
  28987. name: "Megamacro",
  28988. height: math.unit(15, "miles")
  28989. }
  28990. ]
  28991. ))
  28992. characterMakers.push(() => makeCharacter(
  28993. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28994. {
  28995. front: {
  28996. height: math.unit(6 + 7 / 12, "feet"),
  28997. weight: math.unit(250, "lb"),
  28998. name: "Front",
  28999. image: {
  29000. source: "./media/characters/nemoskii/front.svg",
  29001. extra: 2270 / 1734,
  29002. bottom: 86 / 2354
  29003. }
  29004. },
  29005. back: {
  29006. height: math.unit(6 + 7 / 12, "feet"),
  29007. weight: math.unit(250, "lb"),
  29008. name: "Back",
  29009. image: {
  29010. source: "./media/characters/nemoskii/back.svg",
  29011. extra: 1845 / 1788,
  29012. bottom: 10.5 / 1852
  29013. }
  29014. },
  29015. head: {
  29016. height: math.unit(1.31, "feet"),
  29017. name: "Head",
  29018. image: {
  29019. source: "./media/characters/nemoskii/head.svg"
  29020. }
  29021. },
  29022. },
  29023. [
  29024. {
  29025. name: "Micro",
  29026. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29027. },
  29028. {
  29029. name: "Normal",
  29030. height: math.unit(6 + 7 / 12, "feet"),
  29031. default: true
  29032. },
  29033. {
  29034. name: "Macro",
  29035. height: math.unit((6 + 7 / 12) * 150, "feet")
  29036. },
  29037. {
  29038. name: "Macro+",
  29039. height: math.unit((6 + 7 / 12) * 500, "feet")
  29040. },
  29041. {
  29042. name: "Megamacro",
  29043. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29044. },
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29049. {
  29050. front: {
  29051. height: math.unit(1, "mile"),
  29052. weight: math.unit(265261.9, "lb"),
  29053. name: "Front",
  29054. image: {
  29055. source: "./media/characters/shui/front.svg",
  29056. extra: 1633 / 1564,
  29057. bottom: 91.5 / 1726
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Macro",
  29064. height: math.unit(1, "mile"),
  29065. default: true
  29066. },
  29067. ]
  29068. ))
  29069. characterMakers.push(() => makeCharacter(
  29070. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29071. {
  29072. front: {
  29073. height: math.unit(12 + 6 / 12, "feet"),
  29074. weight: math.unit(1342, "lb"),
  29075. name: "Front",
  29076. image: {
  29077. source: "./media/characters/arokh-takakura/front.svg",
  29078. extra: 1089 / 1043,
  29079. bottom: 77.4 / 1176.7
  29080. }
  29081. },
  29082. back: {
  29083. height: math.unit(12 + 6 / 12, "feet"),
  29084. weight: math.unit(1342, "lb"),
  29085. name: "Back",
  29086. image: {
  29087. source: "./media/characters/arokh-takakura/back.svg",
  29088. extra: 1046 / 1019,
  29089. bottom: 102 / 1150
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Big",
  29096. height: math.unit(12 + 6 / 12, "feet"),
  29097. default: true
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29103. {
  29104. front: {
  29105. height: math.unit(5 + 6 / 12, "feet"),
  29106. weight: math.unit(150, "lb"),
  29107. name: "Front",
  29108. image: {
  29109. source: "./media/characters/theo/front.svg",
  29110. extra: 1184 / 1131,
  29111. bottom: 7.4 / 1191
  29112. }
  29113. },
  29114. },
  29115. [
  29116. {
  29117. name: "Micro",
  29118. height: math.unit(5, "inches")
  29119. },
  29120. {
  29121. name: "Normal",
  29122. height: math.unit(5 + 6 / 12, "feet"),
  29123. default: true
  29124. },
  29125. ]
  29126. ))
  29127. characterMakers.push(() => makeCharacter(
  29128. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29129. {
  29130. front: {
  29131. height: math.unit(5 + 9 / 12, "feet"),
  29132. weight: math.unit(130, "lb"),
  29133. name: "Front",
  29134. image: {
  29135. source: "./media/characters/cecelia-swift/front.svg",
  29136. extra: 502 / 484,
  29137. bottom: 23 / 523
  29138. }
  29139. },
  29140. back: {
  29141. height: math.unit(5 + 9 / 12, "feet"),
  29142. weight: math.unit(130, "lb"),
  29143. name: "Back",
  29144. image: {
  29145. source: "./media/characters/cecelia-swift/back.svg",
  29146. extra: 499 / 485,
  29147. bottom: 12 / 511
  29148. }
  29149. },
  29150. head: {
  29151. height: math.unit(0.90, "feet"),
  29152. name: "Head",
  29153. image: {
  29154. source: "./media/characters/cecelia-swift/head.svg"
  29155. }
  29156. },
  29157. rump: {
  29158. height: math.unit(1.75, "feet"),
  29159. name: "Rump",
  29160. image: {
  29161. source: "./media/characters/cecelia-swift/rump.svg"
  29162. }
  29163. },
  29164. },
  29165. [
  29166. {
  29167. name: "Normal",
  29168. height: math.unit(5 + 9 / 12, "feet"),
  29169. default: true
  29170. },
  29171. {
  29172. name: "Big",
  29173. height: math.unit(50, "feet")
  29174. },
  29175. {
  29176. name: "Macro",
  29177. height: math.unit(100, "feet")
  29178. },
  29179. {
  29180. name: "Macro+",
  29181. height: math.unit(500, "feet")
  29182. },
  29183. {
  29184. name: "Macro++",
  29185. height: math.unit(1000, "feet")
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29191. {
  29192. front: {
  29193. height: math.unit(6, "feet"),
  29194. weight: math.unit(150, "lb"),
  29195. name: "Front",
  29196. image: {
  29197. source: "./media/characters/kaunan/front.svg",
  29198. extra: 2890 / 2523,
  29199. bottom: 49 / 2939
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Macro",
  29206. height: math.unit(150, "feet"),
  29207. default: true
  29208. },
  29209. ]
  29210. ))
  29211. characterMakers.push(() => makeCharacter(
  29212. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29213. {
  29214. dressed: {
  29215. height: math.unit(175, "cm"),
  29216. weight: math.unit(60, "kg"),
  29217. name: "Dressed",
  29218. image: {
  29219. source: "./media/characters/fei/dressed.svg",
  29220. extra: 1402/1278,
  29221. bottom: 27/1429
  29222. }
  29223. },
  29224. nude: {
  29225. height: math.unit(175, "cm"),
  29226. weight: math.unit(60, "kg"),
  29227. name: "Nude",
  29228. image: {
  29229. source: "./media/characters/fei/nude.svg",
  29230. extra: 1402/1278,
  29231. bottom: 27/1429
  29232. }
  29233. },
  29234. heels: {
  29235. height: math.unit(0.466, "feet"),
  29236. name: "Heels",
  29237. image: {
  29238. source: "./media/characters/fei/heels.svg",
  29239. extra: 156/152,
  29240. bottom: 28/184
  29241. }
  29242. },
  29243. },
  29244. [
  29245. {
  29246. name: "Mortal",
  29247. height: math.unit(175, "cm")
  29248. },
  29249. {
  29250. name: "Normal",
  29251. height: math.unit(3500, "m")
  29252. },
  29253. {
  29254. name: "Stroll",
  29255. height: math.unit(18.4, "km"),
  29256. default: true
  29257. },
  29258. {
  29259. name: "Showoff",
  29260. height: math.unit(175, "km")
  29261. },
  29262. ]
  29263. ))
  29264. characterMakers.push(() => makeCharacter(
  29265. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29266. {
  29267. front: {
  29268. height: math.unit(7, "feet"),
  29269. weight: math.unit(1000, "kg"),
  29270. name: "Front",
  29271. image: {
  29272. source: "./media/characters/edrax/front.svg",
  29273. extra: 2838 / 2550,
  29274. bottom: 130 / 2968
  29275. }
  29276. },
  29277. },
  29278. [
  29279. {
  29280. name: "Small",
  29281. height: math.unit(7, "feet")
  29282. },
  29283. {
  29284. name: "Normal",
  29285. height: math.unit(1500, "meters")
  29286. },
  29287. {
  29288. name: "Mega",
  29289. height: math.unit(12000000, "km"),
  29290. default: true
  29291. },
  29292. {
  29293. name: "Megamacro",
  29294. height: math.unit(10600000, "lightyears")
  29295. },
  29296. {
  29297. name: "Hypermacro",
  29298. height: math.unit(256, "yottameters")
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(10, "feet"),
  29307. weight: math.unit(750, "lb"),
  29308. name: "Front",
  29309. image: {
  29310. source: "./media/characters/clove/front.svg",
  29311. extra: 1918/1751,
  29312. bottom: 52/1970
  29313. }
  29314. },
  29315. back: {
  29316. height: math.unit(10, "feet"),
  29317. weight: math.unit(750, "lb"),
  29318. name: "Back",
  29319. image: {
  29320. source: "./media/characters/clove/back.svg",
  29321. extra: 1912/1747,
  29322. bottom: 50/1962
  29323. }
  29324. },
  29325. },
  29326. [
  29327. {
  29328. name: "Normal",
  29329. height: math.unit(10, "feet"),
  29330. default: true
  29331. },
  29332. ]
  29333. ))
  29334. characterMakers.push(() => makeCharacter(
  29335. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29336. {
  29337. front: {
  29338. height: math.unit(4, "feet"),
  29339. weight: math.unit(50, "lb"),
  29340. name: "Front",
  29341. image: {
  29342. source: "./media/characters/alex-rabbit/front.svg",
  29343. extra: 507 / 458,
  29344. bottom: 18.5 / 527
  29345. }
  29346. },
  29347. back: {
  29348. height: math.unit(4, "feet"),
  29349. weight: math.unit(50, "lb"),
  29350. name: "Back",
  29351. image: {
  29352. source: "./media/characters/alex-rabbit/back.svg",
  29353. extra: 502 / 460,
  29354. bottom: 18.9 / 521
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "Normal",
  29361. height: math.unit(4, "feet"),
  29362. default: true
  29363. },
  29364. ]
  29365. ))
  29366. characterMakers.push(() => makeCharacter(
  29367. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29368. {
  29369. front: {
  29370. height: math.unit(1 + 3 / 12, "feet"),
  29371. weight: math.unit(80, "lb"),
  29372. name: "Front",
  29373. image: {
  29374. source: "./media/characters/zander-rose/front.svg",
  29375. extra: 916 / 797,
  29376. bottom: 17 / 933
  29377. }
  29378. },
  29379. back: {
  29380. height: math.unit(1 + 3 / 12, "feet"),
  29381. weight: math.unit(80, "lb"),
  29382. name: "Back",
  29383. image: {
  29384. source: "./media/characters/zander-rose/back.svg",
  29385. extra: 903 / 779,
  29386. bottom: 31 / 934
  29387. }
  29388. },
  29389. },
  29390. [
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(1 + 3 / 12, "feet"),
  29394. default: true
  29395. },
  29396. ]
  29397. ))
  29398. characterMakers.push(() => makeCharacter(
  29399. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29400. {
  29401. anthro: {
  29402. height: math.unit(6, "feet"),
  29403. weight: math.unit(150, "lb"),
  29404. name: "Anthro",
  29405. image: {
  29406. source: "./media/characters/razz/anthro.svg",
  29407. extra: 1437 / 1343,
  29408. bottom: 48 / 1485
  29409. }
  29410. },
  29411. feral: {
  29412. height: math.unit(6, "feet"),
  29413. weight: math.unit(150, "lb"),
  29414. name: "Feral",
  29415. image: {
  29416. source: "./media/characters/razz/feral.svg",
  29417. extra: 2569 / 1385,
  29418. bottom: 95 / 2664
  29419. }
  29420. },
  29421. },
  29422. [
  29423. {
  29424. name: "Normal",
  29425. height: math.unit(6, "feet"),
  29426. default: true
  29427. },
  29428. ]
  29429. ))
  29430. characterMakers.push(() => makeCharacter(
  29431. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29432. {
  29433. front: {
  29434. height: math.unit(9 + 4 / 12, "feet"),
  29435. weight: math.unit(500, "lb"),
  29436. name: "Front",
  29437. image: {
  29438. source: "./media/characters/morrigan/front.svg",
  29439. extra: 2707 / 2579,
  29440. bottom: 156 / 2863
  29441. }
  29442. },
  29443. },
  29444. [
  29445. {
  29446. name: "Normal",
  29447. height: math.unit(9 + 4 / 12, "feet"),
  29448. default: true
  29449. },
  29450. ]
  29451. ))
  29452. characterMakers.push(() => makeCharacter(
  29453. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29454. {
  29455. front: {
  29456. height: math.unit(5, "stories"),
  29457. weight: math.unit(4000, "lb"),
  29458. name: "Front",
  29459. image: {
  29460. source: "./media/characters/jenene/front.svg",
  29461. extra: 1780 / 1710,
  29462. bottom: 57 / 1837
  29463. }
  29464. },
  29465. },
  29466. [
  29467. {
  29468. name: "Normal",
  29469. height: math.unit(5, "stories"),
  29470. default: true
  29471. },
  29472. ]
  29473. ))
  29474. characterMakers.push(() => makeCharacter(
  29475. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29476. {
  29477. taurSfw: {
  29478. height: math.unit(10, "meters"),
  29479. weight: math.unit(17500, "kg"),
  29480. name: "Taur",
  29481. image: {
  29482. source: "./media/characters/faey/taur-sfw.svg",
  29483. extra: 1200 / 968,
  29484. bottom: 41 / 1241
  29485. }
  29486. },
  29487. chestmaw: {
  29488. height: math.unit(2.01, "meters"),
  29489. name: "Chestmaw",
  29490. image: {
  29491. source: "./media/characters/faey/chestmaw.svg"
  29492. }
  29493. },
  29494. foot: {
  29495. height: math.unit(2.43, "meters"),
  29496. name: "Foot",
  29497. image: {
  29498. source: "./media/characters/faey/foot.svg"
  29499. }
  29500. },
  29501. jaws: {
  29502. height: math.unit(1.66, "meters"),
  29503. name: "Jaws",
  29504. image: {
  29505. source: "./media/characters/faey/jaws.svg"
  29506. }
  29507. },
  29508. tongues: {
  29509. height: math.unit(2.01, "meters"),
  29510. name: "Tongues",
  29511. image: {
  29512. source: "./media/characters/faey/tongues.svg"
  29513. }
  29514. },
  29515. },
  29516. [
  29517. {
  29518. name: "Small",
  29519. height: math.unit(10, "meters"),
  29520. default: true
  29521. },
  29522. {
  29523. name: "Big",
  29524. height: math.unit(500000, "km")
  29525. },
  29526. ]
  29527. ))
  29528. characterMakers.push(() => makeCharacter(
  29529. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29530. {
  29531. front: {
  29532. height: math.unit(7, "feet"),
  29533. weight: math.unit(275, "lb"),
  29534. name: "Front",
  29535. image: {
  29536. source: "./media/characters/roku/front.svg",
  29537. extra: 903 / 878,
  29538. bottom: 37 / 940
  29539. }
  29540. },
  29541. },
  29542. [
  29543. {
  29544. name: "Normal",
  29545. height: math.unit(7, "feet"),
  29546. default: true
  29547. },
  29548. {
  29549. name: "Macro",
  29550. height: math.unit(500, "feet")
  29551. },
  29552. {
  29553. name: "Megamacro",
  29554. height: math.unit(200, "miles")
  29555. },
  29556. ]
  29557. ))
  29558. characterMakers.push(() => makeCharacter(
  29559. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29560. {
  29561. front: {
  29562. height: math.unit(6 + 2 / 12, "feet"),
  29563. weight: math.unit(150, "lb"),
  29564. name: "Front",
  29565. image: {
  29566. source: "./media/characters/lira/front.svg",
  29567. extra: 1727 / 1605,
  29568. bottom: 26 / 1753
  29569. }
  29570. },
  29571. back: {
  29572. height: math.unit(6 + 2 / 12, "feet"),
  29573. weight: math.unit(150, "lb"),
  29574. name: "Back",
  29575. image: {
  29576. source: "./media/characters/lira/back.svg",
  29577. extra: 1713/1621,
  29578. bottom: 20/1733
  29579. }
  29580. },
  29581. hand: {
  29582. height: math.unit(0.75, "feet"),
  29583. name: "Hand",
  29584. image: {
  29585. source: "./media/characters/lira/hand.svg"
  29586. }
  29587. },
  29588. maw: {
  29589. height: math.unit(0.65, "feet"),
  29590. name: "Maw",
  29591. image: {
  29592. source: "./media/characters/lira/maw.svg"
  29593. }
  29594. },
  29595. pawDigi: {
  29596. height: math.unit(1.6, "feet"),
  29597. name: "Paw Digi",
  29598. image: {
  29599. source: "./media/characters/lira/paw-digi.svg"
  29600. }
  29601. },
  29602. pawPlanti: {
  29603. height: math.unit(1.4, "feet"),
  29604. name: "Paw Planti",
  29605. image: {
  29606. source: "./media/characters/lira/paw-planti.svg"
  29607. }
  29608. },
  29609. },
  29610. [
  29611. {
  29612. name: "Normal",
  29613. height: math.unit(6 + 2 / 12, "feet"),
  29614. default: true
  29615. },
  29616. {
  29617. name: "Macro",
  29618. height: math.unit(100, "feet")
  29619. },
  29620. {
  29621. name: "Macro²",
  29622. height: math.unit(1600, "feet")
  29623. },
  29624. {
  29625. name: "Planetary",
  29626. height: math.unit(20, "earths")
  29627. },
  29628. ]
  29629. ))
  29630. characterMakers.push(() => makeCharacter(
  29631. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29632. {
  29633. front: {
  29634. height: math.unit(6, "feet"),
  29635. weight: math.unit(150, "lb"),
  29636. name: "Front",
  29637. image: {
  29638. source: "./media/characters/hadjet/front.svg",
  29639. extra: 1480 / 1346,
  29640. bottom: 26 / 1506
  29641. }
  29642. },
  29643. frontNsfw: {
  29644. height: math.unit(6, "feet"),
  29645. weight: math.unit(150, "lb"),
  29646. name: "Front (NSFW)",
  29647. image: {
  29648. source: "./media/characters/hadjet/front-nsfw.svg",
  29649. extra: 1440 / 1358,
  29650. bottom: 52 / 1492
  29651. }
  29652. },
  29653. },
  29654. [
  29655. {
  29656. name: "Macro",
  29657. height: math.unit(10, "stories"),
  29658. default: true
  29659. },
  29660. {
  29661. name: "Megamacro",
  29662. height: math.unit(1.5, "miles")
  29663. },
  29664. {
  29665. name: "Megamacro+",
  29666. height: math.unit(5, "miles")
  29667. },
  29668. ]
  29669. ))
  29670. characterMakers.push(() => makeCharacter(
  29671. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29672. {
  29673. side: {
  29674. height: math.unit(106, "feet"),
  29675. weight: math.unit(500, "tonnes"),
  29676. name: "Side",
  29677. image: {
  29678. source: "./media/characters/kodran/side.svg",
  29679. extra: 553 / 480,
  29680. bottom: 33 / 586
  29681. }
  29682. },
  29683. front: {
  29684. height: math.unit(132, "feet"),
  29685. weight: math.unit(500, "tonnes"),
  29686. name: "Front",
  29687. image: {
  29688. source: "./media/characters/kodran/front.svg",
  29689. extra: 667 / 643,
  29690. bottom: 42 / 709
  29691. }
  29692. },
  29693. flying: {
  29694. height: math.unit(350, "feet"),
  29695. weight: math.unit(500, "tonnes"),
  29696. name: "Flying",
  29697. image: {
  29698. source: "./media/characters/kodran/flying.svg"
  29699. }
  29700. },
  29701. foot: {
  29702. height: math.unit(33, "feet"),
  29703. name: "Foot",
  29704. image: {
  29705. source: "./media/characters/kodran/foot.svg"
  29706. }
  29707. },
  29708. footFront: {
  29709. height: math.unit(19, "feet"),
  29710. name: "Foot (Front)",
  29711. image: {
  29712. source: "./media/characters/kodran/foot-front.svg",
  29713. extra: 261 / 261,
  29714. bottom: 91 / 352
  29715. }
  29716. },
  29717. headFront: {
  29718. height: math.unit(53, "feet"),
  29719. name: "Head (Front)",
  29720. image: {
  29721. source: "./media/characters/kodran/head-front.svg"
  29722. }
  29723. },
  29724. headSide: {
  29725. height: math.unit(65, "feet"),
  29726. name: "Head (Side)",
  29727. image: {
  29728. source: "./media/characters/kodran/head-side.svg"
  29729. }
  29730. },
  29731. throat: {
  29732. height: math.unit(79, "feet"),
  29733. name: "Throat",
  29734. image: {
  29735. source: "./media/characters/kodran/throat.svg"
  29736. }
  29737. },
  29738. },
  29739. [
  29740. {
  29741. name: "Large",
  29742. height: math.unit(106, "feet"),
  29743. default: true
  29744. },
  29745. ]
  29746. ))
  29747. characterMakers.push(() => makeCharacter(
  29748. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29749. {
  29750. side: {
  29751. height: math.unit(11, "feet"),
  29752. weight: math.unit(150, "lb"),
  29753. name: "Side",
  29754. image: {
  29755. source: "./media/characters/pyxaron/side.svg",
  29756. extra: 305 / 195,
  29757. bottom: 17 / 322
  29758. }
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Normal",
  29764. height: math.unit(11, "feet"),
  29765. default: true
  29766. },
  29767. ]
  29768. ))
  29769. characterMakers.push(() => makeCharacter(
  29770. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29771. {
  29772. front: {
  29773. height: math.unit(6, "feet"),
  29774. weight: math.unit(150, "lb"),
  29775. name: "Front",
  29776. image: {
  29777. source: "./media/characters/meep/front.svg",
  29778. extra: 88 / 80,
  29779. bottom: 6 / 94
  29780. }
  29781. },
  29782. },
  29783. [
  29784. {
  29785. name: "Fun Sized",
  29786. height: math.unit(2, "inches"),
  29787. default: true
  29788. },
  29789. {
  29790. name: "Friend Sized",
  29791. height: math.unit(8, "inches")
  29792. },
  29793. ]
  29794. ))
  29795. characterMakers.push(() => makeCharacter(
  29796. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29797. {
  29798. front: {
  29799. height: math.unit(15, "feet"),
  29800. weight: math.unit(2500, "lb"),
  29801. name: "Front",
  29802. image: {
  29803. source: "./media/characters/holly-rabbit/front.svg",
  29804. extra: 1433 / 1233,
  29805. bottom: 125 / 1558
  29806. }
  29807. },
  29808. dick: {
  29809. height: math.unit(4.6, "feet"),
  29810. name: "Dick",
  29811. image: {
  29812. source: "./media/characters/holly-rabbit/dick.svg"
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Normal",
  29819. height: math.unit(15, "feet"),
  29820. default: true
  29821. },
  29822. {
  29823. name: "Macro",
  29824. height: math.unit(250, "feet")
  29825. },
  29826. {
  29827. name: "Macro+",
  29828. height: math.unit(2500, "feet")
  29829. },
  29830. ]
  29831. ))
  29832. characterMakers.push(() => makeCharacter(
  29833. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29834. {
  29835. front: {
  29836. height: math.unit(3.02, "meters"),
  29837. weight: math.unit(500, "kg"),
  29838. name: "Front",
  29839. image: {
  29840. source: "./media/characters/drena/front.svg",
  29841. extra: 282 / 243,
  29842. bottom: 8 / 290
  29843. }
  29844. },
  29845. side: {
  29846. height: math.unit(3.02, "meters"),
  29847. weight: math.unit(500, "kg"),
  29848. name: "Side",
  29849. image: {
  29850. source: "./media/characters/drena/side.svg",
  29851. extra: 280 / 245,
  29852. bottom: 10 / 290
  29853. }
  29854. },
  29855. back: {
  29856. height: math.unit(3.02, "meters"),
  29857. weight: math.unit(500, "kg"),
  29858. name: "Back",
  29859. image: {
  29860. source: "./media/characters/drena/back.svg",
  29861. extra: 278 / 243,
  29862. bottom: 2 / 280
  29863. }
  29864. },
  29865. foot: {
  29866. height: math.unit(0.75, "meters"),
  29867. name: "Foot",
  29868. image: {
  29869. source: "./media/characters/drena/foot.svg"
  29870. }
  29871. },
  29872. maw: {
  29873. height: math.unit(0.82, "meters"),
  29874. name: "Maw",
  29875. image: {
  29876. source: "./media/characters/drena/maw.svg"
  29877. }
  29878. },
  29879. eating: {
  29880. height: math.unit(0.75, "meters"),
  29881. name: "Eating",
  29882. image: {
  29883. source: "./media/characters/drena/eating.svg"
  29884. }
  29885. },
  29886. rump: {
  29887. height: math.unit(0.93, "meters"),
  29888. name: "Rump",
  29889. image: {
  29890. source: "./media/characters/drena/rump.svg"
  29891. }
  29892. },
  29893. },
  29894. [
  29895. {
  29896. name: "Normal",
  29897. height: math.unit(3.02, "meters"),
  29898. default: true
  29899. },
  29900. ]
  29901. ))
  29902. characterMakers.push(() => makeCharacter(
  29903. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29904. {
  29905. front: {
  29906. height: math.unit(6 + 4 / 12, "feet"),
  29907. weight: math.unit(250, "lb"),
  29908. name: "Front",
  29909. image: {
  29910. source: "./media/characters/remmyzilla/front.svg",
  29911. extra: 4033 / 3588,
  29912. bottom: 123 / 4156
  29913. }
  29914. },
  29915. back: {
  29916. height: math.unit(6 + 4 / 12, "feet"),
  29917. weight: math.unit(250, "lb"),
  29918. name: "Back",
  29919. image: {
  29920. source: "./media/characters/remmyzilla/back.svg",
  29921. extra: 2687 / 2555,
  29922. bottom: 48 / 2735
  29923. }
  29924. },
  29925. paw: {
  29926. height: math.unit(1.73, "feet"),
  29927. name: "Paw",
  29928. image: {
  29929. source: "./media/characters/remmyzilla/paw.svg"
  29930. },
  29931. extraAttributes: {
  29932. "toeSize": {
  29933. name: "Toe Size",
  29934. power: 2,
  29935. type: "area",
  29936. base: math.unit(0.0035, "m^2")
  29937. },
  29938. "padSize": {
  29939. name: "Pad Size",
  29940. power: 2,
  29941. type: "area",
  29942. base: math.unit(0.015, "m^2")
  29943. },
  29944. "pawsize": {
  29945. name: "Paw Size",
  29946. power: 2,
  29947. type: "area",
  29948. base: math.unit(0.072, "m^2")
  29949. },
  29950. }
  29951. },
  29952. maw: {
  29953. height: math.unit(1.73, "feet"),
  29954. name: "Maw",
  29955. image: {
  29956. source: "./media/characters/remmyzilla/maw.svg"
  29957. }
  29958. },
  29959. },
  29960. [
  29961. {
  29962. name: "Normal",
  29963. height: math.unit(6 + 4 / 12, "feet")
  29964. },
  29965. {
  29966. name: "Minimacro",
  29967. height: math.unit(12 + 8 / 12, "feet")
  29968. },
  29969. {
  29970. name: "Normal",
  29971. height: math.unit(640, "feet"),
  29972. default: true
  29973. },
  29974. {
  29975. name: "Megamacro",
  29976. height: math.unit(6400, "feet")
  29977. },
  29978. {
  29979. name: "Gigamacro",
  29980. height: math.unit(64000, "miles")
  29981. },
  29982. ]
  29983. ))
  29984. characterMakers.push(() => makeCharacter(
  29985. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29986. {
  29987. front: {
  29988. height: math.unit(2.5, "meters"),
  29989. weight: math.unit(300, "lb"),
  29990. name: "Front",
  29991. image: {
  29992. source: "./media/characters/lawrence/front.svg",
  29993. extra: 357 / 335,
  29994. bottom: 30 / 387
  29995. }
  29996. },
  29997. back: {
  29998. height: math.unit(2.5, "meters"),
  29999. weight: math.unit(300, "lb"),
  30000. name: "Back",
  30001. image: {
  30002. source: "./media/characters/lawrence/back.svg",
  30003. extra: 357 / 338,
  30004. bottom: 16 / 373
  30005. }
  30006. },
  30007. head: {
  30008. height: math.unit(0.9, "meter"),
  30009. name: "Head",
  30010. image: {
  30011. source: "./media/characters/lawrence/head.svg"
  30012. }
  30013. },
  30014. maw: {
  30015. height: math.unit(0.7, "meter"),
  30016. name: "Maw",
  30017. image: {
  30018. source: "./media/characters/lawrence/maw.svg"
  30019. }
  30020. },
  30021. footBottom: {
  30022. height: math.unit(0.5, "meter"),
  30023. name: "Foot (Bottom)",
  30024. image: {
  30025. source: "./media/characters/lawrence/foot-bottom.svg"
  30026. }
  30027. },
  30028. footTop: {
  30029. height: math.unit(0.5, "meter"),
  30030. name: "Foot (Top)",
  30031. image: {
  30032. source: "./media/characters/lawrence/foot-top.svg"
  30033. }
  30034. },
  30035. },
  30036. [
  30037. {
  30038. name: "Normal",
  30039. height: math.unit(2.5, "meters"),
  30040. default: true
  30041. },
  30042. {
  30043. name: "Macro",
  30044. height: math.unit(95, "meters")
  30045. },
  30046. {
  30047. name: "Megamacro",
  30048. height: math.unit(150, "km")
  30049. },
  30050. ]
  30051. ))
  30052. characterMakers.push(() => makeCharacter(
  30053. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30054. {
  30055. front: {
  30056. height: math.unit(4.2, "meters"),
  30057. name: "Front",
  30058. image: {
  30059. source: "./media/characters/sydney/front.svg",
  30060. extra: 1323 / 1277,
  30061. bottom: 111 / 1434
  30062. }
  30063. },
  30064. },
  30065. [
  30066. {
  30067. name: "Normal",
  30068. height: math.unit(4.2, "meters"),
  30069. default: true
  30070. },
  30071. ]
  30072. ))
  30073. characterMakers.push(() => makeCharacter(
  30074. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30075. {
  30076. back: {
  30077. height: math.unit(201, "feet"),
  30078. name: "Back",
  30079. image: {
  30080. source: "./media/characters/jessica/back.svg",
  30081. extra: 273 / 259,
  30082. bottom: 7 / 280
  30083. }
  30084. },
  30085. },
  30086. [
  30087. {
  30088. name: "Normal",
  30089. height: math.unit(201, "feet"),
  30090. default: true
  30091. },
  30092. {
  30093. name: "Megamacro",
  30094. height: math.unit(8, "miles")
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30100. {
  30101. side: {
  30102. height: math.unit(5.6, "m"),
  30103. weight: math.unit(8000, "kg"),
  30104. name: "Side",
  30105. image: {
  30106. source: "./media/characters/victoria/side.svg",
  30107. extra: 1542/1229,
  30108. bottom: 124/1666
  30109. }
  30110. },
  30111. maw: {
  30112. height: math.unit(7.14, "feet"),
  30113. name: "Maw",
  30114. image: {
  30115. source: "./media/characters/victoria/maw.svg"
  30116. }
  30117. },
  30118. },
  30119. [
  30120. {
  30121. name: "Normal",
  30122. height: math.unit(5.6, "m"),
  30123. default: true
  30124. },
  30125. ]
  30126. ))
  30127. characterMakers.push(() => makeCharacter(
  30128. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30129. {
  30130. front: {
  30131. height: math.unit(5 + 6 / 12, "feet"),
  30132. name: "Front",
  30133. image: {
  30134. source: "./media/characters/cat/front.svg",
  30135. extra: 1449/1295,
  30136. bottom: 34/1483
  30137. },
  30138. form: "cat",
  30139. default: true
  30140. },
  30141. back: {
  30142. height: math.unit(5 + 6 / 12, "feet"),
  30143. name: "Back",
  30144. image: {
  30145. source: "./media/characters/cat/back.svg",
  30146. extra: 1466/1301,
  30147. bottom: 19/1485
  30148. },
  30149. form: "cat"
  30150. },
  30151. taur: {
  30152. height: math.unit(7, "feet"),
  30153. name: "Taur",
  30154. image: {
  30155. source: "./media/characters/cat/taur.svg",
  30156. extra: 1389/1233,
  30157. bottom: 83/1472
  30158. },
  30159. form: "taur",
  30160. default: true
  30161. },
  30162. lucarioFront: {
  30163. height: math.unit(4, "feet"),
  30164. name: "Lucario (Front)",
  30165. image: {
  30166. source: "./media/characters/cat/lucario-front.svg",
  30167. extra: 1149/1019,
  30168. bottom: 84/1233
  30169. },
  30170. form: "lucario",
  30171. default: true
  30172. },
  30173. lucarioBack: {
  30174. height: math.unit(4, "feet"),
  30175. name: "Lucario (Back)",
  30176. image: {
  30177. source: "./media/characters/cat/lucario-back.svg",
  30178. extra: 1190/1059,
  30179. bottom: 33/1223
  30180. },
  30181. form: "lucario"
  30182. },
  30183. megaLucario: {
  30184. height: math.unit(4, "feet"),
  30185. name: "Mega Lucario",
  30186. image: {
  30187. source: "./media/characters/cat/mega-lucario.svg",
  30188. extra: 1515 / 1319,
  30189. bottom: 63 / 1578
  30190. },
  30191. form: "lucario"
  30192. },
  30193. nickit: {
  30194. height: math.unit(2, "feet"),
  30195. name: "Nickit",
  30196. image: {
  30197. source: "./media/characters/cat/nickit.svg",
  30198. extra: 1980 / 1585,
  30199. bottom: 102 / 2082
  30200. },
  30201. form: "nickit",
  30202. default: true
  30203. },
  30204. lopunnyFront: {
  30205. height: math.unit(5, "feet"),
  30206. name: "Lopunny (Front)",
  30207. image: {
  30208. source: "./media/characters/cat/lopunny-front.svg",
  30209. extra: 1782 / 1469,
  30210. bottom: 38 / 1820
  30211. },
  30212. form: "lopunny",
  30213. default: true
  30214. },
  30215. lopunnyBack: {
  30216. height: math.unit(5, "feet"),
  30217. name: "Lopunny (Back)",
  30218. image: {
  30219. source: "./media/characters/cat/lopunny-back.svg",
  30220. extra: 1660 / 1490,
  30221. bottom: 25 / 1685
  30222. },
  30223. form: "lopunny"
  30224. },
  30225. },
  30226. [
  30227. {
  30228. name: "Really small",
  30229. height: math.unit(1, "nm")
  30230. },
  30231. {
  30232. name: "Micro",
  30233. height: math.unit(5, "inches")
  30234. },
  30235. {
  30236. name: "Normal",
  30237. height: math.unit(5 + 6 / 12, "feet"),
  30238. default: true
  30239. },
  30240. {
  30241. name: "Macro",
  30242. height: math.unit(50, "feet")
  30243. },
  30244. {
  30245. name: "Macro+",
  30246. height: math.unit(150, "feet")
  30247. },
  30248. {
  30249. name: "Megamacro",
  30250. height: math.unit(100, "miles")
  30251. },
  30252. ]
  30253. ))
  30254. characterMakers.push(() => makeCharacter(
  30255. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30256. {
  30257. front: {
  30258. height: math.unit(63.4, "meters"),
  30259. weight: math.unit(3.28349e+6, "kilograms"),
  30260. name: "Front",
  30261. image: {
  30262. source: "./media/characters/kirina-violet/front.svg",
  30263. extra: 2812 / 2725,
  30264. bottom: 0 / 2812
  30265. }
  30266. },
  30267. back: {
  30268. height: math.unit(63.4, "meters"),
  30269. weight: math.unit(3.28349e+6, "kilograms"),
  30270. name: "Back",
  30271. image: {
  30272. source: "./media/characters/kirina-violet/back.svg",
  30273. extra: 2812 / 2725,
  30274. bottom: 0 / 2812
  30275. }
  30276. },
  30277. mouth: {
  30278. height: math.unit(4.35, "meters"),
  30279. name: "Mouth",
  30280. image: {
  30281. source: "./media/characters/kirina-violet/mouth.svg"
  30282. }
  30283. },
  30284. paw: {
  30285. height: math.unit(5.6, "meters"),
  30286. name: "Paw",
  30287. image: {
  30288. source: "./media/characters/kirina-violet/paw.svg"
  30289. }
  30290. },
  30291. tail: {
  30292. height: math.unit(18, "meters"),
  30293. name: "Tail",
  30294. image: {
  30295. source: "./media/characters/kirina-violet/tail.svg"
  30296. }
  30297. },
  30298. },
  30299. [
  30300. {
  30301. name: "Macro",
  30302. height: math.unit(63.4, "meters"),
  30303. default: true
  30304. },
  30305. ]
  30306. ))
  30307. characterMakers.push(() => makeCharacter(
  30308. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30309. {
  30310. front: {
  30311. height: math.unit(75, "feet"),
  30312. name: "Front",
  30313. image: {
  30314. source: "./media/characters/cat-gigachu/front.svg",
  30315. extra: 1239/1027,
  30316. bottom: 32/1271
  30317. }
  30318. },
  30319. back: {
  30320. height: math.unit(75, "feet"),
  30321. name: "Back",
  30322. image: {
  30323. source: "./media/characters/cat-gigachu/back.svg",
  30324. extra: 1229/1030,
  30325. bottom: 9/1238
  30326. }
  30327. },
  30328. },
  30329. [
  30330. {
  30331. name: "Dynamax",
  30332. height: math.unit(75, "feet"),
  30333. default: true
  30334. },
  30335. ]
  30336. ))
  30337. characterMakers.push(() => makeCharacter(
  30338. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30339. {
  30340. front: {
  30341. height: math.unit(6, "feet"),
  30342. weight: math.unit(150, "lb"),
  30343. name: "Front",
  30344. image: {
  30345. source: "./media/characters/sfaiyan/front.svg",
  30346. extra: 999 / 978,
  30347. bottom: 5 / 1004
  30348. }
  30349. },
  30350. },
  30351. [
  30352. {
  30353. name: "Normal",
  30354. height: math.unit(1.82, "meters")
  30355. },
  30356. {
  30357. name: "Giant",
  30358. height: math.unit(2.27, "km"),
  30359. default: true
  30360. },
  30361. ]
  30362. ))
  30363. characterMakers.push(() => makeCharacter(
  30364. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30365. {
  30366. front: {
  30367. height: math.unit(179, "cm"),
  30368. weight: math.unit(100, "kg"),
  30369. name: "Front",
  30370. image: {
  30371. source: "./media/characters/raunehkeli/front.svg",
  30372. extra: 1934 / 1926,
  30373. bottom: 0 / 1934
  30374. }
  30375. },
  30376. },
  30377. [
  30378. {
  30379. name: "Normal",
  30380. height: math.unit(179, "cm")
  30381. },
  30382. {
  30383. name: "Maximum",
  30384. height: math.unit(575, "meters"),
  30385. default: true
  30386. },
  30387. ]
  30388. ))
  30389. characterMakers.push(() => makeCharacter(
  30390. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30391. {
  30392. front: {
  30393. height: math.unit(6, "feet"),
  30394. weight: math.unit(150, "lb"),
  30395. name: "Front",
  30396. image: {
  30397. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30398. extra: 2625 / 2518,
  30399. bottom: 60 / 2685
  30400. }
  30401. },
  30402. },
  30403. [
  30404. {
  30405. name: "Normal",
  30406. height: math.unit(6 + 2 / 12, "feet")
  30407. },
  30408. {
  30409. name: "Macro",
  30410. height: math.unit(1180, "feet"),
  30411. default: true
  30412. },
  30413. ]
  30414. ))
  30415. characterMakers.push(() => makeCharacter(
  30416. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30417. {
  30418. front: {
  30419. height: math.unit(5 + 6 / 12, "feet"),
  30420. weight: math.unit(108, "lb"),
  30421. name: "Front",
  30422. image: {
  30423. source: "./media/characters/lilith-zott/front.svg",
  30424. extra: 2510 / 2238,
  30425. bottom: 100 / 2610
  30426. }
  30427. },
  30428. frontDressed: {
  30429. height: math.unit(5 + 6 / 12, "feet"),
  30430. weight: math.unit(108, "lb"),
  30431. name: "Front (Dressed)",
  30432. image: {
  30433. source: "./media/characters/lilith-zott/front-dressed.svg",
  30434. extra: 2510 / 2238,
  30435. bottom: 100 / 2610
  30436. }
  30437. },
  30438. },
  30439. [
  30440. {
  30441. name: "Normal",
  30442. height: math.unit(5 + 6 / 12, "feet")
  30443. },
  30444. {
  30445. name: "Macro",
  30446. height: math.unit(1030, "feet"),
  30447. default: true
  30448. },
  30449. ]
  30450. ))
  30451. characterMakers.push(() => makeCharacter(
  30452. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30453. {
  30454. front: {
  30455. height: math.unit(6, "feet"),
  30456. weight: math.unit(150, "lb"),
  30457. name: "Front",
  30458. image: {
  30459. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30460. extra: 2567 / 2435,
  30461. bottom: 39 / 2606
  30462. }
  30463. },
  30464. frontSuper: {
  30465. height: math.unit(6, "feet"),
  30466. name: "Front (Super)",
  30467. image: {
  30468. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30469. extra: 2567 / 2435,
  30470. bottom: 39 / 2606
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Normal",
  30477. height: math.unit(5 + 10 / 12, "feet")
  30478. },
  30479. {
  30480. name: "Macro",
  30481. height: math.unit(1100, "feet"),
  30482. default: true
  30483. },
  30484. ]
  30485. ))
  30486. characterMakers.push(() => makeCharacter(
  30487. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30488. {
  30489. front: {
  30490. height: math.unit(100, "miles"),
  30491. name: "Front",
  30492. image: {
  30493. source: "./media/characters/sona/front.svg",
  30494. extra: 2433 / 2201,
  30495. bottom: 53 / 2486
  30496. }
  30497. },
  30498. foot: {
  30499. height: math.unit(16.1, "miles"),
  30500. name: "Foot",
  30501. image: {
  30502. source: "./media/characters/sona/foot.svg"
  30503. }
  30504. },
  30505. },
  30506. [
  30507. {
  30508. name: "Macro",
  30509. height: math.unit(100, "miles"),
  30510. default: true
  30511. },
  30512. ]
  30513. ))
  30514. characterMakers.push(() => makeCharacter(
  30515. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30516. {
  30517. front: {
  30518. height: math.unit(6, "feet"),
  30519. weight: math.unit(150, "lb"),
  30520. name: "Front",
  30521. image: {
  30522. source: "./media/characters/bailey/front.svg",
  30523. extra: 1778 / 1724,
  30524. bottom: 30 / 1808
  30525. }
  30526. },
  30527. },
  30528. [
  30529. {
  30530. name: "Micro",
  30531. height: math.unit(4, "inches")
  30532. },
  30533. {
  30534. name: "Normal",
  30535. height: math.unit(5 + 5 / 12, "feet"),
  30536. default: true
  30537. },
  30538. {
  30539. name: "Macro",
  30540. height: math.unit(250, "feet")
  30541. },
  30542. {
  30543. name: "Megamacro",
  30544. height: math.unit(100, "miles")
  30545. },
  30546. ]
  30547. ))
  30548. characterMakers.push(() => makeCharacter(
  30549. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30550. {
  30551. front: {
  30552. height: math.unit(5 + 2 / 12, "feet"),
  30553. weight: math.unit(120, "lb"),
  30554. name: "Front",
  30555. image: {
  30556. source: "./media/characters/snaps/front.svg",
  30557. extra: 2370 / 2177,
  30558. bottom: 48 / 2418
  30559. }
  30560. },
  30561. back: {
  30562. height: math.unit(5 + 2 / 12, "feet"),
  30563. weight: math.unit(120, "lb"),
  30564. name: "Back",
  30565. image: {
  30566. source: "./media/characters/snaps/back.svg",
  30567. extra: 2408 / 2258,
  30568. bottom: 15 / 2423
  30569. }
  30570. },
  30571. },
  30572. [
  30573. {
  30574. name: "Micro",
  30575. height: math.unit(9, "inches")
  30576. },
  30577. {
  30578. name: "Normal",
  30579. height: math.unit(5 + 2 / 12, "feet"),
  30580. default: true
  30581. },
  30582. {
  30583. name: "Mini Macro",
  30584. height: math.unit(10, "feet")
  30585. },
  30586. ]
  30587. ))
  30588. characterMakers.push(() => makeCharacter(
  30589. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30590. {
  30591. front: {
  30592. height: math.unit(1.8, "meters"),
  30593. weight: math.unit(85, "kg"),
  30594. name: "Front",
  30595. image: {
  30596. source: "./media/characters/azteck/front.svg",
  30597. extra: 2815 / 2625,
  30598. bottom: 89 / 2904
  30599. }
  30600. },
  30601. back: {
  30602. height: math.unit(1.8, "meters"),
  30603. weight: math.unit(85, "kg"),
  30604. name: "Back",
  30605. image: {
  30606. source: "./media/characters/azteck/back.svg",
  30607. extra: 2856 / 2648,
  30608. bottom: 85 / 2941
  30609. }
  30610. },
  30611. frontDressed: {
  30612. height: math.unit(1.8, "meters"),
  30613. weight: math.unit(85, "kg"),
  30614. name: "Front (Dressed)",
  30615. image: {
  30616. source: "./media/characters/azteck/front-dressed.svg",
  30617. extra: 2147 / 2003,
  30618. bottom: 68 / 2215
  30619. }
  30620. },
  30621. head: {
  30622. height: math.unit(0.47, "meters"),
  30623. weight: math.unit(85, "kg"),
  30624. name: "Head",
  30625. image: {
  30626. source: "./media/characters/azteck/head.svg"
  30627. }
  30628. },
  30629. },
  30630. [
  30631. {
  30632. name: "Bite sized",
  30633. height: math.unit(16, "cm")
  30634. },
  30635. {
  30636. name: "Normal",
  30637. height: math.unit(1.8, "meters"),
  30638. default: true
  30639. },
  30640. ]
  30641. ))
  30642. characterMakers.push(() => makeCharacter(
  30643. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30644. {
  30645. front: {
  30646. height: math.unit(6, "feet"),
  30647. weight: math.unit(150, "lb"),
  30648. name: "Front",
  30649. image: {
  30650. source: "./media/characters/pidge/front.svg",
  30651. extra: 1936/1820,
  30652. bottom: 0/1936
  30653. }
  30654. },
  30655. back: {
  30656. height: math.unit(6, "feet"),
  30657. weight: math.unit(150, "lb"),
  30658. name: "Back",
  30659. image: {
  30660. source: "./media/characters/pidge/back.svg",
  30661. extra: 1938/1843,
  30662. bottom: 0/1938
  30663. }
  30664. },
  30665. casual: {
  30666. height: math.unit(6, "feet"),
  30667. weight: math.unit(150, "lb"),
  30668. name: "Casual",
  30669. image: {
  30670. source: "./media/characters/pidge/casual.svg",
  30671. extra: 1936/1820,
  30672. bottom: 0/1936
  30673. }
  30674. },
  30675. tech: {
  30676. height: math.unit(6, "feet"),
  30677. weight: math.unit(150, "lb"),
  30678. name: "Tech",
  30679. image: {
  30680. source: "./media/characters/pidge/tech.svg",
  30681. extra: 1802/1682,
  30682. bottom: 0/1802
  30683. }
  30684. },
  30685. head: {
  30686. height: math.unit(1.61, "feet"),
  30687. name: "Head",
  30688. image: {
  30689. source: "./media/characters/pidge/head.svg"
  30690. }
  30691. },
  30692. collar: {
  30693. height: math.unit(0.82, "feet"),
  30694. name: "Collar",
  30695. image: {
  30696. source: "./media/characters/pidge/collar.svg"
  30697. }
  30698. },
  30699. },
  30700. [
  30701. {
  30702. name: "Macro",
  30703. height: math.unit(2, "mile"),
  30704. default: true
  30705. },
  30706. {
  30707. name: "PUPPY",
  30708. height: math.unit(20, "miles")
  30709. },
  30710. ]
  30711. ))
  30712. characterMakers.push(() => makeCharacter(
  30713. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30714. {
  30715. front: {
  30716. height: math.unit(6, "feet"),
  30717. weight: math.unit(150, "lb"),
  30718. name: "Front",
  30719. image: {
  30720. source: "./media/characters/en/front.svg",
  30721. extra: 1697 / 1563,
  30722. bottom: 103 / 1800
  30723. }
  30724. },
  30725. back: {
  30726. height: math.unit(6, "feet"),
  30727. weight: math.unit(150, "lb"),
  30728. name: "Back",
  30729. image: {
  30730. source: "./media/characters/en/back.svg",
  30731. extra: 1700 / 1570,
  30732. bottom: 51 / 1751
  30733. }
  30734. },
  30735. frontDressed: {
  30736. height: math.unit(6, "feet"),
  30737. weight: math.unit(150, "lb"),
  30738. name: "Front (Dressed)",
  30739. image: {
  30740. source: "./media/characters/en/front-dressed.svg",
  30741. extra: 1697 / 1563,
  30742. bottom: 103 / 1800
  30743. }
  30744. },
  30745. backDressed: {
  30746. height: math.unit(6, "feet"),
  30747. weight: math.unit(150, "lb"),
  30748. name: "Back (Dressed)",
  30749. image: {
  30750. source: "./media/characters/en/back-dressed.svg",
  30751. extra: 1700 / 1570,
  30752. bottom: 51 / 1751
  30753. }
  30754. },
  30755. },
  30756. [
  30757. {
  30758. name: "Macro",
  30759. height: math.unit(210, "feet"),
  30760. default: true
  30761. },
  30762. ]
  30763. ))
  30764. characterMakers.push(() => makeCharacter(
  30765. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30766. {
  30767. front: {
  30768. height: math.unit(6, "feet"),
  30769. weight: math.unit(150, "lb"),
  30770. name: "Front",
  30771. image: {
  30772. source: "./media/characters/haze-orris/front.svg",
  30773. extra: 3975 / 3525,
  30774. bottom: 137 / 4112
  30775. }
  30776. },
  30777. },
  30778. [
  30779. {
  30780. name: "Micro",
  30781. height: math.unit(150, "mm"),
  30782. default: true
  30783. },
  30784. ]
  30785. ))
  30786. characterMakers.push(() => makeCharacter(
  30787. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30788. {
  30789. front: {
  30790. height: math.unit(6, "feet"),
  30791. weight: math.unit(150, "lb"),
  30792. name: "Front",
  30793. image: {
  30794. source: "./media/characters/casselene-yaro/front.svg",
  30795. extra: 4721 / 4541,
  30796. bottom: 82 / 4803
  30797. }
  30798. },
  30799. back: {
  30800. height: math.unit(6, "feet"),
  30801. weight: math.unit(150, "lb"),
  30802. name: "Back",
  30803. image: {
  30804. source: "./media/characters/casselene-yaro/back.svg",
  30805. extra: 4569 / 4377,
  30806. bottom: 69 / 4638
  30807. }
  30808. },
  30809. dressed: {
  30810. height: math.unit(6, "feet"),
  30811. weight: math.unit(150, "lb"),
  30812. name: "Dressed",
  30813. image: {
  30814. source: "./media/characters/casselene-yaro/dressed.svg",
  30815. extra: 4721 / 4541,
  30816. bottom: 82 / 4803
  30817. }
  30818. },
  30819. maw: {
  30820. height: math.unit(1, "feet"),
  30821. name: "Maw",
  30822. image: {
  30823. source: "./media/characters/casselene-yaro/maw.svg"
  30824. }
  30825. },
  30826. },
  30827. [
  30828. {
  30829. name: "Macro",
  30830. height: math.unit(190, "feet"),
  30831. default: true
  30832. },
  30833. ]
  30834. ))
  30835. characterMakers.push(() => makeCharacter(
  30836. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30837. {
  30838. front: {
  30839. height: math.unit(10, "feet"),
  30840. weight: math.unit(15015, "lb"),
  30841. name: "Front",
  30842. image: {
  30843. source: "./media/characters/platine/front.svg",
  30844. extra: 1428/1353,
  30845. bottom: 31/1459
  30846. }
  30847. },
  30848. },
  30849. [
  30850. {
  30851. name: "Normal",
  30852. height: math.unit(10, "feet"),
  30853. default: true
  30854. },
  30855. {
  30856. name: "Macro",
  30857. height: math.unit(100, "feet")
  30858. },
  30859. {
  30860. name: "Megamacro",
  30861. height: math.unit(1000, "feet")
  30862. },
  30863. ]
  30864. ))
  30865. characterMakers.push(() => makeCharacter(
  30866. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30867. {
  30868. front: {
  30869. height: math.unit(15 + 5 / 12, "feet"),
  30870. weight: math.unit(4600, "lb"),
  30871. name: "Front",
  30872. image: {
  30873. source: "./media/characters/neapolitan-ananassa/front.svg",
  30874. extra: 2903 / 2736,
  30875. bottom: 0 / 2903
  30876. }
  30877. },
  30878. side: {
  30879. height: math.unit(15 + 5 / 12, "feet"),
  30880. weight: math.unit(4600, "lb"),
  30881. name: "Side",
  30882. image: {
  30883. source: "./media/characters/neapolitan-ananassa/side.svg",
  30884. extra: 2925 / 2719,
  30885. bottom: 0 / 2925
  30886. }
  30887. },
  30888. back: {
  30889. height: math.unit(15 + 5 / 12, "feet"),
  30890. weight: math.unit(4600, "lb"),
  30891. name: "Back",
  30892. image: {
  30893. source: "./media/characters/neapolitan-ananassa/back.svg",
  30894. extra: 2903 / 2736,
  30895. bottom: 0 / 2903
  30896. }
  30897. },
  30898. },
  30899. [
  30900. {
  30901. name: "Normal",
  30902. height: math.unit(15 + 5 / 12, "feet"),
  30903. default: true
  30904. },
  30905. {
  30906. name: "Post-Millenium",
  30907. height: math.unit(35 + 5 / 12, "feet")
  30908. },
  30909. {
  30910. name: "Post-Era",
  30911. height: math.unit(450 + 5 / 12, "feet")
  30912. },
  30913. ]
  30914. ))
  30915. characterMakers.push(() => makeCharacter(
  30916. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30917. {
  30918. front: {
  30919. height: math.unit(300, "meters"),
  30920. weight: math.unit(125000, "tonnes"),
  30921. name: "Front",
  30922. image: {
  30923. source: "./media/characters/pazuzu/front.svg",
  30924. extra: 877 / 794,
  30925. bottom: 47 / 924
  30926. }
  30927. },
  30928. },
  30929. [
  30930. {
  30931. name: "Macro",
  30932. height: math.unit(300, "meters"),
  30933. default: true
  30934. },
  30935. ]
  30936. ))
  30937. characterMakers.push(() => makeCharacter(
  30938. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30939. {
  30940. side: {
  30941. height: math.unit(10 + 7 / 12, "feet"),
  30942. weight: math.unit(2.5, "tons"),
  30943. name: "Side",
  30944. image: {
  30945. source: "./media/characters/aasha/side.svg",
  30946. extra: 1345 / 1245,
  30947. bottom: 111 / 1456
  30948. }
  30949. },
  30950. back: {
  30951. height: math.unit(10 + 7 / 12, "feet"),
  30952. weight: math.unit(2.5, "tons"),
  30953. name: "Back",
  30954. image: {
  30955. source: "./media/characters/aasha/back.svg",
  30956. extra: 1133 / 1057,
  30957. bottom: 257 / 1390
  30958. }
  30959. },
  30960. },
  30961. [
  30962. {
  30963. name: "Normal",
  30964. height: math.unit(10 + 7 / 12, "feet"),
  30965. default: true
  30966. },
  30967. ]
  30968. ))
  30969. characterMakers.push(() => makeCharacter(
  30970. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30971. {
  30972. front: {
  30973. height: math.unit(6 + 3 / 12, "feet"),
  30974. name: "Front",
  30975. image: {
  30976. source: "./media/characters/nevan/front.svg",
  30977. extra: 704 / 704,
  30978. bottom: 28 / 732
  30979. }
  30980. },
  30981. back: {
  30982. height: math.unit(6 + 3 / 12, "feet"),
  30983. name: "Back",
  30984. image: {
  30985. source: "./media/characters/nevan/back.svg",
  30986. extra: 714 / 714,
  30987. bottom: 21 / 735
  30988. }
  30989. },
  30990. frontFlaccid: {
  30991. height: math.unit(6 + 3 / 12, "feet"),
  30992. name: "Front (Flaccid)",
  30993. image: {
  30994. source: "./media/characters/nevan/front-flaccid.svg",
  30995. extra: 704 / 704,
  30996. bottom: 28 / 732
  30997. }
  30998. },
  30999. frontErect: {
  31000. height: math.unit(6 + 3 / 12, "feet"),
  31001. name: "Front (Erect)",
  31002. image: {
  31003. source: "./media/characters/nevan/front-erect.svg",
  31004. extra: 704 / 704,
  31005. bottom: 28 / 732
  31006. }
  31007. },
  31008. backFlaccid: {
  31009. height: math.unit(6 + 3 / 12, "feet"),
  31010. name: "Back (Flaccid)",
  31011. image: {
  31012. source: "./media/characters/nevan/back-flaccid.svg",
  31013. extra: 714 / 714,
  31014. bottom: 21 / 735
  31015. }
  31016. },
  31017. },
  31018. [
  31019. {
  31020. name: "Normal",
  31021. height: math.unit(6 + 3 / 12, "feet"),
  31022. default: true
  31023. },
  31024. ]
  31025. ))
  31026. characterMakers.push(() => makeCharacter(
  31027. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31028. {
  31029. front: {
  31030. height: math.unit(4, "feet"),
  31031. name: "Front",
  31032. image: {
  31033. source: "./media/characters/arhan/front.svg",
  31034. extra: 3368 / 3133,
  31035. bottom: 0 / 3368
  31036. }
  31037. },
  31038. side: {
  31039. height: math.unit(4, "feet"),
  31040. name: "Side",
  31041. image: {
  31042. source: "./media/characters/arhan/side.svg",
  31043. extra: 3347 / 3105,
  31044. bottom: 0 / 3347
  31045. }
  31046. },
  31047. tongue: {
  31048. height: math.unit(1.42, "feet"),
  31049. name: "Tongue",
  31050. image: {
  31051. source: "./media/characters/arhan/tongue.svg"
  31052. }
  31053. },
  31054. head: {
  31055. height: math.unit(0.85, "feet"),
  31056. name: "Head",
  31057. image: {
  31058. source: "./media/characters/arhan/head.svg"
  31059. }
  31060. },
  31061. },
  31062. [
  31063. {
  31064. name: "Normal",
  31065. height: math.unit(4, "feet"),
  31066. default: true
  31067. },
  31068. ]
  31069. ))
  31070. characterMakers.push(() => makeCharacter(
  31071. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31072. {
  31073. front: {
  31074. height: math.unit(5 + 7.5 / 12, "feet"),
  31075. weight: math.unit(120, "lb"),
  31076. name: "Front",
  31077. image: {
  31078. source: "./media/characters/digi-duncan/front.svg",
  31079. extra: 330 / 326,
  31080. bottom: 16 / 346
  31081. }
  31082. },
  31083. side: {
  31084. height: math.unit(5 + 7.5 / 12, "feet"),
  31085. weight: math.unit(120, "lb"),
  31086. name: "Side",
  31087. image: {
  31088. source: "./media/characters/digi-duncan/side.svg",
  31089. extra: 341 / 337,
  31090. bottom: 1 / 342
  31091. }
  31092. },
  31093. back: {
  31094. height: math.unit(5 + 7.5 / 12, "feet"),
  31095. weight: math.unit(120, "lb"),
  31096. name: "Back",
  31097. image: {
  31098. source: "./media/characters/digi-duncan/back.svg",
  31099. extra: 330 / 326,
  31100. bottom: 12 / 342
  31101. }
  31102. },
  31103. },
  31104. [
  31105. {
  31106. name: "Speck",
  31107. height: math.unit(0.25, "mm")
  31108. },
  31109. {
  31110. name: "Micro",
  31111. height: math.unit(5, "mm")
  31112. },
  31113. {
  31114. name: "Tiny",
  31115. height: math.unit(0.5, "inches"),
  31116. default: true
  31117. },
  31118. {
  31119. name: "Human",
  31120. height: math.unit(5 + 7.5 / 12, "feet")
  31121. },
  31122. {
  31123. name: "Minigiant",
  31124. height: math.unit(8 + 5.25, "feet")
  31125. },
  31126. {
  31127. name: "Giant",
  31128. height: math.unit(2000, "feet")
  31129. },
  31130. {
  31131. name: "Mega",
  31132. height: math.unit(371.1, "miles")
  31133. },
  31134. ]
  31135. ))
  31136. characterMakers.push(() => makeCharacter(
  31137. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31138. {
  31139. front: {
  31140. height: math.unit(2, "meters"),
  31141. weight: math.unit(350, "kg"),
  31142. name: "Front",
  31143. image: {
  31144. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31145. extra: 898 / 838,
  31146. bottom: 9 / 907
  31147. }
  31148. },
  31149. },
  31150. [
  31151. {
  31152. name: "Micro",
  31153. height: math.unit(8, "meters")
  31154. },
  31155. {
  31156. name: "Normal",
  31157. height: math.unit(50, "meters"),
  31158. default: true
  31159. },
  31160. {
  31161. name: "Macro",
  31162. height: math.unit(500, "meters")
  31163. },
  31164. ]
  31165. ))
  31166. characterMakers.push(() => makeCharacter(
  31167. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31168. {
  31169. front: {
  31170. height: math.unit(6 + 6 / 12, "feet"),
  31171. name: "Front",
  31172. image: {
  31173. source: "./media/characters/khardesh/front.svg",
  31174. extra: 1788/1596,
  31175. bottom: 66/1854
  31176. }
  31177. },
  31178. back: {
  31179. height: math.unit(6 + 6 / 12, "feet"),
  31180. name: "Back",
  31181. image: {
  31182. source: "./media/characters/khardesh/back.svg",
  31183. extra: 1781/1584,
  31184. bottom: 68/1849
  31185. }
  31186. },
  31187. },
  31188. [
  31189. {
  31190. name: "Normal",
  31191. height: math.unit(6 + 6 / 12, "feet"),
  31192. default: true
  31193. },
  31194. {
  31195. name: "Normal+",
  31196. height: math.unit(4, "meters")
  31197. },
  31198. {
  31199. name: "Macro",
  31200. height: math.unit(50, "meters")
  31201. },
  31202. {
  31203. name: "Macro+",
  31204. height: math.unit(100, "meters")
  31205. },
  31206. {
  31207. name: "Megamacro",
  31208. height: math.unit(20, "km")
  31209. },
  31210. ]
  31211. ))
  31212. characterMakers.push(() => makeCharacter(
  31213. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31214. {
  31215. front: {
  31216. height: math.unit(6, "feet"),
  31217. weight: math.unit(150, "lb"),
  31218. name: "Front",
  31219. image: {
  31220. source: "./media/characters/kosho/front.svg",
  31221. extra: 1847 / 1847,
  31222. bottom: 86 / 1933
  31223. }
  31224. },
  31225. },
  31226. [
  31227. {
  31228. name: "Second-stage micro",
  31229. height: math.unit(0.5, "inches")
  31230. },
  31231. {
  31232. name: "First-stage micro",
  31233. height: math.unit(6, "inches")
  31234. },
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(6, "feet"),
  31238. default: true
  31239. },
  31240. {
  31241. name: "First-stage macro",
  31242. height: math.unit(72, "feet")
  31243. },
  31244. {
  31245. name: "Second-stage macro",
  31246. height: math.unit(864, "feet")
  31247. },
  31248. ]
  31249. ))
  31250. characterMakers.push(() => makeCharacter(
  31251. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31252. {
  31253. normal: {
  31254. height: math.unit(4 + 6 / 12, "feet"),
  31255. name: "Normal",
  31256. image: {
  31257. source: "./media/characters/hydra/normal.svg",
  31258. extra: 2833 / 2634,
  31259. bottom: 68 / 2901
  31260. }
  31261. },
  31262. smol: {
  31263. height: math.unit(0.705, "inches"),
  31264. name: "Smol",
  31265. image: {
  31266. source: "./media/characters/hydra/smol.svg",
  31267. extra: 2715 / 2540,
  31268. bottom: 0 / 2715
  31269. }
  31270. },
  31271. },
  31272. [
  31273. {
  31274. name: "Normal",
  31275. height: math.unit(4 + 6 / 12, "feet"),
  31276. default: true
  31277. }
  31278. ]
  31279. ))
  31280. characterMakers.push(() => makeCharacter(
  31281. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31282. {
  31283. front: {
  31284. height: math.unit(0.6, "cm"),
  31285. name: "Front",
  31286. image: {
  31287. source: "./media/characters/daz/front.svg",
  31288. extra: 1682 / 1164,
  31289. bottom: 42 / 1724
  31290. }
  31291. },
  31292. },
  31293. [
  31294. {
  31295. name: "Normal",
  31296. height: math.unit(0.6, "cm"),
  31297. default: true
  31298. },
  31299. ]
  31300. ))
  31301. characterMakers.push(() => makeCharacter(
  31302. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31303. {
  31304. front: {
  31305. height: math.unit(6, "feet"),
  31306. weight: math.unit(235, "lb"),
  31307. name: "Front",
  31308. image: {
  31309. source: "./media/characters/theo-pangolin/front.svg",
  31310. extra: 1996 / 1969,
  31311. bottom: 115 / 2111
  31312. }
  31313. },
  31314. back: {
  31315. height: math.unit(6, "feet"),
  31316. weight: math.unit(235, "lb"),
  31317. name: "Back",
  31318. image: {
  31319. source: "./media/characters/theo-pangolin/back.svg",
  31320. extra: 1979 / 1979,
  31321. bottom: 40 / 2019
  31322. }
  31323. },
  31324. feral: {
  31325. height: math.unit(2, "feet"),
  31326. weight: math.unit(30, "lb"),
  31327. name: "Feral",
  31328. image: {
  31329. source: "./media/characters/theo-pangolin/feral.svg",
  31330. extra: 803 / 791,
  31331. bottom: 181 / 984
  31332. }
  31333. },
  31334. footFive: {
  31335. height: math.unit(1.43, "feet"),
  31336. name: "Foot (Five Toes)",
  31337. image: {
  31338. source: "./media/characters/theo-pangolin/foot-five.svg"
  31339. }
  31340. },
  31341. footFour: {
  31342. height: math.unit(1.43, "feet"),
  31343. name: "Foot (Four Toes)",
  31344. image: {
  31345. source: "./media/characters/theo-pangolin/foot-four.svg"
  31346. }
  31347. },
  31348. handFour: {
  31349. height: math.unit(0.81, "feet"),
  31350. name: "Hand (Four Fingers)",
  31351. image: {
  31352. source: "./media/characters/theo-pangolin/hand-four.svg"
  31353. }
  31354. },
  31355. handThree: {
  31356. height: math.unit(0.81, "feet"),
  31357. name: "Hand (Three Fingers)",
  31358. image: {
  31359. source: "./media/characters/theo-pangolin/hand-three.svg"
  31360. }
  31361. },
  31362. headFront: {
  31363. height: math.unit(1.37, "feet"),
  31364. name: "Head (Front)",
  31365. image: {
  31366. source: "./media/characters/theo-pangolin/head-front.svg"
  31367. }
  31368. },
  31369. headSide: {
  31370. height: math.unit(1.43, "feet"),
  31371. name: "Head (Side)",
  31372. image: {
  31373. source: "./media/characters/theo-pangolin/head-side.svg"
  31374. }
  31375. },
  31376. tongue: {
  31377. height: math.unit(2.29, "feet"),
  31378. name: "Tongue",
  31379. image: {
  31380. source: "./media/characters/theo-pangolin/tongue.svg"
  31381. }
  31382. },
  31383. },
  31384. [
  31385. {
  31386. name: "Normal",
  31387. height: math.unit(6, "feet")
  31388. },
  31389. {
  31390. name: "Macro",
  31391. height: math.unit(400, "feet"),
  31392. default: true
  31393. },
  31394. ]
  31395. ))
  31396. characterMakers.push(() => makeCharacter(
  31397. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31398. {
  31399. front: {
  31400. height: math.unit(6, "inches"),
  31401. weight: math.unit(0.036, "kg"),
  31402. name: "Front",
  31403. image: {
  31404. source: "./media/characters/renée/front.svg",
  31405. extra: 900 / 886,
  31406. bottom: 8 / 908
  31407. }
  31408. },
  31409. },
  31410. [
  31411. {
  31412. name: "Nano",
  31413. height: math.unit(1, "nm")
  31414. },
  31415. {
  31416. name: "Micro",
  31417. height: math.unit(1, "mm")
  31418. },
  31419. {
  31420. name: "Normal",
  31421. height: math.unit(6, "inches")
  31422. },
  31423. {
  31424. name: "Macro",
  31425. height: math.unit(2000, "feet"),
  31426. default: true
  31427. },
  31428. {
  31429. name: "Megamacro",
  31430. height: math.unit(2, "km")
  31431. },
  31432. {
  31433. name: "Gigamacro",
  31434. height: math.unit(2000, "km")
  31435. },
  31436. {
  31437. name: "Teramacro",
  31438. height: math.unit(250000, "km")
  31439. },
  31440. ]
  31441. ))
  31442. characterMakers.push(() => makeCharacter(
  31443. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31444. {
  31445. front: {
  31446. height: math.unit(4, "meters"),
  31447. weight: math.unit(150, "kg"),
  31448. name: "Front",
  31449. image: {
  31450. source: "./media/characters/caledvwlch/front.svg",
  31451. extra: 1760 / 1551,
  31452. bottom: 28 / 1788
  31453. }
  31454. },
  31455. side: {
  31456. height: math.unit(4, "meters"),
  31457. weight: math.unit(150, "kg"),
  31458. name: "Side",
  31459. image: {
  31460. source: "./media/characters/caledvwlch/side.svg",
  31461. extra: 1605 / 1536,
  31462. bottom: 31 / 1636
  31463. }
  31464. },
  31465. back: {
  31466. height: math.unit(4, "meters"),
  31467. weight: math.unit(150, "kg"),
  31468. name: "Back",
  31469. image: {
  31470. source: "./media/characters/caledvwlch/back.svg",
  31471. extra: 1635 / 1565,
  31472. bottom: 27 / 1662
  31473. }
  31474. },
  31475. },
  31476. [
  31477. {
  31478. name: "\"Incognito\"",
  31479. height: math.unit(4, "meters")
  31480. },
  31481. {
  31482. name: "Small rampage",
  31483. height: math.unit(600, "meters")
  31484. },
  31485. {
  31486. name: "Mega",
  31487. height: math.unit(30, "km")
  31488. },
  31489. {
  31490. name: "Home-size",
  31491. height: math.unit(50, "km"),
  31492. default: true
  31493. },
  31494. {
  31495. name: "Giga",
  31496. height: math.unit(300, "km")
  31497. },
  31498. {
  31499. name: "Lounging",
  31500. height: math.unit(11000, "km")
  31501. },
  31502. {
  31503. name: "Planet snacking",
  31504. height: math.unit(2000000, "km")
  31505. },
  31506. ]
  31507. ))
  31508. characterMakers.push(() => makeCharacter(
  31509. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31510. {
  31511. front: {
  31512. height: math.unit(6, "feet"),
  31513. weight: math.unit(215, "lb"),
  31514. name: "Front",
  31515. image: {
  31516. source: "./media/characters/sapphire-svell/front.svg",
  31517. extra: 495 / 455,
  31518. bottom: 20 / 515
  31519. }
  31520. },
  31521. back: {
  31522. height: math.unit(6, "feet"),
  31523. weight: math.unit(216, "lb"),
  31524. name: "Back",
  31525. image: {
  31526. source: "./media/characters/sapphire-svell/back.svg",
  31527. extra: 497 / 477,
  31528. bottom: 7 / 504
  31529. }
  31530. },
  31531. maw: {
  31532. height: math.unit(1.57, "feet"),
  31533. name: "Maw",
  31534. image: {
  31535. source: "./media/characters/sapphire-svell/maw.svg"
  31536. }
  31537. },
  31538. foot: {
  31539. height: math.unit(1.07, "feet"),
  31540. name: "Foot",
  31541. image: {
  31542. source: "./media/characters/sapphire-svell/foot.svg"
  31543. }
  31544. },
  31545. toering: {
  31546. height: math.unit(1.7, "inch"),
  31547. name: "Toering",
  31548. image: {
  31549. source: "./media/characters/sapphire-svell/toering.svg"
  31550. }
  31551. },
  31552. },
  31553. [
  31554. {
  31555. name: "Normal",
  31556. height: math.unit(300, "feet"),
  31557. default: true
  31558. },
  31559. {
  31560. name: "Augmented",
  31561. height: math.unit(1250, "feet")
  31562. },
  31563. {
  31564. name: "Unleashed",
  31565. height: math.unit(3000, "feet")
  31566. },
  31567. ]
  31568. ))
  31569. characterMakers.push(() => makeCharacter(
  31570. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31571. {
  31572. side: {
  31573. height: math.unit(2 + 3 / 12, "feet"),
  31574. weight: math.unit(110, "lb"),
  31575. name: "Side",
  31576. image: {
  31577. source: "./media/characters/glitch-flux/side.svg",
  31578. extra: 997 / 805,
  31579. bottom: 20 / 1017
  31580. }
  31581. },
  31582. },
  31583. [
  31584. {
  31585. name: "Normal",
  31586. height: math.unit(2 + 3 / 12, "feet"),
  31587. default: true
  31588. },
  31589. ]
  31590. ))
  31591. characterMakers.push(() => makeCharacter(
  31592. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31593. {
  31594. front: {
  31595. height: math.unit(4, "meters"),
  31596. name: "Front",
  31597. image: {
  31598. source: "./media/characters/mid/front.svg",
  31599. extra: 507 / 476,
  31600. bottom: 17 / 524
  31601. }
  31602. },
  31603. back: {
  31604. height: math.unit(4, "meters"),
  31605. name: "Back",
  31606. image: {
  31607. source: "./media/characters/mid/back.svg",
  31608. extra: 519 / 487,
  31609. bottom: 7 / 526
  31610. }
  31611. },
  31612. stuck: {
  31613. height: math.unit(2.2, "meters"),
  31614. name: "Stuck",
  31615. image: {
  31616. source: "./media/characters/mid/stuck.svg",
  31617. extra: 1951 / 1869,
  31618. bottom: 88 / 2039
  31619. }
  31620. }
  31621. },
  31622. [
  31623. {
  31624. name: "Normal",
  31625. height: math.unit(4, "meters"),
  31626. default: true
  31627. },
  31628. {
  31629. name: "Big",
  31630. height: math.unit(10, "meters")
  31631. },
  31632. {
  31633. name: "Macro",
  31634. height: math.unit(800, "meters")
  31635. },
  31636. {
  31637. name: "Megamacro",
  31638. height: math.unit(100, "km")
  31639. },
  31640. {
  31641. name: "Overgrown",
  31642. height: math.unit(1, "parsec")
  31643. },
  31644. ]
  31645. ))
  31646. characterMakers.push(() => makeCharacter(
  31647. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31648. {
  31649. front: {
  31650. height: math.unit(2.5, "meters"),
  31651. weight: math.unit(225, "kg"),
  31652. name: "Front",
  31653. image: {
  31654. source: "./media/characters/iris/front.svg",
  31655. extra: 3348 / 3251,
  31656. bottom: 205 / 3553
  31657. }
  31658. },
  31659. maw: {
  31660. height: math.unit(0.56, "meter"),
  31661. name: "Maw",
  31662. image: {
  31663. source: "./media/characters/iris/maw.svg"
  31664. }
  31665. },
  31666. },
  31667. [
  31668. {
  31669. name: "Mewter cat",
  31670. height: math.unit(1.2, "meters")
  31671. },
  31672. {
  31673. name: "Normal",
  31674. height: math.unit(2.5, "meters"),
  31675. default: true
  31676. },
  31677. {
  31678. name: "Minimacro",
  31679. height: math.unit(18, "feet")
  31680. },
  31681. {
  31682. name: "Macro",
  31683. height: math.unit(140, "feet")
  31684. },
  31685. {
  31686. name: "Macro+",
  31687. height: math.unit(180, "meters")
  31688. },
  31689. {
  31690. name: "Megamacro",
  31691. height: math.unit(2746, "meters")
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31697. {
  31698. front: {
  31699. height: math.unit(6, "feet"),
  31700. weight: math.unit(135, "lb"),
  31701. name: "Front",
  31702. image: {
  31703. source: "./media/characters/axel/front.svg",
  31704. extra: 908 / 908,
  31705. bottom: 58 / 966
  31706. }
  31707. },
  31708. side: {
  31709. height: math.unit(6, "feet"),
  31710. weight: math.unit(135, "lb"),
  31711. name: "Side",
  31712. image: {
  31713. source: "./media/characters/axel/side.svg",
  31714. extra: 958 / 958,
  31715. bottom: 11 / 969
  31716. }
  31717. },
  31718. back: {
  31719. height: math.unit(6, "feet"),
  31720. weight: math.unit(135, "lb"),
  31721. name: "Back",
  31722. image: {
  31723. source: "./media/characters/axel/back.svg",
  31724. extra: 887 / 887,
  31725. bottom: 34 / 921
  31726. }
  31727. },
  31728. head: {
  31729. height: math.unit(1.07, "feet"),
  31730. name: "Head",
  31731. image: {
  31732. source: "./media/characters/axel/head.svg"
  31733. }
  31734. },
  31735. beak: {
  31736. height: math.unit(1.4, "feet"),
  31737. name: "Beak",
  31738. image: {
  31739. source: "./media/characters/axel/beak.svg"
  31740. }
  31741. },
  31742. beakSide: {
  31743. height: math.unit(1.4, "feet"),
  31744. name: "Beak Side",
  31745. image: {
  31746. source: "./media/characters/axel/beak-side.svg"
  31747. }
  31748. },
  31749. sheath: {
  31750. height: math.unit(0.5, "feet"),
  31751. name: "Sheath",
  31752. image: {
  31753. source: "./media/characters/axel/sheath.svg"
  31754. }
  31755. },
  31756. dick: {
  31757. height: math.unit(0.98, "feet"),
  31758. name: "Dick",
  31759. image: {
  31760. source: "./media/characters/axel/dick.svg"
  31761. }
  31762. },
  31763. },
  31764. [
  31765. {
  31766. name: "Macro",
  31767. height: math.unit(68, "meters"),
  31768. default: true
  31769. },
  31770. ]
  31771. ))
  31772. characterMakers.push(() => makeCharacter(
  31773. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31774. {
  31775. front: {
  31776. height: math.unit(3.5, "meters"),
  31777. weight: math.unit(1200, "kg"),
  31778. name: "Front",
  31779. image: {
  31780. source: "./media/characters/joanna/front.svg",
  31781. extra: 1596 / 1488,
  31782. bottom: 29 / 1625
  31783. }
  31784. },
  31785. back: {
  31786. height: math.unit(3.5, "meters"),
  31787. weight: math.unit(1200, "kg"),
  31788. name: "Back",
  31789. image: {
  31790. source: "./media/characters/joanna/back.svg",
  31791. extra: 1594 / 1495,
  31792. bottom: 26 / 1620
  31793. }
  31794. },
  31795. frontShorts: {
  31796. height: math.unit(3.5, "meters"),
  31797. weight: math.unit(1200, "kg"),
  31798. name: "Front (Shorts)",
  31799. image: {
  31800. source: "./media/characters/joanna/front-shorts.svg",
  31801. extra: 1596 / 1488,
  31802. bottom: 29 / 1625
  31803. }
  31804. },
  31805. frontBiker: {
  31806. height: math.unit(3.5, "meters"),
  31807. weight: math.unit(1200, "kg"),
  31808. name: "Front (Biker)",
  31809. image: {
  31810. source: "./media/characters/joanna/front-biker.svg",
  31811. extra: 1596 / 1488,
  31812. bottom: 29 / 1625
  31813. }
  31814. },
  31815. backBiker: {
  31816. height: math.unit(3.5, "meters"),
  31817. weight: math.unit(1200, "kg"),
  31818. name: "Back (Biker)",
  31819. image: {
  31820. source: "./media/characters/joanna/back-biker.svg",
  31821. extra: 1594 / 1495,
  31822. bottom: 88 / 1682
  31823. }
  31824. },
  31825. bikeLeft: {
  31826. height: math.unit(2.4, "meters"),
  31827. weight: math.unit(1600, "kg"),
  31828. name: "Bike (Left)",
  31829. image: {
  31830. source: "./media/characters/joanna/bike-left.svg",
  31831. extra: 720 / 720,
  31832. bottom: 8 / 728
  31833. }
  31834. },
  31835. bikeRight: {
  31836. height: math.unit(2.4, "meters"),
  31837. weight: math.unit(1600, "kg"),
  31838. name: "Bike (Right)",
  31839. image: {
  31840. source: "./media/characters/joanna/bike-right.svg",
  31841. extra: 720 / 720,
  31842. bottom: 8 / 728
  31843. }
  31844. },
  31845. },
  31846. [
  31847. {
  31848. name: "Incognito",
  31849. height: math.unit(3.5, "meters")
  31850. },
  31851. {
  31852. name: "Casual Big",
  31853. height: math.unit(200, "meters")
  31854. },
  31855. {
  31856. name: "Macro",
  31857. height: math.unit(600, "meters")
  31858. },
  31859. {
  31860. name: "Original",
  31861. height: math.unit(20, "km"),
  31862. default: true
  31863. },
  31864. {
  31865. name: "Giga",
  31866. height: math.unit(400, "km")
  31867. },
  31868. {
  31869. name: "Lounging",
  31870. height: math.unit(1500, "km")
  31871. },
  31872. {
  31873. name: "Planetary",
  31874. height: math.unit(200000, "km")
  31875. },
  31876. ]
  31877. ))
  31878. characterMakers.push(() => makeCharacter(
  31879. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31880. {
  31881. front: {
  31882. height: math.unit(6, "feet"),
  31883. weight: math.unit(150, "lb"),
  31884. name: "Front",
  31885. image: {
  31886. source: "./media/characters/hugo-sigil/front.svg",
  31887. extra: 522 / 500,
  31888. bottom: 2 / 524
  31889. }
  31890. },
  31891. back: {
  31892. height: math.unit(6, "feet"),
  31893. weight: math.unit(150, "lb"),
  31894. name: "Back",
  31895. image: {
  31896. source: "./media/characters/hugo-sigil/back.svg",
  31897. extra: 519 / 495,
  31898. bottom: 5 / 524
  31899. }
  31900. },
  31901. maw: {
  31902. height: math.unit(1.4, "feet"),
  31903. weight: math.unit(150, "lb"),
  31904. name: "Maw",
  31905. image: {
  31906. source: "./media/characters/hugo-sigil/maw.svg"
  31907. }
  31908. },
  31909. feet: {
  31910. height: math.unit(1.56, "feet"),
  31911. weight: math.unit(150, "lb"),
  31912. name: "Feet",
  31913. image: {
  31914. source: "./media/characters/hugo-sigil/feet.svg",
  31915. extra: 177 / 177,
  31916. bottom: 12 / 189
  31917. }
  31918. },
  31919. },
  31920. [
  31921. {
  31922. name: "Normal",
  31923. height: math.unit(6, "feet")
  31924. },
  31925. {
  31926. name: "Macro",
  31927. height: math.unit(200, "feet"),
  31928. default: true
  31929. },
  31930. ]
  31931. ))
  31932. characterMakers.push(() => makeCharacter(
  31933. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31934. {
  31935. front: {
  31936. height: math.unit(6, "feet"),
  31937. weight: math.unit(150, "lb"),
  31938. name: "Front",
  31939. image: {
  31940. source: "./media/characters/peri/front.svg",
  31941. extra: 2354 / 2233,
  31942. bottom: 49 / 2403
  31943. }
  31944. },
  31945. },
  31946. [
  31947. {
  31948. name: "Really Small",
  31949. height: math.unit(1, "nm")
  31950. },
  31951. {
  31952. name: "Micro",
  31953. height: math.unit(4, "inches")
  31954. },
  31955. {
  31956. name: "Normal",
  31957. height: math.unit(7, "inches"),
  31958. default: true
  31959. },
  31960. {
  31961. name: "Macro",
  31962. height: math.unit(400, "feet")
  31963. },
  31964. {
  31965. name: "Megamacro",
  31966. height: math.unit(100, "miles")
  31967. },
  31968. ]
  31969. ))
  31970. characterMakers.push(() => makeCharacter(
  31971. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31972. {
  31973. frontSlim: {
  31974. height: math.unit(7, "feet"),
  31975. name: "Front (Slim)",
  31976. image: {
  31977. source: "./media/characters/issilora/front-slim.svg",
  31978. extra: 529 / 449,
  31979. bottom: 53 / 582
  31980. }
  31981. },
  31982. sideSlim: {
  31983. height: math.unit(7, "feet"),
  31984. name: "Side (Slim)",
  31985. image: {
  31986. source: "./media/characters/issilora/side-slim.svg",
  31987. extra: 570 / 480,
  31988. bottom: 30 / 600
  31989. }
  31990. },
  31991. backSlim: {
  31992. height: math.unit(7, "feet"),
  31993. name: "Back (Slim)",
  31994. image: {
  31995. source: "./media/characters/issilora/back-slim.svg",
  31996. extra: 537 / 455,
  31997. bottom: 46 / 583
  31998. }
  31999. },
  32000. frontBuff: {
  32001. height: math.unit(7, "feet"),
  32002. name: "Front (Buff)",
  32003. image: {
  32004. source: "./media/characters/issilora/front-buff.svg",
  32005. extra: 2310 / 2035,
  32006. bottom: 335 / 2645
  32007. }
  32008. },
  32009. head: {
  32010. height: math.unit(1.94, "feet"),
  32011. name: "Head",
  32012. image: {
  32013. source: "./media/characters/issilora/head.svg"
  32014. }
  32015. },
  32016. },
  32017. [
  32018. {
  32019. name: "Minimum",
  32020. height: math.unit(7, "feet")
  32021. },
  32022. {
  32023. name: "Comfortable",
  32024. height: math.unit(17, "feet")
  32025. },
  32026. {
  32027. name: "Fun Size",
  32028. height: math.unit(47, "feet")
  32029. },
  32030. {
  32031. name: "Natural Macro",
  32032. height: math.unit(137, "feet"),
  32033. default: true
  32034. },
  32035. {
  32036. name: "Maximum Kaiju",
  32037. height: math.unit(397, "feet")
  32038. },
  32039. ]
  32040. ))
  32041. characterMakers.push(() => makeCharacter(
  32042. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32043. {
  32044. front: {
  32045. height: math.unit(50 + 9/12, "feet"),
  32046. weight: math.unit(32.8, "tons"),
  32047. name: "Front",
  32048. image: {
  32049. source: "./media/characters/irb'iiritaahn/front.svg",
  32050. extra: 1878/1826,
  32051. bottom: 326/2204
  32052. }
  32053. },
  32054. back: {
  32055. height: math.unit(50 + 9/12, "feet"),
  32056. weight: math.unit(32.8, "tons"),
  32057. name: "Back",
  32058. image: {
  32059. source: "./media/characters/irb'iiritaahn/back.svg",
  32060. extra: 2052/2018,
  32061. bottom: 152/2204
  32062. }
  32063. },
  32064. head: {
  32065. height: math.unit(12.86, "feet"),
  32066. name: "Head",
  32067. image: {
  32068. source: "./media/characters/irb'iiritaahn/head.svg"
  32069. }
  32070. },
  32071. maw: {
  32072. height: math.unit(9.66, "feet"),
  32073. name: "Maw",
  32074. image: {
  32075. source: "./media/characters/irb'iiritaahn/maw.svg"
  32076. }
  32077. },
  32078. frontDick: {
  32079. height: math.unit(8.78461, "feet"),
  32080. name: "Front Dick",
  32081. image: {
  32082. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32083. }
  32084. },
  32085. rearDick: {
  32086. height: math.unit(8.78461, "feet"),
  32087. name: "Rear Dick",
  32088. image: {
  32089. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32090. }
  32091. },
  32092. rearDickUnfolded: {
  32093. height: math.unit(8.78, "feet"),
  32094. name: "Rear Dick (Unfolded)",
  32095. image: {
  32096. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32097. }
  32098. },
  32099. wings: {
  32100. height: math.unit(43, "feet"),
  32101. name: "Wings",
  32102. image: {
  32103. source: "./media/characters/irb'iiritaahn/wings.svg"
  32104. }
  32105. },
  32106. },
  32107. [
  32108. {
  32109. name: "Macro",
  32110. height: math.unit(50 + 9/12, "feet"),
  32111. default: true
  32112. },
  32113. ]
  32114. ))
  32115. characterMakers.push(() => makeCharacter(
  32116. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32117. {
  32118. front: {
  32119. height: math.unit(205, "cm"),
  32120. weight: math.unit(102, "kg"),
  32121. name: "Front",
  32122. image: {
  32123. source: "./media/characters/irbisgreif/front.svg",
  32124. extra: 785/706,
  32125. bottom: 13/798
  32126. }
  32127. },
  32128. back: {
  32129. height: math.unit(205, "cm"),
  32130. weight: math.unit(102, "kg"),
  32131. name: "Back",
  32132. image: {
  32133. source: "./media/characters/irbisgreif/back.svg",
  32134. extra: 713/701,
  32135. bottom: 26/739
  32136. }
  32137. },
  32138. frontDressed: {
  32139. height: math.unit(216, "cm"),
  32140. weight: math.unit(102, "kg"),
  32141. name: "Front-dressed",
  32142. image: {
  32143. source: "./media/characters/irbisgreif/front-dressed.svg",
  32144. extra: 902/776,
  32145. bottom: 14/916
  32146. }
  32147. },
  32148. sideDressed: {
  32149. height: math.unit(195, "cm"),
  32150. weight: math.unit(102, "kg"),
  32151. name: "Side-dressed",
  32152. image: {
  32153. source: "./media/characters/irbisgreif/side-dressed.svg",
  32154. extra: 788/688,
  32155. bottom: 21/809
  32156. }
  32157. },
  32158. backDressed: {
  32159. height: math.unit(216, "cm"),
  32160. weight: math.unit(102, "kg"),
  32161. name: "Back-dressed",
  32162. image: {
  32163. source: "./media/characters/irbisgreif/back-dressed.svg",
  32164. extra: 901/783,
  32165. bottom: 10/911
  32166. }
  32167. },
  32168. dick: {
  32169. height: math.unit(0.49, "feet"),
  32170. name: "Dick",
  32171. image: {
  32172. source: "./media/characters/irbisgreif/dick.svg"
  32173. }
  32174. },
  32175. wingTop: {
  32176. height: math.unit(1.93 , "feet"),
  32177. name: "Wing-top",
  32178. image: {
  32179. source: "./media/characters/irbisgreif/wing-top.svg"
  32180. }
  32181. },
  32182. wingBottom: {
  32183. height: math.unit(1.93 , "feet"),
  32184. name: "Wing-bottom",
  32185. image: {
  32186. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32187. }
  32188. },
  32189. },
  32190. [
  32191. {
  32192. name: "Normal",
  32193. height: math.unit(216, "cm"),
  32194. default: true
  32195. },
  32196. ]
  32197. ))
  32198. characterMakers.push(() => makeCharacter(
  32199. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32200. {
  32201. front: {
  32202. height: math.unit(6, "feet"),
  32203. weight: math.unit(150, "lb"),
  32204. name: "Front",
  32205. image: {
  32206. source: "./media/characters/pride/front.svg",
  32207. extra: 1299/1230,
  32208. bottom: 18/1317
  32209. }
  32210. },
  32211. },
  32212. [
  32213. {
  32214. name: "Normal",
  32215. height: math.unit(7, "feet")
  32216. },
  32217. {
  32218. name: "Mini-macro",
  32219. height: math.unit(11, "feet")
  32220. },
  32221. {
  32222. name: "Macro",
  32223. height: math.unit(15, "meters"),
  32224. default: true
  32225. },
  32226. {
  32227. name: "Macro+",
  32228. height: math.unit(40, "meters")
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32234. {
  32235. front: {
  32236. height: math.unit(4 + 2 / 12, "feet"),
  32237. weight: math.unit(95, "lb"),
  32238. name: "Front",
  32239. image: {
  32240. source: "./media/characters/vaelophis-nyx/front.svg",
  32241. extra: 2532/2330,
  32242. bottom: 0/2532
  32243. }
  32244. },
  32245. back: {
  32246. height: math.unit(4 + 2 / 12, "feet"),
  32247. weight: math.unit(95, "lb"),
  32248. name: "Back",
  32249. image: {
  32250. source: "./media/characters/vaelophis-nyx/back.svg",
  32251. extra: 2484/2361,
  32252. bottom: 0/2484
  32253. }
  32254. },
  32255. feralSide: {
  32256. height: math.unit(2 + 1/12, "feet"),
  32257. weight: math.unit(20, "lb"),
  32258. name: "Feral (Side)",
  32259. image: {
  32260. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32261. extra: 1721/1581,
  32262. bottom: 70/1791
  32263. }
  32264. },
  32265. feralLazing: {
  32266. height: math.unit(1.08, "feet"),
  32267. weight: math.unit(20, "lb"),
  32268. name: "Feral (Lazing)",
  32269. image: {
  32270. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32271. extra: 822/822,
  32272. bottom: 248/1070
  32273. }
  32274. },
  32275. ear: {
  32276. height: math.unit(0.416, "feet"),
  32277. name: "Ear",
  32278. image: {
  32279. source: "./media/characters/vaelophis-nyx/ear.svg"
  32280. }
  32281. },
  32282. eye: {
  32283. height: math.unit(0.0748, "feet"),
  32284. name: "Eye",
  32285. image: {
  32286. source: "./media/characters/vaelophis-nyx/eye.svg"
  32287. }
  32288. },
  32289. mouth: {
  32290. height: math.unit(0.378, "feet"),
  32291. name: "Mouth",
  32292. image: {
  32293. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32294. }
  32295. },
  32296. spade: {
  32297. height: math.unit(0.55, "feet"),
  32298. name: "Spade",
  32299. image: {
  32300. source: "./media/characters/vaelophis-nyx/spade.svg"
  32301. }
  32302. },
  32303. },
  32304. [
  32305. {
  32306. name: "Normal",
  32307. height: math.unit(4 + 2/12, "feet"),
  32308. default: true
  32309. },
  32310. ]
  32311. ))
  32312. characterMakers.push(() => makeCharacter(
  32313. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32314. {
  32315. front: {
  32316. height: math.unit(7, "feet"),
  32317. weight: math.unit(231, "lb"),
  32318. name: "Front",
  32319. image: {
  32320. source: "./media/characters/flux/front.svg",
  32321. extra: 919/871,
  32322. bottom: 0/919
  32323. }
  32324. },
  32325. back: {
  32326. height: math.unit(7, "feet"),
  32327. weight: math.unit(231, "lb"),
  32328. name: "Back",
  32329. image: {
  32330. source: "./media/characters/flux/back.svg",
  32331. extra: 1040/992,
  32332. bottom: 0/1040
  32333. }
  32334. },
  32335. frontDressed: {
  32336. height: math.unit(7, "feet"),
  32337. weight: math.unit(231, "lb"),
  32338. name: "Front (Dressed)",
  32339. image: {
  32340. source: "./media/characters/flux/front-dressed.svg",
  32341. extra: 919/871,
  32342. bottom: 0/919
  32343. }
  32344. },
  32345. feralSide: {
  32346. height: math.unit(5, "feet"),
  32347. weight: math.unit(150, "lb"),
  32348. name: "Feral (Side)",
  32349. image: {
  32350. source: "./media/characters/flux/feral-side.svg",
  32351. extra: 598/528,
  32352. bottom: 28/626
  32353. }
  32354. },
  32355. head: {
  32356. height: math.unit(1.585, "feet"),
  32357. name: "Head",
  32358. image: {
  32359. source: "./media/characters/flux/head.svg"
  32360. }
  32361. },
  32362. headSide: {
  32363. height: math.unit(1.74, "feet"),
  32364. name: "Head (Side)",
  32365. image: {
  32366. source: "./media/characters/flux/head-side.svg"
  32367. }
  32368. },
  32369. headSideFire: {
  32370. height: math.unit(1.76, "feet"),
  32371. name: "Head (Side, Fire)",
  32372. image: {
  32373. source: "./media/characters/flux/head-side-fire.svg"
  32374. }
  32375. },
  32376. },
  32377. [
  32378. {
  32379. name: "Normal",
  32380. height: math.unit(7, "feet"),
  32381. default: true
  32382. },
  32383. ]
  32384. ))
  32385. characterMakers.push(() => makeCharacter(
  32386. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32387. {
  32388. front: {
  32389. height: math.unit(9, "feet"),
  32390. weight: math.unit(1012, "lb"),
  32391. name: "Front",
  32392. image: {
  32393. source: "./media/characters/ulfra-lupae/front.svg",
  32394. extra: 1083/1011,
  32395. bottom: 67/1150
  32396. }
  32397. },
  32398. },
  32399. [
  32400. {
  32401. name: "Micro",
  32402. height: math.unit(6, "inches")
  32403. },
  32404. {
  32405. name: "Socializing",
  32406. height: math.unit(6 + 5/12, "feet")
  32407. },
  32408. {
  32409. name: "Normal",
  32410. height: math.unit(9, "feet"),
  32411. default: true
  32412. },
  32413. {
  32414. name: "Macro",
  32415. height: math.unit(150, "feet")
  32416. },
  32417. ]
  32418. ))
  32419. characterMakers.push(() => makeCharacter(
  32420. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32421. {
  32422. front: {
  32423. height: math.unit(5 + 2/12, "feet"),
  32424. weight: math.unit(120, "lb"),
  32425. name: "Front",
  32426. image: {
  32427. source: "./media/characters/timber/front.svg",
  32428. extra: 2814/2705,
  32429. bottom: 181/2995
  32430. }
  32431. },
  32432. },
  32433. [
  32434. {
  32435. name: "Normal",
  32436. height: math.unit(5 + 2/12, "feet"),
  32437. default: true
  32438. },
  32439. ]
  32440. ))
  32441. characterMakers.push(() => makeCharacter(
  32442. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32443. {
  32444. front: {
  32445. height: math.unit(9, "feet"),
  32446. name: "Front",
  32447. image: {
  32448. source: "./media/characters/nicki/front.svg",
  32449. extra: 1240/990,
  32450. bottom: 45/1285
  32451. },
  32452. form: "anthro",
  32453. default: true
  32454. },
  32455. side: {
  32456. height: math.unit(9, "feet"),
  32457. name: "Side",
  32458. image: {
  32459. source: "./media/characters/nicki/side.svg",
  32460. extra: 1047/973,
  32461. bottom: 61/1108
  32462. },
  32463. form: "anthro"
  32464. },
  32465. back: {
  32466. height: math.unit(9, "feet"),
  32467. name: "Back",
  32468. image: {
  32469. source: "./media/characters/nicki/back.svg",
  32470. extra: 1006/965,
  32471. bottom: 39/1045
  32472. },
  32473. form: "anthro"
  32474. },
  32475. taur: {
  32476. height: math.unit(15, "feet"),
  32477. name: "Taur",
  32478. image: {
  32479. source: "./media/characters/nicki/taur.svg",
  32480. extra: 1592/1347,
  32481. bottom: 0/1592
  32482. },
  32483. form: "taur",
  32484. default: true
  32485. },
  32486. },
  32487. [
  32488. {
  32489. name: "Normal",
  32490. height: math.unit(9, "feet"),
  32491. form: "anthro",
  32492. default: true
  32493. },
  32494. {
  32495. name: "Normal",
  32496. height: math.unit(15, "feet"),
  32497. form: "taur",
  32498. default: true
  32499. }
  32500. ],
  32501. {
  32502. "anthro": {
  32503. name: "Anthro",
  32504. default: true
  32505. },
  32506. "taur": {
  32507. name: "Taur"
  32508. }
  32509. }
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32513. {
  32514. front: {
  32515. height: math.unit(7 + 10/12, "feet"),
  32516. weight: math.unit(3.5, "tons"),
  32517. name: "Front",
  32518. image: {
  32519. source: "./media/characters/lee/front.svg",
  32520. extra: 1773/1615,
  32521. bottom: 86/1859
  32522. }
  32523. },
  32524. hand: {
  32525. height: math.unit(1.78, "feet"),
  32526. name: "Hand",
  32527. image: {
  32528. source: "./media/characters/lee/hand.svg"
  32529. }
  32530. },
  32531. maw: {
  32532. height: math.unit(1.18, "feet"),
  32533. name: "Maw",
  32534. image: {
  32535. source: "./media/characters/lee/maw.svg"
  32536. }
  32537. },
  32538. },
  32539. [
  32540. {
  32541. name: "Normal",
  32542. height: math.unit(7 + 10/12, "feet"),
  32543. default: true
  32544. },
  32545. ]
  32546. ))
  32547. characterMakers.push(() => makeCharacter(
  32548. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32549. {
  32550. front: {
  32551. height: math.unit(9, "feet"),
  32552. name: "Front",
  32553. image: {
  32554. source: "./media/characters/guti/front.svg",
  32555. extra: 4551/4355,
  32556. bottom: 123/4674
  32557. }
  32558. },
  32559. tongue: {
  32560. height: math.unit(1, "feet"),
  32561. name: "Tongue",
  32562. image: {
  32563. source: "./media/characters/guti/tongue.svg"
  32564. }
  32565. },
  32566. paw: {
  32567. height: math.unit(1.18, "feet"),
  32568. name: "Paw",
  32569. image: {
  32570. source: "./media/characters/guti/paw.svg"
  32571. }
  32572. },
  32573. },
  32574. [
  32575. {
  32576. name: "Normal",
  32577. height: math.unit(9, "feet"),
  32578. default: true
  32579. },
  32580. ]
  32581. ))
  32582. characterMakers.push(() => makeCharacter(
  32583. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32584. {
  32585. side: {
  32586. height: math.unit(5, "meters"),
  32587. name: "Side",
  32588. image: {
  32589. source: "./media/characters/vesper/side.svg",
  32590. extra: 1605/1518,
  32591. bottom: 0/1605
  32592. }
  32593. },
  32594. },
  32595. [
  32596. {
  32597. name: "Small",
  32598. height: math.unit(5, "meters")
  32599. },
  32600. {
  32601. name: "Sage",
  32602. height: math.unit(100, "meters"),
  32603. default: true
  32604. },
  32605. {
  32606. name: "Fun Size",
  32607. height: math.unit(600, "meters")
  32608. },
  32609. {
  32610. name: "Goddess",
  32611. height: math.unit(20000, "km")
  32612. },
  32613. {
  32614. name: "Maximum",
  32615. height: math.unit(5, "galaxies")
  32616. },
  32617. ]
  32618. ))
  32619. characterMakers.push(() => makeCharacter(
  32620. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32621. {
  32622. front: {
  32623. height: math.unit(6 + 3/12, "feet"),
  32624. weight: math.unit(190, "lb"),
  32625. name: "Front",
  32626. image: {
  32627. source: "./media/characters/gawain/front.svg",
  32628. extra: 2222/2139,
  32629. bottom: 90/2312
  32630. }
  32631. },
  32632. back: {
  32633. height: math.unit(6 + 3/12, "feet"),
  32634. weight: math.unit(190, "lb"),
  32635. name: "Back",
  32636. image: {
  32637. source: "./media/characters/gawain/back.svg",
  32638. extra: 2199/2111,
  32639. bottom: 73/2272
  32640. }
  32641. },
  32642. },
  32643. [
  32644. {
  32645. name: "Normal",
  32646. height: math.unit(6 + 3/12, "feet"),
  32647. default: true
  32648. },
  32649. ]
  32650. ))
  32651. characterMakers.push(() => makeCharacter(
  32652. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32653. {
  32654. side: {
  32655. height: math.unit(3.5, "meters"),
  32656. weight: math.unit(16000, "lb"),
  32657. name: "Side",
  32658. image: {
  32659. source: "./media/characters/dascalti/side.svg",
  32660. extra: 392/273,
  32661. bottom: 47/439
  32662. }
  32663. },
  32664. breath: {
  32665. height: math.unit(7.4, "feet"),
  32666. name: "Breath",
  32667. image: {
  32668. source: "./media/characters/dascalti/breath.svg"
  32669. }
  32670. },
  32671. fed: {
  32672. height: math.unit(3.6, "meters"),
  32673. weight: math.unit(16000, "lb"),
  32674. name: "Fed",
  32675. image: {
  32676. source: "./media/characters/dascalti/fed.svg",
  32677. extra: 1419/820,
  32678. bottom: 95/1514
  32679. }
  32680. },
  32681. },
  32682. [
  32683. {
  32684. name: "Normal",
  32685. height: math.unit(3.5, "meters"),
  32686. default: true
  32687. },
  32688. ]
  32689. ))
  32690. characterMakers.push(() => makeCharacter(
  32691. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32692. {
  32693. front: {
  32694. height: math.unit(3 + 5/12, "feet"),
  32695. name: "Front",
  32696. image: {
  32697. source: "./media/characters/mauve/front.svg",
  32698. extra: 1126/1033,
  32699. bottom: 65/1191
  32700. }
  32701. },
  32702. side: {
  32703. height: math.unit(3 + 5/12, "feet"),
  32704. name: "Side",
  32705. image: {
  32706. source: "./media/characters/mauve/side.svg",
  32707. extra: 1089/1001,
  32708. bottom: 29/1118
  32709. }
  32710. },
  32711. back: {
  32712. height: math.unit(3 + 5/12, "feet"),
  32713. name: "Back",
  32714. image: {
  32715. source: "./media/characters/mauve/back.svg",
  32716. extra: 1173/1053,
  32717. bottom: 109/1282
  32718. }
  32719. },
  32720. },
  32721. [
  32722. {
  32723. name: "Normal",
  32724. height: math.unit(3 + 5/12, "feet"),
  32725. default: true
  32726. },
  32727. ]
  32728. ))
  32729. characterMakers.push(() => makeCharacter(
  32730. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32731. {
  32732. front: {
  32733. height: math.unit(6 + 3/12, "feet"),
  32734. weight: math.unit(430, "lb"),
  32735. name: "Front",
  32736. image: {
  32737. source: "./media/characters/carlos/front.svg",
  32738. extra: 1964/1913,
  32739. bottom: 70/2034
  32740. }
  32741. },
  32742. },
  32743. [
  32744. {
  32745. name: "Normal",
  32746. height: math.unit(6 + 3/12, "feet"),
  32747. default: true
  32748. },
  32749. ]
  32750. ))
  32751. characterMakers.push(() => makeCharacter(
  32752. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32753. {
  32754. back: {
  32755. height: math.unit(5 + 10/12, "feet"),
  32756. weight: math.unit(200, "lb"),
  32757. name: "Back",
  32758. image: {
  32759. source: "./media/characters/jax/back.svg",
  32760. extra: 764/739,
  32761. bottom: 25/789
  32762. }
  32763. },
  32764. },
  32765. [
  32766. {
  32767. name: "Normal",
  32768. height: math.unit(5 + 10/12, "feet"),
  32769. default: true
  32770. },
  32771. ]
  32772. ))
  32773. characterMakers.push(() => makeCharacter(
  32774. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32775. {
  32776. front: {
  32777. height: math.unit(8, "feet"),
  32778. weight: math.unit(250, "lb"),
  32779. name: "Front",
  32780. image: {
  32781. source: "./media/characters/eikthynir/front.svg",
  32782. extra: 1332/1166,
  32783. bottom: 82/1414
  32784. }
  32785. },
  32786. back: {
  32787. height: math.unit(8, "feet"),
  32788. weight: math.unit(250, "lb"),
  32789. name: "Back",
  32790. image: {
  32791. source: "./media/characters/eikthynir/back.svg",
  32792. extra: 1342/1190,
  32793. bottom: 19/1361
  32794. }
  32795. },
  32796. dick: {
  32797. height: math.unit(2.35, "feet"),
  32798. name: "Dick",
  32799. image: {
  32800. source: "./media/characters/eikthynir/dick.svg"
  32801. }
  32802. },
  32803. },
  32804. [
  32805. {
  32806. name: "Normal",
  32807. height: math.unit(8, "feet"),
  32808. default: true
  32809. },
  32810. ]
  32811. ))
  32812. characterMakers.push(() => makeCharacter(
  32813. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32814. {
  32815. front: {
  32816. height: math.unit(99, "meters"),
  32817. weight: math.unit(13000, "tons"),
  32818. name: "Front",
  32819. image: {
  32820. source: "./media/characters/zlmos/front.svg",
  32821. extra: 2202/1992,
  32822. bottom: 315/2517
  32823. }
  32824. },
  32825. },
  32826. [
  32827. {
  32828. name: "Macro",
  32829. height: math.unit(99, "meters"),
  32830. default: true
  32831. },
  32832. ]
  32833. ))
  32834. characterMakers.push(() => makeCharacter(
  32835. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32836. {
  32837. front: {
  32838. height: math.unit(6 + 5/12, "feet"),
  32839. name: "Front",
  32840. image: {
  32841. source: "./media/characters/purri/front.svg",
  32842. extra: 1698/1610,
  32843. bottom: 32/1730
  32844. }
  32845. },
  32846. frontAlt: {
  32847. height: math.unit(6 + 5/12, "feet"),
  32848. name: "Front (Alt)",
  32849. image: {
  32850. source: "./media/characters/purri/front-alt.svg",
  32851. extra: 450/420,
  32852. bottom: 26/476
  32853. }
  32854. },
  32855. boots: {
  32856. height: math.unit(5.5, "feet"),
  32857. name: "Boots",
  32858. image: {
  32859. source: "./media/characters/purri/boots.svg",
  32860. extra: 905/853,
  32861. bottom: 18/923
  32862. }
  32863. },
  32864. lying: {
  32865. height: math.unit(2, "feet"),
  32866. name: "Lying",
  32867. image: {
  32868. source: "./media/characters/purri/lying.svg",
  32869. extra: 940/843,
  32870. bottom: 146/1086
  32871. }
  32872. },
  32873. devious: {
  32874. height: math.unit(1.77, "feet"),
  32875. name: "Devious",
  32876. image: {
  32877. source: "./media/characters/purri/devious.svg",
  32878. extra: 1440/1155,
  32879. bottom: 147/1587
  32880. }
  32881. },
  32882. bean: {
  32883. height: math.unit(1.94, "feet"),
  32884. name: "Bean",
  32885. image: {
  32886. source: "./media/characters/purri/bean.svg"
  32887. }
  32888. },
  32889. },
  32890. [
  32891. {
  32892. name: "Micro",
  32893. height: math.unit(1, "mm")
  32894. },
  32895. {
  32896. name: "Normal",
  32897. height: math.unit(6 + 5/12, "feet"),
  32898. default: true
  32899. },
  32900. {
  32901. name: "Macro :3c",
  32902. height: math.unit(2, "miles")
  32903. },
  32904. ]
  32905. ))
  32906. characterMakers.push(() => makeCharacter(
  32907. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32908. {
  32909. front: {
  32910. height: math.unit(6 + 2/12, "feet"),
  32911. weight: math.unit(250, "lb"),
  32912. name: "Front",
  32913. image: {
  32914. source: "./media/characters/moonlight/front.svg",
  32915. extra: 1044/908,
  32916. bottom: 56/1100
  32917. }
  32918. },
  32919. feral: {
  32920. height: math.unit(3 + 1/12, "feet"),
  32921. weight: math.unit(50, "kg"),
  32922. name: "Feral",
  32923. image: {
  32924. source: "./media/characters/moonlight/feral.svg",
  32925. extra: 3705/2791,
  32926. bottom: 145/3850
  32927. }
  32928. },
  32929. paw: {
  32930. height: math.unit(1, "feet"),
  32931. name: "Paw",
  32932. image: {
  32933. source: "./media/characters/moonlight/paw.svg"
  32934. }
  32935. },
  32936. paws: {
  32937. height: math.unit(0.98, "feet"),
  32938. name: "Paws",
  32939. image: {
  32940. source: "./media/characters/moonlight/paws.svg",
  32941. extra: 939/939,
  32942. bottom: 50/989
  32943. }
  32944. },
  32945. mouth: {
  32946. height: math.unit(0.48, "feet"),
  32947. name: "Mouth",
  32948. image: {
  32949. source: "./media/characters/moonlight/mouth.svg"
  32950. }
  32951. },
  32952. dick: {
  32953. height: math.unit(1.46, "feet"),
  32954. name: "Dick",
  32955. image: {
  32956. source: "./media/characters/moonlight/dick.svg"
  32957. }
  32958. },
  32959. },
  32960. [
  32961. {
  32962. name: "Normal",
  32963. height: math.unit(6 + 2/12, "feet"),
  32964. default: true
  32965. },
  32966. {
  32967. name: "Macro",
  32968. height: math.unit(300, "feet")
  32969. },
  32970. {
  32971. name: "Macro+",
  32972. height: math.unit(1, "mile")
  32973. },
  32974. {
  32975. name: "Mt. Moon",
  32976. height: math.unit(5, "miles")
  32977. },
  32978. {
  32979. name: "Megamacro",
  32980. height: math.unit(15, "miles")
  32981. },
  32982. ]
  32983. ))
  32984. characterMakers.push(() => makeCharacter(
  32985. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32986. {
  32987. back: {
  32988. height: math.unit(6, "feet"),
  32989. weight: math.unit(150, "lb"),
  32990. name: "Back",
  32991. image: {
  32992. source: "./media/characters/sylen/back.svg",
  32993. extra: 1335/1273,
  32994. bottom: 107/1442
  32995. }
  32996. },
  32997. },
  32998. [
  32999. {
  33000. name: "Normal",
  33001. height: math.unit(5 + 5/12, "feet")
  33002. },
  33003. {
  33004. name: "Megamacro",
  33005. height: math.unit(3, "miles"),
  33006. default: true
  33007. },
  33008. ]
  33009. ))
  33010. characterMakers.push(() => makeCharacter(
  33011. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33012. {
  33013. front: {
  33014. height: math.unit(6, "feet"),
  33015. weight: math.unit(190, "lb"),
  33016. name: "Front",
  33017. image: {
  33018. source: "./media/characters/huttser/front.svg",
  33019. extra: 1152/1058,
  33020. bottom: 23/1175
  33021. }
  33022. },
  33023. side: {
  33024. height: math.unit(6, "feet"),
  33025. weight: math.unit(190, "lb"),
  33026. name: "Side",
  33027. image: {
  33028. source: "./media/characters/huttser/side.svg",
  33029. extra: 1174/1065,
  33030. bottom: 18/1192
  33031. }
  33032. },
  33033. back: {
  33034. height: math.unit(6, "feet"),
  33035. weight: math.unit(190, "lb"),
  33036. name: "Back",
  33037. image: {
  33038. source: "./media/characters/huttser/back.svg",
  33039. extra: 1158/1056,
  33040. bottom: 12/1170
  33041. }
  33042. },
  33043. },
  33044. [
  33045. ]
  33046. ))
  33047. characterMakers.push(() => makeCharacter(
  33048. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33049. {
  33050. side: {
  33051. height: math.unit(12 + 9/12, "feet"),
  33052. weight: math.unit(15000, "lb"),
  33053. name: "Side",
  33054. image: {
  33055. source: "./media/characters/faan/side.svg",
  33056. extra: 2747/2697,
  33057. bottom: 0/2747
  33058. }
  33059. },
  33060. front: {
  33061. height: math.unit(12 + 9/12, "feet"),
  33062. weight: math.unit(15000, "lb"),
  33063. name: "Front",
  33064. image: {
  33065. source: "./media/characters/faan/front.svg",
  33066. extra: 607/571,
  33067. bottom: 24/631
  33068. }
  33069. },
  33070. head: {
  33071. height: math.unit(2.85, "feet"),
  33072. name: "Head",
  33073. image: {
  33074. source: "./media/characters/faan/head.svg"
  33075. }
  33076. },
  33077. headAlt: {
  33078. height: math.unit(3.13, "feet"),
  33079. name: "Head-alt",
  33080. image: {
  33081. source: "./media/characters/faan/head-alt.svg"
  33082. }
  33083. },
  33084. },
  33085. [
  33086. {
  33087. name: "Normal",
  33088. height: math.unit(12 + 9/12, "feet"),
  33089. default: true
  33090. },
  33091. ]
  33092. ))
  33093. characterMakers.push(() => makeCharacter(
  33094. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33095. {
  33096. front: {
  33097. height: math.unit(6, "feet"),
  33098. weight: math.unit(300, "lb"),
  33099. name: "Front",
  33100. image: {
  33101. source: "./media/characters/tanio/front.svg",
  33102. extra: 711/673,
  33103. bottom: 25/736
  33104. }
  33105. },
  33106. },
  33107. [
  33108. {
  33109. name: "Normal",
  33110. height: math.unit(6, "feet"),
  33111. default: true
  33112. },
  33113. ]
  33114. ))
  33115. characterMakers.push(() => makeCharacter(
  33116. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33117. {
  33118. front: {
  33119. height: math.unit(3, "inches"),
  33120. name: "Front",
  33121. image: {
  33122. source: "./media/characters/noboru/front.svg",
  33123. extra: 1039/932,
  33124. bottom: 18/1057
  33125. }
  33126. },
  33127. },
  33128. [
  33129. {
  33130. name: "Micro",
  33131. height: math.unit(3, "inches"),
  33132. default: true
  33133. },
  33134. ]
  33135. ))
  33136. characterMakers.push(() => makeCharacter(
  33137. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33138. {
  33139. front: {
  33140. height: math.unit(1.85, "meters"),
  33141. weight: math.unit(80, "kg"),
  33142. name: "Front",
  33143. image: {
  33144. source: "./media/characters/daniel-barrett/front.svg",
  33145. extra: 355/337,
  33146. bottom: 9/364
  33147. }
  33148. },
  33149. },
  33150. [
  33151. {
  33152. name: "Pico",
  33153. height: math.unit(0.0433, "mm")
  33154. },
  33155. {
  33156. name: "Nano",
  33157. height: math.unit(1.5, "mm")
  33158. },
  33159. {
  33160. name: "Micro",
  33161. height: math.unit(5.3, "cm"),
  33162. default: true
  33163. },
  33164. {
  33165. name: "Normal",
  33166. height: math.unit(1.85, "meters")
  33167. },
  33168. {
  33169. name: "Macro",
  33170. height: math.unit(64.7, "meters")
  33171. },
  33172. {
  33173. name: "Megamacro",
  33174. height: math.unit(2.26, "km")
  33175. },
  33176. {
  33177. name: "Gigamacro",
  33178. height: math.unit(79, "km")
  33179. },
  33180. {
  33181. name: "Teramacro",
  33182. height: math.unit(2765, "km")
  33183. },
  33184. {
  33185. name: "Petamacro",
  33186. height: math.unit(96678, "km")
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(30, "meters"),
  33195. weight: math.unit(400, "tons"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/zeel/front.svg",
  33199. extra: 2599/2599,
  33200. bottom: 226/2825
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "Macro",
  33207. height: math.unit(30, "meters"),
  33208. default: true
  33209. },
  33210. ]
  33211. ))
  33212. characterMakers.push(() => makeCharacter(
  33213. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33214. {
  33215. front: {
  33216. height: math.unit(6 + 7/12, "feet"),
  33217. weight: math.unit(210, "lb"),
  33218. name: "Front",
  33219. image: {
  33220. source: "./media/characters/tarn/front.svg",
  33221. extra: 3517/3220,
  33222. bottom: 91/3608
  33223. }
  33224. },
  33225. back: {
  33226. height: math.unit(6 + 7/12, "feet"),
  33227. weight: math.unit(210, "lb"),
  33228. name: "Back",
  33229. image: {
  33230. source: "./media/characters/tarn/back.svg",
  33231. extra: 3566/3241,
  33232. bottom: 34/3600
  33233. }
  33234. },
  33235. dick: {
  33236. height: math.unit(1.65, "feet"),
  33237. name: "Dick",
  33238. image: {
  33239. source: "./media/characters/tarn/dick.svg"
  33240. }
  33241. },
  33242. paw: {
  33243. height: math.unit(1.80, "feet"),
  33244. name: "Paw",
  33245. image: {
  33246. source: "./media/characters/tarn/paw.svg"
  33247. }
  33248. },
  33249. tongue: {
  33250. height: math.unit(0.97, "feet"),
  33251. name: "Tongue",
  33252. image: {
  33253. source: "./media/characters/tarn/tongue.svg"
  33254. }
  33255. },
  33256. },
  33257. [
  33258. {
  33259. name: "Micro",
  33260. height: math.unit(4, "inches")
  33261. },
  33262. {
  33263. name: "Normal",
  33264. height: math.unit(6 + 7/12, "feet"),
  33265. default: true
  33266. },
  33267. {
  33268. name: "Macro",
  33269. height: math.unit(300, "feet")
  33270. },
  33271. ]
  33272. ))
  33273. characterMakers.push(() => makeCharacter(
  33274. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33275. {
  33276. front: {
  33277. height: math.unit(5 + 7/12, "feet"),
  33278. weight: math.unit(80, "kg"),
  33279. name: "Front",
  33280. image: {
  33281. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33282. extra: 3023/2865,
  33283. bottom: 33/3056
  33284. }
  33285. },
  33286. back: {
  33287. height: math.unit(5 + 7/12, "feet"),
  33288. weight: math.unit(80, "kg"),
  33289. name: "Back",
  33290. image: {
  33291. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33292. extra: 3020/2886,
  33293. bottom: 30/3050
  33294. }
  33295. },
  33296. dick: {
  33297. height: math.unit(0.98, "feet"),
  33298. name: "Dick",
  33299. image: {
  33300. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33301. }
  33302. },
  33303. anatomy: {
  33304. height: math.unit(2.86, "feet"),
  33305. name: "Anatomy",
  33306. image: {
  33307. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33308. }
  33309. },
  33310. },
  33311. [
  33312. {
  33313. name: "Really Small",
  33314. height: math.unit(2, "inches")
  33315. },
  33316. {
  33317. name: "Micro",
  33318. height: math.unit(5.583, "inches")
  33319. },
  33320. {
  33321. name: "Normal",
  33322. height: math.unit(5 + 7/12, "feet"),
  33323. default: true
  33324. },
  33325. {
  33326. name: "Macro",
  33327. height: math.unit(67, "feet")
  33328. },
  33329. {
  33330. name: "Megamacro",
  33331. height: math.unit(134, "feet")
  33332. },
  33333. ]
  33334. ))
  33335. characterMakers.push(() => makeCharacter(
  33336. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33337. {
  33338. front: {
  33339. height: math.unit(9, "feet"),
  33340. weight: math.unit(120, "lb"),
  33341. name: "Front",
  33342. image: {
  33343. source: "./media/characters/sally/front.svg",
  33344. extra: 1506/1349,
  33345. bottom: 66/1572
  33346. }
  33347. },
  33348. },
  33349. [
  33350. {
  33351. name: "Normal",
  33352. height: math.unit(9, "feet"),
  33353. default: true
  33354. },
  33355. ]
  33356. ))
  33357. characterMakers.push(() => makeCharacter(
  33358. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33359. {
  33360. front: {
  33361. height: math.unit(8, "feet"),
  33362. weight: math.unit(900, "lb"),
  33363. name: "Front",
  33364. image: {
  33365. source: "./media/characters/owen/front.svg",
  33366. extra: 1761/1657,
  33367. bottom: 74/1835
  33368. }
  33369. },
  33370. side: {
  33371. height: math.unit(8, "feet"),
  33372. weight: math.unit(900, "lb"),
  33373. name: "Side",
  33374. image: {
  33375. source: "./media/characters/owen/side.svg",
  33376. extra: 1797/1734,
  33377. bottom: 30/1827
  33378. }
  33379. },
  33380. back: {
  33381. height: math.unit(8, "feet"),
  33382. weight: math.unit(900, "lb"),
  33383. name: "Back",
  33384. image: {
  33385. source: "./media/characters/owen/back.svg",
  33386. extra: 1796/1706,
  33387. bottom: 59/1855
  33388. }
  33389. },
  33390. maw: {
  33391. height: math.unit(1.76, "feet"),
  33392. name: "Maw",
  33393. image: {
  33394. source: "./media/characters/owen/maw.svg"
  33395. }
  33396. },
  33397. },
  33398. [
  33399. {
  33400. name: "Normal",
  33401. height: math.unit(8, "feet"),
  33402. default: true
  33403. },
  33404. ]
  33405. ))
  33406. characterMakers.push(() => makeCharacter(
  33407. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33408. {
  33409. front: {
  33410. height: math.unit(4, "feet"),
  33411. weight: math.unit(400, "lb"),
  33412. name: "Front",
  33413. image: {
  33414. source: "./media/characters/ryth/front.svg",
  33415. extra: 1920/1748,
  33416. bottom: 42/1962
  33417. }
  33418. },
  33419. back: {
  33420. height: math.unit(4, "feet"),
  33421. weight: math.unit(400, "lb"),
  33422. name: "Back",
  33423. image: {
  33424. source: "./media/characters/ryth/back.svg",
  33425. extra: 1897/1690,
  33426. bottom: 89/1986
  33427. }
  33428. },
  33429. mouth: {
  33430. height: math.unit(1.39, "feet"),
  33431. name: "Mouth",
  33432. image: {
  33433. source: "./media/characters/ryth/mouth.svg"
  33434. }
  33435. },
  33436. tailmaw: {
  33437. height: math.unit(1.23, "feet"),
  33438. name: "Tailmaw",
  33439. image: {
  33440. source: "./media/characters/ryth/tailmaw.svg"
  33441. }
  33442. },
  33443. goia: {
  33444. height: math.unit(4, "meters"),
  33445. weight: math.unit(10800, "lb"),
  33446. name: "Goia",
  33447. image: {
  33448. source: "./media/characters/ryth/goia.svg",
  33449. extra: 745/640,
  33450. bottom: 107/852
  33451. }
  33452. },
  33453. goiaFront: {
  33454. height: math.unit(4, "meters"),
  33455. weight: math.unit(10800, "lb"),
  33456. name: "Goia (Front)",
  33457. image: {
  33458. source: "./media/characters/ryth/goia-front.svg",
  33459. extra: 750/586,
  33460. bottom: 114/864
  33461. }
  33462. },
  33463. goiaMaw: {
  33464. height: math.unit(5.55, "feet"),
  33465. name: "Goia Maw",
  33466. image: {
  33467. source: "./media/characters/ryth/goia-maw.svg"
  33468. }
  33469. },
  33470. goiaForepaw: {
  33471. height: math.unit(3.5, "feet"),
  33472. name: "Goia Forepaw",
  33473. image: {
  33474. source: "./media/characters/ryth/goia-forepaw.svg"
  33475. }
  33476. },
  33477. goiaHindpaw: {
  33478. height: math.unit(5.55, "feet"),
  33479. name: "Goia Hindpaw",
  33480. image: {
  33481. source: "./media/characters/ryth/goia-hindpaw.svg"
  33482. }
  33483. },
  33484. },
  33485. [
  33486. {
  33487. name: "Normal",
  33488. height: math.unit(4, "feet"),
  33489. default: true
  33490. },
  33491. ]
  33492. ))
  33493. characterMakers.push(() => makeCharacter(
  33494. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33495. {
  33496. front: {
  33497. height: math.unit(7, "feet"),
  33498. weight: math.unit(180, "lb"),
  33499. name: "Front",
  33500. image: {
  33501. source: "./media/characters/necrolance/front.svg",
  33502. extra: 1062/947,
  33503. bottom: 41/1103
  33504. }
  33505. },
  33506. back: {
  33507. height: math.unit(7, "feet"),
  33508. weight: math.unit(180, "lb"),
  33509. name: "Back",
  33510. image: {
  33511. source: "./media/characters/necrolance/back.svg",
  33512. extra: 1045/984,
  33513. bottom: 14/1059
  33514. }
  33515. },
  33516. wing: {
  33517. height: math.unit(2.67, "feet"),
  33518. name: "Wing",
  33519. image: {
  33520. source: "./media/characters/necrolance/wing.svg"
  33521. }
  33522. },
  33523. },
  33524. [
  33525. {
  33526. name: "Normal",
  33527. height: math.unit(7, "feet"),
  33528. default: true
  33529. },
  33530. ]
  33531. ))
  33532. characterMakers.push(() => makeCharacter(
  33533. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33534. {
  33535. front: {
  33536. height: math.unit(76, "meters"),
  33537. weight: math.unit(30000, "tons"),
  33538. name: "Front",
  33539. image: {
  33540. source: "./media/characters/tyler/front.svg",
  33541. extra: 1640/1640,
  33542. bottom: 114/1754
  33543. }
  33544. },
  33545. },
  33546. [
  33547. {
  33548. name: "Macro",
  33549. height: math.unit(76, "meters"),
  33550. default: true
  33551. },
  33552. ]
  33553. ))
  33554. characterMakers.push(() => makeCharacter(
  33555. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33556. {
  33557. front: {
  33558. height: math.unit(4 + 11/12, "feet"),
  33559. weight: math.unit(132, "lb"),
  33560. name: "Front",
  33561. image: {
  33562. source: "./media/characters/icey/front.svg",
  33563. extra: 2750/2550,
  33564. bottom: 33/2783
  33565. }
  33566. },
  33567. back: {
  33568. height: math.unit(4 + 11/12, "feet"),
  33569. weight: math.unit(132, "lb"),
  33570. name: "Back",
  33571. image: {
  33572. source: "./media/characters/icey/back.svg",
  33573. extra: 2624/2481,
  33574. bottom: 35/2659
  33575. }
  33576. },
  33577. },
  33578. [
  33579. {
  33580. name: "Normal",
  33581. height: math.unit(4 + 11/12, "feet"),
  33582. default: true
  33583. },
  33584. ]
  33585. ))
  33586. characterMakers.push(() => makeCharacter(
  33587. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33588. {
  33589. front: {
  33590. height: math.unit(100, "feet"),
  33591. weight: math.unit(0, "lb"),
  33592. name: "Front",
  33593. image: {
  33594. source: "./media/characters/smile/front.svg",
  33595. extra: 2983/2912,
  33596. bottom: 162/3145
  33597. }
  33598. },
  33599. back: {
  33600. height: math.unit(100, "feet"),
  33601. weight: math.unit(0, "lb"),
  33602. name: "Back",
  33603. image: {
  33604. source: "./media/characters/smile/back.svg",
  33605. extra: 3143/3031,
  33606. bottom: 91/3234
  33607. }
  33608. },
  33609. head: {
  33610. height: math.unit(26.3, "feet"),
  33611. weight: math.unit(0, "lb"),
  33612. name: "Head",
  33613. image: {
  33614. source: "./media/characters/smile/head.svg"
  33615. }
  33616. },
  33617. collar: {
  33618. height: math.unit(5.3, "feet"),
  33619. weight: math.unit(0, "lb"),
  33620. name: "Collar",
  33621. image: {
  33622. source: "./media/characters/smile/collar.svg"
  33623. }
  33624. },
  33625. },
  33626. [
  33627. {
  33628. name: "Macro",
  33629. height: math.unit(100, "feet"),
  33630. default: true
  33631. },
  33632. ]
  33633. ))
  33634. characterMakers.push(() => makeCharacter(
  33635. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33636. {
  33637. dragon: {
  33638. height: math.unit(26, "feet"),
  33639. weight: math.unit(36, "tons"),
  33640. name: "Dragon",
  33641. image: {
  33642. source: "./media/characters/arimphae/dragon.svg",
  33643. extra: 1574/983,
  33644. bottom: 357/1931
  33645. }
  33646. },
  33647. drake: {
  33648. height: math.unit(9, "feet"),
  33649. weight: math.unit(1.5, "tons"),
  33650. name: "Drake",
  33651. image: {
  33652. source: "./media/characters/arimphae/drake.svg",
  33653. extra: 1120/925,
  33654. bottom: 435/1555
  33655. }
  33656. },
  33657. },
  33658. [
  33659. {
  33660. name: "Small",
  33661. height: math.unit(26*5/9, "feet")
  33662. },
  33663. {
  33664. name: "Normal",
  33665. height: math.unit(26, "feet"),
  33666. default: true
  33667. },
  33668. ]
  33669. ))
  33670. characterMakers.push(() => makeCharacter(
  33671. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33672. {
  33673. front: {
  33674. height: math.unit(8 + 9/12, "feet"),
  33675. name: "Front",
  33676. image: {
  33677. source: "./media/characters/xander/front.svg",
  33678. extra: 1237/974,
  33679. bottom: 94/1331
  33680. }
  33681. },
  33682. },
  33683. [
  33684. {
  33685. name: "Normal",
  33686. height: math.unit(8 + 9/12, "feet"),
  33687. default: true
  33688. },
  33689. {
  33690. name: "Gaze Grabber",
  33691. height: math.unit(13 + 8/12, "feet")
  33692. },
  33693. {
  33694. name: "Jaw Dropper",
  33695. height: math.unit(27, "feet")
  33696. },
  33697. {
  33698. name: "Show Stopper",
  33699. height: math.unit(136, "feet")
  33700. },
  33701. {
  33702. name: "Superstar",
  33703. height: math.unit(1.9e6, "miles")
  33704. },
  33705. ]
  33706. ))
  33707. characterMakers.push(() => makeCharacter(
  33708. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33709. {
  33710. side: {
  33711. height: math.unit(2100, "feet"),
  33712. name: "Side",
  33713. image: {
  33714. source: "./media/characters/osiris/side.svg",
  33715. extra: 1105/939,
  33716. bottom: 167/1272
  33717. }
  33718. },
  33719. },
  33720. [
  33721. {
  33722. name: "Macro",
  33723. height: math.unit(2100, "feet"),
  33724. default: true
  33725. },
  33726. ]
  33727. ))
  33728. characterMakers.push(() => makeCharacter(
  33729. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33730. {
  33731. front: {
  33732. height: math.unit(6 + 8/12, "feet"),
  33733. weight: math.unit(225, "lb"),
  33734. name: "Front",
  33735. image: {
  33736. source: "./media/characters/rhys-londe/front.svg",
  33737. extra: 2258/2141,
  33738. bottom: 188/2446
  33739. }
  33740. },
  33741. back: {
  33742. height: math.unit(6 + 8/12, "feet"),
  33743. weight: math.unit(225, "lb"),
  33744. name: "Back",
  33745. image: {
  33746. source: "./media/characters/rhys-londe/back.svg",
  33747. extra: 2237/2137,
  33748. bottom: 63/2300
  33749. }
  33750. },
  33751. frontNsfw: {
  33752. height: math.unit(6 + 8/12, "feet"),
  33753. weight: math.unit(225, "lb"),
  33754. name: "Front (NSFW)",
  33755. image: {
  33756. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33757. extra: 2258/2141,
  33758. bottom: 188/2446
  33759. }
  33760. },
  33761. backNsfw: {
  33762. height: math.unit(6 + 8/12, "feet"),
  33763. weight: math.unit(225, "lb"),
  33764. name: "Back (NSFW)",
  33765. image: {
  33766. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33767. extra: 2237/2137,
  33768. bottom: 63/2300
  33769. }
  33770. },
  33771. dick: {
  33772. height: math.unit(30, "inches"),
  33773. name: "Dick",
  33774. image: {
  33775. source: "./media/characters/rhys-londe/dick.svg"
  33776. }
  33777. },
  33778. maw: {
  33779. height: math.unit(1.6, "feet"),
  33780. name: "Maw",
  33781. image: {
  33782. source: "./media/characters/rhys-londe/maw.svg"
  33783. }
  33784. },
  33785. },
  33786. [
  33787. {
  33788. name: "Normal",
  33789. height: math.unit(6 + 8/12, "feet"),
  33790. default: true
  33791. },
  33792. ]
  33793. ))
  33794. characterMakers.push(() => makeCharacter(
  33795. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33796. {
  33797. front: {
  33798. height: math.unit(3 + 10/12, "feet"),
  33799. weight: math.unit(90, "lb"),
  33800. name: "Front",
  33801. image: {
  33802. source: "./media/characters/taivas-ensim/front.svg",
  33803. extra: 1327/1216,
  33804. bottom: 96/1423
  33805. }
  33806. },
  33807. back: {
  33808. height: math.unit(3 + 10/12, "feet"),
  33809. weight: math.unit(90, "lb"),
  33810. name: "Back",
  33811. image: {
  33812. source: "./media/characters/taivas-ensim/back.svg",
  33813. extra: 1355/1247,
  33814. bottom: 11/1366
  33815. }
  33816. },
  33817. frontNsfw: {
  33818. height: math.unit(3 + 10/12, "feet"),
  33819. weight: math.unit(90, "lb"),
  33820. name: "Front (NSFW)",
  33821. image: {
  33822. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33823. extra: 1327/1216,
  33824. bottom: 96/1423
  33825. }
  33826. },
  33827. backNsfw: {
  33828. height: math.unit(3 + 10/12, "feet"),
  33829. weight: math.unit(90, "lb"),
  33830. name: "Back (NSFW)",
  33831. image: {
  33832. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33833. extra: 1355/1247,
  33834. bottom: 11/1366
  33835. }
  33836. },
  33837. },
  33838. [
  33839. {
  33840. name: "Normal",
  33841. height: math.unit(3 + 10/12, "feet"),
  33842. default: true
  33843. },
  33844. ]
  33845. ))
  33846. characterMakers.push(() => makeCharacter(
  33847. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33848. {
  33849. front: {
  33850. height: math.unit(9 + 6/12, "feet"),
  33851. weight: math.unit(940, "lb"),
  33852. name: "Front",
  33853. image: {
  33854. source: "./media/characters/byliss/front.svg",
  33855. extra: 1327/1290,
  33856. bottom: 82/1409
  33857. }
  33858. },
  33859. back: {
  33860. height: math.unit(9 + 6/12, "feet"),
  33861. weight: math.unit(940, "lb"),
  33862. name: "Back",
  33863. image: {
  33864. source: "./media/characters/byliss/back.svg",
  33865. extra: 1376/1349,
  33866. bottom: 9/1385
  33867. }
  33868. },
  33869. frontNsfw: {
  33870. height: math.unit(9 + 6/12, "feet"),
  33871. weight: math.unit(940, "lb"),
  33872. name: "Front (NSFW)",
  33873. image: {
  33874. source: "./media/characters/byliss/front-nsfw.svg",
  33875. extra: 1327/1290,
  33876. bottom: 82/1409
  33877. }
  33878. },
  33879. backNsfw: {
  33880. height: math.unit(9 + 6/12, "feet"),
  33881. weight: math.unit(940, "lb"),
  33882. name: "Back (NSFW)",
  33883. image: {
  33884. source: "./media/characters/byliss/back-nsfw.svg",
  33885. extra: 1376/1349,
  33886. bottom: 9/1385
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(9 + 6/12, "feet"),
  33894. default: true
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33900. {
  33901. front: {
  33902. height: math.unit(5 + 2/12, "feet"),
  33903. weight: math.unit(200, "lb"),
  33904. name: "Front",
  33905. image: {
  33906. source: "./media/characters/noraly/front.svg",
  33907. extra: 4985/4773,
  33908. bottom: 150/5135
  33909. }
  33910. },
  33911. full: {
  33912. height: math.unit(5 + 2/12, "feet"),
  33913. weight: math.unit(164, "lb"),
  33914. name: "Full",
  33915. image: {
  33916. source: "./media/characters/noraly/full.svg",
  33917. extra: 1114/1059,
  33918. bottom: 35/1149
  33919. }
  33920. },
  33921. fuller: {
  33922. height: math.unit(5 + 2/12, "feet"),
  33923. weight: math.unit(230, "lb"),
  33924. name: "Fuller",
  33925. image: {
  33926. source: "./media/characters/noraly/fuller.svg",
  33927. extra: 1114/1059,
  33928. bottom: 35/1149
  33929. }
  33930. },
  33931. fullest: {
  33932. height: math.unit(5 + 2/12, "feet"),
  33933. weight: math.unit(300, "lb"),
  33934. name: "Fullest",
  33935. image: {
  33936. source: "./media/characters/noraly/fullest.svg",
  33937. extra: 1114/1059,
  33938. bottom: 35/1149
  33939. }
  33940. },
  33941. },
  33942. [
  33943. {
  33944. name: "Normal",
  33945. height: math.unit(5 + 2/12, "feet"),
  33946. default: true
  33947. },
  33948. ]
  33949. ))
  33950. characterMakers.push(() => makeCharacter(
  33951. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33952. {
  33953. front: {
  33954. height: math.unit(5 + 2/12, "feet"),
  33955. weight: math.unit(210, "lb"),
  33956. name: "Front",
  33957. image: {
  33958. source: "./media/characters/pera/front.svg",
  33959. extra: 1560/1531,
  33960. bottom: 165/1725
  33961. }
  33962. },
  33963. back: {
  33964. height: math.unit(5 + 2/12, "feet"),
  33965. weight: math.unit(210, "lb"),
  33966. name: "Back",
  33967. image: {
  33968. source: "./media/characters/pera/back.svg",
  33969. extra: 1523/1493,
  33970. bottom: 152/1675
  33971. }
  33972. },
  33973. dick: {
  33974. height: math.unit(2.4, "feet"),
  33975. name: "Dick",
  33976. image: {
  33977. source: "./media/characters/pera/dick.svg"
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "Normal",
  33984. height: math.unit(5 + 2/12, "feet"),
  33985. default: true
  33986. },
  33987. ]
  33988. ))
  33989. characterMakers.push(() => makeCharacter(
  33990. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33991. {
  33992. front: {
  33993. height: math.unit(12, "feet"),
  33994. weight: math.unit(3200, "lb"),
  33995. name: "Front",
  33996. image: {
  33997. source: "./media/characters/julian/front.svg",
  33998. extra: 2962/2701,
  33999. bottom: 184/3146
  34000. }
  34001. },
  34002. maw: {
  34003. height: math.unit(5.35, "feet"),
  34004. name: "Maw",
  34005. image: {
  34006. source: "./media/characters/julian/maw.svg"
  34007. }
  34008. },
  34009. paw: {
  34010. height: math.unit(3.07, "feet"),
  34011. name: "Paw",
  34012. image: {
  34013. source: "./media/characters/julian/paw.svg"
  34014. }
  34015. },
  34016. },
  34017. [
  34018. {
  34019. name: "Default",
  34020. height: math.unit(12, "feet"),
  34021. default: true
  34022. },
  34023. {
  34024. name: "Big",
  34025. height: math.unit(50, "feet")
  34026. },
  34027. {
  34028. name: "Really Big",
  34029. height: math.unit(1, "mile")
  34030. },
  34031. {
  34032. name: "Extremely Big",
  34033. height: math.unit(100, "miles")
  34034. },
  34035. {
  34036. name: "Planet Hugger",
  34037. height: math.unit(200, "megameters")
  34038. },
  34039. {
  34040. name: "Unreasonably Big",
  34041. height: math.unit(1e300, "meters")
  34042. },
  34043. ]
  34044. ))
  34045. characterMakers.push(() => makeCharacter(
  34046. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34047. {
  34048. solgooleo: {
  34049. height: math.unit(4, "meters"),
  34050. weight: math.unit(6000*1.5, "kg"),
  34051. volume: math.unit(6000, "liters"),
  34052. name: "Solgooleo",
  34053. image: {
  34054. source: "./media/characters/pi/solgooleo.svg",
  34055. extra: 388/331,
  34056. bottom: 29/417
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Normal",
  34063. height: math.unit(4, "meters"),
  34064. default: true
  34065. },
  34066. ]
  34067. ))
  34068. characterMakers.push(() => makeCharacter(
  34069. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34070. {
  34071. front: {
  34072. height: math.unit(8, "feet"),
  34073. weight: math.unit(4, "tons"),
  34074. name: "Front",
  34075. image: {
  34076. source: "./media/characters/shaun/front.svg",
  34077. extra: 503/495,
  34078. bottom: 20/523
  34079. }
  34080. },
  34081. back: {
  34082. height: math.unit(8, "feet"),
  34083. weight: math.unit(4, "tons"),
  34084. name: "Back",
  34085. image: {
  34086. source: "./media/characters/shaun/back.svg",
  34087. extra: 487/480,
  34088. bottom: 20/507
  34089. }
  34090. },
  34091. },
  34092. [
  34093. {
  34094. name: "Lorg",
  34095. height: math.unit(8, "feet"),
  34096. default: true
  34097. },
  34098. ]
  34099. ))
  34100. characterMakers.push(() => makeCharacter(
  34101. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34102. {
  34103. frontAnthro: {
  34104. height: math.unit(7, "feet"),
  34105. name: "Front",
  34106. image: {
  34107. source: "./media/characters/sini/front-anthro.svg",
  34108. extra: 726/678,
  34109. bottom: 35/761
  34110. },
  34111. form: "anthro",
  34112. default: true
  34113. },
  34114. backAnthro: {
  34115. height: math.unit(7, "feet"),
  34116. name: "Back",
  34117. image: {
  34118. source: "./media/characters/sini/back-anthro.svg",
  34119. extra: 743/701,
  34120. bottom: 12/755
  34121. },
  34122. form: "anthro",
  34123. },
  34124. frontAnthroNsfw: {
  34125. height: math.unit(7, "feet"),
  34126. name: "Front (NSFW)",
  34127. image: {
  34128. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34129. extra: 726/678,
  34130. bottom: 35/761
  34131. },
  34132. form: "anthro"
  34133. },
  34134. backAnthroNsfw: {
  34135. height: math.unit(7, "feet"),
  34136. name: "Back (NSFW)",
  34137. image: {
  34138. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34139. extra: 743/701,
  34140. bottom: 12/755
  34141. },
  34142. form: "anthro",
  34143. },
  34144. mawAnthro: {
  34145. height: math.unit(2.14, "feet"),
  34146. name: "Maw",
  34147. image: {
  34148. source: "./media/characters/sini/maw-anthro.svg"
  34149. },
  34150. form: "anthro"
  34151. },
  34152. dick: {
  34153. height: math.unit(1.45, "feet"),
  34154. name: "Dick",
  34155. image: {
  34156. source: "./media/characters/sini/dick-anthro.svg"
  34157. },
  34158. form: "anthro"
  34159. },
  34160. feral: {
  34161. height: math.unit(16, "feet"),
  34162. name: "Feral",
  34163. image: {
  34164. source: "./media/characters/sini/feral.svg",
  34165. extra: 814/605,
  34166. bottom: 11/825
  34167. },
  34168. form: "feral",
  34169. default: true
  34170. },
  34171. feralNsfw: {
  34172. height: math.unit(16, "feet"),
  34173. name: "Feral (NSFW)",
  34174. image: {
  34175. source: "./media/characters/sini/feral-nsfw.svg",
  34176. extra: 814/605,
  34177. bottom: 11/825
  34178. },
  34179. form: "feral"
  34180. },
  34181. mawFeral: {
  34182. height: math.unit(5.66, "feet"),
  34183. name: "Maw",
  34184. image: {
  34185. source: "./media/characters/sini/maw-feral.svg"
  34186. },
  34187. form: "feral",
  34188. },
  34189. pawFeral: {
  34190. height: math.unit(5.17, "feet"),
  34191. name: "Paw",
  34192. image: {
  34193. source: "./media/characters/sini/paw-feral.svg"
  34194. },
  34195. form: "feral",
  34196. },
  34197. rumpFeral: {
  34198. height: math.unit(13.11, "feet"),
  34199. name: "Rump",
  34200. image: {
  34201. source: "./media/characters/sini/rump-feral.svg"
  34202. },
  34203. form: "feral",
  34204. },
  34205. dickFeral: {
  34206. height: math.unit(1, "feet"),
  34207. name: "Dick",
  34208. image: {
  34209. source: "./media/characters/sini/dick-feral.svg"
  34210. },
  34211. form: "feral",
  34212. },
  34213. eyeFeral: {
  34214. height: math.unit(1.23, "feet"),
  34215. name: "Eye",
  34216. image: {
  34217. source: "./media/characters/sini/eye-feral.svg"
  34218. },
  34219. form: "feral",
  34220. },
  34221. },
  34222. [
  34223. {
  34224. name: "Normal",
  34225. height: math.unit(7, "feet"),
  34226. default: true,
  34227. form: "anthro"
  34228. },
  34229. {
  34230. name: "Normal",
  34231. height: math.unit(16, "feet"),
  34232. default: true,
  34233. form: "feral"
  34234. },
  34235. ],
  34236. {
  34237. "anthro": {
  34238. name: "Anthro",
  34239. default: true
  34240. },
  34241. "feral": {
  34242. name: "Feral",
  34243. }
  34244. }
  34245. ))
  34246. characterMakers.push(() => makeCharacter(
  34247. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34248. {
  34249. side: {
  34250. height: math.unit(47.2, "meters"),
  34251. weight: math.unit(10000, "tons"),
  34252. name: "Side",
  34253. image: {
  34254. source: "./media/characters/raylldo/side.svg",
  34255. extra: 2363/642,
  34256. bottom: 221/2584
  34257. }
  34258. },
  34259. top: {
  34260. height: math.unit(240, "meters"),
  34261. weight: math.unit(10000, "tons"),
  34262. name: "Top",
  34263. image: {
  34264. source: "./media/characters/raylldo/top.svg"
  34265. }
  34266. },
  34267. bottom: {
  34268. height: math.unit(240, "meters"),
  34269. weight: math.unit(10000, "tons"),
  34270. name: "Bottom",
  34271. image: {
  34272. source: "./media/characters/raylldo/bottom.svg"
  34273. }
  34274. },
  34275. head: {
  34276. height: math.unit(38.6, "meters"),
  34277. name: "Head",
  34278. image: {
  34279. source: "./media/characters/raylldo/head.svg",
  34280. extra: 1335/1112,
  34281. bottom: 0/1335
  34282. }
  34283. },
  34284. maw: {
  34285. height: math.unit(16.37, "meters"),
  34286. name: "Maw",
  34287. image: {
  34288. source: "./media/characters/raylldo/maw.svg",
  34289. extra: 883/660,
  34290. bottom: 0/883
  34291. },
  34292. extraAttributes: {
  34293. preyCapacity: {
  34294. name: "Capacity",
  34295. power: 3,
  34296. type: "volume",
  34297. base: math.unit(1000, "people")
  34298. },
  34299. tongueSize: {
  34300. name: "Tongue Size",
  34301. power: 2,
  34302. type: "area",
  34303. base: math.unit(21, "m^2")
  34304. }
  34305. }
  34306. },
  34307. forepaw: {
  34308. height: math.unit(18, "meters"),
  34309. name: "Forepaw",
  34310. image: {
  34311. source: "./media/characters/raylldo/forepaw.svg"
  34312. }
  34313. },
  34314. hindpaw: {
  34315. height: math.unit(23, "meters"),
  34316. name: "Hindpaw",
  34317. image: {
  34318. source: "./media/characters/raylldo/hindpaw.svg"
  34319. }
  34320. },
  34321. genitals: {
  34322. height: math.unit(42, "meters"),
  34323. name: "Genitals",
  34324. image: {
  34325. source: "./media/characters/raylldo/genitals.svg"
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Normal",
  34332. height: math.unit(47.2, "meters"),
  34333. default: true
  34334. },
  34335. ]
  34336. ))
  34337. characterMakers.push(() => makeCharacter(
  34338. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34339. {
  34340. anthroFront: {
  34341. height: math.unit(9, "feet"),
  34342. weight: math.unit(600, "lb"),
  34343. name: "Anthro (Front)",
  34344. image: {
  34345. source: "./media/characters/glint/anthro-front.svg",
  34346. extra: 1097/1018,
  34347. bottom: 28/1125
  34348. }
  34349. },
  34350. anthroBack: {
  34351. height: math.unit(9, "feet"),
  34352. weight: math.unit(600, "lb"),
  34353. name: "Anthro (Back)",
  34354. image: {
  34355. source: "./media/characters/glint/anthro-back.svg",
  34356. extra: 1154/997,
  34357. bottom: 36/1190
  34358. }
  34359. },
  34360. feral: {
  34361. height: math.unit(11, "feet"),
  34362. weight: math.unit(50000, "lb"),
  34363. name: "Feral",
  34364. image: {
  34365. source: "./media/characters/glint/feral.svg",
  34366. extra: 3035/1585,
  34367. bottom: 1169/4204
  34368. }
  34369. },
  34370. dickAnthro: {
  34371. height: math.unit(0.7, "meters"),
  34372. name: "Dick (Anthro)",
  34373. image: {
  34374. source: "./media/characters/glint/dick-anthro.svg"
  34375. }
  34376. },
  34377. dickFeral: {
  34378. height: math.unit(2.65, "meters"),
  34379. name: "Dick (Feral)",
  34380. image: {
  34381. source: "./media/characters/glint/dick-feral.svg"
  34382. }
  34383. },
  34384. slitHidden: {
  34385. height: math.unit(5.85, "meters"),
  34386. name: "Slit (Hidden)",
  34387. image: {
  34388. source: "./media/characters/glint/slit-hidden.svg"
  34389. }
  34390. },
  34391. slitErect: {
  34392. height: math.unit(5.85, "meters"),
  34393. name: "Slit (Erect)",
  34394. image: {
  34395. source: "./media/characters/glint/slit-erect.svg"
  34396. }
  34397. },
  34398. mawAnthro: {
  34399. height: math.unit(0.63, "meters"),
  34400. name: "Maw (Anthro)",
  34401. image: {
  34402. source: "./media/characters/glint/maw.svg"
  34403. }
  34404. },
  34405. mawFeral: {
  34406. height: math.unit(2.89, "meters"),
  34407. name: "Maw (Feral)",
  34408. image: {
  34409. source: "./media/characters/glint/maw.svg"
  34410. }
  34411. },
  34412. },
  34413. [
  34414. {
  34415. name: "Normal",
  34416. height: math.unit(9, "feet"),
  34417. default: true
  34418. },
  34419. ]
  34420. ))
  34421. characterMakers.push(() => makeCharacter(
  34422. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34423. {
  34424. side: {
  34425. height: math.unit(15, "feet"),
  34426. weight: math.unit(5000, "kg"),
  34427. name: "Side",
  34428. image: {
  34429. source: "./media/characters/kairne/side.svg",
  34430. extra: 979/811,
  34431. bottom: 13/992
  34432. }
  34433. },
  34434. front: {
  34435. height: math.unit(15, "feet"),
  34436. weight: math.unit(5000, "kg"),
  34437. name: "Front",
  34438. image: {
  34439. source: "./media/characters/kairne/front.svg",
  34440. extra: 908/814,
  34441. bottom: 26/934
  34442. }
  34443. },
  34444. sideNsfw: {
  34445. height: math.unit(15, "feet"),
  34446. weight: math.unit(5000, "kg"),
  34447. name: "Side (NSFW)",
  34448. image: {
  34449. source: "./media/characters/kairne/side-nsfw.svg",
  34450. extra: 979/811,
  34451. bottom: 13/992
  34452. }
  34453. },
  34454. frontNsfw: {
  34455. height: math.unit(15, "feet"),
  34456. weight: math.unit(5000, "kg"),
  34457. name: "Front (NSFW)",
  34458. image: {
  34459. source: "./media/characters/kairne/front-nsfw.svg",
  34460. extra: 908/814,
  34461. bottom: 26/934
  34462. }
  34463. },
  34464. dickCaged: {
  34465. height: math.unit(0.65, "meters"),
  34466. name: "Dick-caged",
  34467. image: {
  34468. source: "./media/characters/kairne/dick-caged.svg"
  34469. }
  34470. },
  34471. dick: {
  34472. height: math.unit(0.79, "meters"),
  34473. name: "Dick",
  34474. image: {
  34475. source: "./media/characters/kairne/dick.svg"
  34476. }
  34477. },
  34478. genitals: {
  34479. height: math.unit(1.29, "meters"),
  34480. name: "Genitals",
  34481. image: {
  34482. source: "./media/characters/kairne/genitals.svg"
  34483. }
  34484. },
  34485. maw: {
  34486. height: math.unit(1.73, "meters"),
  34487. name: "Maw",
  34488. image: {
  34489. source: "./media/characters/kairne/maw.svg"
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Normal",
  34496. height: math.unit(15, "feet"),
  34497. default: true
  34498. },
  34499. ]
  34500. ))
  34501. characterMakers.push(() => makeCharacter(
  34502. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34503. {
  34504. front: {
  34505. height: math.unit(5 + 8/12, "feet"),
  34506. weight: math.unit(139, "lb"),
  34507. name: "Front",
  34508. image: {
  34509. source: "./media/characters/biscuit-jackal/front.svg",
  34510. extra: 2106/1961,
  34511. bottom: 58/2164
  34512. }
  34513. },
  34514. back: {
  34515. height: math.unit(5 + 8/12, "feet"),
  34516. weight: math.unit(139, "lb"),
  34517. name: "Back",
  34518. image: {
  34519. source: "./media/characters/biscuit-jackal/back.svg",
  34520. extra: 2132/1976,
  34521. bottom: 57/2189
  34522. }
  34523. },
  34524. werejackal: {
  34525. height: math.unit(6 + 3/12, "feet"),
  34526. weight: math.unit(188, "lb"),
  34527. name: "Werejackal",
  34528. image: {
  34529. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34530. extra: 2373/2178,
  34531. bottom: 53/2426
  34532. }
  34533. },
  34534. },
  34535. [
  34536. {
  34537. name: "Normal",
  34538. height: math.unit(5 + 8/12, "feet"),
  34539. default: true
  34540. },
  34541. ]
  34542. ))
  34543. characterMakers.push(() => makeCharacter(
  34544. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34545. {
  34546. front: {
  34547. height: math.unit(140, "cm"),
  34548. weight: math.unit(45, "kg"),
  34549. name: "Front",
  34550. image: {
  34551. source: "./media/characters/tayra-white/front.svg",
  34552. extra: 2229/2192,
  34553. bottom: 75/2304
  34554. }
  34555. },
  34556. },
  34557. [
  34558. {
  34559. name: "Normal",
  34560. height: math.unit(140, "cm"),
  34561. default: true
  34562. },
  34563. ]
  34564. ))
  34565. characterMakers.push(() => makeCharacter(
  34566. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34567. {
  34568. front: {
  34569. height: math.unit(4 + 5/12, "feet"),
  34570. name: "Front",
  34571. image: {
  34572. source: "./media/characters/scoop/front.svg",
  34573. extra: 1257/1136,
  34574. bottom: 69/1326
  34575. }
  34576. },
  34577. back: {
  34578. height: math.unit(4 + 5/12, "feet"),
  34579. name: "Back",
  34580. image: {
  34581. source: "./media/characters/scoop/back.svg",
  34582. extra: 1321/1152,
  34583. bottom: 32/1353
  34584. }
  34585. },
  34586. maw: {
  34587. height: math.unit(0.68, "feet"),
  34588. name: "Maw",
  34589. image: {
  34590. source: "./media/characters/scoop/maw.svg"
  34591. }
  34592. },
  34593. },
  34594. [
  34595. {
  34596. name: "Really Small",
  34597. height: math.unit(1, "mm")
  34598. },
  34599. {
  34600. name: "Micro",
  34601. height: math.unit(1, "inch")
  34602. },
  34603. {
  34604. name: "Normal",
  34605. height: math.unit(4 + 5/12, "feet"),
  34606. default: true
  34607. },
  34608. {
  34609. name: "Macro",
  34610. height: math.unit(200, "feet")
  34611. },
  34612. {
  34613. name: "Megamacro",
  34614. height: math.unit(3240, "feet")
  34615. },
  34616. {
  34617. name: "Teramacro",
  34618. height: math.unit(2500, "miles")
  34619. },
  34620. ]
  34621. ))
  34622. characterMakers.push(() => makeCharacter(
  34623. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34624. {
  34625. front: {
  34626. height: math.unit(15 + 7/12, "feet"),
  34627. weight: math.unit(1150, "tons"),
  34628. name: "Front",
  34629. image: {
  34630. source: "./media/characters/saphinara/front.svg",
  34631. extra: 1837/1643,
  34632. bottom: 84/1921
  34633. },
  34634. form: "normal",
  34635. default: true
  34636. },
  34637. side: {
  34638. height: math.unit(15 + 7/12, "feet"),
  34639. weight: math.unit(1150, "tons"),
  34640. name: "Side",
  34641. image: {
  34642. source: "./media/characters/saphinara/side.svg",
  34643. extra: 605/547,
  34644. bottom: 6/611
  34645. },
  34646. form: "normal"
  34647. },
  34648. back: {
  34649. height: math.unit(15 + 7/12, "feet"),
  34650. weight: math.unit(1150, "tons"),
  34651. name: "Back",
  34652. image: {
  34653. source: "./media/characters/saphinara/back.svg",
  34654. extra: 591/531,
  34655. bottom: 13/604
  34656. },
  34657. form: "normal"
  34658. },
  34659. frontTail: {
  34660. height: math.unit(15 + 7/12, "feet"),
  34661. weight: math.unit(1150, "tons"),
  34662. name: "Front (Full Tail)",
  34663. image: {
  34664. source: "./media/characters/saphinara/front-tail.svg",
  34665. extra: 2256/1630,
  34666. bottom: 261/2517
  34667. },
  34668. form: "normal"
  34669. },
  34670. insides: {
  34671. height: math.unit(11.92, "feet"),
  34672. name: "Insides",
  34673. image: {
  34674. source: "./media/characters/saphinara/insides.svg"
  34675. },
  34676. form: "normal"
  34677. },
  34678. head: {
  34679. height: math.unit(4.17, "feet"),
  34680. name: "Head",
  34681. image: {
  34682. source: "./media/characters/saphinara/head.svg"
  34683. },
  34684. form: "normal"
  34685. },
  34686. tongue: {
  34687. height: math.unit(4.60, "feet"),
  34688. name: "Tongue",
  34689. image: {
  34690. source: "./media/characters/saphinara/tongue.svg"
  34691. },
  34692. form: "normal"
  34693. },
  34694. headEnraged: {
  34695. height: math.unit(5.55, "feet"),
  34696. name: "Head (Enraged)",
  34697. image: {
  34698. source: "./media/characters/saphinara/head-enraged.svg"
  34699. },
  34700. form: "normal"
  34701. },
  34702. wings: {
  34703. height: math.unit(11.95, "feet"),
  34704. name: "Wings",
  34705. image: {
  34706. source: "./media/characters/saphinara/wings.svg"
  34707. },
  34708. form: "normal"
  34709. },
  34710. feathers: {
  34711. height: math.unit(8.92, "feet"),
  34712. name: "Feathers",
  34713. image: {
  34714. source: "./media/characters/saphinara/feathers.svg"
  34715. },
  34716. form: "normal"
  34717. },
  34718. shackles: {
  34719. height: math.unit(2, "feet"),
  34720. name: "Shackles",
  34721. image: {
  34722. source: "./media/characters/saphinara/shackles.svg"
  34723. },
  34724. form: "normal"
  34725. },
  34726. eyes: {
  34727. height: math.unit(1.331, "feet"),
  34728. name: "Eyes",
  34729. image: {
  34730. source: "./media/characters/saphinara/eyes.svg"
  34731. },
  34732. form: "normal"
  34733. },
  34734. eyesEnraged: {
  34735. height: math.unit(1.331, "feet"),
  34736. name: "Eyes (Enraged)",
  34737. image: {
  34738. source: "./media/characters/saphinara/eyes-enraged.svg"
  34739. },
  34740. form: "normal"
  34741. },
  34742. trueFormSide: {
  34743. height: math.unit(200, "feet"),
  34744. weight: math.unit(1e7, "tons"),
  34745. name: "Side",
  34746. image: {
  34747. source: "./media/characters/saphinara/true-form-side.svg",
  34748. extra: 1399/770,
  34749. bottom: 97/1496
  34750. },
  34751. form: "true-form",
  34752. default: true
  34753. },
  34754. trueFormMaw: {
  34755. height: math.unit(71.5, "feet"),
  34756. name: "Maw",
  34757. image: {
  34758. source: "./media/characters/saphinara/true-form-maw.svg",
  34759. extra: 2302/1453,
  34760. bottom: 0/2302
  34761. },
  34762. form: "true-form"
  34763. },
  34764. meowberusSide: {
  34765. height: math.unit(75, "feet"),
  34766. weight: math.unit(180000, "kg"),
  34767. preyCapacity: math.unit(50000, "people"),
  34768. name: "Side",
  34769. image: {
  34770. source: "./media/characters/saphinara/meowberus-side.svg",
  34771. extra: 1400/711,
  34772. bottom: 126/1526
  34773. },
  34774. form: "meowberus",
  34775. extraAttributes: {
  34776. "pawArea": {
  34777. name: "Paw Size",
  34778. power: 2,
  34779. type: "area",
  34780. base: math.unit(35, "m^2")
  34781. }
  34782. }
  34783. },
  34784. },
  34785. [
  34786. {
  34787. name: "Normal",
  34788. height: math.unit(15 + 7/12, "feet"),
  34789. default: true,
  34790. form: "normal"
  34791. },
  34792. {
  34793. name: "Angry",
  34794. height: math.unit(30 + 6/12, "feet"),
  34795. form: "normal"
  34796. },
  34797. {
  34798. name: "Enraged",
  34799. height: math.unit(102 + 1/12, "feet"),
  34800. form: "normal"
  34801. },
  34802. {
  34803. name: "True",
  34804. height: math.unit(200, "feet"),
  34805. default: true,
  34806. form: "true-form"
  34807. },
  34808. {
  34809. name: "Normal",
  34810. height: math.unit(75, "feet"),
  34811. default: true,
  34812. form: "meowberus"
  34813. },
  34814. ],
  34815. {
  34816. "normal": {
  34817. name: "Normal",
  34818. default: true
  34819. },
  34820. "true-form": {
  34821. name: "True Form"
  34822. },
  34823. "meowberus": {
  34824. name: "Meowberus",
  34825. },
  34826. }
  34827. ))
  34828. characterMakers.push(() => makeCharacter(
  34829. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34830. {
  34831. front: {
  34832. height: math.unit(6 + 8/12, "feet"),
  34833. weight: math.unit(300, "lb"),
  34834. name: "Front",
  34835. image: {
  34836. source: "./media/characters/jrain/front.svg",
  34837. extra: 3039/2865,
  34838. bottom: 399/3438
  34839. }
  34840. },
  34841. back: {
  34842. height: math.unit(6 + 8/12, "feet"),
  34843. weight: math.unit(300, "lb"),
  34844. name: "Back",
  34845. image: {
  34846. source: "./media/characters/jrain/back.svg",
  34847. extra: 3089/2938,
  34848. bottom: 172/3261
  34849. }
  34850. },
  34851. head: {
  34852. height: math.unit(2.14, "feet"),
  34853. name: "Head",
  34854. image: {
  34855. source: "./media/characters/jrain/head.svg"
  34856. }
  34857. },
  34858. maw: {
  34859. height: math.unit(1.77, "feet"),
  34860. name: "Maw",
  34861. image: {
  34862. source: "./media/characters/jrain/maw.svg"
  34863. }
  34864. },
  34865. leftHand: {
  34866. height: math.unit(1.1, "feet"),
  34867. name: "Left Hand",
  34868. image: {
  34869. source: "./media/characters/jrain/left-hand.svg"
  34870. }
  34871. },
  34872. rightHand: {
  34873. height: math.unit(1.1, "feet"),
  34874. name: "Right Hand",
  34875. image: {
  34876. source: "./media/characters/jrain/right-hand.svg"
  34877. }
  34878. },
  34879. eye: {
  34880. height: math.unit(0.35, "feet"),
  34881. name: "Eye",
  34882. image: {
  34883. source: "./media/characters/jrain/eye.svg"
  34884. }
  34885. },
  34886. },
  34887. [
  34888. {
  34889. name: "Normal",
  34890. height: math.unit(6 + 8/12, "feet"),
  34891. default: true
  34892. },
  34893. {
  34894. name: "Casually Large",
  34895. height: math.unit(25, "feet")
  34896. },
  34897. {
  34898. name: "Giant",
  34899. height: math.unit(100, "feet")
  34900. },
  34901. {
  34902. name: "Kaiju",
  34903. height: math.unit(300, "feet")
  34904. },
  34905. ]
  34906. ))
  34907. characterMakers.push(() => makeCharacter(
  34908. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34909. {
  34910. dragon: {
  34911. height: math.unit(5, "meters"),
  34912. name: "Dragon",
  34913. image: {
  34914. source: "./media/characters/sabrina/dragon.svg",
  34915. extra: 3670 / 2365,
  34916. bottom: 333 / 4003
  34917. }
  34918. },
  34919. gryphon: {
  34920. height: math.unit(3, "meters"),
  34921. name: "Gryphon",
  34922. image: {
  34923. source: "./media/characters/sabrina/gryphon.svg",
  34924. extra: 1576 / 945,
  34925. bottom: 71 / 1647
  34926. }
  34927. },
  34928. snake: {
  34929. height: math.unit(12, "meters"),
  34930. name: "Snake",
  34931. image: {
  34932. source: "./media/characters/sabrina/snake.svg",
  34933. extra: 1758 / 1320,
  34934. bottom: 186 / 1944
  34935. }
  34936. },
  34937. collar: {
  34938. height: math.unit(1.86, "meters"),
  34939. name: "Collar",
  34940. image: {
  34941. source: "./media/characters/sabrina/collar.svg"
  34942. }
  34943. },
  34944. eye: {
  34945. height: math.unit(0.53, "meters"),
  34946. name: "Eye",
  34947. image: {
  34948. source: "./media/characters/sabrina/eye.svg"
  34949. }
  34950. },
  34951. foot: {
  34952. height: math.unit(1.86, "meters"),
  34953. name: "Foot",
  34954. image: {
  34955. source: "./media/characters/sabrina/foot.svg"
  34956. }
  34957. },
  34958. hand: {
  34959. height: math.unit(1.32, "meters"),
  34960. name: "Hand",
  34961. image: {
  34962. source: "./media/characters/sabrina/hand.svg"
  34963. }
  34964. },
  34965. head: {
  34966. height: math.unit(2.44, "meters"),
  34967. name: "Head",
  34968. image: {
  34969. source: "./media/characters/sabrina/head.svg"
  34970. }
  34971. },
  34972. headAngry: {
  34973. height: math.unit(2.44, "meters"),
  34974. name: "Head (Angry))",
  34975. image: {
  34976. source: "./media/characters/sabrina/head-angry.svg"
  34977. }
  34978. },
  34979. maw: {
  34980. height: math.unit(1.65, "meters"),
  34981. name: "Maw",
  34982. image: {
  34983. source: "./media/characters/sabrina/maw.svg"
  34984. }
  34985. },
  34986. spikes: {
  34987. height: math.unit(1.69, "meters"),
  34988. name: "Spikes",
  34989. image: {
  34990. source: "./media/characters/sabrina/spikes.svg"
  34991. }
  34992. },
  34993. stomach: {
  34994. height: math.unit(1.15, "meters"),
  34995. name: "Stomach",
  34996. image: {
  34997. source: "./media/characters/sabrina/stomach.svg"
  34998. }
  34999. },
  35000. tongue: {
  35001. height: math.unit(1.27, "meters"),
  35002. name: "Tongue",
  35003. image: {
  35004. source: "./media/characters/sabrina/tongue.svg"
  35005. }
  35006. },
  35007. wingDorsal: {
  35008. height: math.unit(4.85, "meters"),
  35009. name: "Wing (Dorsal)",
  35010. image: {
  35011. source: "./media/characters/sabrina/wing-dorsal.svg"
  35012. }
  35013. },
  35014. wingVentral: {
  35015. height: math.unit(4.85, "meters"),
  35016. name: "Wing (Ventral)",
  35017. image: {
  35018. source: "./media/characters/sabrina/wing-ventral.svg"
  35019. }
  35020. },
  35021. },
  35022. [
  35023. {
  35024. name: "Normal",
  35025. height: math.unit(5, "meters"),
  35026. default: true
  35027. },
  35028. ]
  35029. ))
  35030. characterMakers.push(() => makeCharacter(
  35031. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35032. {
  35033. frontMaid: {
  35034. height: math.unit(5 + 5/12, "feet"),
  35035. weight: math.unit(130, "lb"),
  35036. name: "Front (Maid)",
  35037. image: {
  35038. source: "./media/characters/midnight-tales/front-maid.svg",
  35039. extra: 489/454,
  35040. bottom: 61/550
  35041. }
  35042. },
  35043. frontFormal: {
  35044. height: math.unit(5 + 5/12, "feet"),
  35045. weight: math.unit(130, "lb"),
  35046. name: "Front (Formal)",
  35047. image: {
  35048. source: "./media/characters/midnight-tales/front-formal.svg",
  35049. extra: 489/454,
  35050. bottom: 61/550
  35051. }
  35052. },
  35053. back: {
  35054. height: math.unit(5 + 5/12, "feet"),
  35055. weight: math.unit(130, "lb"),
  35056. name: "Back",
  35057. image: {
  35058. source: "./media/characters/midnight-tales/back.svg",
  35059. extra: 498/456,
  35060. bottom: 33/531
  35061. }
  35062. },
  35063. frontBeast: {
  35064. height: math.unit(40, "feet"),
  35065. weight: math.unit(64000, "lb"),
  35066. name: "Front (Beast)",
  35067. image: {
  35068. source: "./media/characters/midnight-tales/front-beast.svg",
  35069. extra: 927/860,
  35070. bottom: 53/980
  35071. }
  35072. },
  35073. backBeast: {
  35074. height: math.unit(40, "feet"),
  35075. weight: math.unit(64000, "lb"),
  35076. name: "Back (Beast)",
  35077. image: {
  35078. source: "./media/characters/midnight-tales/back-beast.svg",
  35079. extra: 929/855,
  35080. bottom: 16/945
  35081. }
  35082. },
  35083. footBeast: {
  35084. height: math.unit(6.7, "feet"),
  35085. name: "Foot (Beast)",
  35086. image: {
  35087. source: "./media/characters/midnight-tales/foot-beast.svg"
  35088. }
  35089. },
  35090. headBeast: {
  35091. height: math.unit(8, "feet"),
  35092. name: "Head (Beast)",
  35093. image: {
  35094. source: "./media/characters/midnight-tales/head-beast.svg"
  35095. }
  35096. },
  35097. },
  35098. [
  35099. {
  35100. name: "Normal",
  35101. height: math.unit(5 + 5 / 12, "feet"),
  35102. default: true
  35103. },
  35104. {
  35105. name: "Macro",
  35106. height: math.unit(25, "feet")
  35107. },
  35108. ]
  35109. ))
  35110. characterMakers.push(() => makeCharacter(
  35111. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35112. {
  35113. front: {
  35114. height: math.unit(5 + 10/12, "feet"),
  35115. name: "Front",
  35116. image: {
  35117. source: "./media/characters/argon/front.svg",
  35118. extra: 2009/1935,
  35119. bottom: 118/2127
  35120. }
  35121. },
  35122. back: {
  35123. height: math.unit(5 + 10/12, "feet"),
  35124. name: "Back",
  35125. image: {
  35126. source: "./media/characters/argon/back.svg",
  35127. extra: 2047/1992,
  35128. bottom: 20/2067
  35129. }
  35130. },
  35131. frontDressed: {
  35132. height: math.unit(5 + 10/12, "feet"),
  35133. name: "Front (Dressed)",
  35134. image: {
  35135. source: "./media/characters/argon/front-dressed.svg",
  35136. extra: 2009/1935,
  35137. bottom: 118/2127
  35138. }
  35139. },
  35140. },
  35141. [
  35142. {
  35143. name: "Normal",
  35144. height: math.unit(5 + 10/12, "feet"),
  35145. default: true
  35146. },
  35147. ]
  35148. ))
  35149. characterMakers.push(() => makeCharacter(
  35150. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35151. {
  35152. front: {
  35153. height: math.unit(8 + 6/12, "feet"),
  35154. weight: math.unit(1150, "lb"),
  35155. name: "Front",
  35156. image: {
  35157. source: "./media/characters/kichi/front.svg",
  35158. extra: 1267/1164,
  35159. bottom: 61/1328
  35160. }
  35161. },
  35162. back: {
  35163. height: math.unit(8 + 6/12, "feet"),
  35164. weight: math.unit(1150, "lb"),
  35165. name: "Back",
  35166. image: {
  35167. source: "./media/characters/kichi/back.svg",
  35168. extra: 1273/1166,
  35169. bottom: 33/1306
  35170. }
  35171. },
  35172. },
  35173. [
  35174. {
  35175. name: "Normal",
  35176. height: math.unit(8 + 6/12, "feet"),
  35177. default: true
  35178. },
  35179. ]
  35180. ))
  35181. characterMakers.push(() => makeCharacter(
  35182. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35183. {
  35184. front: {
  35185. height: math.unit(6, "feet"),
  35186. weight: math.unit(210, "lb"),
  35187. name: "Front",
  35188. image: {
  35189. source: "./media/characters/manetel-greyscale/front.svg",
  35190. extra: 350/312,
  35191. bottom: 8/358
  35192. }
  35193. },
  35194. },
  35195. [
  35196. {
  35197. name: "Micro",
  35198. height: math.unit(2, "inches")
  35199. },
  35200. {
  35201. name: "Normal",
  35202. height: math.unit(6, "feet"),
  35203. default: true
  35204. },
  35205. {
  35206. name: "Minimacro",
  35207. height: math.unit(17, "feet")
  35208. },
  35209. {
  35210. name: "Macro",
  35211. height: math.unit(117, "feet")
  35212. },
  35213. ]
  35214. ))
  35215. characterMakers.push(() => makeCharacter(
  35216. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35217. {
  35218. side: {
  35219. height: math.unit(5 + 1/12, "feet"),
  35220. weight: math.unit(418, "lb"),
  35221. name: "Side",
  35222. image: {
  35223. source: "./media/characters/softpurr/side.svg",
  35224. extra: 1993/1945,
  35225. bottom: 134/2127
  35226. }
  35227. },
  35228. front: {
  35229. height: math.unit(5 + 1/12, "feet"),
  35230. weight: math.unit(418, "lb"),
  35231. name: "Front",
  35232. image: {
  35233. source: "./media/characters/softpurr/front.svg",
  35234. extra: 1950/1856,
  35235. bottom: 174/2124
  35236. }
  35237. },
  35238. paw: {
  35239. height: math.unit(1, "feet"),
  35240. name: "Paw",
  35241. image: {
  35242. source: "./media/characters/softpurr/paw.svg"
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(5 + 1/12, "feet"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(260, "meters"),
  35259. name: "Front",
  35260. image: {
  35261. source: "./media/characters/anahita/front.svg",
  35262. extra: 665/635,
  35263. bottom: 89/754
  35264. }
  35265. },
  35266. },
  35267. [
  35268. {
  35269. name: "Macro",
  35270. height: math.unit(260, "meters"),
  35271. default: true
  35272. },
  35273. ]
  35274. ))
  35275. characterMakers.push(() => makeCharacter(
  35276. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35277. {
  35278. front: {
  35279. height: math.unit(4 + 10/12, "feet"),
  35280. weight: math.unit(160, "lb"),
  35281. name: "Front",
  35282. image: {
  35283. source: "./media/characters/chip-mouse/front.svg",
  35284. extra: 3528/3408,
  35285. bottom: 0/3528
  35286. }
  35287. },
  35288. frontNsfw: {
  35289. height: math.unit(4 + 10/12, "feet"),
  35290. weight: math.unit(160, "lb"),
  35291. name: "Front (NSFW)",
  35292. image: {
  35293. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35294. extra: 3528/3408,
  35295. bottom: 0/3528
  35296. }
  35297. },
  35298. },
  35299. [
  35300. {
  35301. name: "Normal",
  35302. height: math.unit(4 + 10/12, "feet"),
  35303. default: true
  35304. },
  35305. ]
  35306. ))
  35307. characterMakers.push(() => makeCharacter(
  35308. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35309. {
  35310. side: {
  35311. height: math.unit(10, "feet"),
  35312. weight: math.unit(14000, "lb"),
  35313. name: "Side",
  35314. image: {
  35315. source: "./media/characters/kremm/side.svg",
  35316. extra: 1390/1053,
  35317. bottom: 90/1480
  35318. }
  35319. },
  35320. gut: {
  35321. height: math.unit(5.8, "feet"),
  35322. name: "Gut",
  35323. image: {
  35324. source: "./media/characters/kremm/gut.svg"
  35325. }
  35326. },
  35327. ass: {
  35328. height: math.unit(6.1, "feet"),
  35329. name: "Ass",
  35330. image: {
  35331. source: "./media/characters/kremm/ass.svg"
  35332. }
  35333. },
  35334. jaws: {
  35335. height: math.unit(2.2, "feet"),
  35336. name: "Jaws",
  35337. image: {
  35338. source: "./media/characters/kremm/jaws.svg"
  35339. }
  35340. },
  35341. dick: {
  35342. height: math.unit(4.26, "feet"),
  35343. name: "Dick",
  35344. image: {
  35345. source: "./media/characters/kremm/dick.svg"
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Normal",
  35352. height: math.unit(10, "feet"),
  35353. default: true
  35354. },
  35355. ]
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35359. {
  35360. front: {
  35361. height: math.unit(30, "stories"),
  35362. name: "Front",
  35363. image: {
  35364. source: "./media/characters/kai/front.svg",
  35365. extra: 1892/1718,
  35366. bottom: 162/2054
  35367. }
  35368. },
  35369. },
  35370. [
  35371. {
  35372. name: "Macro",
  35373. height: math.unit(30, "stories"),
  35374. default: true
  35375. },
  35376. ]
  35377. ))
  35378. characterMakers.push(() => makeCharacter(
  35379. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35380. {
  35381. front: {
  35382. height: math.unit(6 + 4/12, "feet"),
  35383. weight: math.unit(145, "lb"),
  35384. name: "Front",
  35385. image: {
  35386. source: "./media/characters/sykes/front.svg",
  35387. extra: 1321 / 1187,
  35388. bottom: 66 / 1387
  35389. }
  35390. },
  35391. back: {
  35392. height: math.unit(6 + 4/12, "feet"),
  35393. weight: math.unit(145, "lb"),
  35394. name: "Back",
  35395. image: {
  35396. source: "./media/characters/sykes/back.svg",
  35397. extra: 1326/1181,
  35398. bottom: 31/1357
  35399. }
  35400. },
  35401. traditionalOutfit: {
  35402. height: math.unit(6 + 4/12, "feet"),
  35403. weight: math.unit(145, "lb"),
  35404. name: "Traditional Outfit",
  35405. image: {
  35406. source: "./media/characters/sykes/traditional-outfit.svg",
  35407. extra: 1321 / 1187,
  35408. bottom: 66 / 1387
  35409. }
  35410. },
  35411. adventureOutfit: {
  35412. height: math.unit(6 + 4/12, "feet"),
  35413. weight: math.unit(145, "lb"),
  35414. name: "Adventure Outfit",
  35415. image: {
  35416. source: "./media/characters/sykes/adventure-outfit.svg",
  35417. extra: 1321 / 1187,
  35418. bottom: 66 / 1387
  35419. }
  35420. },
  35421. handLeft: {
  35422. height: math.unit(0.9, "feet"),
  35423. name: "Hand (Left)",
  35424. image: {
  35425. source: "./media/characters/sykes/hand-left.svg"
  35426. }
  35427. },
  35428. handRight: {
  35429. height: math.unit(0.839, "feet"),
  35430. name: "Hand (Right)",
  35431. image: {
  35432. source: "./media/characters/sykes/hand-right.svg"
  35433. }
  35434. },
  35435. leftFoot: {
  35436. height: math.unit(1.2, "feet"),
  35437. name: "Foot (Left)",
  35438. image: {
  35439. source: "./media/characters/sykes/foot-left.svg"
  35440. }
  35441. },
  35442. rightFoot: {
  35443. height: math.unit(1.2, "feet"),
  35444. name: "Foot (Right)",
  35445. image: {
  35446. source: "./media/characters/sykes/foot-right.svg"
  35447. }
  35448. },
  35449. maw: {
  35450. height: math.unit(1.93, "feet"),
  35451. name: "Maw",
  35452. image: {
  35453. source: "./media/characters/sykes/maw.svg"
  35454. }
  35455. },
  35456. teeth: {
  35457. height: math.unit(0.51, "feet"),
  35458. name: "Teeth",
  35459. image: {
  35460. source: "./media/characters/sykes/teeth.svg"
  35461. }
  35462. },
  35463. tongue: {
  35464. height: math.unit(2.13, "feet"),
  35465. name: "Tongue",
  35466. image: {
  35467. source: "./media/characters/sykes/tongue.svg"
  35468. }
  35469. },
  35470. uvula: {
  35471. height: math.unit(0.16, "feet"),
  35472. name: "Uvula",
  35473. image: {
  35474. source: "./media/characters/sykes/uvula.svg"
  35475. }
  35476. },
  35477. collar: {
  35478. height: math.unit(0.287, "feet"),
  35479. name: "Collar",
  35480. image: {
  35481. source: "./media/characters/sykes/collar.svg"
  35482. }
  35483. },
  35484. tail: {
  35485. height: math.unit(3.8, "feet"),
  35486. name: "Tail",
  35487. image: {
  35488. source: "./media/characters/sykes/tail.svg"
  35489. }
  35490. },
  35491. },
  35492. [
  35493. {
  35494. name: "Shrunken",
  35495. height: math.unit(5, "inches")
  35496. },
  35497. {
  35498. name: "Normal",
  35499. height: math.unit(6 + 4 / 12, "feet"),
  35500. default: true
  35501. },
  35502. {
  35503. name: "Big",
  35504. height: math.unit(15, "feet")
  35505. },
  35506. ]
  35507. ))
  35508. characterMakers.push(() => makeCharacter(
  35509. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35510. {
  35511. front: {
  35512. height: math.unit(5 + 8/12, "feet"),
  35513. weight: math.unit(190, "lb"),
  35514. name: "Front",
  35515. image: {
  35516. source: "./media/characters/oven-otter/front.svg",
  35517. extra: 1809/1740,
  35518. bottom: 181/1990
  35519. }
  35520. },
  35521. back: {
  35522. height: math.unit(5 + 8/12, "feet"),
  35523. weight: math.unit(190, "lb"),
  35524. name: "Back",
  35525. image: {
  35526. source: "./media/characters/oven-otter/back.svg",
  35527. extra: 1709/1635,
  35528. bottom: 118/1827
  35529. }
  35530. },
  35531. hand: {
  35532. height: math.unit(1.07, "feet"),
  35533. name: "Hand",
  35534. image: {
  35535. source: "./media/characters/oven-otter/hand.svg"
  35536. }
  35537. },
  35538. beans: {
  35539. height: math.unit(1.74, "feet"),
  35540. name: "Beans",
  35541. image: {
  35542. source: "./media/characters/oven-otter/beans.svg"
  35543. }
  35544. },
  35545. },
  35546. [
  35547. {
  35548. name: "Micro",
  35549. height: math.unit(0.5, "inches")
  35550. },
  35551. {
  35552. name: "Normal",
  35553. height: math.unit(5 + 8/12, "feet"),
  35554. default: true
  35555. },
  35556. {
  35557. name: "Macro",
  35558. height: math.unit(250, "feet")
  35559. },
  35560. {
  35561. name: "Really High",
  35562. height: math.unit(420, "feet")
  35563. },
  35564. ]
  35565. ))
  35566. characterMakers.push(() => makeCharacter(
  35567. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35568. {
  35569. front: {
  35570. height: math.unit(5, "meters"),
  35571. weight: math.unit(292000000000000, "kg"),
  35572. name: "Front",
  35573. image: {
  35574. source: "./media/characters/devourer/front.svg",
  35575. extra: 1800/1733,
  35576. bottom: 211/2011
  35577. }
  35578. },
  35579. maw: {
  35580. height: math.unit(1.1, "meter"),
  35581. name: "Maw",
  35582. image: {
  35583. source: "./media/characters/devourer/maw.svg"
  35584. }
  35585. },
  35586. },
  35587. [
  35588. {
  35589. name: "Small",
  35590. height: math.unit(3, "meters")
  35591. },
  35592. {
  35593. name: "Large",
  35594. height: math.unit(5, "meters"),
  35595. default: true
  35596. },
  35597. ]
  35598. ))
  35599. characterMakers.push(() => makeCharacter(
  35600. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35601. {
  35602. front: {
  35603. height: math.unit(6, "feet"),
  35604. weight: math.unit(400, "lb"),
  35605. name: "Front",
  35606. image: {
  35607. source: "./media/characters/ellarby/front.svg",
  35608. extra: 1909/1763,
  35609. bottom: 80/1989
  35610. }
  35611. },
  35612. back: {
  35613. height: math.unit(6, "feet"),
  35614. weight: math.unit(400, "lb"),
  35615. name: "Back",
  35616. image: {
  35617. source: "./media/characters/ellarby/back.svg",
  35618. extra: 1914/1784,
  35619. bottom: 172/2086
  35620. }
  35621. },
  35622. },
  35623. [
  35624. {
  35625. name: "Mischief",
  35626. height: math.unit(18, "inches")
  35627. },
  35628. {
  35629. name: "Trouble",
  35630. height: math.unit(12, "feet")
  35631. },
  35632. {
  35633. name: "Havoc",
  35634. height: math.unit(200, "feet"),
  35635. default: true
  35636. },
  35637. {
  35638. name: "Pandemonium",
  35639. height: math.unit(1, "mile")
  35640. },
  35641. {
  35642. name: "Catastrophe",
  35643. height: math.unit(100, "miles")
  35644. },
  35645. ]
  35646. ))
  35647. characterMakers.push(() => makeCharacter(
  35648. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35649. {
  35650. front: {
  35651. height: math.unit(4.7, "meters"),
  35652. weight: math.unit(6500, "kg"),
  35653. name: "Front",
  35654. image: {
  35655. source: "./media/characters/vex/front.svg",
  35656. extra: 1288/1140,
  35657. bottom: 100/1388
  35658. }
  35659. },
  35660. },
  35661. [
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(4.7, "meters"),
  35665. default: true
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35671. {
  35672. normal: {
  35673. height: math.unit(6, "feet"),
  35674. weight: math.unit(350, "lb"),
  35675. name: "Normal",
  35676. image: {
  35677. source: "./media/characters/teshy/normal.svg",
  35678. extra: 1795/1735,
  35679. bottom: 16/1811
  35680. }
  35681. },
  35682. monsterFront: {
  35683. height: math.unit(12, "feet"),
  35684. weight: math.unit(4700, "lb"),
  35685. name: "Monster (Front)",
  35686. image: {
  35687. source: "./media/characters/teshy/monster-front.svg",
  35688. extra: 2042/2034,
  35689. bottom: 128/2170
  35690. }
  35691. },
  35692. monsterSide: {
  35693. height: math.unit(12, "feet"),
  35694. weight: math.unit(4700, "lb"),
  35695. name: "Monster (Side)",
  35696. image: {
  35697. source: "./media/characters/teshy/monster-side.svg",
  35698. extra: 2067/2056,
  35699. bottom: 70/2137
  35700. }
  35701. },
  35702. monsterBack: {
  35703. height: math.unit(12, "feet"),
  35704. weight: math.unit(4700, "lb"),
  35705. name: "Monster (Back)",
  35706. image: {
  35707. source: "./media/characters/teshy/monster-back.svg",
  35708. extra: 1921/1914,
  35709. bottom: 171/2092
  35710. }
  35711. },
  35712. },
  35713. [
  35714. {
  35715. name: "Normal",
  35716. height: math.unit(6, "feet"),
  35717. default: true
  35718. },
  35719. ]
  35720. ))
  35721. characterMakers.push(() => makeCharacter(
  35722. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35723. {
  35724. front: {
  35725. height: math.unit(6, "feet"),
  35726. name: "Front",
  35727. image: {
  35728. source: "./media/characters/ramey/front.svg",
  35729. extra: 790/787,
  35730. bottom: 27/817
  35731. }
  35732. },
  35733. },
  35734. [
  35735. {
  35736. name: "Normal",
  35737. height: math.unit(6, "feet"),
  35738. default: true
  35739. },
  35740. ]
  35741. ))
  35742. characterMakers.push(() => makeCharacter(
  35743. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35744. {
  35745. front: {
  35746. height: math.unit(5 + 5/12, "feet"),
  35747. weight: math.unit(120, "lb"),
  35748. name: "Front",
  35749. image: {
  35750. source: "./media/characters/phirae/front.svg",
  35751. extra: 2491/2436,
  35752. bottom: 38/2529
  35753. }
  35754. },
  35755. },
  35756. [
  35757. {
  35758. name: "Normal",
  35759. height: math.unit(5 + 5/12, "feet"),
  35760. default: true
  35761. },
  35762. ]
  35763. ))
  35764. characterMakers.push(() => makeCharacter(
  35765. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35766. {
  35767. front: {
  35768. height: math.unit(5 + 3/12, "feet"),
  35769. name: "Front",
  35770. image: {
  35771. source: "./media/characters/stagglas/front.svg",
  35772. extra: 962/882,
  35773. bottom: 53/1015
  35774. }
  35775. },
  35776. feral: {
  35777. height: math.unit(335, "cm"),
  35778. name: "Feral",
  35779. image: {
  35780. source: "./media/characters/stagglas/feral.svg",
  35781. extra: 1732/1090,
  35782. bottom: 48/1780
  35783. }
  35784. },
  35785. },
  35786. [
  35787. {
  35788. name: "Normal",
  35789. height: math.unit(5 + 3/12, "feet"),
  35790. default: true
  35791. },
  35792. ]
  35793. ))
  35794. characterMakers.push(() => makeCharacter(
  35795. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35796. {
  35797. front: {
  35798. height: math.unit(5 + 4/12, "feet"),
  35799. weight: math.unit(145, "lb"),
  35800. name: "Front",
  35801. image: {
  35802. source: "./media/characters/starra/front.svg",
  35803. extra: 1790/1691,
  35804. bottom: 91/1881
  35805. }
  35806. },
  35807. },
  35808. [
  35809. {
  35810. name: "Normal",
  35811. height: math.unit(5 + 4/12, "feet"),
  35812. default: true
  35813. },
  35814. ]
  35815. ))
  35816. characterMakers.push(() => makeCharacter(
  35817. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35818. {
  35819. front: {
  35820. height: math.unit(2.2, "meters"),
  35821. name: "Front",
  35822. image: {
  35823. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35824. extra: 1194/1005,
  35825. bottom: 25/1219
  35826. }
  35827. },
  35828. },
  35829. [
  35830. {
  35831. name: "Normal",
  35832. height: math.unit(2.2, "meters"),
  35833. default: true
  35834. },
  35835. ]
  35836. ))
  35837. characterMakers.push(() => makeCharacter(
  35838. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35839. {
  35840. side: {
  35841. height: math.unit(8 + 2/12, "feet"),
  35842. weight: math.unit(1240, "lb"),
  35843. name: "Side",
  35844. image: {
  35845. source: "./media/characters/mika-valentine/side.svg",
  35846. extra: 2670/2501,
  35847. bottom: 250/2920
  35848. }
  35849. },
  35850. },
  35851. [
  35852. {
  35853. name: "Normal",
  35854. height: math.unit(8 + 2/12, "feet"),
  35855. default: true
  35856. },
  35857. ]
  35858. ))
  35859. characterMakers.push(() => makeCharacter(
  35860. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35861. {
  35862. front: {
  35863. height: math.unit(7 + 2/12, "feet"),
  35864. name: "Front",
  35865. image: {
  35866. source: "./media/characters/xoltol/front.svg",
  35867. extra: 2212/2124,
  35868. bottom: 84/2296
  35869. }
  35870. },
  35871. side: {
  35872. height: math.unit(7 + 2/12, "feet"),
  35873. name: "Side",
  35874. image: {
  35875. source: "./media/characters/xoltol/side.svg",
  35876. extra: 2273/2197,
  35877. bottom: 26/2299
  35878. }
  35879. },
  35880. hand: {
  35881. height: math.unit(2.5, "feet"),
  35882. name: "Hand",
  35883. image: {
  35884. source: "./media/characters/xoltol/hand.svg"
  35885. }
  35886. },
  35887. },
  35888. [
  35889. {
  35890. name: "Small-ish",
  35891. height: math.unit(5 + 11/12, "feet")
  35892. },
  35893. {
  35894. name: "Normal",
  35895. height: math.unit(7 + 2/12, "feet")
  35896. },
  35897. {
  35898. name: "\"Macro\"",
  35899. height: math.unit(14 + 9/12, "feet"),
  35900. default: true
  35901. },
  35902. {
  35903. name: "Alternate Height",
  35904. height: math.unit(20, "feet")
  35905. },
  35906. {
  35907. name: "Actually Macro",
  35908. height: math.unit(100, "feet")
  35909. },
  35910. ]
  35911. ))
  35912. characterMakers.push(() => makeCharacter(
  35913. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35914. {
  35915. front: {
  35916. height: math.unit(5 + 2/12, "feet"),
  35917. name: "Front",
  35918. image: {
  35919. source: "./media/characters/kotetsu-redwood/front.svg",
  35920. extra: 1053/942,
  35921. bottom: 60/1113
  35922. }
  35923. },
  35924. },
  35925. [
  35926. {
  35927. name: "Normal",
  35928. height: math.unit(5 + 2/12, "feet"),
  35929. default: true
  35930. },
  35931. ]
  35932. ))
  35933. characterMakers.push(() => makeCharacter(
  35934. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35935. {
  35936. front: {
  35937. height: math.unit(2.4, "meters"),
  35938. weight: math.unit(125, "kg"),
  35939. name: "Front",
  35940. image: {
  35941. source: "./media/characters/lilith/front.svg",
  35942. extra: 1590/1513,
  35943. bottom: 203/1793
  35944. }
  35945. },
  35946. },
  35947. [
  35948. {
  35949. name: "Humanoid",
  35950. height: math.unit(2.4, "meters")
  35951. },
  35952. {
  35953. name: "Normal",
  35954. height: math.unit(6, "meters"),
  35955. default: true
  35956. },
  35957. {
  35958. name: "Largest",
  35959. height: math.unit(55, "meters")
  35960. },
  35961. ]
  35962. ))
  35963. characterMakers.push(() => makeCharacter(
  35964. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35965. {
  35966. front: {
  35967. height: math.unit(8 + 4/12, "feet"),
  35968. weight: math.unit(535, "lb"),
  35969. name: "Front",
  35970. image: {
  35971. source: "./media/characters/beh'kah-bolger/front.svg",
  35972. extra: 1660/1603,
  35973. bottom: 37/1697
  35974. }
  35975. },
  35976. },
  35977. [
  35978. {
  35979. name: "Normal",
  35980. height: math.unit(8 + 4/12, "feet"),
  35981. default: true
  35982. },
  35983. {
  35984. name: "Kaiju",
  35985. height: math.unit(250, "feet")
  35986. },
  35987. {
  35988. name: "Still Growing",
  35989. height: math.unit(10, "miles")
  35990. },
  35991. {
  35992. name: "Continental",
  35993. height: math.unit(5000, "miles")
  35994. },
  35995. {
  35996. name: "Final Form",
  35997. height: math.unit(2500000, "miles")
  35998. },
  35999. ]
  36000. ))
  36001. characterMakers.push(() => makeCharacter(
  36002. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36003. {
  36004. front: {
  36005. height: math.unit(7 + 2/12, "feet"),
  36006. weight: math.unit(230, "kg"),
  36007. name: "Front",
  36008. image: {
  36009. source: "./media/characters/tatyana-milewska/front.svg",
  36010. extra: 1199/1150,
  36011. bottom: 86/1285
  36012. }
  36013. },
  36014. },
  36015. [
  36016. {
  36017. name: "Normal",
  36018. height: math.unit(7 + 2/12, "feet"),
  36019. default: true
  36020. },
  36021. {
  36022. name: "Big",
  36023. height: math.unit(12, "feet")
  36024. },
  36025. {
  36026. name: "Minimacro",
  36027. height: math.unit(20, "feet")
  36028. },
  36029. {
  36030. name: "Macro",
  36031. height: math.unit(120, "feet")
  36032. },
  36033. ]
  36034. ))
  36035. characterMakers.push(() => makeCharacter(
  36036. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36037. {
  36038. front: {
  36039. height: math.unit(7 + 8/12, "feet"),
  36040. weight: math.unit(152, "kg"),
  36041. name: "Front",
  36042. image: {
  36043. source: "./media/characters/helen-arri/front.svg",
  36044. extra: 440/423,
  36045. bottom: 14/454
  36046. }
  36047. },
  36048. back: {
  36049. height: math.unit(7 + 8/12, "feet"),
  36050. weight: math.unit(152, "kg"),
  36051. name: "Back",
  36052. image: {
  36053. source: "./media/characters/helen-arri/back.svg",
  36054. extra: 443/426,
  36055. bottom: 8/451
  36056. }
  36057. },
  36058. },
  36059. [
  36060. {
  36061. name: "Normal",
  36062. height: math.unit(7 + 8/12, "feet"),
  36063. default: true
  36064. },
  36065. {
  36066. name: "Big",
  36067. height: math.unit(14, "feet")
  36068. },
  36069. {
  36070. name: "Minimacro",
  36071. height: math.unit(24, "feet")
  36072. },
  36073. {
  36074. name: "Macro",
  36075. height: math.unit(140, "feet")
  36076. },
  36077. ]
  36078. ))
  36079. characterMakers.push(() => makeCharacter(
  36080. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36081. {
  36082. front: {
  36083. height: math.unit(6, "meters"),
  36084. name: "Front",
  36085. image: {
  36086. source: "./media/characters/ehanu-rehu/front.svg",
  36087. extra: 1800/1800,
  36088. bottom: 59/1859
  36089. }
  36090. },
  36091. },
  36092. [
  36093. {
  36094. name: "Normal",
  36095. height: math.unit(6, "meters"),
  36096. default: true
  36097. },
  36098. ]
  36099. ))
  36100. characterMakers.push(() => makeCharacter(
  36101. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36102. {
  36103. front: {
  36104. height: math.unit(7 + 3/12, "feet"),
  36105. name: "Front",
  36106. image: {
  36107. source: "./media/characters/renholder/front.svg",
  36108. extra: 3096/2960,
  36109. bottom: 250/3346
  36110. }
  36111. },
  36112. },
  36113. [
  36114. {
  36115. name: "Normal Bat",
  36116. height: math.unit(7 + 3/12, "feet"),
  36117. default: true
  36118. },
  36119. {
  36120. name: "Slightly Tall Bat",
  36121. height: math.unit(100, "feet")
  36122. },
  36123. {
  36124. name: "Big Bat",
  36125. height: math.unit(1000, "feet")
  36126. },
  36127. {
  36128. name: "City-Sized Bat",
  36129. height: math.unit(200000, "feet")
  36130. },
  36131. {
  36132. name: "Bigger Bat",
  36133. height: math.unit(10000, "miles")
  36134. },
  36135. {
  36136. name: "Solar Sized Bat",
  36137. height: math.unit(100, "AU")
  36138. },
  36139. {
  36140. name: "Galactic Bat",
  36141. height: math.unit(200000, "lightyears")
  36142. },
  36143. {
  36144. name: "Universally Known Bat",
  36145. height: math.unit(1, "universe")
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36151. {
  36152. front: {
  36153. height: math.unit(6 + 11/12, "feet"),
  36154. weight: math.unit(250, "lb"),
  36155. name: "Front",
  36156. image: {
  36157. source: "./media/characters/cookiecat/front.svg",
  36158. extra: 893/827,
  36159. bottom: 14/907
  36160. }
  36161. },
  36162. },
  36163. [
  36164. {
  36165. name: "Micro",
  36166. height: math.unit(3, "inches")
  36167. },
  36168. {
  36169. name: "Normal",
  36170. height: math.unit(6 + 11/12, "feet"),
  36171. default: true
  36172. },
  36173. {
  36174. name: "Macro",
  36175. height: math.unit(100, "feet")
  36176. },
  36177. {
  36178. name: "Macro+",
  36179. height: math.unit(404, "feet")
  36180. },
  36181. {
  36182. name: "Megamacro",
  36183. height: math.unit(165, "miles")
  36184. },
  36185. {
  36186. name: "Planetary",
  36187. height: math.unit(4600, "miles")
  36188. },
  36189. ]
  36190. ))
  36191. characterMakers.push(() => makeCharacter(
  36192. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36193. {
  36194. front: {
  36195. height: math.unit(10 + 3/12, "feet"),
  36196. weight: math.unit(1500, "lb"),
  36197. name: "Front",
  36198. image: {
  36199. source: "./media/characters/tux-kusanagi/front.svg",
  36200. extra: 944/840,
  36201. bottom: 39/983
  36202. }
  36203. },
  36204. back: {
  36205. height: math.unit(10 + 3/12, "feet"),
  36206. weight: math.unit(1500, "lb"),
  36207. name: "Back",
  36208. image: {
  36209. source: "./media/characters/tux-kusanagi/back.svg",
  36210. extra: 941/842,
  36211. bottom: 28/969
  36212. }
  36213. },
  36214. rump: {
  36215. height: math.unit(5.25, "feet"),
  36216. name: "Rump",
  36217. image: {
  36218. source: "./media/characters/tux-kusanagi/rump.svg"
  36219. }
  36220. },
  36221. beak: {
  36222. height: math.unit(1.54, "feet"),
  36223. name: "Beak",
  36224. image: {
  36225. source: "./media/characters/tux-kusanagi/beak.svg"
  36226. }
  36227. },
  36228. },
  36229. [
  36230. {
  36231. name: "Normal",
  36232. height: math.unit(10 + 3/12, "feet"),
  36233. default: true
  36234. },
  36235. ]
  36236. ))
  36237. characterMakers.push(() => makeCharacter(
  36238. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36239. {
  36240. front: {
  36241. height: math.unit(58, "feet"),
  36242. weight: math.unit(200, "tons"),
  36243. name: "Front",
  36244. image: {
  36245. source: "./media/characters/uzarmazari/front.svg",
  36246. extra: 1575/1455,
  36247. bottom: 152/1727
  36248. }
  36249. },
  36250. back: {
  36251. height: math.unit(58, "feet"),
  36252. weight: math.unit(200, "tons"),
  36253. name: "Back",
  36254. image: {
  36255. source: "./media/characters/uzarmazari/back.svg",
  36256. extra: 1585/1510,
  36257. bottom: 157/1742
  36258. }
  36259. },
  36260. head: {
  36261. height: math.unit(26, "feet"),
  36262. name: "Head",
  36263. image: {
  36264. source: "./media/characters/uzarmazari/head.svg"
  36265. }
  36266. },
  36267. },
  36268. [
  36269. {
  36270. name: "Normal",
  36271. height: math.unit(58, "feet"),
  36272. default: true
  36273. },
  36274. ]
  36275. ))
  36276. characterMakers.push(() => makeCharacter(
  36277. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36278. {
  36279. side: {
  36280. height: math.unit(15, "feet"),
  36281. name: "Side",
  36282. image: {
  36283. source: "./media/characters/akitu/side.svg",
  36284. extra: 1421/1321,
  36285. bottom: 157/1578
  36286. }
  36287. },
  36288. front: {
  36289. height: math.unit(15, "feet"),
  36290. name: "Front",
  36291. image: {
  36292. source: "./media/characters/akitu/front.svg",
  36293. extra: 1435/1326,
  36294. bottom: 232/1667
  36295. }
  36296. },
  36297. },
  36298. [
  36299. {
  36300. name: "Normal",
  36301. height: math.unit(15, "feet"),
  36302. default: true
  36303. },
  36304. ]
  36305. ))
  36306. characterMakers.push(() => makeCharacter(
  36307. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36308. {
  36309. front: {
  36310. height: math.unit(10 + 8/12, "feet"),
  36311. name: "Front",
  36312. image: {
  36313. source: "./media/characters/azalie-croixland/front.svg",
  36314. extra: 1972/1856,
  36315. bottom: 31/2003
  36316. }
  36317. },
  36318. },
  36319. [
  36320. {
  36321. name: "Original Height",
  36322. height: math.unit(5 + 4/12, "feet")
  36323. },
  36324. {
  36325. name: "Normal Height",
  36326. height: math.unit(10 + 8/12, "feet"),
  36327. default: true
  36328. },
  36329. ]
  36330. ))
  36331. characterMakers.push(() => makeCharacter(
  36332. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36333. {
  36334. side: {
  36335. height: math.unit(7 + 1/12, "feet"),
  36336. weight: math.unit(245, "lb"),
  36337. name: "Side",
  36338. image: {
  36339. source: "./media/characters/kavus-kazian/side.svg",
  36340. extra: 349/342,
  36341. bottom: 15/364
  36342. }
  36343. },
  36344. },
  36345. [
  36346. {
  36347. name: "Normal",
  36348. height: math.unit(7 + 1/12, "feet"),
  36349. default: true
  36350. },
  36351. ]
  36352. ))
  36353. characterMakers.push(() => makeCharacter(
  36354. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36355. {
  36356. normalFront: {
  36357. height: math.unit(5 + 11/12, "feet"),
  36358. name: "Front",
  36359. image: {
  36360. source: "./media/characters/moonlight-rose/normal-front.svg",
  36361. extra: 1980/1825,
  36362. bottom: 18/1998
  36363. },
  36364. form: "normal",
  36365. default: true
  36366. },
  36367. normalBack: {
  36368. height: math.unit(5 + 11/12, "feet"),
  36369. name: "Back",
  36370. image: {
  36371. source: "./media/characters/moonlight-rose/normal-back.svg",
  36372. extra: 2010/1839,
  36373. bottom: 10/2020
  36374. },
  36375. form: "normal"
  36376. },
  36377. demonFront: {
  36378. height: math.unit(1.5, "earths"),
  36379. name: "Front",
  36380. image: {
  36381. source: "./media/characters/moonlight-rose/demon.svg",
  36382. extra: 1400/1294,
  36383. bottom: 45/1445
  36384. },
  36385. form: "demon",
  36386. default: true
  36387. },
  36388. terraFront: {
  36389. height: math.unit(1.5, "earths"),
  36390. name: "Front",
  36391. image: {
  36392. source: "./media/characters/moonlight-rose/terra.svg"
  36393. },
  36394. form: "terra",
  36395. default: true
  36396. },
  36397. jupiterFront: {
  36398. height: math.unit(69911*2, "km"),
  36399. name: "Front",
  36400. image: {
  36401. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36402. extra: 1367/1286,
  36403. bottom: 55/1422
  36404. },
  36405. form: "jupiter",
  36406. default: true
  36407. },
  36408. neptuneFront: {
  36409. height: math.unit(24622*2, "feet"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36413. extra: 1851/1712,
  36414. bottom: 0/1851
  36415. },
  36416. form: "neptune",
  36417. default: true
  36418. },
  36419. },
  36420. [
  36421. {
  36422. name: "\"Natural\" Height",
  36423. height: math.unit(5 + 11/12, "feet"),
  36424. form: "normal"
  36425. },
  36426. {
  36427. name: "Smallest comfortable size",
  36428. height: math.unit(40, "meters"),
  36429. form: "normal"
  36430. },
  36431. {
  36432. name: "Common size",
  36433. height: math.unit(50, "km"),
  36434. form: "normal",
  36435. default: true
  36436. },
  36437. {
  36438. name: "Normal",
  36439. height: math.unit(1.5, "earths"),
  36440. form: "demon",
  36441. default: true
  36442. },
  36443. {
  36444. name: "Universal",
  36445. height: math.unit(15, "universes"),
  36446. form: "demon"
  36447. },
  36448. {
  36449. name: "Earth",
  36450. height: math.unit(1.5, "earths"),
  36451. form: "terra",
  36452. default: true
  36453. },
  36454. {
  36455. name: "Super Earth",
  36456. height: math.unit(67.5, "earths"),
  36457. form: "terra"
  36458. },
  36459. {
  36460. name: "Doesn't fit in a solar system...",
  36461. height: math.unit(1, "galaxy"),
  36462. form: "terra"
  36463. },
  36464. {
  36465. name: "Saturn",
  36466. height: math.unit(58232*2, "km"),
  36467. form: "jupiter"
  36468. },
  36469. {
  36470. name: "Jupiter",
  36471. height: math.unit(69911*2, "km"),
  36472. form: "jupiter",
  36473. default: true
  36474. },
  36475. {
  36476. name: "HD 100546 b",
  36477. height: math.unit(482938, "km"),
  36478. form: "jupiter"
  36479. },
  36480. {
  36481. name: "Enceladus",
  36482. height: math.unit(513*2, "km"),
  36483. form: "neptune"
  36484. },
  36485. {
  36486. name: "Europe",
  36487. height: math.unit(1560*2, "km"),
  36488. form: "neptune"
  36489. },
  36490. {
  36491. name: "Neptune",
  36492. height: math.unit(24622*2, "km"),
  36493. form: "neptune",
  36494. default: true
  36495. },
  36496. {
  36497. name: "CoRoT-9b",
  36498. height: math.unit(75067*2, "km"),
  36499. form: "neptune"
  36500. },
  36501. ],
  36502. {
  36503. "normal": {
  36504. name: "Normal",
  36505. default: true
  36506. },
  36507. "demon": {
  36508. name: "Demon"
  36509. },
  36510. "terra": {
  36511. name: "Terra"
  36512. },
  36513. "jupiter": {
  36514. name: "Jupiter"
  36515. },
  36516. "neptune": {
  36517. name: "Neptune"
  36518. }
  36519. }
  36520. ))
  36521. characterMakers.push(() => makeCharacter(
  36522. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36523. {
  36524. front: {
  36525. height: math.unit(16, "feet"),
  36526. weight: math.unit(610, "kg"),
  36527. name: "Front",
  36528. image: {
  36529. source: "./media/characters/huckle/front.svg",
  36530. extra: 1731/1625,
  36531. bottom: 33/1764
  36532. }
  36533. },
  36534. back: {
  36535. height: math.unit(16, "feet"),
  36536. weight: math.unit(610, "kg"),
  36537. name: "Back",
  36538. image: {
  36539. source: "./media/characters/huckle/back.svg",
  36540. extra: 1738/1651,
  36541. bottom: 37/1775
  36542. }
  36543. },
  36544. laughing: {
  36545. height: math.unit(3.75, "feet"),
  36546. name: "Laughing",
  36547. image: {
  36548. source: "./media/characters/huckle/laughing.svg"
  36549. }
  36550. },
  36551. angry: {
  36552. height: math.unit(4.15, "feet"),
  36553. name: "Angry",
  36554. image: {
  36555. source: "./media/characters/huckle/angry.svg"
  36556. }
  36557. },
  36558. },
  36559. [
  36560. {
  36561. name: "Normal",
  36562. height: math.unit(16, "feet"),
  36563. default: true
  36564. },
  36565. {
  36566. name: "Mini Macro",
  36567. height: math.unit(463, "feet")
  36568. },
  36569. {
  36570. name: "Macro",
  36571. height: math.unit(1680, "meters")
  36572. },
  36573. {
  36574. name: "Mega Macro",
  36575. height: math.unit(175, "km")
  36576. },
  36577. {
  36578. name: "Terra Macro",
  36579. height: math.unit(32, "gigameters")
  36580. },
  36581. {
  36582. name: "Multiverse+",
  36583. height: math.unit(2.56e23, "yottameters")
  36584. },
  36585. ]
  36586. ))
  36587. characterMakers.push(() => makeCharacter(
  36588. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36589. {
  36590. front: {
  36591. height: math.unit(6 + 9/12, "feet"),
  36592. weight: math.unit(280, "lb"),
  36593. name: "Front",
  36594. image: {
  36595. source: "./media/characters/candy/front.svg",
  36596. extra: 234/217,
  36597. bottom: 11/245
  36598. }
  36599. },
  36600. },
  36601. [
  36602. {
  36603. name: "Really Small",
  36604. height: math.unit(0.1, "nm")
  36605. },
  36606. {
  36607. name: "Micro",
  36608. height: math.unit(2, "inches")
  36609. },
  36610. {
  36611. name: "Normal",
  36612. height: math.unit(6 + 9/12, "feet"),
  36613. default: true
  36614. },
  36615. {
  36616. name: "Small Macro",
  36617. height: math.unit(69, "feet")
  36618. },
  36619. {
  36620. name: "Macro",
  36621. height: math.unit(160, "feet")
  36622. },
  36623. {
  36624. name: "Megamacro",
  36625. height: math.unit(22000, "miles")
  36626. },
  36627. {
  36628. name: "Gigamacro",
  36629. height: math.unit(50000, "miles")
  36630. },
  36631. ]
  36632. ))
  36633. characterMakers.push(() => makeCharacter(
  36634. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36635. {
  36636. front: {
  36637. height: math.unit(4, "feet"),
  36638. weight: math.unit(90, "lb"),
  36639. name: "Front",
  36640. image: {
  36641. source: "./media/characters/joey-mcdonald/front.svg",
  36642. extra: 1059/852,
  36643. bottom: 33/1092
  36644. }
  36645. },
  36646. back: {
  36647. height: math.unit(4, "feet"),
  36648. weight: math.unit(90, "lb"),
  36649. name: "Back",
  36650. image: {
  36651. source: "./media/characters/joey-mcdonald/back.svg",
  36652. extra: 1077/879,
  36653. bottom: 5/1082
  36654. }
  36655. },
  36656. frontKobold: {
  36657. height: math.unit(4, "feet"),
  36658. weight: math.unit(100, "lb"),
  36659. name: "Front-kobold",
  36660. image: {
  36661. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36662. extra: 1480/1367,
  36663. bottom: 0/1480
  36664. }
  36665. },
  36666. backKobold: {
  36667. height: math.unit(4, "feet"),
  36668. weight: math.unit(100, "lb"),
  36669. name: "Back-kobold",
  36670. image: {
  36671. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36672. extra: 1449/1361,
  36673. bottom: 0/1449
  36674. }
  36675. },
  36676. },
  36677. [
  36678. {
  36679. name: "Normal",
  36680. height: math.unit(4, "feet"),
  36681. default: true
  36682. },
  36683. ]
  36684. ))
  36685. characterMakers.push(() => makeCharacter(
  36686. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36687. {
  36688. front: {
  36689. height: math.unit(12 + 6/12, "feet"),
  36690. name: "Front",
  36691. image: {
  36692. source: "./media/characters/kass-lockheed/front.svg",
  36693. extra: 354/343,
  36694. bottom: 9/363
  36695. }
  36696. },
  36697. back: {
  36698. height: math.unit(12 + 6/12, "feet"),
  36699. name: "Back",
  36700. image: {
  36701. source: "./media/characters/kass-lockheed/back.svg",
  36702. extra: 364/352,
  36703. bottom: 3/367
  36704. }
  36705. },
  36706. dick: {
  36707. height: math.unit(3.12, "feet"),
  36708. name: "Dick",
  36709. image: {
  36710. source: "./media/characters/kass-lockheed/dick.svg"
  36711. }
  36712. },
  36713. head: {
  36714. height: math.unit(2.6, "feet"),
  36715. name: "Head",
  36716. image: {
  36717. source: "./media/characters/kass-lockheed/head.svg"
  36718. }
  36719. },
  36720. bleh: {
  36721. height: math.unit(2.85, "feet"),
  36722. name: "Bleh",
  36723. image: {
  36724. source: "./media/characters/kass-lockheed/bleh.svg"
  36725. }
  36726. },
  36727. smug: {
  36728. height: math.unit(2.85, "feet"),
  36729. name: "Smug",
  36730. image: {
  36731. source: "./media/characters/kass-lockheed/smug.svg"
  36732. }
  36733. },
  36734. },
  36735. [
  36736. {
  36737. name: "Normal",
  36738. height: math.unit(12 + 6/12, "feet"),
  36739. default: true
  36740. },
  36741. ]
  36742. ))
  36743. characterMakers.push(() => makeCharacter(
  36744. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36745. {
  36746. front: {
  36747. height: math.unit(6 + 2/12, "feet"),
  36748. name: "Front",
  36749. image: {
  36750. source: "./media/characters/taylor/front.svg",
  36751. extra: 639/495,
  36752. bottom: 12/651
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Normal",
  36759. height: math.unit(6 + 2/12, "feet"),
  36760. default: true
  36761. },
  36762. {
  36763. name: "Big",
  36764. height: math.unit(15, "feet")
  36765. },
  36766. {
  36767. name: "Lorg",
  36768. height: math.unit(80, "feet")
  36769. },
  36770. {
  36771. name: "Too Lorg",
  36772. height: math.unit(120, "feet")
  36773. },
  36774. ]
  36775. ))
  36776. characterMakers.push(() => makeCharacter(
  36777. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36778. {
  36779. front: {
  36780. height: math.unit(15, "feet"),
  36781. name: "Front",
  36782. image: {
  36783. source: "./media/characters/kaizer/front.svg",
  36784. extra: 1612/1436,
  36785. bottom: 43/1655
  36786. }
  36787. },
  36788. },
  36789. [
  36790. {
  36791. name: "Normal",
  36792. height: math.unit(15, "feet"),
  36793. default: true
  36794. },
  36795. ]
  36796. ))
  36797. characterMakers.push(() => makeCharacter(
  36798. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36799. {
  36800. front: {
  36801. height: math.unit(2, "feet"),
  36802. weight: math.unit(30, "lb"),
  36803. name: "Front",
  36804. image: {
  36805. source: "./media/characters/sandy/front.svg",
  36806. extra: 1439/1307,
  36807. bottom: 194/1633
  36808. }
  36809. },
  36810. },
  36811. [
  36812. {
  36813. name: "Normal",
  36814. height: math.unit(2, "feet"),
  36815. default: true
  36816. },
  36817. ]
  36818. ))
  36819. characterMakers.push(() => makeCharacter(
  36820. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36821. {
  36822. front: {
  36823. height: math.unit(3, "feet"),
  36824. name: "Front",
  36825. image: {
  36826. source: "./media/characters/mellvi/front.svg",
  36827. extra: 1831/1630,
  36828. bottom: 58/1889
  36829. }
  36830. },
  36831. },
  36832. [
  36833. {
  36834. name: "Normal",
  36835. height: math.unit(3, "feet"),
  36836. default: true
  36837. },
  36838. ]
  36839. ))
  36840. characterMakers.push(() => makeCharacter(
  36841. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36842. {
  36843. front: {
  36844. height: math.unit(5 + 11/12, "feet"),
  36845. weight: math.unit(200, "lb"),
  36846. name: "Front",
  36847. image: {
  36848. source: "./media/characters/shirou/front.svg",
  36849. extra: 2491/2383,
  36850. bottom: 189/2680
  36851. }
  36852. },
  36853. back: {
  36854. height: math.unit(5 + 11/12, "feet"),
  36855. weight: math.unit(200, "lb"),
  36856. name: "Back",
  36857. image: {
  36858. source: "./media/characters/shirou/back.svg",
  36859. extra: 2554/2450,
  36860. bottom: 76/2630
  36861. }
  36862. },
  36863. },
  36864. [
  36865. {
  36866. name: "Normal",
  36867. height: math.unit(5 + 11/12, "feet"),
  36868. default: true
  36869. },
  36870. ]
  36871. ))
  36872. characterMakers.push(() => makeCharacter(
  36873. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36874. {
  36875. front: {
  36876. height: math.unit(6 + 3/12, "feet"),
  36877. weight: math.unit(177, "lb"),
  36878. name: "Front",
  36879. image: {
  36880. source: "./media/characters/noryu/front.svg",
  36881. extra: 973/885,
  36882. bottom: 10/983
  36883. }
  36884. },
  36885. },
  36886. [
  36887. {
  36888. name: "Normal",
  36889. height: math.unit(6 + 3/12, "feet"),
  36890. default: true
  36891. },
  36892. ]
  36893. ))
  36894. characterMakers.push(() => makeCharacter(
  36895. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36896. {
  36897. front: {
  36898. height: math.unit(5 + 6/12, "feet"),
  36899. weight: math.unit(170, "lb"),
  36900. name: "Front",
  36901. image: {
  36902. source: "./media/characters/mevolas-rubenido/front.svg",
  36903. extra: 2109/1901,
  36904. bottom: 96/2205
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Normal",
  36911. height: math.unit(5 + 6/12, "feet"),
  36912. default: true
  36913. },
  36914. ]
  36915. ))
  36916. characterMakers.push(() => makeCharacter(
  36917. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36918. {
  36919. front: {
  36920. height: math.unit(100, "feet"),
  36921. name: "Front",
  36922. image: {
  36923. source: "./media/characters/dee/front.svg",
  36924. extra: 2153/2036,
  36925. bottom: 59/2212
  36926. }
  36927. },
  36928. back: {
  36929. height: math.unit(100, "feet"),
  36930. name: "Back",
  36931. image: {
  36932. source: "./media/characters/dee/back.svg",
  36933. extra: 2183/2058,
  36934. bottom: 75/2258
  36935. }
  36936. },
  36937. foot: {
  36938. height: math.unit(19.43, "feet"),
  36939. name: "Foot",
  36940. image: {
  36941. source: "./media/characters/dee/foot.svg"
  36942. }
  36943. },
  36944. hoof: {
  36945. height: math.unit(20.6, "feet"),
  36946. name: "Hoof",
  36947. image: {
  36948. source: "./media/characters/dee/hoof.svg"
  36949. }
  36950. },
  36951. },
  36952. [
  36953. {
  36954. name: "Macro",
  36955. height: math.unit(100, "feet"),
  36956. default: true
  36957. },
  36958. ]
  36959. ))
  36960. characterMakers.push(() => makeCharacter(
  36961. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36962. {
  36963. front: {
  36964. height: math.unit(5 + 6/12, "feet"),
  36965. name: "Front",
  36966. image: {
  36967. source: "./media/characters/teh/front.svg",
  36968. extra: 1002/847,
  36969. bottom: 62/1064
  36970. }
  36971. },
  36972. },
  36973. [
  36974. {
  36975. name: "Normal",
  36976. height: math.unit(5 + 6/12, "feet"),
  36977. default: true
  36978. },
  36979. ]
  36980. ))
  36981. characterMakers.push(() => makeCharacter(
  36982. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36983. {
  36984. side: {
  36985. height: math.unit(6 + 1/12, "feet"),
  36986. weight: math.unit(204, "lb"),
  36987. name: "Side",
  36988. image: {
  36989. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36990. extra: 974/775,
  36991. bottom: 169/1143
  36992. }
  36993. },
  36994. sitting: {
  36995. height: math.unit(6 + 2/12, "feet"),
  36996. weight: math.unit(204, "lb"),
  36997. name: "Sitting",
  36998. image: {
  36999. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37000. extra: 1175/964,
  37001. bottom: 378/1553
  37002. }
  37003. },
  37004. },
  37005. [
  37006. {
  37007. name: "Normal",
  37008. height: math.unit(6 + 1/12, "feet"),
  37009. default: true
  37010. },
  37011. ]
  37012. ))
  37013. characterMakers.push(() => makeCharacter(
  37014. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37015. {
  37016. front: {
  37017. height: math.unit(6, "inches"),
  37018. name: "Front",
  37019. image: {
  37020. source: "./media/characters/tululi/front.svg",
  37021. extra: 1997/1876,
  37022. bottom: 20/2017
  37023. }
  37024. },
  37025. },
  37026. [
  37027. {
  37028. name: "Normal",
  37029. height: math.unit(6, "inches"),
  37030. default: true
  37031. },
  37032. ]
  37033. ))
  37034. characterMakers.push(() => makeCharacter(
  37035. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37036. {
  37037. front: {
  37038. height: math.unit(4 + 1/12, "feet"),
  37039. name: "Front",
  37040. image: {
  37041. source: "./media/characters/star/front.svg",
  37042. extra: 1493/1189,
  37043. bottom: 48/1541
  37044. }
  37045. },
  37046. },
  37047. [
  37048. {
  37049. name: "Normal",
  37050. height: math.unit(4 + 1/12, "feet"),
  37051. default: true
  37052. },
  37053. ]
  37054. ))
  37055. characterMakers.push(() => makeCharacter(
  37056. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37057. {
  37058. front: {
  37059. height: math.unit(6 + 3/12, "feet"),
  37060. name: "Front",
  37061. image: {
  37062. source: "./media/characters/comet/front.svg",
  37063. extra: 1681/1462,
  37064. bottom: 26/1707
  37065. }
  37066. },
  37067. },
  37068. [
  37069. {
  37070. name: "Normal",
  37071. height: math.unit(6 + 3/12, "feet"),
  37072. default: true
  37073. },
  37074. ]
  37075. ))
  37076. characterMakers.push(() => makeCharacter(
  37077. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37078. {
  37079. front: {
  37080. height: math.unit(950, "feet"),
  37081. name: "Front",
  37082. image: {
  37083. source: "./media/characters/vortex/front.svg",
  37084. extra: 1497/1434,
  37085. bottom: 56/1553
  37086. }
  37087. },
  37088. maw: {
  37089. height: math.unit(285, "feet"),
  37090. name: "Maw",
  37091. image: {
  37092. source: "./media/characters/vortex/maw.svg"
  37093. }
  37094. },
  37095. },
  37096. [
  37097. {
  37098. name: "Macro",
  37099. height: math.unit(950, "feet"),
  37100. default: true
  37101. },
  37102. ]
  37103. ))
  37104. characterMakers.push(() => makeCharacter(
  37105. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37106. {
  37107. front: {
  37108. height: math.unit(600, "feet"),
  37109. weight: math.unit(0.02, "grams"),
  37110. name: "Front",
  37111. image: {
  37112. source: "./media/characters/doodle/front.svg",
  37113. extra: 1578/1413,
  37114. bottom: 37/1615
  37115. }
  37116. },
  37117. },
  37118. [
  37119. {
  37120. name: "Macro",
  37121. height: math.unit(600, "feet"),
  37122. default: true
  37123. },
  37124. ]
  37125. ))
  37126. characterMakers.push(() => makeCharacter(
  37127. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37128. {
  37129. front: {
  37130. height: math.unit(6 + 6/12, "feet"),
  37131. name: "Front",
  37132. image: {
  37133. source: "./media/characters/jai/front.svg",
  37134. extra: 1645/1534,
  37135. bottom: 115/1760
  37136. }
  37137. },
  37138. },
  37139. [
  37140. {
  37141. name: "Normal",
  37142. height: math.unit(6 + 6/12, "feet"),
  37143. default: true
  37144. },
  37145. ]
  37146. ))
  37147. characterMakers.push(() => makeCharacter(
  37148. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37149. {
  37150. front: {
  37151. height: math.unit(6 + 8/12, "feet"),
  37152. name: "Front",
  37153. image: {
  37154. source: "./media/characters/pixel/front.svg",
  37155. extra: 1900/1735,
  37156. bottom: 63/1963
  37157. }
  37158. },
  37159. },
  37160. [
  37161. {
  37162. name: "Normal",
  37163. height: math.unit(6 + 8/12, "feet"),
  37164. default: true
  37165. },
  37166. ]
  37167. ))
  37168. characterMakers.push(() => makeCharacter(
  37169. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37170. {
  37171. back: {
  37172. height: math.unit(4 + 1/12, "feet"),
  37173. weight: math.unit(75, "lb"),
  37174. name: "Back",
  37175. image: {
  37176. source: "./media/characters/rhett/back.svg",
  37177. extra: 930/878,
  37178. bottom: 25/955
  37179. }
  37180. },
  37181. front: {
  37182. height: math.unit(4 + 1/12, "feet"),
  37183. weight: math.unit(75, "lb"),
  37184. name: "Front",
  37185. image: {
  37186. source: "./media/characters/rhett/front.svg",
  37187. extra: 1682/1586,
  37188. bottom: 92/1774
  37189. }
  37190. },
  37191. },
  37192. [
  37193. {
  37194. name: "Micro",
  37195. height: math.unit(8, "inches")
  37196. },
  37197. {
  37198. name: "Tiny",
  37199. height: math.unit(2, "feet")
  37200. },
  37201. {
  37202. name: "Normal",
  37203. height: math.unit(4 + 1/12, "feet"),
  37204. default: true
  37205. },
  37206. ]
  37207. ))
  37208. characterMakers.push(() => makeCharacter(
  37209. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37210. {
  37211. front: {
  37212. height: math.unit(3 + 3/12, "feet"),
  37213. name: "Front",
  37214. image: {
  37215. source: "./media/characters/penny/front.svg",
  37216. extra: 1406/1311,
  37217. bottom: 26/1432
  37218. }
  37219. },
  37220. },
  37221. [
  37222. {
  37223. name: "Normal",
  37224. height: math.unit(3 + 3/12, "feet"),
  37225. default: true
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37231. {
  37232. front: {
  37233. height: math.unit(4 + 11/12, "feet"),
  37234. name: "Front",
  37235. image: {
  37236. source: "./media/characters/monty/front.svg",
  37237. extra: 1479/1209,
  37238. bottom: 0/1479
  37239. }
  37240. },
  37241. },
  37242. [
  37243. {
  37244. name: "Normal",
  37245. height: math.unit(4 + 11/12, "feet"),
  37246. default: true
  37247. },
  37248. ]
  37249. ))
  37250. characterMakers.push(() => makeCharacter(
  37251. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37252. {
  37253. front: {
  37254. height: math.unit(8 + 4/12, "feet"),
  37255. name: "Front",
  37256. image: {
  37257. source: "./media/characters/sterling/front.svg",
  37258. extra: 1420/1236,
  37259. bottom: 27/1447
  37260. }
  37261. },
  37262. },
  37263. [
  37264. {
  37265. name: "Normal",
  37266. height: math.unit(8 + 4/12, "feet"),
  37267. default: true
  37268. },
  37269. ]
  37270. ))
  37271. characterMakers.push(() => makeCharacter(
  37272. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37273. {
  37274. front: {
  37275. height: math.unit(15, "feet"),
  37276. name: "Front",
  37277. image: {
  37278. source: "./media/characters/marble/front.svg",
  37279. extra: 973/937,
  37280. bottom: 32/1005
  37281. }
  37282. },
  37283. },
  37284. [
  37285. {
  37286. name: "Normal",
  37287. height: math.unit(15, "feet"),
  37288. default: true
  37289. },
  37290. ]
  37291. ))
  37292. characterMakers.push(() => makeCharacter(
  37293. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37294. {
  37295. front: {
  37296. height: math.unit(3, "inches"),
  37297. name: "Front",
  37298. image: {
  37299. source: "./media/characters/powder/front.svg",
  37300. extra: 1504/1334,
  37301. bottom: 518/2022
  37302. }
  37303. },
  37304. },
  37305. [
  37306. {
  37307. name: "Normal",
  37308. height: math.unit(3, "inches"),
  37309. default: true
  37310. },
  37311. ]
  37312. ))
  37313. characterMakers.push(() => makeCharacter(
  37314. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37315. {
  37316. front: {
  37317. height: math.unit(4 + 5/12, "feet"),
  37318. name: "Front",
  37319. image: {
  37320. source: "./media/characters/joey-raccoon/front.svg",
  37321. extra: 1273/1197,
  37322. bottom: 0/1273
  37323. }
  37324. },
  37325. },
  37326. [
  37327. {
  37328. name: "Normal",
  37329. height: math.unit(4 + 5/12, "feet"),
  37330. default: true
  37331. },
  37332. ]
  37333. ))
  37334. characterMakers.push(() => makeCharacter(
  37335. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37336. {
  37337. front: {
  37338. height: math.unit(8 + 4/12, "feet"),
  37339. name: "Front",
  37340. image: {
  37341. source: "./media/characters/vick/front.svg",
  37342. extra: 2187/2118,
  37343. bottom: 47/2234
  37344. }
  37345. },
  37346. },
  37347. [
  37348. {
  37349. name: "Normal",
  37350. height: math.unit(8 + 4/12, "feet"),
  37351. default: true
  37352. },
  37353. ]
  37354. ))
  37355. characterMakers.push(() => makeCharacter(
  37356. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37357. {
  37358. front: {
  37359. height: math.unit(5 + 5/12, "feet"),
  37360. name: "Front",
  37361. image: {
  37362. source: "./media/characters/mitsy/front.svg",
  37363. extra: 1842/1695,
  37364. bottom: 0/1842
  37365. }
  37366. },
  37367. },
  37368. [
  37369. {
  37370. name: "Normal",
  37371. height: math.unit(5 + 5/12, "feet"),
  37372. default: true
  37373. },
  37374. ]
  37375. ))
  37376. characterMakers.push(() => makeCharacter(
  37377. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37378. {
  37379. front: {
  37380. height: math.unit(6 + 3/12, "feet"),
  37381. name: "Front",
  37382. image: {
  37383. source: "./media/characters/silvy/front.svg",
  37384. extra: 1995/1836,
  37385. bottom: 225/2220
  37386. }
  37387. },
  37388. },
  37389. [
  37390. {
  37391. name: "Normal",
  37392. height: math.unit(6 + 3/12, "feet"),
  37393. default: true
  37394. },
  37395. ]
  37396. ))
  37397. characterMakers.push(() => makeCharacter(
  37398. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37399. {
  37400. front: {
  37401. height: math.unit(3 + 8/12, "feet"),
  37402. name: "Front",
  37403. image: {
  37404. source: "./media/characters/rodney/front.svg",
  37405. extra: 1956/1747,
  37406. bottom: 31/1987
  37407. }
  37408. },
  37409. frontDressed: {
  37410. height: math.unit(2.9, "feet"),
  37411. name: "Front (Dressed)",
  37412. image: {
  37413. source: "./media/characters/rodney/front-dressed.svg",
  37414. extra: 1382/1241,
  37415. bottom: 385/1767
  37416. }
  37417. },
  37418. },
  37419. [
  37420. {
  37421. name: "Normal",
  37422. height: math.unit(3 + 8/12, "feet"),
  37423. default: true
  37424. },
  37425. ]
  37426. ))
  37427. characterMakers.push(() => makeCharacter(
  37428. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37429. {
  37430. front: {
  37431. height: math.unit(5 + 9/12, "feet"),
  37432. weight: math.unit(194, "lbs"),
  37433. name: "Front",
  37434. image: {
  37435. source: "./media/characters/zakail-sudekai/front.svg",
  37436. extra: 2696/2533,
  37437. bottom: 248/2944
  37438. }
  37439. },
  37440. maw: {
  37441. height: math.unit(1.35, "feet"),
  37442. name: "Maw",
  37443. image: {
  37444. source: "./media/characters/zakail-sudekai/maw.svg"
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Normal",
  37451. height: math.unit(5 + 9/12, "feet"),
  37452. default: true
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(8 + 4/12, "feet"),
  37461. weight: math.unit(1200, "lb"),
  37462. name: "Front",
  37463. image: {
  37464. source: "./media/characters/eleanor/front.svg",
  37465. extra: 1226/1192,
  37466. bottom: 52/1278
  37467. }
  37468. },
  37469. back: {
  37470. height: math.unit(8 + 4/12, "feet"),
  37471. weight: math.unit(1200, "lb"),
  37472. name: "Back",
  37473. image: {
  37474. source: "./media/characters/eleanor/back.svg",
  37475. extra: 1242/1184,
  37476. bottom: 60/1302
  37477. }
  37478. },
  37479. head: {
  37480. height: math.unit(2.62, "feet"),
  37481. name: "Head",
  37482. image: {
  37483. source: "./media/characters/eleanor/head.svg"
  37484. }
  37485. },
  37486. },
  37487. [
  37488. {
  37489. name: "Normal",
  37490. height: math.unit(8 + 4/12, "feet"),
  37491. default: true
  37492. },
  37493. ]
  37494. ))
  37495. characterMakers.push(() => makeCharacter(
  37496. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37497. {
  37498. front: {
  37499. height: math.unit(8 + 4/12, "feet"),
  37500. weight: math.unit(750, "lb"),
  37501. name: "Front",
  37502. image: {
  37503. source: "./media/characters/tanya/front.svg",
  37504. extra: 1749/1615,
  37505. bottom: 33/1782
  37506. }
  37507. },
  37508. },
  37509. [
  37510. {
  37511. name: "Normal",
  37512. height: math.unit(8 + 4/12, "feet"),
  37513. default: true
  37514. },
  37515. ]
  37516. ))
  37517. characterMakers.push(() => makeCharacter(
  37518. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37519. {
  37520. front: {
  37521. height: math.unit(5, "feet"),
  37522. weight: math.unit(225, "lb"),
  37523. name: "Front",
  37524. image: {
  37525. source: "./media/characters/cindy/front.svg",
  37526. extra: 1320/1250,
  37527. bottom: 42/1362
  37528. }
  37529. },
  37530. frontDressed: {
  37531. height: math.unit(5, "feet"),
  37532. weight: math.unit(225, "lb"),
  37533. name: "Front (Dressed)",
  37534. image: {
  37535. source: "./media/characters/cindy/front-dressed.svg",
  37536. extra: 1320/1250,
  37537. bottom: 42/1362
  37538. }
  37539. },
  37540. back: {
  37541. height: math.unit(5, "feet"),
  37542. weight: math.unit(225, "lb"),
  37543. name: "Back",
  37544. image: {
  37545. source: "./media/characters/cindy/back.svg",
  37546. extra: 1384/1346,
  37547. bottom: 14/1398
  37548. }
  37549. },
  37550. },
  37551. [
  37552. {
  37553. name: "Normal",
  37554. height: math.unit(5, "feet"),
  37555. default: true
  37556. },
  37557. ]
  37558. ))
  37559. characterMakers.push(() => makeCharacter(
  37560. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37561. {
  37562. front: {
  37563. height: math.unit(6 + 9/12, "feet"),
  37564. weight: math.unit(440, "lb"),
  37565. name: "Front",
  37566. image: {
  37567. source: "./media/characters/wilbur-owen/front.svg",
  37568. extra: 1575/1448,
  37569. bottom: 72/1647
  37570. }
  37571. },
  37572. back: {
  37573. height: math.unit(6 + 9/12, "feet"),
  37574. weight: math.unit(440, "lb"),
  37575. name: "Back",
  37576. image: {
  37577. source: "./media/characters/wilbur-owen/back.svg",
  37578. extra: 1578/1445,
  37579. bottom: 36/1614
  37580. }
  37581. },
  37582. },
  37583. [
  37584. {
  37585. name: "Normal",
  37586. height: math.unit(6 + 9/12, "feet"),
  37587. default: true
  37588. },
  37589. ]
  37590. ))
  37591. characterMakers.push(() => makeCharacter(
  37592. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37593. {
  37594. front: {
  37595. height: math.unit(6 + 5/12, "feet"),
  37596. weight: math.unit(650, "lb"),
  37597. name: "Front",
  37598. image: {
  37599. source: "./media/characters/keegan/front.svg",
  37600. extra: 2387/2198,
  37601. bottom: 33/2420
  37602. }
  37603. },
  37604. side: {
  37605. height: math.unit(6 + 5/12, "feet"),
  37606. weight: math.unit(650, "lb"),
  37607. name: "Side",
  37608. image: {
  37609. source: "./media/characters/keegan/side.svg",
  37610. extra: 2390/2202,
  37611. bottom: 47/2437
  37612. }
  37613. },
  37614. back: {
  37615. height: math.unit(6 + 5/12, "feet"),
  37616. weight: math.unit(650, "lb"),
  37617. name: "Back",
  37618. image: {
  37619. source: "./media/characters/keegan/back.svg",
  37620. extra: 2418/2268,
  37621. bottom: 15/2433
  37622. }
  37623. },
  37624. frontSfw: {
  37625. height: math.unit(6 + 5/12, "feet"),
  37626. weight: math.unit(650, "lb"),
  37627. name: "Front (SFW)",
  37628. image: {
  37629. source: "./media/characters/keegan/front-sfw.svg",
  37630. extra: 2387/2198,
  37631. bottom: 33/2420
  37632. }
  37633. },
  37634. beans: {
  37635. height: math.unit(1.85, "feet"),
  37636. name: "Beans",
  37637. image: {
  37638. source: "./media/characters/keegan/beans.svg"
  37639. }
  37640. },
  37641. },
  37642. [
  37643. {
  37644. name: "Normal",
  37645. height: math.unit(6 + 5/12, "feet"),
  37646. default: true
  37647. },
  37648. ]
  37649. ))
  37650. characterMakers.push(() => makeCharacter(
  37651. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37652. {
  37653. front: {
  37654. height: math.unit(9, "feet"),
  37655. name: "Front",
  37656. image: {
  37657. source: "./media/characters/colton/front.svg",
  37658. extra: 1589/1326,
  37659. bottom: 139/1728
  37660. }
  37661. },
  37662. },
  37663. [
  37664. {
  37665. name: "Normal",
  37666. height: math.unit(9, "feet"),
  37667. default: true
  37668. },
  37669. ]
  37670. ))
  37671. characterMakers.push(() => makeCharacter(
  37672. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37673. {
  37674. front: {
  37675. height: math.unit(2 + 9/12, "feet"),
  37676. name: "Front",
  37677. image: {
  37678. source: "./media/characters/bora/front.svg",
  37679. extra: 1265/1250,
  37680. bottom: 24/1289
  37681. }
  37682. },
  37683. },
  37684. [
  37685. {
  37686. name: "Normal",
  37687. height: math.unit(2 + 9/12, "feet"),
  37688. default: true
  37689. },
  37690. ]
  37691. ))
  37692. characterMakers.push(() => makeCharacter(
  37693. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37694. {
  37695. front: {
  37696. height: math.unit(8, "feet"),
  37697. name: "Front",
  37698. image: {
  37699. source: "./media/characters/myu-myu/front.svg",
  37700. extra: 1949/1857,
  37701. bottom: 90/2039
  37702. }
  37703. },
  37704. },
  37705. [
  37706. {
  37707. name: "Normal",
  37708. height: math.unit(8, "feet"),
  37709. default: true
  37710. },
  37711. {
  37712. name: "Big",
  37713. height: math.unit(15, "feet")
  37714. },
  37715. {
  37716. name: "BIG",
  37717. height: math.unit(25, "feet")
  37718. },
  37719. ]
  37720. ))
  37721. characterMakers.push(() => makeCharacter(
  37722. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37723. {
  37724. side: {
  37725. height: math.unit(7 + 5/12, "feet"),
  37726. weight: math.unit(2800, "lb"),
  37727. name: "Side",
  37728. image: {
  37729. source: "./media/characters/haloren/side.svg",
  37730. extra: 1793/409,
  37731. bottom: 59/1852
  37732. }
  37733. },
  37734. frontPaw: {
  37735. height: math.unit(2.36, "feet"),
  37736. name: "Front paw",
  37737. image: {
  37738. source: "./media/characters/haloren/front-paw.svg"
  37739. }
  37740. },
  37741. hindPaw: {
  37742. height: math.unit(3.18, "feet"),
  37743. name: "Hind paw",
  37744. image: {
  37745. source: "./media/characters/haloren/hind-paw.svg"
  37746. }
  37747. },
  37748. maw: {
  37749. height: math.unit(5.05, "feet"),
  37750. name: "Maw",
  37751. image: {
  37752. source: "./media/characters/haloren/maw.svg"
  37753. }
  37754. },
  37755. dick: {
  37756. height: math.unit(2.90, "feet"),
  37757. name: "Dick",
  37758. image: {
  37759. source: "./media/characters/haloren/dick.svg"
  37760. }
  37761. },
  37762. },
  37763. [
  37764. {
  37765. name: "Normal",
  37766. height: math.unit(7 + 5/12, "feet"),
  37767. default: true
  37768. },
  37769. {
  37770. name: "Enhanced",
  37771. height: math.unit(14 + 3/12, "feet")
  37772. },
  37773. ]
  37774. ))
  37775. characterMakers.push(() => makeCharacter(
  37776. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37777. {
  37778. front: {
  37779. height: math.unit(171, "cm"),
  37780. name: "Front",
  37781. image: {
  37782. source: "./media/characters/kimmy/front.svg",
  37783. extra: 1491/1435,
  37784. bottom: 53/1544
  37785. }
  37786. },
  37787. },
  37788. [
  37789. {
  37790. name: "Small",
  37791. height: math.unit(9, "cm")
  37792. },
  37793. {
  37794. name: "Normal",
  37795. height: math.unit(171, "cm"),
  37796. default: true
  37797. },
  37798. ]
  37799. ))
  37800. characterMakers.push(() => makeCharacter(
  37801. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37802. {
  37803. front: {
  37804. height: math.unit(8, "feet"),
  37805. weight: math.unit(300, "lb"),
  37806. name: "Front",
  37807. image: {
  37808. source: "./media/characters/galeboomer/front.svg",
  37809. extra: 4651/4415,
  37810. bottom: 162/4813
  37811. }
  37812. },
  37813. back: {
  37814. height: math.unit(8, "feet"),
  37815. weight: math.unit(300, "lb"),
  37816. name: "Back",
  37817. image: {
  37818. source: "./media/characters/galeboomer/back.svg",
  37819. extra: 4544/4314,
  37820. bottom: 16/4560
  37821. }
  37822. },
  37823. frontAlt: {
  37824. height: math.unit(8, "feet"),
  37825. weight: math.unit(300, "lb"),
  37826. name: "Front (Alt)",
  37827. image: {
  37828. source: "./media/characters/galeboomer/front-alt.svg",
  37829. extra: 4458/4228,
  37830. bottom: 68/4526
  37831. }
  37832. },
  37833. maw: {
  37834. height: math.unit(1.2, "feet"),
  37835. name: "Maw",
  37836. image: {
  37837. source: "./media/characters/galeboomer/maw.svg"
  37838. }
  37839. },
  37840. },
  37841. [
  37842. {
  37843. name: "Normal",
  37844. height: math.unit(8, "feet"),
  37845. default: true
  37846. },
  37847. ]
  37848. ))
  37849. characterMakers.push(() => makeCharacter(
  37850. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37851. {
  37852. front: {
  37853. height: math.unit(5 + 9/12, "feet"),
  37854. weight: math.unit(120, "lb"),
  37855. name: "Front",
  37856. image: {
  37857. source: "./media/characters/chyr/front.svg",
  37858. extra: 1323/1254,
  37859. bottom: 63/1386
  37860. }
  37861. },
  37862. back: {
  37863. height: math.unit(5 + 9/12, "feet"),
  37864. weight: math.unit(120, "lb"),
  37865. name: "Back",
  37866. image: {
  37867. source: "./media/characters/chyr/back.svg",
  37868. extra: 1323/1252,
  37869. bottom: 48/1371
  37870. }
  37871. },
  37872. },
  37873. [
  37874. {
  37875. name: "Normal",
  37876. height: math.unit(5 + 9/12, "feet"),
  37877. default: true
  37878. },
  37879. ]
  37880. ))
  37881. characterMakers.push(() => makeCharacter(
  37882. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37883. {
  37884. front: {
  37885. height: math.unit(7, "feet"),
  37886. weight: math.unit(310, "lb"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/solarus/front.svg",
  37890. extra: 2415/2021,
  37891. bottom: 103/2518
  37892. }
  37893. },
  37894. back: {
  37895. height: math.unit(7, "feet"),
  37896. weight: math.unit(310, "lb"),
  37897. name: "Back",
  37898. image: {
  37899. source: "./media/characters/solarus/back.svg",
  37900. extra: 2463/2089,
  37901. bottom: 79/2542
  37902. }
  37903. },
  37904. },
  37905. [
  37906. {
  37907. name: "Normal",
  37908. height: math.unit(7, "feet"),
  37909. default: true
  37910. },
  37911. ]
  37912. ))
  37913. characterMakers.push(() => makeCharacter(
  37914. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37915. {
  37916. front: {
  37917. height: math.unit(16, "feet"),
  37918. name: "Front",
  37919. image: {
  37920. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37921. extra: 1844/1780,
  37922. bottom: 58/1902
  37923. }
  37924. },
  37925. winterCoat: {
  37926. height: math.unit(16, "feet"),
  37927. name: "Winter Coat",
  37928. image: {
  37929. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37930. extra: 1807/1775,
  37931. bottom: 69/1876
  37932. }
  37933. },
  37934. },
  37935. [
  37936. {
  37937. name: "Normal",
  37938. height: math.unit(16, "feet"),
  37939. default: true
  37940. },
  37941. {
  37942. name: "Chicago Size",
  37943. height: math.unit(560, "feet")
  37944. },
  37945. ]
  37946. ))
  37947. characterMakers.push(() => makeCharacter(
  37948. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37949. {
  37950. front: {
  37951. height: math.unit(11 + 6/12, "feet"),
  37952. weight: math.unit(1366, "lb"),
  37953. name: "Front",
  37954. image: {
  37955. source: "./media/characters/lexor/front.svg",
  37956. extra: 1560/1481,
  37957. bottom: 211/1771
  37958. }
  37959. },
  37960. back: {
  37961. height: math.unit(11 + 6/12, "feet"),
  37962. weight: math.unit(1366, "lb"),
  37963. name: "Back",
  37964. image: {
  37965. source: "./media/characters/lexor/back.svg",
  37966. extra: 1614/1533,
  37967. bottom: 76/1690
  37968. }
  37969. },
  37970. maw: {
  37971. height: math.unit(3, "feet"),
  37972. name: "Maw",
  37973. image: {
  37974. source: "./media/characters/lexor/maw.svg"
  37975. }
  37976. },
  37977. dick: {
  37978. height: math.unit(2.59, "feet"),
  37979. name: "Dick",
  37980. image: {
  37981. source: "./media/characters/lexor/dick.svg"
  37982. }
  37983. },
  37984. },
  37985. [
  37986. {
  37987. name: "Normal",
  37988. height: math.unit(11 + 6/12, "feet"),
  37989. default: true
  37990. },
  37991. ]
  37992. ))
  37993. characterMakers.push(() => makeCharacter(
  37994. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37995. {
  37996. front: {
  37997. height: math.unit(5 + 8/12, "feet"),
  37998. name: "Front",
  37999. image: {
  38000. source: "./media/characters/magnum/front.svg",
  38001. extra: 942/855,
  38002. bottom: 26/968
  38003. }
  38004. },
  38005. },
  38006. [
  38007. {
  38008. name: "Normal",
  38009. height: math.unit(5 + 8/12, "feet"),
  38010. default: true
  38011. },
  38012. ]
  38013. ))
  38014. characterMakers.push(() => makeCharacter(
  38015. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38016. {
  38017. front: {
  38018. height: math.unit(18 + 4/12, "feet"),
  38019. weight: math.unit(1500, "kg"),
  38020. name: "Front",
  38021. image: {
  38022. source: "./media/characters/solas-sharpsman/front.svg",
  38023. extra: 1698/1589,
  38024. bottom: 0/1698
  38025. }
  38026. },
  38027. },
  38028. [
  38029. {
  38030. name: "Normal",
  38031. height: math.unit(18 + 4/12, "feet"),
  38032. default: true
  38033. },
  38034. ]
  38035. ))
  38036. characterMakers.push(() => makeCharacter(
  38037. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38038. {
  38039. front: {
  38040. height: math.unit(5 + 5/12, "feet"),
  38041. weight: math.unit(180, "lb"),
  38042. name: "Front",
  38043. image: {
  38044. source: "./media/characters/october/front.svg",
  38045. extra: 1800/1650,
  38046. bottom: 0/1800
  38047. }
  38048. },
  38049. frontNsfw: {
  38050. height: math.unit(5 + 5/12, "feet"),
  38051. weight: math.unit(180, "lb"),
  38052. name: "Front (NSFW)",
  38053. image: {
  38054. source: "./media/characters/october/front-nsfw.svg",
  38055. extra: 1392/1307,
  38056. bottom: 42/1434
  38057. }
  38058. },
  38059. },
  38060. [
  38061. {
  38062. name: "Normal",
  38063. height: math.unit(5 + 5/12, "feet"),
  38064. default: true
  38065. },
  38066. ]
  38067. ))
  38068. characterMakers.push(() => makeCharacter(
  38069. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38070. {
  38071. front: {
  38072. height: math.unit(8 + 6/12, "feet"),
  38073. name: "Front",
  38074. image: {
  38075. source: "./media/characters/essynkardi/front.svg",
  38076. extra: 1914/1846,
  38077. bottom: 22/1936
  38078. }
  38079. },
  38080. },
  38081. [
  38082. {
  38083. name: "Normal",
  38084. height: math.unit(8 + 6/12, "feet"),
  38085. default: true
  38086. },
  38087. ]
  38088. ))
  38089. characterMakers.push(() => makeCharacter(
  38090. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38091. {
  38092. front: {
  38093. height: math.unit(6 + 6/12, "feet"),
  38094. weight: math.unit(7, "lb"),
  38095. name: "Front",
  38096. image: {
  38097. source: "./media/characters/icky/front.svg",
  38098. extra: 813/782,
  38099. bottom: 66/879
  38100. }
  38101. },
  38102. back: {
  38103. height: math.unit(6 + 6/12, "feet"),
  38104. weight: math.unit(7, "lb"),
  38105. name: "Back",
  38106. image: {
  38107. source: "./media/characters/icky/back.svg",
  38108. extra: 754/735,
  38109. bottom: 56/810
  38110. }
  38111. },
  38112. },
  38113. [
  38114. {
  38115. name: "Normal",
  38116. height: math.unit(6 + 6/12, "feet"),
  38117. default: true
  38118. },
  38119. ]
  38120. ))
  38121. characterMakers.push(() => makeCharacter(
  38122. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38123. {
  38124. front: {
  38125. height: math.unit(15, "feet"),
  38126. name: "Front",
  38127. image: {
  38128. source: "./media/characters/rojas/front.svg",
  38129. extra: 1462/1408,
  38130. bottom: 95/1557
  38131. }
  38132. },
  38133. back: {
  38134. height: math.unit(15, "feet"),
  38135. name: "Back",
  38136. image: {
  38137. source: "./media/characters/rojas/back.svg",
  38138. extra: 1023/954,
  38139. bottom: 28/1051
  38140. }
  38141. },
  38142. },
  38143. [
  38144. {
  38145. name: "Normal",
  38146. height: math.unit(15, "feet"),
  38147. default: true
  38148. },
  38149. ]
  38150. ))
  38151. characterMakers.push(() => makeCharacter(
  38152. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38153. {
  38154. frontHuman: {
  38155. height: math.unit(5 + 7/12, "feet"),
  38156. name: "Front (Human)",
  38157. image: {
  38158. source: "./media/characters/alek-dryagan/front-human.svg",
  38159. extra: 1687/1667,
  38160. bottom: 69/1756
  38161. }
  38162. },
  38163. backHuman: {
  38164. height: math.unit(5 + 7/12, "feet"),
  38165. name: "Back (Human)",
  38166. image: {
  38167. source: "./media/characters/alek-dryagan/back-human.svg",
  38168. extra: 1670/1649,
  38169. bottom: 65/1735
  38170. }
  38171. },
  38172. frontDemi: {
  38173. height: math.unit(65, "feet"),
  38174. name: "Front (Demi)",
  38175. image: {
  38176. source: "./media/characters/alek-dryagan/front-demi.svg",
  38177. extra: 1669/1642,
  38178. bottom: 49/1718
  38179. }
  38180. },
  38181. backDemi: {
  38182. height: math.unit(65, "feet"),
  38183. name: "Back (Demi)",
  38184. image: {
  38185. source: "./media/characters/alek-dryagan/back-demi.svg",
  38186. extra: 1658/1637,
  38187. bottom: 40/1698
  38188. }
  38189. },
  38190. mawHuman: {
  38191. height: math.unit(0.3, "feet"),
  38192. name: "Maw (Human)",
  38193. image: {
  38194. source: "./media/characters/alek-dryagan/maw-human.svg"
  38195. }
  38196. },
  38197. mawDemi: {
  38198. height: math.unit(3.8, "feet"),
  38199. name: "Maw (Demi)",
  38200. image: {
  38201. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38202. }
  38203. },
  38204. },
  38205. [
  38206. {
  38207. name: "Normal",
  38208. height: math.unit(5 + 7/12, "feet"),
  38209. default: true
  38210. },
  38211. ]
  38212. ))
  38213. characterMakers.push(() => makeCharacter(
  38214. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38215. {
  38216. frontHuman: {
  38217. height: math.unit(5 + 2/12, "feet"),
  38218. name: "Front (Human)",
  38219. image: {
  38220. source: "./media/characters/gen/front-human.svg",
  38221. extra: 1627/1538,
  38222. bottom: 71/1698
  38223. }
  38224. },
  38225. backHuman: {
  38226. height: math.unit(5 + 2/12, "feet"),
  38227. name: "Back (Human)",
  38228. image: {
  38229. source: "./media/characters/gen/back-human.svg",
  38230. extra: 1638/1548,
  38231. bottom: 69/1707
  38232. }
  38233. },
  38234. frontDemi: {
  38235. height: math.unit(5 + 2/12, "feet"),
  38236. name: "Front (Demi)",
  38237. image: {
  38238. source: "./media/characters/gen/front-demi.svg",
  38239. extra: 1627/1538,
  38240. bottom: 71/1698
  38241. }
  38242. },
  38243. backDemi: {
  38244. height: math.unit(5 + 2/12, "feet"),
  38245. name: "Back (Demi)",
  38246. image: {
  38247. source: "./media/characters/gen/back-demi.svg",
  38248. extra: 1638/1548,
  38249. bottom: 69/1707
  38250. }
  38251. },
  38252. },
  38253. [
  38254. {
  38255. name: "Normal",
  38256. height: math.unit(5 + 2/12, "feet"),
  38257. default: true
  38258. },
  38259. ]
  38260. ))
  38261. characterMakers.push(() => makeCharacter(
  38262. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38263. {
  38264. frontImp: {
  38265. height: math.unit(1 + 11/12, "feet"),
  38266. name: "Front (Imp)",
  38267. image: {
  38268. source: "./media/characters/max-kobold/front-imp.svg",
  38269. extra: 1238/1134,
  38270. bottom: 81/1319
  38271. }
  38272. },
  38273. backImp: {
  38274. height: math.unit(1 + 11/12, "feet"),
  38275. name: "Back (Imp)",
  38276. image: {
  38277. source: "./media/characters/max-kobold/back-imp.svg",
  38278. extra: 1334/1175,
  38279. bottom: 34/1368
  38280. }
  38281. },
  38282. frontDemi: {
  38283. height: math.unit(5 + 9/12, "feet"),
  38284. name: "Front (Demi)",
  38285. image: {
  38286. source: "./media/characters/max-kobold/front-demi.svg",
  38287. extra: 1715/1685,
  38288. bottom: 54/1769
  38289. }
  38290. },
  38291. backDemi: {
  38292. height: math.unit(5 + 9/12, "feet"),
  38293. name: "Back (Demi)",
  38294. image: {
  38295. source: "./media/characters/max-kobold/back-demi.svg",
  38296. extra: 1752/1729,
  38297. bottom: 41/1793
  38298. }
  38299. },
  38300. handImp: {
  38301. height: math.unit(0.45, "feet"),
  38302. name: "Hand (Imp)",
  38303. image: {
  38304. source: "./media/characters/max-kobold/hand.svg"
  38305. }
  38306. },
  38307. pawImp: {
  38308. height: math.unit(0.46, "feet"),
  38309. name: "Paw (Imp)",
  38310. image: {
  38311. source: "./media/characters/max-kobold/paw.svg"
  38312. }
  38313. },
  38314. handDemi: {
  38315. height: math.unit(0.80, "feet"),
  38316. name: "Hand (Demi)",
  38317. image: {
  38318. source: "./media/characters/max-kobold/hand.svg"
  38319. }
  38320. },
  38321. pawDemi: {
  38322. height: math.unit(1.1, "feet"),
  38323. name: "Paw (Demi)",
  38324. image: {
  38325. source: "./media/characters/max-kobold/paw.svg"
  38326. }
  38327. },
  38328. headImp: {
  38329. height: math.unit(1.33, "feet"),
  38330. name: "Head (Imp)",
  38331. image: {
  38332. source: "./media/characters/max-kobold/head-imp.svg"
  38333. }
  38334. },
  38335. mawImp: {
  38336. height: math.unit(0.75, "feet"),
  38337. name: "Maw (Imp)",
  38338. image: {
  38339. source: "./media/characters/max-kobold/maw-imp.svg"
  38340. }
  38341. },
  38342. mawDemi: {
  38343. height: math.unit(0.42, "feet"),
  38344. name: "Maw (Demi)",
  38345. image: {
  38346. source: "./media/characters/max-kobold/maw-demi.svg"
  38347. }
  38348. },
  38349. },
  38350. [
  38351. {
  38352. name: "Normal",
  38353. height: math.unit(1 + 11/12, "feet"),
  38354. default: true
  38355. },
  38356. ]
  38357. ))
  38358. characterMakers.push(() => makeCharacter(
  38359. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38360. {
  38361. front: {
  38362. height: math.unit(7 + 5/12, "feet"),
  38363. name: "Front",
  38364. image: {
  38365. source: "./media/characters/carbon/front.svg",
  38366. extra: 1754/1689,
  38367. bottom: 65/1819
  38368. }
  38369. },
  38370. back: {
  38371. height: math.unit(7 + 5/12, "feet"),
  38372. name: "Back",
  38373. image: {
  38374. source: "./media/characters/carbon/back.svg",
  38375. extra: 1762/1695,
  38376. bottom: 24/1786
  38377. }
  38378. },
  38379. frontGigantamax: {
  38380. height: math.unit(150, "feet"),
  38381. name: "Front (Gigantamax)",
  38382. image: {
  38383. source: "./media/characters/carbon/front-gigantamax.svg",
  38384. extra: 1826/1669,
  38385. bottom: 59/1885
  38386. }
  38387. },
  38388. backGigantamax: {
  38389. height: math.unit(150, "feet"),
  38390. name: "Back (Gigantamax)",
  38391. image: {
  38392. source: "./media/characters/carbon/back-gigantamax.svg",
  38393. extra: 1796/1653,
  38394. bottom: 53/1849
  38395. }
  38396. },
  38397. maw: {
  38398. height: math.unit(0.48, "feet"),
  38399. name: "Maw",
  38400. image: {
  38401. source: "./media/characters/carbon/maw.svg"
  38402. }
  38403. },
  38404. mawGigantamax: {
  38405. height: math.unit(7.5, "feet"),
  38406. name: "Maw (Gigantamax)",
  38407. image: {
  38408. source: "./media/characters/carbon/maw-gigantamax.svg"
  38409. }
  38410. },
  38411. },
  38412. [
  38413. {
  38414. name: "Normal",
  38415. height: math.unit(7 + 5/12, "feet"),
  38416. default: true
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38422. {
  38423. front: {
  38424. height: math.unit(6, "feet"),
  38425. name: "Front",
  38426. image: {
  38427. source: "./media/characters/maverick/front.svg",
  38428. extra: 1672/1661,
  38429. bottom: 85/1757
  38430. }
  38431. },
  38432. back: {
  38433. height: math.unit(6, "feet"),
  38434. name: "Back",
  38435. image: {
  38436. source: "./media/characters/maverick/back.svg",
  38437. extra: 1642/1631,
  38438. bottom: 38/1680
  38439. }
  38440. },
  38441. },
  38442. [
  38443. {
  38444. name: "Normal",
  38445. height: math.unit(6, "feet"),
  38446. default: true
  38447. },
  38448. ]
  38449. ))
  38450. characterMakers.push(() => makeCharacter(
  38451. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38452. {
  38453. front: {
  38454. height: math.unit(15, "feet"),
  38455. weight: math.unit(615, "lb"),
  38456. name: "Front",
  38457. image: {
  38458. source: "./media/characters/grockle/front.svg",
  38459. extra: 1535/1427,
  38460. bottom: 56/1591
  38461. }
  38462. },
  38463. },
  38464. [
  38465. {
  38466. name: "Normal",
  38467. height: math.unit(15, "feet"),
  38468. default: true
  38469. },
  38470. {
  38471. name: "Large",
  38472. height: math.unit(150, "feet")
  38473. },
  38474. {
  38475. name: "Macro",
  38476. height: math.unit(1876, "feet")
  38477. },
  38478. {
  38479. name: "Mega Macro",
  38480. height: math.unit(121940, "feet")
  38481. },
  38482. {
  38483. name: "Giga Macro",
  38484. height: math.unit(750, "km")
  38485. },
  38486. {
  38487. name: "Tera Macro",
  38488. height: math.unit(750000, "km")
  38489. },
  38490. {
  38491. name: "Galactic",
  38492. height: math.unit(1.4e5, "km")
  38493. },
  38494. {
  38495. name: "Godlike",
  38496. height: math.unit(9.8e280, "galaxies")
  38497. },
  38498. ]
  38499. ))
  38500. characterMakers.push(() => makeCharacter(
  38501. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38502. {
  38503. front: {
  38504. height: math.unit(11, "meters"),
  38505. weight: math.unit(20, "tonnes"),
  38506. name: "Front",
  38507. image: {
  38508. source: "./media/characters/alistair/front.svg",
  38509. extra: 1265/1009,
  38510. bottom: 93/1358
  38511. }
  38512. },
  38513. },
  38514. [
  38515. {
  38516. name: "Normal",
  38517. height: math.unit(11, "meters"),
  38518. default: true
  38519. },
  38520. ]
  38521. ))
  38522. characterMakers.push(() => makeCharacter(
  38523. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38524. {
  38525. front: {
  38526. height: math.unit(5 + 8/12, "feet"),
  38527. name: "Front",
  38528. image: {
  38529. source: "./media/characters/haruka/front.svg",
  38530. extra: 2012/1952,
  38531. bottom: 0/2012
  38532. }
  38533. },
  38534. },
  38535. [
  38536. {
  38537. name: "Normal",
  38538. height: math.unit(5 + 8/12, "feet"),
  38539. default: true
  38540. },
  38541. ]
  38542. ))
  38543. characterMakers.push(() => makeCharacter(
  38544. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38545. {
  38546. back: {
  38547. height: math.unit(9, "feet"),
  38548. name: "Back",
  38549. image: {
  38550. source: "./media/characters/vivian-sylveon/back.svg",
  38551. extra: 1853/1714,
  38552. bottom: 0/1853
  38553. }
  38554. },
  38555. },
  38556. [
  38557. {
  38558. name: "Normal",
  38559. height: math.unit(9, "feet"),
  38560. default: true
  38561. },
  38562. {
  38563. name: "Macro",
  38564. height: math.unit(500, "feet")
  38565. },
  38566. {
  38567. name: "Megamacro",
  38568. height: math.unit(600, "miles")
  38569. },
  38570. {
  38571. name: "Gigamacro",
  38572. height: math.unit(30000, "miles")
  38573. },
  38574. ]
  38575. ))
  38576. characterMakers.push(() => makeCharacter(
  38577. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38578. {
  38579. anthro: {
  38580. height: math.unit(5 + 10/12, "feet"),
  38581. weight: math.unit(100, "lb"),
  38582. name: "Anthro",
  38583. image: {
  38584. source: "./media/characters/daiki/anthro.svg",
  38585. extra: 1115/1027,
  38586. bottom: 69/1184
  38587. }
  38588. },
  38589. feral: {
  38590. height: math.unit(200, "feet"),
  38591. name: "Feral",
  38592. image: {
  38593. source: "./media/characters/daiki/feral.svg",
  38594. extra: 1256/313,
  38595. bottom: 39/1295
  38596. }
  38597. },
  38598. feralHead: {
  38599. height: math.unit(171, "feet"),
  38600. name: "Feral Head",
  38601. image: {
  38602. source: "./media/characters/daiki/feral-head.svg"
  38603. }
  38604. },
  38605. manaDragon: {
  38606. height: math.unit(170, "meters"),
  38607. name: "Mana-dragon",
  38608. image: {
  38609. source: "./media/characters/daiki/mana-dragon.svg",
  38610. extra: 763/420,
  38611. bottom: 97/860
  38612. }
  38613. },
  38614. },
  38615. [
  38616. {
  38617. name: "Normal",
  38618. height: math.unit(5 + 10/12, "feet"),
  38619. default: true
  38620. },
  38621. ]
  38622. ))
  38623. characterMakers.push(() => makeCharacter(
  38624. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38625. {
  38626. fullyEquippedFront: {
  38627. height: math.unit(3 + 1/12, "feet"),
  38628. weight: math.unit(24, "lb"),
  38629. name: "Fully Equipped (Front)",
  38630. image: {
  38631. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38632. extra: 687/605,
  38633. bottom: 18/705
  38634. }
  38635. },
  38636. fullyEquippedBack: {
  38637. height: math.unit(3 + 1/12, "feet"),
  38638. weight: math.unit(24, "lb"),
  38639. name: "Fully Equipped (Back)",
  38640. image: {
  38641. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38642. extra: 689/590,
  38643. bottom: 18/707
  38644. }
  38645. },
  38646. dailyWear: {
  38647. height: math.unit(3 + 1/12, "feet"),
  38648. weight: math.unit(24, "lb"),
  38649. name: "Daily Wear",
  38650. image: {
  38651. source: "./media/characters/tea-spot/daily-wear.svg",
  38652. extra: 701/620,
  38653. bottom: 21/722
  38654. }
  38655. },
  38656. maidWork: {
  38657. height: math.unit(3 + 1/12, "feet"),
  38658. weight: math.unit(24, "lb"),
  38659. name: "Maid Work",
  38660. image: {
  38661. source: "./media/characters/tea-spot/maid-work.svg",
  38662. extra: 693/609,
  38663. bottom: 15/708
  38664. }
  38665. },
  38666. },
  38667. [
  38668. {
  38669. name: "Normal",
  38670. height: math.unit(3 + 1/12, "feet"),
  38671. default: true
  38672. },
  38673. ]
  38674. ))
  38675. characterMakers.push(() => makeCharacter(
  38676. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38677. {
  38678. front: {
  38679. height: math.unit(175, "cm"),
  38680. weight: math.unit(75, "kg"),
  38681. name: "Front",
  38682. image: {
  38683. source: "./media/characters/chee/front.svg",
  38684. extra: 1796/1740,
  38685. bottom: 40/1836
  38686. }
  38687. },
  38688. },
  38689. [
  38690. {
  38691. name: "Micro-Micro",
  38692. height: math.unit(1, "nm")
  38693. },
  38694. {
  38695. name: "Micro-erst",
  38696. height: math.unit(1, "micrometer")
  38697. },
  38698. {
  38699. name: "Micro-er",
  38700. height: math.unit(1, "cm")
  38701. },
  38702. {
  38703. name: "Normal",
  38704. height: math.unit(175, "cm"),
  38705. default: true
  38706. },
  38707. {
  38708. name: "Macro",
  38709. height: math.unit(100, "m")
  38710. },
  38711. {
  38712. name: "Macro-er",
  38713. height: math.unit(1, "km")
  38714. },
  38715. {
  38716. name: "Macro-erst",
  38717. height: math.unit(10, "km")
  38718. },
  38719. {
  38720. name: "Macro-Macro",
  38721. height: math.unit(100, "km")
  38722. },
  38723. ]
  38724. ))
  38725. characterMakers.push(() => makeCharacter(
  38726. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38727. {
  38728. front: {
  38729. height: math.unit(11 + 9/12, "feet"),
  38730. weight: math.unit(935, "lb"),
  38731. name: "Front",
  38732. image: {
  38733. source: "./media/characters/kingsley/front.svg",
  38734. extra: 1803/1674,
  38735. bottom: 127/1930
  38736. }
  38737. },
  38738. frontNude: {
  38739. height: math.unit(11 + 9/12, "feet"),
  38740. weight: math.unit(935, "lb"),
  38741. name: "Front (Nude)",
  38742. image: {
  38743. source: "./media/characters/kingsley/front-nude.svg",
  38744. extra: 1803/1674,
  38745. bottom: 127/1930
  38746. }
  38747. },
  38748. },
  38749. [
  38750. {
  38751. name: "Normal",
  38752. height: math.unit(11 + 9/12, "feet"),
  38753. default: true
  38754. },
  38755. ]
  38756. ))
  38757. characterMakers.push(() => makeCharacter(
  38758. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38759. {
  38760. side: {
  38761. height: math.unit(9, "feet"),
  38762. name: "Side",
  38763. image: {
  38764. source: "./media/characters/rymel/side.svg",
  38765. extra: 792/469,
  38766. bottom: 121/913
  38767. }
  38768. },
  38769. maw: {
  38770. height: math.unit(2.4, "meters"),
  38771. name: "Maw",
  38772. image: {
  38773. source: "./media/characters/rymel/maw.svg"
  38774. }
  38775. },
  38776. },
  38777. [
  38778. {
  38779. name: "House Drake",
  38780. height: math.unit(2, "feet")
  38781. },
  38782. {
  38783. name: "Reduced",
  38784. height: math.unit(4.5, "feet")
  38785. },
  38786. {
  38787. name: "Normal",
  38788. height: math.unit(9, "feet"),
  38789. default: true
  38790. },
  38791. ]
  38792. ))
  38793. characterMakers.push(() => makeCharacter(
  38794. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38795. {
  38796. front: {
  38797. height: math.unit(1.74, "meters"),
  38798. weight: math.unit(55, "kg"),
  38799. name: "Front",
  38800. image: {
  38801. source: "./media/characters/rubus/front.svg",
  38802. extra: 1894/1742,
  38803. bottom: 44/1938
  38804. }
  38805. },
  38806. },
  38807. [
  38808. {
  38809. name: "Normal",
  38810. height: math.unit(1.74, "meters"),
  38811. default: true
  38812. },
  38813. ]
  38814. ))
  38815. characterMakers.push(() => makeCharacter(
  38816. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38817. {
  38818. front: {
  38819. height: math.unit(5 + 2/12, "feet"),
  38820. weight: math.unit(112, "lb"),
  38821. name: "Front",
  38822. image: {
  38823. source: "./media/characters/cassie-kingston/front.svg",
  38824. extra: 1438/1390,
  38825. bottom: 47/1485
  38826. }
  38827. },
  38828. },
  38829. [
  38830. {
  38831. name: "Normal",
  38832. height: math.unit(5 + 2/12, "feet"),
  38833. default: true
  38834. },
  38835. {
  38836. name: "Macro",
  38837. height: math.unit(128, "feet")
  38838. },
  38839. {
  38840. name: "Megamacro",
  38841. height: math.unit(2.56, "miles")
  38842. },
  38843. ]
  38844. ))
  38845. characterMakers.push(() => makeCharacter(
  38846. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38847. {
  38848. front: {
  38849. height: math.unit(7, "feet"),
  38850. name: "Front",
  38851. image: {
  38852. source: "./media/characters/fox/front.svg",
  38853. extra: 1798/1703,
  38854. bottom: 55/1853
  38855. }
  38856. },
  38857. back: {
  38858. height: math.unit(7, "feet"),
  38859. name: "Back",
  38860. image: {
  38861. source: "./media/characters/fox/back.svg",
  38862. extra: 1748/1649,
  38863. bottom: 32/1780
  38864. }
  38865. },
  38866. head: {
  38867. height: math.unit(1.95, "feet"),
  38868. name: "Head",
  38869. image: {
  38870. source: "./media/characters/fox/head.svg"
  38871. }
  38872. },
  38873. dick: {
  38874. height: math.unit(1.33, "feet"),
  38875. name: "Dick",
  38876. image: {
  38877. source: "./media/characters/fox/dick.svg"
  38878. }
  38879. },
  38880. foot: {
  38881. height: math.unit(1, "feet"),
  38882. name: "Foot",
  38883. image: {
  38884. source: "./media/characters/fox/foot.svg"
  38885. }
  38886. },
  38887. paw: {
  38888. height: math.unit(0.92, "feet"),
  38889. name: "Paw",
  38890. image: {
  38891. source: "./media/characters/fox/paw.svg"
  38892. }
  38893. },
  38894. },
  38895. [
  38896. {
  38897. name: "Small",
  38898. height: math.unit(3, "inches")
  38899. },
  38900. {
  38901. name: "\"Realistic\"",
  38902. height: math.unit(7, "feet")
  38903. },
  38904. {
  38905. name: "Normal",
  38906. height: math.unit(150, "feet"),
  38907. default: true
  38908. },
  38909. {
  38910. name: "BIG",
  38911. height: math.unit(1200, "feet")
  38912. },
  38913. {
  38914. name: "👀",
  38915. height: math.unit(5, "miles")
  38916. },
  38917. {
  38918. name: "👀👀👀",
  38919. height: math.unit(64, "miles")
  38920. },
  38921. ]
  38922. ))
  38923. characterMakers.push(() => makeCharacter(
  38924. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38925. {
  38926. front: {
  38927. height: math.unit(625, "feet"),
  38928. name: "Front",
  38929. image: {
  38930. source: "./media/characters/asonja-rossa/front.svg",
  38931. extra: 1833/1686,
  38932. bottom: 24/1857
  38933. }
  38934. },
  38935. back: {
  38936. height: math.unit(625, "feet"),
  38937. name: "Back",
  38938. image: {
  38939. source: "./media/characters/asonja-rossa/back.svg",
  38940. extra: 1852/1753,
  38941. bottom: 26/1878
  38942. }
  38943. },
  38944. },
  38945. [
  38946. {
  38947. name: "Macro",
  38948. height: math.unit(625, "feet"),
  38949. default: true
  38950. },
  38951. ]
  38952. ))
  38953. characterMakers.push(() => makeCharacter(
  38954. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38955. {
  38956. side: {
  38957. height: math.unit(8, "feet"),
  38958. name: "Side",
  38959. image: {
  38960. source: "./media/characters/rezukii/side.svg",
  38961. extra: 979/542,
  38962. bottom: 87/1066
  38963. }
  38964. },
  38965. sitting: {
  38966. height: math.unit(14.6, "feet"),
  38967. name: "Sitting",
  38968. image: {
  38969. source: "./media/characters/rezukii/sitting.svg",
  38970. extra: 1023/813,
  38971. bottom: 45/1068
  38972. }
  38973. },
  38974. },
  38975. [
  38976. {
  38977. name: "Tiny",
  38978. height: math.unit(2, "feet")
  38979. },
  38980. {
  38981. name: "Smol",
  38982. height: math.unit(4, "feet")
  38983. },
  38984. {
  38985. name: "Normal",
  38986. height: math.unit(8, "feet"),
  38987. default: true
  38988. },
  38989. {
  38990. name: "Big",
  38991. height: math.unit(12, "feet")
  38992. },
  38993. {
  38994. name: "Macro",
  38995. height: math.unit(30, "feet")
  38996. },
  38997. ]
  38998. ))
  38999. characterMakers.push(() => makeCharacter(
  39000. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39001. {
  39002. front: {
  39003. height: math.unit(14, "feet"),
  39004. weight: math.unit(9.5, "tonnes"),
  39005. name: "Front",
  39006. image: {
  39007. source: "./media/characters/dawnheart/front.svg",
  39008. extra: 2792/2675,
  39009. bottom: 64/2856
  39010. }
  39011. },
  39012. },
  39013. [
  39014. {
  39015. name: "Normal",
  39016. height: math.unit(14, "feet"),
  39017. default: true
  39018. },
  39019. ]
  39020. ))
  39021. characterMakers.push(() => makeCharacter(
  39022. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39023. {
  39024. front: {
  39025. height: math.unit(1.7, "m"),
  39026. name: "Front",
  39027. image: {
  39028. source: "./media/characters/gladi/front.svg",
  39029. extra: 1460/1362,
  39030. bottom: 19/1479
  39031. }
  39032. },
  39033. back: {
  39034. height: math.unit(1.7, "m"),
  39035. name: "Back",
  39036. image: {
  39037. source: "./media/characters/gladi/back.svg",
  39038. extra: 1459/1357,
  39039. bottom: 12/1471
  39040. }
  39041. },
  39042. feral: {
  39043. height: math.unit(2.05, "m"),
  39044. name: "Feral",
  39045. image: {
  39046. source: "./media/characters/gladi/feral.svg",
  39047. extra: 821/557,
  39048. bottom: 91/912
  39049. }
  39050. },
  39051. },
  39052. [
  39053. {
  39054. name: "Shortest",
  39055. height: math.unit(70, "cm")
  39056. },
  39057. {
  39058. name: "Normal",
  39059. height: math.unit(1.7, "m")
  39060. },
  39061. {
  39062. name: "Macro",
  39063. height: math.unit(10, "m"),
  39064. default: true
  39065. },
  39066. {
  39067. name: "Tallest",
  39068. height: math.unit(200, "m")
  39069. },
  39070. ]
  39071. ))
  39072. characterMakers.push(() => makeCharacter(
  39073. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39074. {
  39075. front: {
  39076. height: math.unit(5 + 7/12, "feet"),
  39077. weight: math.unit(2, "tons"),
  39078. name: "Front",
  39079. image: {
  39080. source: "./media/characters/erdno/front.svg",
  39081. extra: 1234/1129,
  39082. bottom: 35/1269
  39083. }
  39084. },
  39085. angled: {
  39086. height: math.unit(5 + 7/12, "feet"),
  39087. weight: math.unit(2, "tons"),
  39088. name: "Angled",
  39089. image: {
  39090. source: "./media/characters/erdno/angled.svg",
  39091. extra: 1185/1139,
  39092. bottom: 36/1221
  39093. }
  39094. },
  39095. side: {
  39096. height: math.unit(5 + 7/12, "feet"),
  39097. weight: math.unit(2, "tons"),
  39098. name: "Side",
  39099. image: {
  39100. source: "./media/characters/erdno/side.svg",
  39101. extra: 1191/1144,
  39102. bottom: 40/1231
  39103. }
  39104. },
  39105. back: {
  39106. height: math.unit(5 + 7/12, "feet"),
  39107. weight: math.unit(2, "tons"),
  39108. name: "Back",
  39109. image: {
  39110. source: "./media/characters/erdno/back.svg",
  39111. extra: 1202/1146,
  39112. bottom: 17/1219
  39113. }
  39114. },
  39115. frontNsfw: {
  39116. height: math.unit(5 + 7/12, "feet"),
  39117. weight: math.unit(2, "tons"),
  39118. name: "Front (NSFW)",
  39119. image: {
  39120. source: "./media/characters/erdno/front-nsfw.svg",
  39121. extra: 1234/1129,
  39122. bottom: 35/1269
  39123. }
  39124. },
  39125. angledNsfw: {
  39126. height: math.unit(5 + 7/12, "feet"),
  39127. weight: math.unit(2, "tons"),
  39128. name: "Angled (NSFW)",
  39129. image: {
  39130. source: "./media/characters/erdno/angled-nsfw.svg",
  39131. extra: 1185/1139,
  39132. bottom: 36/1221
  39133. }
  39134. },
  39135. sideNsfw: {
  39136. height: math.unit(5 + 7/12, "feet"),
  39137. weight: math.unit(2, "tons"),
  39138. name: "Side (NSFW)",
  39139. image: {
  39140. source: "./media/characters/erdno/side-nsfw.svg",
  39141. extra: 1191/1144,
  39142. bottom: 40/1231
  39143. }
  39144. },
  39145. backNsfw: {
  39146. height: math.unit(5 + 7/12, "feet"),
  39147. weight: math.unit(2, "tons"),
  39148. name: "Back (NSFW)",
  39149. image: {
  39150. source: "./media/characters/erdno/back-nsfw.svg",
  39151. extra: 1202/1146,
  39152. bottom: 17/1219
  39153. }
  39154. },
  39155. frontHyper: {
  39156. height: math.unit(5 + 7/12, "feet"),
  39157. weight: math.unit(2, "tons"),
  39158. name: "Front (Hyper)",
  39159. image: {
  39160. source: "./media/characters/erdno/front-hyper.svg",
  39161. extra: 1298/1136,
  39162. bottom: 35/1333
  39163. }
  39164. },
  39165. },
  39166. [
  39167. {
  39168. name: "Normal",
  39169. height: math.unit(5 + 7/12, "feet"),
  39170. default: true
  39171. },
  39172. {
  39173. name: "Big",
  39174. height: math.unit(5.7, "meters")
  39175. },
  39176. {
  39177. name: "Macro",
  39178. height: math.unit(5.7, "kilometers")
  39179. },
  39180. {
  39181. name: "Megamacro",
  39182. height: math.unit(5.7, "earths")
  39183. },
  39184. ]
  39185. ))
  39186. characterMakers.push(() => makeCharacter(
  39187. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39188. {
  39189. front: {
  39190. height: math.unit(5 + 10/12, "feet"),
  39191. weight: math.unit(150, "lb"),
  39192. name: "Front",
  39193. image: {
  39194. source: "./media/characters/jamie/front.svg",
  39195. extra: 1908/1768,
  39196. bottom: 19/1927
  39197. }
  39198. },
  39199. },
  39200. [
  39201. {
  39202. name: "Minimum",
  39203. height: math.unit(2, "cm")
  39204. },
  39205. {
  39206. name: "Micro",
  39207. height: math.unit(3, "inches")
  39208. },
  39209. {
  39210. name: "Normal",
  39211. height: math.unit(5 + 10/12, "feet"),
  39212. default: true
  39213. },
  39214. {
  39215. name: "Macro",
  39216. height: math.unit(150, "feet")
  39217. },
  39218. {
  39219. name: "Megamacro",
  39220. height: math.unit(10000, "m")
  39221. },
  39222. ]
  39223. ))
  39224. characterMakers.push(() => makeCharacter(
  39225. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39226. {
  39227. front: {
  39228. height: math.unit(2, "meters"),
  39229. weight: math.unit(100, "kg"),
  39230. name: "Front",
  39231. image: {
  39232. source: "./media/characters/shiron/front.svg",
  39233. extra: 2103/1985,
  39234. bottom: 98/2201
  39235. }
  39236. },
  39237. back: {
  39238. height: math.unit(2, "meters"),
  39239. weight: math.unit(100, "kg"),
  39240. name: "Back",
  39241. image: {
  39242. source: "./media/characters/shiron/back.svg",
  39243. extra: 2110/2015,
  39244. bottom: 89/2199
  39245. }
  39246. },
  39247. hand: {
  39248. height: math.unit(0.96, "feet"),
  39249. name: "Hand",
  39250. image: {
  39251. source: "./media/characters/shiron/hand.svg"
  39252. }
  39253. },
  39254. foot: {
  39255. height: math.unit(1.464, "feet"),
  39256. name: "Foot",
  39257. image: {
  39258. source: "./media/characters/shiron/foot.svg"
  39259. }
  39260. },
  39261. },
  39262. [
  39263. {
  39264. name: "Normal",
  39265. height: math.unit(2, "meters")
  39266. },
  39267. {
  39268. name: "Macro",
  39269. height: math.unit(500, "meters"),
  39270. default: true
  39271. },
  39272. {
  39273. name: "Megamacro",
  39274. height: math.unit(20, "km")
  39275. },
  39276. ]
  39277. ))
  39278. characterMakers.push(() => makeCharacter(
  39279. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39280. {
  39281. front: {
  39282. height: math.unit(6, "feet"),
  39283. name: "Front",
  39284. image: {
  39285. source: "./media/characters/sam/front.svg",
  39286. extra: 849/826,
  39287. bottom: 19/868
  39288. }
  39289. },
  39290. },
  39291. [
  39292. {
  39293. name: "Normal",
  39294. height: math.unit(6, "feet"),
  39295. default: true
  39296. },
  39297. ]
  39298. ))
  39299. characterMakers.push(() => makeCharacter(
  39300. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39301. {
  39302. front: {
  39303. height: math.unit(8 + 4/12, "feet"),
  39304. weight: math.unit(122, "kg"),
  39305. name: "Front",
  39306. image: {
  39307. source: "./media/characters/namori-kurogawa/front.svg",
  39308. extra: 1894/1576,
  39309. bottom: 34/1928
  39310. }
  39311. },
  39312. },
  39313. [
  39314. {
  39315. name: "Normal",
  39316. height: math.unit(8 + 4/12, "feet"),
  39317. default: true
  39318. },
  39319. ]
  39320. ))
  39321. characterMakers.push(() => makeCharacter(
  39322. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39323. {
  39324. front: {
  39325. height: math.unit(9, "feet"),
  39326. weight: math.unit(621, "lb"),
  39327. name: "Front",
  39328. image: {
  39329. source: "./media/characters/unmru/front.svg",
  39330. extra: 1853/1747,
  39331. bottom: 73/1926
  39332. }
  39333. },
  39334. side: {
  39335. height: math.unit(9, "feet"),
  39336. weight: math.unit(621, "lb"),
  39337. name: "Side",
  39338. image: {
  39339. source: "./media/characters/unmru/side.svg",
  39340. extra: 1781/1671,
  39341. bottom: 127/1908
  39342. }
  39343. },
  39344. back: {
  39345. height: math.unit(9, "feet"),
  39346. weight: math.unit(621, "lb"),
  39347. name: "Back",
  39348. image: {
  39349. source: "./media/characters/unmru/back.svg",
  39350. extra: 1894/1765,
  39351. bottom: 75/1969
  39352. }
  39353. },
  39354. dick: {
  39355. height: math.unit(3, "feet"),
  39356. weight: math.unit(35, "lb"),
  39357. name: "Dick",
  39358. image: {
  39359. source: "./media/characters/unmru/dick.svg"
  39360. }
  39361. },
  39362. },
  39363. [
  39364. {
  39365. name: "Normal",
  39366. height: math.unit(9, "feet")
  39367. },
  39368. {
  39369. name: "Natural",
  39370. height: math.unit(27, "feet"),
  39371. default: true
  39372. },
  39373. {
  39374. name: "Giant",
  39375. height: math.unit(90, "feet")
  39376. },
  39377. {
  39378. name: "Kaiju",
  39379. height: math.unit(270, "feet")
  39380. },
  39381. {
  39382. name: "Macro",
  39383. height: math.unit(900, "feet")
  39384. },
  39385. {
  39386. name: "Macro+",
  39387. height: math.unit(2700, "feet")
  39388. },
  39389. {
  39390. name: "Megamacro",
  39391. height: math.unit(9000, "feet")
  39392. },
  39393. {
  39394. name: "City-Crushing",
  39395. height: math.unit(27000, "feet")
  39396. },
  39397. {
  39398. name: "Mountain-Mashing",
  39399. height: math.unit(90000, "feet")
  39400. },
  39401. {
  39402. name: "Earth-Eclipsing",
  39403. height: math.unit(2.7e8, "feet")
  39404. },
  39405. {
  39406. name: "Sol-Swallowing",
  39407. height: math.unit(9e10, "feet")
  39408. },
  39409. {
  39410. name: "Majoris-Munching",
  39411. height: math.unit(2.7e13, "feet")
  39412. },
  39413. ]
  39414. ))
  39415. characterMakers.push(() => makeCharacter(
  39416. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39417. {
  39418. front: {
  39419. height: math.unit(1, "inch"),
  39420. name: "Front",
  39421. image: {
  39422. source: "./media/characters/squeaks-mouse/front.svg",
  39423. extra: 352/308,
  39424. bottom: 25/377
  39425. }
  39426. },
  39427. },
  39428. [
  39429. {
  39430. name: "Micro",
  39431. height: math.unit(1, "inch"),
  39432. default: true
  39433. },
  39434. ]
  39435. ))
  39436. characterMakers.push(() => makeCharacter(
  39437. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39438. {
  39439. side: {
  39440. height: math.unit(35, "feet"),
  39441. name: "Side",
  39442. image: {
  39443. source: "./media/characters/sayko/side.svg",
  39444. extra: 1697/1021,
  39445. bottom: 82/1779
  39446. }
  39447. },
  39448. head: {
  39449. height: math.unit(16, "feet"),
  39450. name: "Head",
  39451. image: {
  39452. source: "./media/characters/sayko/head.svg"
  39453. }
  39454. },
  39455. forepaw: {
  39456. height: math.unit(7.85, "feet"),
  39457. name: "Forepaw",
  39458. image: {
  39459. source: "./media/characters/sayko/forepaw.svg"
  39460. }
  39461. },
  39462. hindpaw: {
  39463. height: math.unit(8.8, "feet"),
  39464. name: "Hindpaw",
  39465. image: {
  39466. source: "./media/characters/sayko/hindpaw.svg"
  39467. }
  39468. },
  39469. },
  39470. [
  39471. {
  39472. name: "Normal",
  39473. height: math.unit(35, "feet"),
  39474. default: true
  39475. },
  39476. {
  39477. name: "Colossus",
  39478. height: math.unit(100, "meters")
  39479. },
  39480. {
  39481. name: "\"Small\" Deity",
  39482. height: math.unit(1, "km")
  39483. },
  39484. {
  39485. name: "\"Large\" Deity",
  39486. height: math.unit(15, "km")
  39487. },
  39488. ]
  39489. ))
  39490. characterMakers.push(() => makeCharacter(
  39491. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39492. {
  39493. front: {
  39494. height: math.unit(6, "feet"),
  39495. weight: math.unit(250, "lb"),
  39496. name: "Front",
  39497. image: {
  39498. source: "./media/characters/mukiro/front.svg",
  39499. extra: 1368/1310,
  39500. bottom: 34/1402
  39501. }
  39502. },
  39503. },
  39504. [
  39505. {
  39506. name: "Normal",
  39507. height: math.unit(6, "feet"),
  39508. default: true
  39509. },
  39510. ]
  39511. ))
  39512. characterMakers.push(() => makeCharacter(
  39513. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39514. {
  39515. front: {
  39516. height: math.unit(12 + 4/12, "feet"),
  39517. name: "Front",
  39518. image: {
  39519. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39520. extra: 1346/1311,
  39521. bottom: 65/1411
  39522. }
  39523. },
  39524. },
  39525. [
  39526. {
  39527. name: "Base",
  39528. height: math.unit(12 + 4/12, "feet"),
  39529. default: true
  39530. },
  39531. {
  39532. name: "Macro",
  39533. height: math.unit(150, "feet")
  39534. },
  39535. {
  39536. name: "Mega",
  39537. height: math.unit(2, "miles")
  39538. },
  39539. {
  39540. name: "Demi God",
  39541. height: math.unit(4, "AU")
  39542. },
  39543. {
  39544. name: "God Size",
  39545. height: math.unit(1, "universe")
  39546. },
  39547. ]
  39548. ))
  39549. characterMakers.push(() => makeCharacter(
  39550. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39551. {
  39552. front: {
  39553. height: math.unit(3 + 3/12, "feet"),
  39554. weight: math.unit(88, "lb"),
  39555. name: "Front",
  39556. image: {
  39557. source: "./media/characters/trey/front.svg",
  39558. extra: 1815/1509,
  39559. bottom: 60/1875
  39560. }
  39561. },
  39562. },
  39563. [
  39564. {
  39565. name: "Normal",
  39566. height: math.unit(3 + 3/12, "feet"),
  39567. default: true
  39568. },
  39569. ]
  39570. ))
  39571. characterMakers.push(() => makeCharacter(
  39572. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39573. {
  39574. front: {
  39575. height: math.unit(4, "meters"),
  39576. name: "Front",
  39577. image: {
  39578. source: "./media/characters/adelonda/front.svg",
  39579. extra: 1077/982,
  39580. bottom: 39/1116
  39581. }
  39582. },
  39583. back: {
  39584. height: math.unit(4, "meters"),
  39585. name: "Back",
  39586. image: {
  39587. source: "./media/characters/adelonda/back.svg",
  39588. extra: 1105/1003,
  39589. bottom: 25/1130
  39590. }
  39591. },
  39592. feral: {
  39593. height: math.unit(40/1.5, "meters"),
  39594. name: "Feral",
  39595. image: {
  39596. source: "./media/characters/adelonda/feral.svg",
  39597. extra: 597/271,
  39598. bottom: 387/984
  39599. }
  39600. },
  39601. },
  39602. [
  39603. {
  39604. name: "Normal",
  39605. height: math.unit(4, "meters"),
  39606. default: true
  39607. },
  39608. ]
  39609. ))
  39610. characterMakers.push(() => makeCharacter(
  39611. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39612. {
  39613. front: {
  39614. height: math.unit(8 + 4/12, "feet"),
  39615. weight: math.unit(670, "lb"),
  39616. name: "Front",
  39617. image: {
  39618. source: "./media/characters/acadiel/front.svg",
  39619. extra: 1901/1595,
  39620. bottom: 142/2043
  39621. }
  39622. },
  39623. },
  39624. [
  39625. {
  39626. name: "Normal",
  39627. height: math.unit(8 + 4/12, "feet"),
  39628. default: true
  39629. },
  39630. {
  39631. name: "Macro",
  39632. height: math.unit(200, "feet")
  39633. },
  39634. ]
  39635. ))
  39636. characterMakers.push(() => makeCharacter(
  39637. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39638. {
  39639. front: {
  39640. height: math.unit(6 + 2/12, "feet"),
  39641. weight: math.unit(185, "lb"),
  39642. name: "Front",
  39643. image: {
  39644. source: "./media/characters/kayne-ein/front.svg",
  39645. extra: 1780/1560,
  39646. bottom: 81/1861
  39647. }
  39648. },
  39649. },
  39650. [
  39651. {
  39652. name: "Normal",
  39653. height: math.unit(6 + 2/12, "feet"),
  39654. default: true
  39655. },
  39656. {
  39657. name: "Transformation Stage",
  39658. height: math.unit(15, "feet")
  39659. },
  39660. {
  39661. name: "Macro",
  39662. height: math.unit(150, "feet")
  39663. },
  39664. {
  39665. name: "Earth's Shadow",
  39666. height: math.unit(6200, "miles")
  39667. },
  39668. {
  39669. name: "Universal Demon",
  39670. height: math.unit(28e9, "parsecs")
  39671. },
  39672. {
  39673. name: "Multiverse God",
  39674. height: math.unit(3, "multiverses")
  39675. },
  39676. ]
  39677. ))
  39678. characterMakers.push(() => makeCharacter(
  39679. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39680. {
  39681. front: {
  39682. height: math.unit(5 + 5/12, "feet"),
  39683. name: "Front",
  39684. image: {
  39685. source: "./media/characters/fawn/front.svg",
  39686. extra: 1873/1731,
  39687. bottom: 95/1968
  39688. }
  39689. },
  39690. back: {
  39691. height: math.unit(5 + 5/12, "feet"),
  39692. name: "Back",
  39693. image: {
  39694. source: "./media/characters/fawn/back.svg",
  39695. extra: 1813/1700,
  39696. bottom: 14/1827
  39697. }
  39698. },
  39699. hoof: {
  39700. height: math.unit(1.45, "feet"),
  39701. name: "Hoof",
  39702. image: {
  39703. source: "./media/characters/fawn/hoof.svg"
  39704. }
  39705. },
  39706. },
  39707. [
  39708. {
  39709. name: "Normal",
  39710. height: math.unit(5 + 5/12, "feet"),
  39711. default: true
  39712. },
  39713. ]
  39714. ))
  39715. characterMakers.push(() => makeCharacter(
  39716. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39717. {
  39718. front: {
  39719. height: math.unit(2 + 5/12, "feet"),
  39720. name: "Front",
  39721. image: {
  39722. source: "./media/characters/orion/front.svg",
  39723. extra: 1366/1304,
  39724. bottom: 43/1409
  39725. }
  39726. },
  39727. paw: {
  39728. height: math.unit(0.52, "feet"),
  39729. name: "Paw",
  39730. image: {
  39731. source: "./media/characters/orion/paw.svg"
  39732. }
  39733. },
  39734. },
  39735. [
  39736. {
  39737. name: "Normal",
  39738. height: math.unit(2 + 5/12, "feet"),
  39739. default: true
  39740. },
  39741. ]
  39742. ))
  39743. characterMakers.push(() => makeCharacter(
  39744. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39745. {
  39746. front: {
  39747. height: math.unit(5 + 10/12, "feet"),
  39748. name: "Front",
  39749. image: {
  39750. source: "./media/characters/vera/front.svg",
  39751. extra: 1680/1575,
  39752. bottom: 49/1729
  39753. }
  39754. },
  39755. back: {
  39756. height: math.unit(5 + 10/12, "feet"),
  39757. name: "Back",
  39758. image: {
  39759. source: "./media/characters/vera/back.svg",
  39760. extra: 1700/1588,
  39761. bottom: 18/1718
  39762. }
  39763. },
  39764. arcanine: {
  39765. height: math.unit(6 + 8/12, "feet"),
  39766. name: "Arcanine",
  39767. image: {
  39768. source: "./media/characters/vera/arcanine.svg",
  39769. extra: 1590/1511,
  39770. bottom: 71/1661
  39771. }
  39772. },
  39773. maw: {
  39774. height: math.unit(0.82, "feet"),
  39775. name: "Maw",
  39776. image: {
  39777. source: "./media/characters/vera/maw.svg"
  39778. }
  39779. },
  39780. mawArcanine: {
  39781. height: math.unit(0.97, "feet"),
  39782. name: "Maw (Arcanine)",
  39783. image: {
  39784. source: "./media/characters/vera/maw-arcanine.svg"
  39785. }
  39786. },
  39787. paw: {
  39788. height: math.unit(0.75, "feet"),
  39789. name: "Paw",
  39790. image: {
  39791. source: "./media/characters/vera/paw.svg"
  39792. }
  39793. },
  39794. pawprint: {
  39795. height: math.unit(0.52, "feet"),
  39796. name: "Pawprint",
  39797. image: {
  39798. source: "./media/characters/vera/pawprint.svg"
  39799. }
  39800. },
  39801. },
  39802. [
  39803. {
  39804. name: "Normal",
  39805. height: math.unit(5 + 10/12, "feet"),
  39806. default: true
  39807. },
  39808. {
  39809. name: "Macro",
  39810. height: math.unit(75, "feet")
  39811. },
  39812. ]
  39813. ))
  39814. characterMakers.push(() => makeCharacter(
  39815. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39816. {
  39817. front: {
  39818. height: math.unit(4, "feet"),
  39819. weight: math.unit(40, "lb"),
  39820. name: "Front",
  39821. image: {
  39822. source: "./media/characters/orvan-rabbit/front.svg",
  39823. extra: 1896/1642,
  39824. bottom: 29/1925
  39825. }
  39826. },
  39827. },
  39828. [
  39829. {
  39830. name: "Normal",
  39831. height: math.unit(4, "feet"),
  39832. default: true
  39833. },
  39834. ]
  39835. ))
  39836. characterMakers.push(() => makeCharacter(
  39837. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39838. {
  39839. front: {
  39840. height: math.unit(6, "feet"),
  39841. weight: math.unit(168, "lb"),
  39842. name: "Front",
  39843. image: {
  39844. source: "./media/characters/lisa/front.svg",
  39845. extra: 2065/1867,
  39846. bottom: 46/2111
  39847. }
  39848. },
  39849. back: {
  39850. height: math.unit(6, "feet"),
  39851. weight: math.unit(168, "lb"),
  39852. name: "Back",
  39853. image: {
  39854. source: "./media/characters/lisa/back.svg",
  39855. extra: 1982/1838,
  39856. bottom: 29/2011
  39857. }
  39858. },
  39859. maw: {
  39860. height: math.unit(0.81, "feet"),
  39861. name: "Maw",
  39862. image: {
  39863. source: "./media/characters/lisa/maw.svg"
  39864. }
  39865. },
  39866. paw: {
  39867. height: math.unit(0.9, "feet"),
  39868. name: "Paw",
  39869. image: {
  39870. source: "./media/characters/lisa/paw.svg"
  39871. }
  39872. },
  39873. caribousune: {
  39874. height: math.unit(7 + 2/12, "feet"),
  39875. weight: math.unit(268, "lb"),
  39876. name: "Caribousune",
  39877. image: {
  39878. source: "./media/characters/lisa/caribousune.svg",
  39879. extra: 1843/1633,
  39880. bottom: 29/1872
  39881. }
  39882. },
  39883. frontCaribousune: {
  39884. height: math.unit(7 + 2/12, "feet"),
  39885. weight: math.unit(268, "lb"),
  39886. name: "Front (Caribousune)",
  39887. image: {
  39888. source: "./media/characters/lisa/front-caribousune.svg",
  39889. extra: 1818/1638,
  39890. bottom: 52/1870
  39891. }
  39892. },
  39893. sideCaribousune: {
  39894. height: math.unit(7 + 2/12, "feet"),
  39895. weight: math.unit(268, "lb"),
  39896. name: "Side (Caribousune)",
  39897. image: {
  39898. source: "./media/characters/lisa/side-caribousune.svg",
  39899. extra: 1851/1635,
  39900. bottom: 16/1867
  39901. }
  39902. },
  39903. backCaribousune: {
  39904. height: math.unit(7 + 2/12, "feet"),
  39905. weight: math.unit(268, "lb"),
  39906. name: "Back (Caribousune)",
  39907. image: {
  39908. source: "./media/characters/lisa/back-caribousune.svg",
  39909. extra: 1801/1604,
  39910. bottom: 44/1845
  39911. }
  39912. },
  39913. caribou: {
  39914. height: math.unit(7 + 2/12, "feet"),
  39915. weight: math.unit(268, "lb"),
  39916. name: "Caribou",
  39917. image: {
  39918. source: "./media/characters/lisa/caribou.svg",
  39919. extra: 1843/1633,
  39920. bottom: 29/1872
  39921. }
  39922. },
  39923. frontCaribou: {
  39924. height: math.unit(7 + 2/12, "feet"),
  39925. weight: math.unit(268, "lb"),
  39926. name: "Front (Caribou)",
  39927. image: {
  39928. source: "./media/characters/lisa/front-caribou.svg",
  39929. extra: 1818/1638,
  39930. bottom: 52/1870
  39931. }
  39932. },
  39933. sideCaribou: {
  39934. height: math.unit(7 + 2/12, "feet"),
  39935. weight: math.unit(268, "lb"),
  39936. name: "Side (Caribou)",
  39937. image: {
  39938. source: "./media/characters/lisa/side-caribou.svg",
  39939. extra: 1851/1635,
  39940. bottom: 16/1867
  39941. }
  39942. },
  39943. backCaribou: {
  39944. height: math.unit(7 + 2/12, "feet"),
  39945. weight: math.unit(268, "lb"),
  39946. name: "Back (Caribou)",
  39947. image: {
  39948. source: "./media/characters/lisa/back-caribou.svg",
  39949. extra: 1801/1604,
  39950. bottom: 44/1845
  39951. }
  39952. },
  39953. mawCaribou: {
  39954. height: math.unit(1.45, "feet"),
  39955. name: "Maw (Caribou)",
  39956. image: {
  39957. source: "./media/characters/lisa/maw-caribou.svg"
  39958. }
  39959. },
  39960. mawCaribousune: {
  39961. height: math.unit(1.45, "feet"),
  39962. name: "Maw (Caribousune)",
  39963. image: {
  39964. source: "./media/characters/lisa/maw-caribousune.svg"
  39965. }
  39966. },
  39967. pawCaribousune: {
  39968. height: math.unit(1.61, "feet"),
  39969. name: "Paw (Caribou)",
  39970. image: {
  39971. source: "./media/characters/lisa/paw-caribousune.svg"
  39972. }
  39973. },
  39974. },
  39975. [
  39976. {
  39977. name: "Normal",
  39978. height: math.unit(6, "feet")
  39979. },
  39980. {
  39981. name: "God Size",
  39982. height: math.unit(72, "feet"),
  39983. default: true
  39984. },
  39985. {
  39986. name: "Towering",
  39987. height: math.unit(288, "feet")
  39988. },
  39989. {
  39990. name: "City Size",
  39991. height: math.unit(48384, "feet")
  39992. },
  39993. {
  39994. name: "Continental",
  39995. height: math.unit(4200, "miles")
  39996. },
  39997. {
  39998. name: "Planet Eater",
  39999. height: math.unit(42, "earths")
  40000. },
  40001. {
  40002. name: "Star Swallower",
  40003. height: math.unit(42, "solarradii")
  40004. },
  40005. {
  40006. name: "System Swallower",
  40007. height: math.unit(84000, "AU")
  40008. },
  40009. {
  40010. name: "Galaxy Gobbler",
  40011. height: math.unit(42, "galaxies")
  40012. },
  40013. {
  40014. name: "Universe Devourer",
  40015. height: math.unit(42, "universes")
  40016. },
  40017. {
  40018. name: "Multiverse Muncher",
  40019. height: math.unit(42, "multiverses")
  40020. },
  40021. ]
  40022. ))
  40023. characterMakers.push(() => makeCharacter(
  40024. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40025. {
  40026. front: {
  40027. height: math.unit(36, "feet"),
  40028. name: "Front",
  40029. image: {
  40030. source: "./media/characters/shadow-rat/front.svg",
  40031. extra: 1845/1758,
  40032. bottom: 83/1928
  40033. }
  40034. },
  40035. },
  40036. [
  40037. {
  40038. name: "Macro",
  40039. height: math.unit(36, "feet"),
  40040. default: true
  40041. },
  40042. ]
  40043. ))
  40044. characterMakers.push(() => makeCharacter(
  40045. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40046. {
  40047. side: {
  40048. height: math.unit(8, "feet"),
  40049. weight: math.unit(2630, "lb"),
  40050. name: "Side",
  40051. image: {
  40052. source: "./media/characters/torallia/side.svg",
  40053. extra: 2164/2021,
  40054. bottom: 371/2535
  40055. }
  40056. },
  40057. },
  40058. [
  40059. {
  40060. name: "Mortal Interaction",
  40061. height: math.unit(8, "feet")
  40062. },
  40063. {
  40064. name: "Natural",
  40065. height: math.unit(24, "feet"),
  40066. default: true
  40067. },
  40068. {
  40069. name: "Giant",
  40070. height: math.unit(80, "feet")
  40071. },
  40072. {
  40073. name: "Kaiju",
  40074. height: math.unit(240, "feet")
  40075. },
  40076. {
  40077. name: "Macro",
  40078. height: math.unit(800, "feet")
  40079. },
  40080. {
  40081. name: "Macro+",
  40082. height: math.unit(2400, "feet")
  40083. },
  40084. {
  40085. name: "Macro++",
  40086. height: math.unit(8000, "feet")
  40087. },
  40088. {
  40089. name: "City-Crushing",
  40090. height: math.unit(24000, "feet")
  40091. },
  40092. {
  40093. name: "Mountain-Mashing",
  40094. height: math.unit(80000, "feet")
  40095. },
  40096. {
  40097. name: "District Demolisher",
  40098. height: math.unit(240000, "feet")
  40099. },
  40100. {
  40101. name: "Tri-County Terror",
  40102. height: math.unit(800000, "feet")
  40103. },
  40104. {
  40105. name: "State Smasher",
  40106. height: math.unit(2.4e6, "feet")
  40107. },
  40108. {
  40109. name: "Nation Nemesis",
  40110. height: math.unit(8e6, "feet")
  40111. },
  40112. {
  40113. name: "Continent Cracker",
  40114. height: math.unit(2.4e7, "feet")
  40115. },
  40116. {
  40117. name: "Planet-Pillaging",
  40118. height: math.unit(8e7, "feet")
  40119. },
  40120. {
  40121. name: "Earth-Eclipsing",
  40122. height: math.unit(2.4e8, "feet")
  40123. },
  40124. {
  40125. name: "Jovian-Jostling",
  40126. height: math.unit(8e8, "feet")
  40127. },
  40128. {
  40129. name: "Gas Giant Gulper",
  40130. height: math.unit(2.4e9, "feet")
  40131. },
  40132. {
  40133. name: "Astral Annihilator",
  40134. height: math.unit(8e9, "feet")
  40135. },
  40136. {
  40137. name: "Celestial Conqueror",
  40138. height: math.unit(2.4e10, "feet")
  40139. },
  40140. {
  40141. name: "Sol-Swallowing",
  40142. height: math.unit(8e10, "feet")
  40143. },
  40144. {
  40145. name: "Hunter of the Heavens",
  40146. height: math.unit(2.4e13, "feet")
  40147. },
  40148. ]
  40149. ))
  40150. characterMakers.push(() => makeCharacter(
  40151. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40152. {
  40153. front: {
  40154. height: math.unit(6 + 8/12, "feet"),
  40155. weight: math.unit(250, "kilograms"),
  40156. volume: math.unit(28, "liters"),
  40157. name: "Front",
  40158. image: {
  40159. source: "./media/characters/rebecca-pawlson/front.svg",
  40160. extra: 1737/1596,
  40161. bottom: 107/1844
  40162. }
  40163. },
  40164. back: {
  40165. height: math.unit(6 + 8/12, "feet"),
  40166. weight: math.unit(250, "kilograms"),
  40167. volume: math.unit(28, "liters"),
  40168. name: "Back",
  40169. image: {
  40170. source: "./media/characters/rebecca-pawlson/back.svg",
  40171. extra: 1702/1523,
  40172. bottom: 86/1788
  40173. }
  40174. },
  40175. },
  40176. [
  40177. {
  40178. name: "Normal",
  40179. height: math.unit(6 + 8/12, "feet")
  40180. },
  40181. {
  40182. name: "Mini Macro",
  40183. height: math.unit(10, "feet"),
  40184. default: true
  40185. },
  40186. {
  40187. name: "Macro",
  40188. height: math.unit(100, "feet")
  40189. },
  40190. {
  40191. name: "Mega Macro",
  40192. height: math.unit(2500, "feet")
  40193. },
  40194. {
  40195. name: "Giga Macro",
  40196. height: math.unit(50, "miles")
  40197. },
  40198. ]
  40199. ))
  40200. characterMakers.push(() => makeCharacter(
  40201. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40202. {
  40203. front: {
  40204. height: math.unit(7 + 6/12, "feet"),
  40205. weight: math.unit(600, "lb"),
  40206. name: "Front",
  40207. image: {
  40208. source: "./media/characters/moxie-nova/front.svg",
  40209. extra: 1734/1652,
  40210. bottom: 41/1775
  40211. }
  40212. },
  40213. },
  40214. [
  40215. {
  40216. name: "Normal",
  40217. height: math.unit(7 + 6/12, "feet"),
  40218. default: true
  40219. },
  40220. ]
  40221. ))
  40222. characterMakers.push(() => makeCharacter(
  40223. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40224. {
  40225. goat: {
  40226. height: math.unit(4, "feet"),
  40227. weight: math.unit(180, "lb"),
  40228. name: "Goat",
  40229. image: {
  40230. source: "./media/characters/tiffany/goat.svg",
  40231. extra: 1845/1595,
  40232. bottom: 106/1951
  40233. }
  40234. },
  40235. front: {
  40236. height: math.unit(5, "feet"),
  40237. weight: math.unit(150, "lb"),
  40238. name: "Foxcoon",
  40239. image: {
  40240. source: "./media/characters/tiffany/foxcoon.svg",
  40241. extra: 1941/1845,
  40242. bottom: 58/1999
  40243. }
  40244. },
  40245. },
  40246. [
  40247. {
  40248. name: "Normal",
  40249. height: math.unit(5, "feet"),
  40250. default: true
  40251. },
  40252. ]
  40253. ))
  40254. characterMakers.push(() => makeCharacter(
  40255. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40256. {
  40257. front: {
  40258. height: math.unit(8, "feet"),
  40259. weight: math.unit(300, "lb"),
  40260. name: "Front",
  40261. image: {
  40262. source: "./media/characters/raxinath/front.svg",
  40263. extra: 1407/1309,
  40264. bottom: 39/1446
  40265. }
  40266. },
  40267. back: {
  40268. height: math.unit(8, "feet"),
  40269. weight: math.unit(300, "lb"),
  40270. name: "Back",
  40271. image: {
  40272. source: "./media/characters/raxinath/back.svg",
  40273. extra: 1405/1315,
  40274. bottom: 9/1414
  40275. }
  40276. },
  40277. },
  40278. [
  40279. {
  40280. name: "Speck",
  40281. height: math.unit(0.5, "nm")
  40282. },
  40283. {
  40284. name: "Micro",
  40285. height: math.unit(3, "inches")
  40286. },
  40287. {
  40288. name: "Kobold",
  40289. height: math.unit(3, "feet")
  40290. },
  40291. {
  40292. name: "Normal",
  40293. height: math.unit(8, "feet"),
  40294. default: true
  40295. },
  40296. {
  40297. name: "Giant",
  40298. height: math.unit(50, "feet")
  40299. },
  40300. {
  40301. name: "Macro",
  40302. height: math.unit(1000, "feet")
  40303. },
  40304. {
  40305. name: "Megamacro",
  40306. height: math.unit(1, "mile")
  40307. },
  40308. ]
  40309. ))
  40310. characterMakers.push(() => makeCharacter(
  40311. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40312. {
  40313. front: {
  40314. height: math.unit(10, "feet"),
  40315. weight: math.unit(1442, "lb"),
  40316. name: "Front",
  40317. image: {
  40318. source: "./media/characters/mal-dragon/front.svg",
  40319. extra: 1515/1444,
  40320. bottom: 113/1628
  40321. }
  40322. },
  40323. back: {
  40324. height: math.unit(10, "feet"),
  40325. weight: math.unit(1442, "lb"),
  40326. name: "Back",
  40327. image: {
  40328. source: "./media/characters/mal-dragon/back.svg",
  40329. extra: 1527/1434,
  40330. bottom: 25/1552
  40331. }
  40332. },
  40333. },
  40334. [
  40335. {
  40336. name: "Mortal Interaction",
  40337. height: math.unit(10, "feet"),
  40338. default: true
  40339. },
  40340. {
  40341. name: "Large",
  40342. height: math.unit(30, "feet")
  40343. },
  40344. {
  40345. name: "Kaiju",
  40346. height: math.unit(300, "feet")
  40347. },
  40348. {
  40349. name: "Megamacro",
  40350. height: math.unit(10000, "feet")
  40351. },
  40352. {
  40353. name: "Continent Cracker",
  40354. height: math.unit(30000000, "feet")
  40355. },
  40356. {
  40357. name: "Sol-Swallowing",
  40358. height: math.unit(1e11, "feet")
  40359. },
  40360. {
  40361. name: "Light Universal",
  40362. height: math.unit(5, "universes")
  40363. },
  40364. {
  40365. name: "Universe Atoms",
  40366. height: math.unit(1.829e9, "universes")
  40367. },
  40368. {
  40369. name: "Light Multiversal",
  40370. height: math.unit(5, "multiverses")
  40371. },
  40372. {
  40373. name: "Multiverse Atoms",
  40374. height: math.unit(1.829e9, "multiverses")
  40375. },
  40376. {
  40377. name: "Fabric of Time",
  40378. height: math.unit(1e262, "multiverses")
  40379. },
  40380. ]
  40381. ))
  40382. characterMakers.push(() => makeCharacter(
  40383. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40384. {
  40385. front: {
  40386. height: math.unit(9, "feet"),
  40387. weight: math.unit(1050, "lb"),
  40388. name: "Front",
  40389. image: {
  40390. source: "./media/characters/tabitha/front.svg",
  40391. extra: 2083/1994,
  40392. bottom: 68/2151
  40393. }
  40394. },
  40395. },
  40396. [
  40397. {
  40398. name: "Baseline",
  40399. height: math.unit(9, "feet"),
  40400. default: true
  40401. },
  40402. {
  40403. name: "Giant",
  40404. height: math.unit(90, "feet")
  40405. },
  40406. {
  40407. name: "Macro",
  40408. height: math.unit(900, "feet")
  40409. },
  40410. {
  40411. name: "Megamacro",
  40412. height: math.unit(9000, "feet")
  40413. },
  40414. {
  40415. name: "City-Crushing",
  40416. height: math.unit(27000, "feet")
  40417. },
  40418. {
  40419. name: "Mountain-Mashing",
  40420. height: math.unit(90000, "feet")
  40421. },
  40422. {
  40423. name: "Nation Nemesis",
  40424. height: math.unit(9e6, "feet")
  40425. },
  40426. {
  40427. name: "Continent Cracker",
  40428. height: math.unit(27e6, "feet")
  40429. },
  40430. {
  40431. name: "Earth-Eclipsing",
  40432. height: math.unit(2.7e8, "feet")
  40433. },
  40434. {
  40435. name: "Gas Giant Gulper",
  40436. height: math.unit(2.7e9, "feet")
  40437. },
  40438. {
  40439. name: "Sol-Swallowing",
  40440. height: math.unit(9e10, "feet")
  40441. },
  40442. {
  40443. name: "Galaxy Gulper",
  40444. height: math.unit(9, "galaxies")
  40445. },
  40446. {
  40447. name: "Cosmos Churner",
  40448. height: math.unit(9, "universes")
  40449. },
  40450. ]
  40451. ))
  40452. characterMakers.push(() => makeCharacter(
  40453. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40454. {
  40455. front: {
  40456. height: math.unit(160, "cm"),
  40457. weight: math.unit(55, "kg"),
  40458. name: "Front",
  40459. image: {
  40460. source: "./media/characters/tow/front.svg",
  40461. extra: 1751/1722,
  40462. bottom: 74/1825
  40463. }
  40464. },
  40465. },
  40466. [
  40467. {
  40468. name: "Norm",
  40469. height: math.unit(160, "cm")
  40470. },
  40471. {
  40472. name: "Casual",
  40473. height: math.unit(3200, "m"),
  40474. default: true
  40475. },
  40476. {
  40477. name: "Show-Off",
  40478. height: math.unit(160, "km")
  40479. },
  40480. ]
  40481. ))
  40482. characterMakers.push(() => makeCharacter(
  40483. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40484. {
  40485. front: {
  40486. height: math.unit(7 + 11/12, "feet"),
  40487. weight: math.unit(342.8, "lb"),
  40488. name: "Front",
  40489. image: {
  40490. source: "./media/characters/vivian-orca-dragon/front.svg",
  40491. extra: 1890/1865,
  40492. bottom: 28/1918
  40493. }
  40494. },
  40495. },
  40496. [
  40497. {
  40498. name: "Micro",
  40499. height: math.unit(5, "inches")
  40500. },
  40501. {
  40502. name: "Normal",
  40503. height: math.unit(7 + 11/12, "feet"),
  40504. default: true
  40505. },
  40506. {
  40507. name: "Macro",
  40508. height: math.unit(395 + 7/12, "feet")
  40509. },
  40510. ]
  40511. ))
  40512. characterMakers.push(() => makeCharacter(
  40513. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40514. {
  40515. side: {
  40516. height: math.unit(10, "feet"),
  40517. weight: math.unit(1442, "lb"),
  40518. name: "Side",
  40519. image: {
  40520. source: "./media/characters/lotherakon/side.svg",
  40521. extra: 1604/1497,
  40522. bottom: 89/1693
  40523. }
  40524. },
  40525. },
  40526. [
  40527. {
  40528. name: "Mortal Interaction",
  40529. height: math.unit(10, "feet")
  40530. },
  40531. {
  40532. name: "Large",
  40533. height: math.unit(30, "feet"),
  40534. default: true
  40535. },
  40536. {
  40537. name: "Giant",
  40538. height: math.unit(100, "feet")
  40539. },
  40540. {
  40541. name: "Kaiju",
  40542. height: math.unit(300, "feet")
  40543. },
  40544. {
  40545. name: "Macro",
  40546. height: math.unit(1000, "feet")
  40547. },
  40548. {
  40549. name: "Macro+",
  40550. height: math.unit(3000, "feet")
  40551. },
  40552. {
  40553. name: "Megamacro",
  40554. height: math.unit(10000, "feet")
  40555. },
  40556. {
  40557. name: "City-Crushing",
  40558. height: math.unit(30000, "feet")
  40559. },
  40560. {
  40561. name: "Continent Cracker",
  40562. height: math.unit(30e6, "feet")
  40563. },
  40564. {
  40565. name: "Earth Eclipsing",
  40566. height: math.unit(3e8, "feet")
  40567. },
  40568. {
  40569. name: "Gas Giant Gulper",
  40570. height: math.unit(3e9, "feet")
  40571. },
  40572. {
  40573. name: "Sol-Swallowing",
  40574. height: math.unit(1e11, "feet")
  40575. },
  40576. {
  40577. name: "System Swallower",
  40578. height: math.unit(3e14, "feet")
  40579. },
  40580. {
  40581. name: "Galaxy Gulper",
  40582. height: math.unit(10, "galaxies")
  40583. },
  40584. {
  40585. name: "Light Universal",
  40586. height: math.unit(5, "universes")
  40587. },
  40588. {
  40589. name: "Universe Palm",
  40590. height: math.unit(20, "universes")
  40591. },
  40592. {
  40593. name: "Light Multiversal",
  40594. height: math.unit(5, "multiverses")
  40595. },
  40596. {
  40597. name: "Multiverse Palm",
  40598. height: math.unit(20, "multiverses")
  40599. },
  40600. {
  40601. name: "Inferno Incarnate",
  40602. height: math.unit(1e7, "multiverses")
  40603. },
  40604. ]
  40605. ))
  40606. characterMakers.push(() => makeCharacter(
  40607. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40608. {
  40609. front: {
  40610. height: math.unit(8, "feet"),
  40611. weight: math.unit(1200, "lb"),
  40612. name: "Front",
  40613. image: {
  40614. source: "./media/characters/malithee/front.svg",
  40615. extra: 1675/1640,
  40616. bottom: 162/1837
  40617. }
  40618. },
  40619. },
  40620. [
  40621. {
  40622. name: "Mortal Interaction",
  40623. height: math.unit(8, "feet"),
  40624. default: true
  40625. },
  40626. {
  40627. name: "Large",
  40628. height: math.unit(24, "feet")
  40629. },
  40630. {
  40631. name: "Kaiju",
  40632. height: math.unit(240, "feet")
  40633. },
  40634. {
  40635. name: "Megamacro",
  40636. height: math.unit(8000, "feet")
  40637. },
  40638. {
  40639. name: "Continent Cracker",
  40640. height: math.unit(24e6, "feet")
  40641. },
  40642. {
  40643. name: "Earth-Eclipsing",
  40644. height: math.unit(2.4e8, "feet")
  40645. },
  40646. {
  40647. name: "Sol-Swallowing",
  40648. height: math.unit(8e10, "feet")
  40649. },
  40650. {
  40651. name: "Galaxy Gulper",
  40652. height: math.unit(8, "galaxies")
  40653. },
  40654. {
  40655. name: "Light Universal",
  40656. height: math.unit(4, "universes")
  40657. },
  40658. {
  40659. name: "Universe Atoms",
  40660. height: math.unit(1.829e9, "universes")
  40661. },
  40662. {
  40663. name: "Light Multiversal",
  40664. height: math.unit(4, "multiverses")
  40665. },
  40666. {
  40667. name: "Multiverse Atoms",
  40668. height: math.unit(1.829e9, "multiverses")
  40669. },
  40670. {
  40671. name: "Nigh-Omnipresence",
  40672. height: math.unit(8e261, "multiverses")
  40673. },
  40674. ]
  40675. ))
  40676. characterMakers.push(() => makeCharacter(
  40677. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40678. {
  40679. front: {
  40680. height: math.unit(10, "feet"),
  40681. weight: math.unit(1500, "lb"),
  40682. name: "Front",
  40683. image: {
  40684. source: "./media/characters/miles-thestia/front.svg",
  40685. extra: 1812/1727,
  40686. bottom: 86/1898
  40687. }
  40688. },
  40689. back: {
  40690. height: math.unit(10, "feet"),
  40691. weight: math.unit(1500, "lb"),
  40692. name: "Back",
  40693. image: {
  40694. source: "./media/characters/miles-thestia/back.svg",
  40695. extra: 1799/1690,
  40696. bottom: 47/1846
  40697. }
  40698. },
  40699. frontNsfw: {
  40700. height: math.unit(10, "feet"),
  40701. weight: math.unit(1500, "lb"),
  40702. name: "Front (NSFW)",
  40703. image: {
  40704. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40705. extra: 1812/1727,
  40706. bottom: 86/1898
  40707. }
  40708. },
  40709. },
  40710. [
  40711. {
  40712. name: "Mini-Macro",
  40713. height: math.unit(10, "feet"),
  40714. default: true
  40715. },
  40716. ]
  40717. ))
  40718. characterMakers.push(() => makeCharacter(
  40719. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40720. {
  40721. front: {
  40722. height: math.unit(25, "feet"),
  40723. name: "Front",
  40724. image: {
  40725. source: "./media/characters/titan-s-wulf/front.svg",
  40726. extra: 1560/1484,
  40727. bottom: 76/1636
  40728. }
  40729. },
  40730. },
  40731. [
  40732. {
  40733. name: "Smallest",
  40734. height: math.unit(25, "feet"),
  40735. default: true
  40736. },
  40737. {
  40738. name: "Normal",
  40739. height: math.unit(200, "feet")
  40740. },
  40741. {
  40742. name: "Macro",
  40743. height: math.unit(200000, "feet")
  40744. },
  40745. {
  40746. name: "Multiversal Original",
  40747. height: math.unit(10000, "multiverses")
  40748. },
  40749. ]
  40750. ))
  40751. characterMakers.push(() => makeCharacter(
  40752. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40753. {
  40754. front: {
  40755. height: math.unit(8, "feet"),
  40756. weight: math.unit(553, "lb"),
  40757. name: "Front",
  40758. image: {
  40759. source: "./media/characters/tawendeh/front.svg",
  40760. extra: 2365/2268,
  40761. bottom: 83/2448
  40762. }
  40763. },
  40764. frontClothed: {
  40765. height: math.unit(8, "feet"),
  40766. weight: math.unit(553, "lb"),
  40767. name: "Front (Clothed)",
  40768. image: {
  40769. source: "./media/characters/tawendeh/front-clothed.svg",
  40770. extra: 2365/2268,
  40771. bottom: 83/2448
  40772. }
  40773. },
  40774. back: {
  40775. height: math.unit(8, "feet"),
  40776. weight: math.unit(553, "lb"),
  40777. name: "Back",
  40778. image: {
  40779. source: "./media/characters/tawendeh/back.svg",
  40780. extra: 2397/2294,
  40781. bottom: 42/2439
  40782. }
  40783. },
  40784. },
  40785. [
  40786. {
  40787. name: "Mortal Interaction",
  40788. height: math.unit(8, "feet"),
  40789. default: true
  40790. },
  40791. {
  40792. name: "Giant",
  40793. height: math.unit(80, "feet")
  40794. },
  40795. {
  40796. name: "Macro",
  40797. height: math.unit(800, "feet")
  40798. },
  40799. {
  40800. name: "Megamacro",
  40801. height: math.unit(8000, "feet")
  40802. },
  40803. {
  40804. name: "City-Crushing",
  40805. height: math.unit(24000, "feet")
  40806. },
  40807. {
  40808. name: "Mountain-Mashing",
  40809. height: math.unit(80000, "feet")
  40810. },
  40811. {
  40812. name: "Nation Nemesis",
  40813. height: math.unit(8e6, "feet")
  40814. },
  40815. {
  40816. name: "Continent Cracker",
  40817. height: math.unit(24e6, "feet")
  40818. },
  40819. {
  40820. name: "Earth-Eclipsing",
  40821. height: math.unit(2.4e8, "feet")
  40822. },
  40823. {
  40824. name: "Gas Giant Gulper",
  40825. height: math.unit(2.4e9, "feet")
  40826. },
  40827. {
  40828. name: "Sol-Swallowing",
  40829. height: math.unit(8e10, "feet")
  40830. },
  40831. {
  40832. name: "Galaxy Gulper",
  40833. height: math.unit(8, "galaxies")
  40834. },
  40835. {
  40836. name: "Cosmos Churner",
  40837. height: math.unit(8, "universes")
  40838. },
  40839. {
  40840. name: "Omnipotent Otter",
  40841. height: math.unit(80, "universes")
  40842. },
  40843. ]
  40844. ))
  40845. characterMakers.push(() => makeCharacter(
  40846. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40847. {
  40848. front: {
  40849. height: math.unit(2.6, "meters"),
  40850. weight: math.unit(900, "kg"),
  40851. name: "Front",
  40852. image: {
  40853. source: "./media/characters/neesha/front.svg",
  40854. extra: 1803/1653,
  40855. bottom: 128/1931
  40856. }
  40857. },
  40858. },
  40859. [
  40860. {
  40861. name: "Normal",
  40862. height: math.unit(2.6, "meters"),
  40863. default: true
  40864. },
  40865. {
  40866. name: "Macro",
  40867. height: math.unit(50, "meters")
  40868. },
  40869. ]
  40870. ))
  40871. characterMakers.push(() => makeCharacter(
  40872. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40873. {
  40874. front: {
  40875. height: math.unit(5, "feet"),
  40876. weight: math.unit(185, "lb"),
  40877. name: "Front",
  40878. image: {
  40879. source: "./media/characters/kyera/front.svg",
  40880. extra: 1875/1790,
  40881. bottom: 96/1971
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Normal",
  40888. height: math.unit(5, "feet"),
  40889. default: true
  40890. },
  40891. ]
  40892. ))
  40893. characterMakers.push(() => makeCharacter(
  40894. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40895. {
  40896. front: {
  40897. height: math.unit(7 + 6/12, "feet"),
  40898. weight: math.unit(540, "lb"),
  40899. name: "Front",
  40900. image: {
  40901. source: "./media/characters/yuko/front.svg",
  40902. extra: 1282/1222,
  40903. bottom: 101/1383
  40904. }
  40905. },
  40906. frontClothed: {
  40907. height: math.unit(7 + 6/12, "feet"),
  40908. weight: math.unit(540, "lb"),
  40909. name: "Front (Clothed)",
  40910. image: {
  40911. source: "./media/characters/yuko/front-clothed.svg",
  40912. extra: 1282/1222,
  40913. bottom: 101/1383
  40914. }
  40915. },
  40916. },
  40917. [
  40918. {
  40919. name: "Normal",
  40920. height: math.unit(7 + 6/12, "feet"),
  40921. default: true
  40922. },
  40923. {
  40924. name: "Macro",
  40925. height: math.unit(26 + 9/12, "feet")
  40926. },
  40927. {
  40928. name: "Megamacro",
  40929. height: math.unit(300, "feet")
  40930. },
  40931. {
  40932. name: "Gigamacro",
  40933. height: math.unit(5000, "feet")
  40934. },
  40935. {
  40936. name: "Planetary",
  40937. height: math.unit(10000, "miles")
  40938. },
  40939. ]
  40940. ))
  40941. characterMakers.push(() => makeCharacter(
  40942. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40943. {
  40944. front: {
  40945. height: math.unit(8 + 2/12, "feet"),
  40946. weight: math.unit(600, "lb"),
  40947. name: "Front",
  40948. image: {
  40949. source: "./media/characters/deam-nitrel/front.svg",
  40950. extra: 1308/1234,
  40951. bottom: 125/1433
  40952. }
  40953. },
  40954. },
  40955. [
  40956. {
  40957. name: "Normal",
  40958. height: math.unit(8 + 2/12, "feet"),
  40959. default: true
  40960. },
  40961. ]
  40962. ))
  40963. characterMakers.push(() => makeCharacter(
  40964. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40965. {
  40966. front: {
  40967. height: math.unit(6.1, "feet"),
  40968. weight: math.unit(180, "lb"),
  40969. name: "Front",
  40970. image: {
  40971. source: "./media/characters/skyress/front.svg",
  40972. extra: 1045/915,
  40973. bottom: 28/1073
  40974. }
  40975. },
  40976. maw: {
  40977. height: math.unit(1, "feet"),
  40978. name: "Maw",
  40979. image: {
  40980. source: "./media/characters/skyress/maw.svg"
  40981. }
  40982. },
  40983. },
  40984. [
  40985. {
  40986. name: "Normal",
  40987. height: math.unit(6.1, "feet"),
  40988. default: true
  40989. },
  40990. {
  40991. name: "Macro",
  40992. height: math.unit(200, "feet")
  40993. },
  40994. ]
  40995. ))
  40996. characterMakers.push(() => makeCharacter(
  40997. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40998. {
  40999. front: {
  41000. height: math.unit(4 + 2/12, "feet"),
  41001. weight: math.unit(40, "kg"),
  41002. name: "Front",
  41003. image: {
  41004. source: "./media/characters/amethyst-jones/front.svg",
  41005. extra: 1220/1150,
  41006. bottom: 101/1321
  41007. }
  41008. },
  41009. },
  41010. [
  41011. {
  41012. name: "Normal",
  41013. height: math.unit(4 + 2/12, "feet"),
  41014. default: true
  41015. },
  41016. ]
  41017. ))
  41018. characterMakers.push(() => makeCharacter(
  41019. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41020. {
  41021. front: {
  41022. height: math.unit(1.7, "m"),
  41023. weight: math.unit(135, "lb"),
  41024. name: "Front",
  41025. image: {
  41026. source: "./media/characters/jade/front.svg",
  41027. extra: 1818/1767,
  41028. bottom: 32/1850
  41029. }
  41030. },
  41031. back: {
  41032. height: math.unit(1.7, "m"),
  41033. weight: math.unit(135, "lb"),
  41034. name: "Back",
  41035. image: {
  41036. source: "./media/characters/jade/back.svg",
  41037. extra: 1869/1809,
  41038. bottom: 35/1904
  41039. }
  41040. },
  41041. hand: {
  41042. height: math.unit(0.24, "m"),
  41043. name: "Hand",
  41044. image: {
  41045. source: "./media/characters/jade/hand.svg"
  41046. }
  41047. },
  41048. foot: {
  41049. height: math.unit(0.263, "m"),
  41050. name: "Foot",
  41051. image: {
  41052. source: "./media/characters/jade/foot.svg"
  41053. }
  41054. },
  41055. dick: {
  41056. height: math.unit(0.47, "m"),
  41057. name: "Dick",
  41058. image: {
  41059. source: "./media/characters/jade/dick.svg"
  41060. }
  41061. },
  41062. },
  41063. [
  41064. {
  41065. name: "Micro",
  41066. height: math.unit(22, "cm")
  41067. },
  41068. {
  41069. name: "Normal",
  41070. height: math.unit(1.7, "m"),
  41071. default: true
  41072. },
  41073. {
  41074. name: "Macro",
  41075. height: math.unit(152, "m")
  41076. },
  41077. ]
  41078. ))
  41079. characterMakers.push(() => makeCharacter(
  41080. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41081. {
  41082. front: {
  41083. height: math.unit(100, "miles"),
  41084. weight: math.unit(20000, "tons"),
  41085. name: "Front",
  41086. image: {
  41087. source: "./media/characters/cookie/front.svg",
  41088. extra: 1125/1070,
  41089. bottom: 30/1155
  41090. }
  41091. },
  41092. },
  41093. [
  41094. {
  41095. name: "Big",
  41096. height: math.unit(50, "feet")
  41097. },
  41098. {
  41099. name: "Macro",
  41100. height: math.unit(100, "miles"),
  41101. default: true
  41102. },
  41103. {
  41104. name: "Megamacro",
  41105. height: math.unit(90000, "miles")
  41106. },
  41107. ]
  41108. ))
  41109. characterMakers.push(() => makeCharacter(
  41110. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41111. {
  41112. front: {
  41113. height: math.unit(6, "feet"),
  41114. weight: math.unit(145, "lb"),
  41115. name: "Front",
  41116. image: {
  41117. source: "./media/characters/farzian/front.svg",
  41118. extra: 1902/1693,
  41119. bottom: 108/2010
  41120. }
  41121. },
  41122. },
  41123. [
  41124. {
  41125. name: "Macro",
  41126. height: math.unit(500, "feet"),
  41127. default: true
  41128. },
  41129. ]
  41130. ))
  41131. characterMakers.push(() => makeCharacter(
  41132. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41133. {
  41134. front: {
  41135. height: math.unit(3 + 6/12, "feet"),
  41136. weight: math.unit(50, "lb"),
  41137. name: "Front",
  41138. image: {
  41139. source: "./media/characters/kimberly-tilson/front.svg",
  41140. extra: 1400/1322,
  41141. bottom: 36/1436
  41142. }
  41143. },
  41144. back: {
  41145. height: math.unit(3 + 6/12, "feet"),
  41146. weight: math.unit(50, "lb"),
  41147. name: "Back",
  41148. image: {
  41149. source: "./media/characters/kimberly-tilson/back.svg",
  41150. extra: 1370/1307,
  41151. bottom: 20/1390
  41152. }
  41153. },
  41154. },
  41155. [
  41156. {
  41157. name: "Normal",
  41158. height: math.unit(3 + 6/12, "feet"),
  41159. default: true
  41160. },
  41161. ]
  41162. ))
  41163. characterMakers.push(() => makeCharacter(
  41164. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41165. {
  41166. front: {
  41167. height: math.unit(1148, "feet"),
  41168. weight: math.unit(34057, "lb"),
  41169. name: "Front",
  41170. image: {
  41171. source: "./media/characters/harthos/front.svg",
  41172. extra: 1391/1339,
  41173. bottom: 13/1404
  41174. }
  41175. },
  41176. },
  41177. [
  41178. {
  41179. name: "Macro",
  41180. height: math.unit(1148, "feet"),
  41181. default: true
  41182. },
  41183. ]
  41184. ))
  41185. characterMakers.push(() => makeCharacter(
  41186. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41187. {
  41188. front: {
  41189. height: math.unit(15, "feet"),
  41190. name: "Front",
  41191. image: {
  41192. source: "./media/characters/hypatia/front.svg",
  41193. extra: 1653/1591,
  41194. bottom: 79/1732
  41195. }
  41196. },
  41197. },
  41198. [
  41199. {
  41200. name: "Normal",
  41201. height: math.unit(15, "feet")
  41202. },
  41203. {
  41204. name: "Small",
  41205. height: math.unit(300, "feet")
  41206. },
  41207. {
  41208. name: "Macro",
  41209. height: math.unit(2500, "feet"),
  41210. default: true
  41211. },
  41212. {
  41213. name: "Mega Macro",
  41214. height: math.unit(1500, "miles")
  41215. },
  41216. {
  41217. name: "Giga Macro",
  41218. height: math.unit(1.5e6, "miles")
  41219. },
  41220. ]
  41221. ))
  41222. characterMakers.push(() => makeCharacter(
  41223. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41224. {
  41225. front: {
  41226. height: math.unit(6, "feet"),
  41227. weight: math.unit(200, "lb"),
  41228. name: "Front",
  41229. image: {
  41230. source: "./media/characters/wulver/front.svg",
  41231. extra: 1724/1632,
  41232. bottom: 130/1854
  41233. }
  41234. },
  41235. frontNsfw: {
  41236. height: math.unit(6, "feet"),
  41237. weight: math.unit(200, "lb"),
  41238. name: "Front (NSFW)",
  41239. image: {
  41240. source: "./media/characters/wulver/front-nsfw.svg",
  41241. extra: 1724/1632,
  41242. bottom: 130/1854
  41243. }
  41244. },
  41245. },
  41246. [
  41247. {
  41248. name: "Human-Sized",
  41249. height: math.unit(6, "feet")
  41250. },
  41251. {
  41252. name: "Normal",
  41253. height: math.unit(4, "meters"),
  41254. default: true
  41255. },
  41256. {
  41257. name: "Large",
  41258. height: math.unit(6, "m")
  41259. },
  41260. ]
  41261. ))
  41262. characterMakers.push(() => makeCharacter(
  41263. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41264. {
  41265. front: {
  41266. height: math.unit(7, "feet"),
  41267. name: "Front",
  41268. image: {
  41269. source: "./media/characters/maru/front.svg",
  41270. extra: 1595/1570,
  41271. bottom: 0/1595
  41272. }
  41273. },
  41274. },
  41275. [
  41276. {
  41277. name: "Normal",
  41278. height: math.unit(7, "feet"),
  41279. default: true
  41280. },
  41281. {
  41282. name: "Macro",
  41283. height: math.unit(700, "feet")
  41284. },
  41285. {
  41286. name: "Mega Macro",
  41287. height: math.unit(25, "miles")
  41288. },
  41289. ]
  41290. ))
  41291. characterMakers.push(() => makeCharacter(
  41292. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41293. {
  41294. front: {
  41295. height: math.unit(6, "feet"),
  41296. weight: math.unit(170, "lb"),
  41297. name: "Front",
  41298. image: {
  41299. source: "./media/characters/xenon/front.svg",
  41300. extra: 1376/1305,
  41301. bottom: 56/1432
  41302. }
  41303. },
  41304. back: {
  41305. height: math.unit(6, "feet"),
  41306. weight: math.unit(170, "lb"),
  41307. name: "Back",
  41308. image: {
  41309. source: "./media/characters/xenon/back.svg",
  41310. extra: 1328/1259,
  41311. bottom: 95/1423
  41312. }
  41313. },
  41314. maw: {
  41315. height: math.unit(0.52, "feet"),
  41316. name: "Maw",
  41317. image: {
  41318. source: "./media/characters/xenon/maw.svg"
  41319. }
  41320. },
  41321. hand: {
  41322. height: math.unit(0.82, "feet"),
  41323. name: "Hand",
  41324. image: {
  41325. source: "./media/characters/xenon/hand.svg"
  41326. }
  41327. },
  41328. foot: {
  41329. height: math.unit(1.13, "feet"),
  41330. name: "Foot",
  41331. image: {
  41332. source: "./media/characters/xenon/foot.svg"
  41333. }
  41334. },
  41335. },
  41336. [
  41337. {
  41338. name: "Micro",
  41339. height: math.unit(0.8, "inches")
  41340. },
  41341. {
  41342. name: "Normal",
  41343. height: math.unit(6, "feet")
  41344. },
  41345. {
  41346. name: "Macro",
  41347. height: math.unit(50, "feet"),
  41348. default: true
  41349. },
  41350. {
  41351. name: "Macro+",
  41352. height: math.unit(250, "feet")
  41353. },
  41354. {
  41355. name: "Megamacro",
  41356. height: math.unit(1500, "feet")
  41357. },
  41358. ]
  41359. ))
  41360. characterMakers.push(() => makeCharacter(
  41361. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41362. {
  41363. front: {
  41364. height: math.unit(7 + 5/12, "feet"),
  41365. name: "Front",
  41366. image: {
  41367. source: "./media/characters/zane/front.svg",
  41368. extra: 1260/1203,
  41369. bottom: 94/1354
  41370. }
  41371. },
  41372. back: {
  41373. height: math.unit(5.05, "feet"),
  41374. name: "Back",
  41375. image: {
  41376. source: "./media/characters/zane/back.svg",
  41377. extra: 893/829,
  41378. bottom: 30/923
  41379. }
  41380. },
  41381. werewolf: {
  41382. height: math.unit(11, "feet"),
  41383. name: "Werewolf",
  41384. image: {
  41385. source: "./media/characters/zane/werewolf.svg",
  41386. extra: 1383/1323,
  41387. bottom: 89/1472
  41388. }
  41389. },
  41390. foot: {
  41391. height: math.unit(1.46, "feet"),
  41392. name: "Foot",
  41393. image: {
  41394. source: "./media/characters/zane/foot.svg"
  41395. }
  41396. },
  41397. footFront: {
  41398. height: math.unit(0.784, "feet"),
  41399. name: "Foot (Front)",
  41400. image: {
  41401. source: "./media/characters/zane/foot-front.svg"
  41402. }
  41403. },
  41404. dick: {
  41405. height: math.unit(1.95, "feet"),
  41406. name: "Dick",
  41407. image: {
  41408. source: "./media/characters/zane/dick.svg"
  41409. }
  41410. },
  41411. dickWerewolf: {
  41412. height: math.unit(3.77, "feet"),
  41413. name: "Dick (Werewolf)",
  41414. image: {
  41415. source: "./media/characters/zane/dick.svg"
  41416. }
  41417. },
  41418. },
  41419. [
  41420. {
  41421. name: "Normal",
  41422. height: math.unit(7 + 5/12, "feet"),
  41423. default: true
  41424. },
  41425. ]
  41426. ))
  41427. characterMakers.push(() => makeCharacter(
  41428. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41429. {
  41430. front: {
  41431. height: math.unit(6 + 2/12, "feet"),
  41432. weight: math.unit(284, "lb"),
  41433. name: "Front",
  41434. image: {
  41435. source: "./media/characters/benni-desparque/front.svg",
  41436. extra: 1353/1126,
  41437. bottom: 69/1422
  41438. }
  41439. },
  41440. },
  41441. [
  41442. {
  41443. name: "Civilian",
  41444. height: math.unit(6 + 2/12, "feet")
  41445. },
  41446. {
  41447. name: "Normal",
  41448. height: math.unit(98, "feet"),
  41449. default: true
  41450. },
  41451. {
  41452. name: "Kaiju Fighter",
  41453. height: math.unit(268, "feet")
  41454. },
  41455. ]
  41456. ))
  41457. characterMakers.push(() => makeCharacter(
  41458. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41459. {
  41460. front: {
  41461. height: math.unit(5, "feet"),
  41462. weight: math.unit(105, "lb"),
  41463. name: "Front",
  41464. image: {
  41465. source: "./media/characters/maxine/front.svg",
  41466. extra: 1386/1250,
  41467. bottom: 71/1457
  41468. }
  41469. },
  41470. },
  41471. [
  41472. {
  41473. name: "Normal",
  41474. height: math.unit(5, "feet"),
  41475. default: true
  41476. },
  41477. ]
  41478. ))
  41479. characterMakers.push(() => makeCharacter(
  41480. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41481. {
  41482. front: {
  41483. height: math.unit(11 + 7/12, "feet"),
  41484. weight: math.unit(9576, "lb"),
  41485. name: "Front",
  41486. image: {
  41487. source: "./media/characters/scaly/front.svg",
  41488. extra: 888/867,
  41489. bottom: 36/924
  41490. }
  41491. },
  41492. },
  41493. [
  41494. {
  41495. name: "Normal",
  41496. height: math.unit(11 + 7/12, "feet"),
  41497. default: true
  41498. },
  41499. ]
  41500. ))
  41501. characterMakers.push(() => makeCharacter(
  41502. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41503. {
  41504. front: {
  41505. height: math.unit(6 + 3/12, "feet"),
  41506. name: "Front",
  41507. image: {
  41508. source: "./media/characters/saelria/front.svg",
  41509. extra: 1243/1138,
  41510. bottom: 46/1289
  41511. }
  41512. },
  41513. },
  41514. [
  41515. {
  41516. name: "Micro",
  41517. height: math.unit(6, "inches"),
  41518. },
  41519. {
  41520. name: "Normal",
  41521. height: math.unit(6 + 3/12, "feet"),
  41522. default: true
  41523. },
  41524. {
  41525. name: "Macro",
  41526. height: math.unit(25, "feet")
  41527. },
  41528. ]
  41529. ))
  41530. characterMakers.push(() => makeCharacter(
  41531. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41532. {
  41533. front: {
  41534. height: math.unit(80, "meters"),
  41535. weight: math.unit(7000, "tonnes"),
  41536. name: "Front",
  41537. image: {
  41538. source: "./media/characters/tef/front.svg",
  41539. extra: 2036/1991,
  41540. bottom: 54/2090
  41541. }
  41542. },
  41543. back: {
  41544. height: math.unit(80, "meters"),
  41545. weight: math.unit(7000, "tonnes"),
  41546. name: "Back",
  41547. image: {
  41548. source: "./media/characters/tef/back.svg",
  41549. extra: 2036/1991,
  41550. bottom: 54/2090
  41551. }
  41552. },
  41553. },
  41554. [
  41555. {
  41556. name: "Macro",
  41557. height: math.unit(80, "meters"),
  41558. default: true
  41559. },
  41560. ]
  41561. ))
  41562. characterMakers.push(() => makeCharacter(
  41563. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41564. {
  41565. front: {
  41566. height: math.unit(13, "feet"),
  41567. weight: math.unit(6, "tons"),
  41568. name: "Front",
  41569. image: {
  41570. source: "./media/characters/rover/front.svg",
  41571. extra: 1233/1156,
  41572. bottom: 50/1283
  41573. }
  41574. },
  41575. back: {
  41576. height: math.unit(13, "feet"),
  41577. weight: math.unit(6, "tons"),
  41578. name: "Back",
  41579. image: {
  41580. source: "./media/characters/rover/back.svg",
  41581. extra: 1327/1258,
  41582. bottom: 39/1366
  41583. }
  41584. },
  41585. },
  41586. [
  41587. {
  41588. name: "Normal",
  41589. height: math.unit(13, "feet"),
  41590. default: true
  41591. },
  41592. {
  41593. name: "Macro",
  41594. height: math.unit(1300, "feet")
  41595. },
  41596. {
  41597. name: "Megamacro",
  41598. height: math.unit(1300, "miles")
  41599. },
  41600. {
  41601. name: "Gigamacro",
  41602. height: math.unit(1300000, "miles")
  41603. },
  41604. ]
  41605. ))
  41606. characterMakers.push(() => makeCharacter(
  41607. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41608. {
  41609. front: {
  41610. height: math.unit(6, "feet"),
  41611. weight: math.unit(150, "lb"),
  41612. name: "Front",
  41613. image: {
  41614. source: "./media/characters/ariz/front.svg",
  41615. extra: 1401/1346,
  41616. bottom: 5/1406
  41617. }
  41618. },
  41619. },
  41620. [
  41621. {
  41622. name: "Normal",
  41623. height: math.unit(10, "feet"),
  41624. default: true
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41630. {
  41631. front: {
  41632. height: math.unit(6, "feet"),
  41633. weight: math.unit(140, "lb"),
  41634. name: "Front",
  41635. image: {
  41636. source: "./media/characters/sigrun/front.svg",
  41637. extra: 1418/1359,
  41638. bottom: 27/1445
  41639. }
  41640. },
  41641. },
  41642. [
  41643. {
  41644. name: "Macro",
  41645. height: math.unit(35, "feet"),
  41646. default: true
  41647. },
  41648. ]
  41649. ))
  41650. characterMakers.push(() => makeCharacter(
  41651. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41652. {
  41653. front: {
  41654. height: math.unit(6, "feet"),
  41655. weight: math.unit(150, "lb"),
  41656. name: "Front",
  41657. image: {
  41658. source: "./media/characters/numin/front.svg",
  41659. extra: 1433/1388,
  41660. bottom: 12/1445
  41661. }
  41662. },
  41663. },
  41664. [
  41665. {
  41666. name: "Macro",
  41667. height: math.unit(21.5, "km"),
  41668. default: true
  41669. },
  41670. ]
  41671. ))
  41672. characterMakers.push(() => makeCharacter(
  41673. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41674. {
  41675. front: {
  41676. height: math.unit(6, "feet"),
  41677. weight: math.unit(463, "lb"),
  41678. name: "Front",
  41679. image: {
  41680. source: "./media/characters/melwa/front.svg",
  41681. extra: 1307/1248,
  41682. bottom: 93/1400
  41683. }
  41684. },
  41685. },
  41686. [
  41687. {
  41688. name: "Macro",
  41689. height: math.unit(50, "meters"),
  41690. default: true
  41691. },
  41692. ]
  41693. ))
  41694. characterMakers.push(() => makeCharacter(
  41695. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41696. {
  41697. front: {
  41698. height: math.unit(325, "feet"),
  41699. name: "Front",
  41700. image: {
  41701. source: "./media/characters/zorkaiju/front.svg",
  41702. extra: 1955/1814,
  41703. bottom: 40/1995
  41704. }
  41705. },
  41706. frontExtended: {
  41707. height: math.unit(325, "feet"),
  41708. name: "Front (Extended)",
  41709. image: {
  41710. source: "./media/characters/zorkaiju/front-extended.svg",
  41711. extra: 1955/1814,
  41712. bottom: 40/1995
  41713. }
  41714. },
  41715. side: {
  41716. height: math.unit(325, "feet"),
  41717. name: "Side",
  41718. image: {
  41719. source: "./media/characters/zorkaiju/side.svg",
  41720. extra: 1495/1396,
  41721. bottom: 17/1512
  41722. }
  41723. },
  41724. sideExtended: {
  41725. height: math.unit(325, "feet"),
  41726. name: "Side (Extended)",
  41727. image: {
  41728. source: "./media/characters/zorkaiju/side-extended.svg",
  41729. extra: 1495/1396,
  41730. bottom: 17/1512
  41731. }
  41732. },
  41733. back: {
  41734. height: math.unit(325, "feet"),
  41735. name: "Back",
  41736. image: {
  41737. source: "./media/characters/zorkaiju/back.svg",
  41738. extra: 1959/1821,
  41739. bottom: 31/1990
  41740. }
  41741. },
  41742. backExtended: {
  41743. height: math.unit(325, "feet"),
  41744. name: "Back (Extended)",
  41745. image: {
  41746. source: "./media/characters/zorkaiju/back-extended.svg",
  41747. extra: 1959/1821,
  41748. bottom: 31/1990
  41749. }
  41750. },
  41751. hand: {
  41752. height: math.unit(58.4, "feet"),
  41753. name: "Hand",
  41754. image: {
  41755. source: "./media/characters/zorkaiju/hand.svg"
  41756. }
  41757. },
  41758. handExtended: {
  41759. height: math.unit(61.4, "feet"),
  41760. name: "Hand (Extended)",
  41761. image: {
  41762. source: "./media/characters/zorkaiju/hand-extended.svg"
  41763. }
  41764. },
  41765. foot: {
  41766. height: math.unit(95, "feet"),
  41767. name: "Foot",
  41768. image: {
  41769. source: "./media/characters/zorkaiju/foot.svg"
  41770. }
  41771. },
  41772. leftArm: {
  41773. height: math.unit(59, "feet"),
  41774. name: "Left Arm",
  41775. image: {
  41776. source: "./media/characters/zorkaiju/left-arm.svg"
  41777. }
  41778. },
  41779. rightArm: {
  41780. height: math.unit(59, "feet"),
  41781. name: "Right Arm",
  41782. image: {
  41783. source: "./media/characters/zorkaiju/right-arm.svg"
  41784. }
  41785. },
  41786. leftArmExtended: {
  41787. height: math.unit(59 * 1.033546, "feet"),
  41788. name: "Left Arm (Extended)",
  41789. image: {
  41790. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41791. }
  41792. },
  41793. rightArmExtended: {
  41794. height: math.unit(59 * 1.0496, "feet"),
  41795. name: "Right Arm (Extended)",
  41796. image: {
  41797. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41798. }
  41799. },
  41800. tail: {
  41801. height: math.unit(104, "feet"),
  41802. name: "Tail",
  41803. image: {
  41804. source: "./media/characters/zorkaiju/tail.svg"
  41805. }
  41806. },
  41807. tailExtended: {
  41808. height: math.unit(104, "feet"),
  41809. name: "Tail (Extended)",
  41810. image: {
  41811. source: "./media/characters/zorkaiju/tail-extended.svg"
  41812. }
  41813. },
  41814. tailBottom: {
  41815. height: math.unit(104, "feet"),
  41816. name: "Tail Bottom",
  41817. image: {
  41818. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41819. }
  41820. },
  41821. crystal: {
  41822. height: math.unit(27.54, "feet"),
  41823. name: "Crystal",
  41824. image: {
  41825. source: "./media/characters/zorkaiju/crystal.svg"
  41826. }
  41827. },
  41828. },
  41829. [
  41830. {
  41831. name: "Kaiju",
  41832. height: math.unit(325, "feet"),
  41833. default: true
  41834. },
  41835. ]
  41836. ))
  41837. characterMakers.push(() => makeCharacter(
  41838. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41839. {
  41840. front: {
  41841. height: math.unit(6 + 1/12, "feet"),
  41842. weight: math.unit(115, "lb"),
  41843. name: "Front",
  41844. image: {
  41845. source: "./media/characters/bailey-belfry/front.svg",
  41846. extra: 1240/1121,
  41847. bottom: 101/1341
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Normal",
  41854. height: math.unit(6 + 1/12, "feet"),
  41855. default: true
  41856. },
  41857. ]
  41858. ))
  41859. characterMakers.push(() => makeCharacter(
  41860. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41861. {
  41862. side: {
  41863. height: math.unit(4, "meters"),
  41864. weight: math.unit(250, "kg"),
  41865. name: "Side",
  41866. image: {
  41867. source: "./media/characters/blacky/side.svg",
  41868. extra: 1027/919,
  41869. bottom: 43/1070
  41870. }
  41871. },
  41872. maw: {
  41873. height: math.unit(1, "meters"),
  41874. name: "Maw",
  41875. image: {
  41876. source: "./media/characters/blacky/maw.svg"
  41877. }
  41878. },
  41879. paw: {
  41880. height: math.unit(1, "meters"),
  41881. name: "Paw",
  41882. image: {
  41883. source: "./media/characters/blacky/paw.svg"
  41884. }
  41885. },
  41886. },
  41887. [
  41888. {
  41889. name: "Normal",
  41890. height: math.unit(4, "meters"),
  41891. default: true
  41892. },
  41893. ]
  41894. ))
  41895. characterMakers.push(() => makeCharacter(
  41896. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41897. {
  41898. front: {
  41899. height: math.unit(170, "cm"),
  41900. weight: math.unit(66, "kg"),
  41901. name: "Front",
  41902. image: {
  41903. source: "./media/characters/thux-ei/front.svg",
  41904. extra: 1109/1011,
  41905. bottom: 8/1117
  41906. }
  41907. },
  41908. },
  41909. [
  41910. {
  41911. name: "Normal",
  41912. height: math.unit(170, "cm"),
  41913. default: true
  41914. },
  41915. ]
  41916. ))
  41917. characterMakers.push(() => makeCharacter(
  41918. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41919. {
  41920. front: {
  41921. height: math.unit(5, "feet"),
  41922. weight: math.unit(120, "lb"),
  41923. name: "Front",
  41924. image: {
  41925. source: "./media/characters/roxanne-voltaire/front.svg",
  41926. extra: 1901/1779,
  41927. bottom: 53/1954
  41928. }
  41929. },
  41930. },
  41931. [
  41932. {
  41933. name: "Normal",
  41934. height: math.unit(5, "feet"),
  41935. default: true
  41936. },
  41937. {
  41938. name: "Giant",
  41939. height: math.unit(50, "feet")
  41940. },
  41941. {
  41942. name: "Titan",
  41943. height: math.unit(500, "feet")
  41944. },
  41945. {
  41946. name: "Macro",
  41947. height: math.unit(5000, "feet")
  41948. },
  41949. {
  41950. name: "Megamacro",
  41951. height: math.unit(50000, "feet")
  41952. },
  41953. {
  41954. name: "Gigamacro",
  41955. height: math.unit(500000, "feet")
  41956. },
  41957. {
  41958. name: "Teramacro",
  41959. height: math.unit(5e6, "feet")
  41960. },
  41961. ]
  41962. ))
  41963. characterMakers.push(() => makeCharacter(
  41964. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41965. {
  41966. front: {
  41967. height: math.unit(6 + 2/12, "feet"),
  41968. name: "Front",
  41969. image: {
  41970. source: "./media/characters/squeaks/front.svg",
  41971. extra: 1823/1768,
  41972. bottom: 138/1961
  41973. }
  41974. },
  41975. },
  41976. [
  41977. {
  41978. name: "Micro",
  41979. height: math.unit(0.5, "inches")
  41980. },
  41981. {
  41982. name: "Normal",
  41983. height: math.unit(6 + 2/12, "feet"),
  41984. default: true
  41985. },
  41986. {
  41987. name: "Macro",
  41988. height: math.unit(600, "feet")
  41989. },
  41990. ]
  41991. ))
  41992. characterMakers.push(() => makeCharacter(
  41993. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41994. {
  41995. front: {
  41996. height: math.unit(1.72, "meters"),
  41997. name: "Front",
  41998. image: {
  41999. source: "./media/characters/archinger/front.svg",
  42000. extra: 1861/1675,
  42001. bottom: 125/1986
  42002. }
  42003. },
  42004. back: {
  42005. height: math.unit(1.72, "meters"),
  42006. name: "Back",
  42007. image: {
  42008. source: "./media/characters/archinger/back.svg",
  42009. extra: 1844/1701,
  42010. bottom: 104/1948
  42011. }
  42012. },
  42013. cock: {
  42014. height: math.unit(0.59, "feet"),
  42015. name: "Cock",
  42016. image: {
  42017. source: "./media/characters/archinger/cock.svg"
  42018. }
  42019. },
  42020. },
  42021. [
  42022. {
  42023. name: "Normal",
  42024. height: math.unit(1.72, "meters"),
  42025. default: true
  42026. },
  42027. {
  42028. name: "Macro",
  42029. height: math.unit(84, "meters")
  42030. },
  42031. {
  42032. name: "Macro+",
  42033. height: math.unit(112, "meters")
  42034. },
  42035. {
  42036. name: "Macro++",
  42037. height: math.unit(960, "meters")
  42038. },
  42039. {
  42040. name: "Macro+++",
  42041. height: math.unit(4, "km")
  42042. },
  42043. {
  42044. name: "Macro++++",
  42045. height: math.unit(48, "km")
  42046. },
  42047. {
  42048. name: "Macro+++++",
  42049. height: math.unit(4500, "km")
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42055. {
  42056. front: {
  42057. height: math.unit(5 + 5/12, "feet"),
  42058. name: "Front",
  42059. image: {
  42060. source: "./media/characters/alsnapz/front.svg",
  42061. extra: 1157/1065,
  42062. bottom: 42/1199
  42063. }
  42064. },
  42065. },
  42066. [
  42067. {
  42068. name: "Normal",
  42069. height: math.unit(5 + 5/12, "feet"),
  42070. default: true
  42071. },
  42072. ]
  42073. ))
  42074. characterMakers.push(() => makeCharacter(
  42075. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42076. {
  42077. side: {
  42078. height: math.unit(3.2, "earths"),
  42079. name: "Side",
  42080. image: {
  42081. source: "./media/characters/mag/side.svg",
  42082. extra: 1331/1008,
  42083. bottom: 52/1383
  42084. }
  42085. },
  42086. wing: {
  42087. height: math.unit(1.94, "earths"),
  42088. name: "Wing",
  42089. image: {
  42090. source: "./media/characters/mag/wing.svg"
  42091. }
  42092. },
  42093. dick: {
  42094. height: math.unit(1.8, "earths"),
  42095. name: "Dick",
  42096. image: {
  42097. source: "./media/characters/mag/dick.svg"
  42098. }
  42099. },
  42100. ass: {
  42101. height: math.unit(1.33, "earths"),
  42102. name: "Ass",
  42103. image: {
  42104. source: "./media/characters/mag/ass.svg"
  42105. }
  42106. },
  42107. head: {
  42108. height: math.unit(1.1, "earths"),
  42109. name: "Head",
  42110. image: {
  42111. source: "./media/characters/mag/head.svg"
  42112. }
  42113. },
  42114. maw: {
  42115. height: math.unit(1.62, "earths"),
  42116. name: "Maw",
  42117. image: {
  42118. source: "./media/characters/mag/maw.svg"
  42119. }
  42120. },
  42121. },
  42122. [
  42123. {
  42124. name: "Small",
  42125. height: math.unit(162, "feet")
  42126. },
  42127. {
  42128. name: "Normal",
  42129. height: math.unit(3.2, "earths"),
  42130. default: true
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42136. {
  42137. front: {
  42138. height: math.unit(512, "feet"),
  42139. weight: math.unit(63509, "tonnes"),
  42140. name: "Front",
  42141. image: {
  42142. source: "./media/characters/vorrel-harroc/front.svg",
  42143. extra: 1075/1063,
  42144. bottom: 62/1137
  42145. }
  42146. },
  42147. },
  42148. [
  42149. {
  42150. name: "Normal",
  42151. height: math.unit(10, "feet")
  42152. },
  42153. {
  42154. name: "Macro",
  42155. height: math.unit(512, "feet"),
  42156. default: true
  42157. },
  42158. {
  42159. name: "Megamacro",
  42160. height: math.unit(256, "miles")
  42161. },
  42162. {
  42163. name: "Gigamacro",
  42164. height: math.unit(4096, "miles")
  42165. },
  42166. ]
  42167. ))
  42168. characterMakers.push(() => makeCharacter(
  42169. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42170. {
  42171. side: {
  42172. height: math.unit(50, "feet"),
  42173. name: "Side",
  42174. image: {
  42175. source: "./media/characters/froimar/side.svg",
  42176. extra: 855/638,
  42177. bottom: 99/954
  42178. }
  42179. },
  42180. },
  42181. [
  42182. {
  42183. name: "Macro",
  42184. height: math.unit(50, "feet"),
  42185. default: true
  42186. },
  42187. ]
  42188. ))
  42189. characterMakers.push(() => makeCharacter(
  42190. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42191. {
  42192. front: {
  42193. height: math.unit(210, "miles"),
  42194. name: "Front",
  42195. image: {
  42196. source: "./media/characters/timothy/front.svg",
  42197. extra: 1007/943,
  42198. bottom: 62/1069
  42199. }
  42200. },
  42201. frontSkirt: {
  42202. height: math.unit(210, "miles"),
  42203. name: "Front (Skirt)",
  42204. image: {
  42205. source: "./media/characters/timothy/front-skirt.svg",
  42206. extra: 1007/943,
  42207. bottom: 62/1069
  42208. }
  42209. },
  42210. frontCoat: {
  42211. height: math.unit(210, "miles"),
  42212. name: "Front (Coat)",
  42213. image: {
  42214. source: "./media/characters/timothy/front-coat.svg",
  42215. extra: 1007/943,
  42216. bottom: 62/1069
  42217. }
  42218. },
  42219. },
  42220. [
  42221. {
  42222. name: "Macro",
  42223. height: math.unit(210, "miles"),
  42224. default: true
  42225. },
  42226. {
  42227. name: "Megamacro",
  42228. height: math.unit(210000, "miles")
  42229. },
  42230. ]
  42231. ))
  42232. characterMakers.push(() => makeCharacter(
  42233. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42234. {
  42235. front: {
  42236. height: math.unit(188, "feet"),
  42237. name: "Front",
  42238. image: {
  42239. source: "./media/characters/pyotr/front.svg",
  42240. extra: 1912/1826,
  42241. bottom: 18/1930
  42242. }
  42243. },
  42244. },
  42245. [
  42246. {
  42247. name: "Macro",
  42248. height: math.unit(188, "feet"),
  42249. default: true
  42250. },
  42251. {
  42252. name: "Megamacro",
  42253. height: math.unit(8, "miles")
  42254. },
  42255. ]
  42256. ))
  42257. characterMakers.push(() => makeCharacter(
  42258. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42259. {
  42260. side: {
  42261. height: math.unit(10, "feet"),
  42262. weight: math.unit(4500, "lb"),
  42263. name: "Side",
  42264. image: {
  42265. source: "./media/characters/ackart/side.svg",
  42266. extra: 1776/1668,
  42267. bottom: 116/1892
  42268. }
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Normal",
  42274. height: math.unit(10, "feet"),
  42275. default: true
  42276. },
  42277. ]
  42278. ))
  42279. characterMakers.push(() => makeCharacter(
  42280. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42281. {
  42282. side: {
  42283. height: math.unit(21, "feet"),
  42284. name: "Side",
  42285. image: {
  42286. source: "./media/characters/nolow/side.svg",
  42287. extra: 1484/1434,
  42288. bottom: 85/1569
  42289. }
  42290. },
  42291. sideErect: {
  42292. height: math.unit(21, "feet"),
  42293. name: "Side-erect",
  42294. image: {
  42295. source: "./media/characters/nolow/side-erect.svg",
  42296. extra: 1484/1434,
  42297. bottom: 85/1569
  42298. }
  42299. },
  42300. },
  42301. [
  42302. {
  42303. name: "Regular",
  42304. height: math.unit(12, "feet")
  42305. },
  42306. {
  42307. name: "Big Chee",
  42308. height: math.unit(21, "feet"),
  42309. default: true
  42310. },
  42311. ]
  42312. ))
  42313. characterMakers.push(() => makeCharacter(
  42314. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42315. {
  42316. front: {
  42317. height: math.unit(7, "feet"),
  42318. weight: math.unit(250, "lb"),
  42319. name: "Front",
  42320. image: {
  42321. source: "./media/characters/nines/front.svg",
  42322. extra: 1741/1607,
  42323. bottom: 41/1782
  42324. }
  42325. },
  42326. side: {
  42327. height: math.unit(7, "feet"),
  42328. weight: math.unit(250, "lb"),
  42329. name: "Side",
  42330. image: {
  42331. source: "./media/characters/nines/side.svg",
  42332. extra: 1854/1735,
  42333. bottom: 93/1947
  42334. }
  42335. },
  42336. back: {
  42337. height: math.unit(7, "feet"),
  42338. weight: math.unit(250, "lb"),
  42339. name: "Back",
  42340. image: {
  42341. source: "./media/characters/nines/back.svg",
  42342. extra: 1748/1615,
  42343. bottom: 20/1768
  42344. }
  42345. },
  42346. },
  42347. [
  42348. {
  42349. name: "Megamacro",
  42350. height: math.unit(99, "km"),
  42351. default: true
  42352. },
  42353. ]
  42354. ))
  42355. characterMakers.push(() => makeCharacter(
  42356. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42357. {
  42358. front: {
  42359. height: math.unit(5 + 10/12, "feet"),
  42360. weight: math.unit(210, "lb"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/zenith/front.svg",
  42364. extra: 1531/1452,
  42365. bottom: 198/1729
  42366. }
  42367. },
  42368. back: {
  42369. height: math.unit(5 + 10/12, "feet"),
  42370. weight: math.unit(210, "lb"),
  42371. name: "Back",
  42372. image: {
  42373. source: "./media/characters/zenith/back.svg",
  42374. extra: 1571/1487,
  42375. bottom: 75/1646
  42376. }
  42377. },
  42378. },
  42379. [
  42380. {
  42381. name: "Normal",
  42382. height: math.unit(5 + 10/12, "feet"),
  42383. default: true
  42384. }
  42385. ]
  42386. ))
  42387. characterMakers.push(() => makeCharacter(
  42388. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42389. {
  42390. front: {
  42391. height: math.unit(4, "feet"),
  42392. weight: math.unit(60, "lb"),
  42393. name: "Front",
  42394. image: {
  42395. source: "./media/characters/jasper/front.svg",
  42396. extra: 1450/1379,
  42397. bottom: 19/1469
  42398. }
  42399. },
  42400. },
  42401. [
  42402. {
  42403. name: "Normal",
  42404. height: math.unit(4, "feet"),
  42405. default: true
  42406. },
  42407. ]
  42408. ))
  42409. characterMakers.push(() => makeCharacter(
  42410. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42411. {
  42412. front: {
  42413. height: math.unit(6 + 5/12, "feet"),
  42414. weight: math.unit(290, "lb"),
  42415. name: "Front",
  42416. image: {
  42417. source: "./media/characters/tiberius-thyben/front.svg",
  42418. extra: 757/739,
  42419. bottom: 39/796
  42420. }
  42421. },
  42422. },
  42423. [
  42424. {
  42425. name: "Micro",
  42426. height: math.unit(1.5, "inches")
  42427. },
  42428. {
  42429. name: "Normal",
  42430. height: math.unit(6 + 5/12, "feet"),
  42431. default: true
  42432. },
  42433. {
  42434. name: "Macro",
  42435. height: math.unit(300, "feet")
  42436. },
  42437. ]
  42438. ))
  42439. characterMakers.push(() => makeCharacter(
  42440. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42441. {
  42442. front: {
  42443. height: math.unit(5 + 6/12, "feet"),
  42444. weight: math.unit(60, "kg"),
  42445. name: "Front",
  42446. image: {
  42447. source: "./media/characters/sabre/front.svg",
  42448. extra: 738/671,
  42449. bottom: 27/765
  42450. }
  42451. },
  42452. },
  42453. [
  42454. {
  42455. name: "Teeny",
  42456. height: math.unit(2, "inches")
  42457. },
  42458. {
  42459. name: "Smol",
  42460. height: math.unit(8, "inches")
  42461. },
  42462. {
  42463. name: "Normal",
  42464. height: math.unit(5 + 6/12, "feet"),
  42465. default: true
  42466. },
  42467. {
  42468. name: "Mini-Macro",
  42469. height: math.unit(15, "feet")
  42470. },
  42471. {
  42472. name: "Macro",
  42473. height: math.unit(50, "feet")
  42474. },
  42475. ]
  42476. ))
  42477. characterMakers.push(() => makeCharacter(
  42478. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42479. {
  42480. front: {
  42481. height: math.unit(6 + 4/12, "feet"),
  42482. weight: math.unit(170, "lb"),
  42483. name: "Front",
  42484. image: {
  42485. source: "./media/characters/charlie/front.svg",
  42486. extra: 1348/1228,
  42487. bottom: 15/1363
  42488. }
  42489. },
  42490. },
  42491. [
  42492. {
  42493. name: "Macro",
  42494. height: math.unit(1700, "meters"),
  42495. default: true
  42496. },
  42497. {
  42498. name: "MegaMacro",
  42499. height: math.unit(20400, "meters")
  42500. },
  42501. ]
  42502. ))
  42503. characterMakers.push(() => makeCharacter(
  42504. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42505. {
  42506. front: {
  42507. height: math.unit(6 + 3/12, "feet"),
  42508. weight: math.unit(185, "lb"),
  42509. name: "Front",
  42510. image: {
  42511. source: "./media/characters/susan-grant/front.svg",
  42512. extra: 1351/1327,
  42513. bottom: 26/1377
  42514. }
  42515. },
  42516. },
  42517. [
  42518. {
  42519. name: "Normal",
  42520. height: math.unit(6 + 3/12, "feet"),
  42521. default: true
  42522. },
  42523. {
  42524. name: "Macro",
  42525. height: math.unit(225, "feet")
  42526. },
  42527. {
  42528. name: "Macro+",
  42529. height: math.unit(900, "feet")
  42530. },
  42531. {
  42532. name: "MegaMacro",
  42533. height: math.unit(14400, "feet")
  42534. },
  42535. ]
  42536. ))
  42537. characterMakers.push(() => makeCharacter(
  42538. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42539. {
  42540. front: {
  42541. height: math.unit(5 + 4/12, "feet"),
  42542. weight: math.unit(110, "lb"),
  42543. name: "Front",
  42544. image: {
  42545. source: "./media/characters/axel-isanov/front.svg",
  42546. extra: 1096/1065,
  42547. bottom: 13/1109
  42548. }
  42549. },
  42550. },
  42551. [
  42552. {
  42553. name: "Normal",
  42554. height: math.unit(5 + 4/12, "feet"),
  42555. default: true
  42556. },
  42557. ]
  42558. ))
  42559. characterMakers.push(() => makeCharacter(
  42560. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42561. {
  42562. front: {
  42563. height: math.unit(9, "feet"),
  42564. weight: math.unit(467, "lb"),
  42565. name: "Front",
  42566. image: {
  42567. source: "./media/characters/necahual/front.svg",
  42568. extra: 920/873,
  42569. bottom: 26/946
  42570. }
  42571. },
  42572. back: {
  42573. height: math.unit(9, "feet"),
  42574. weight: math.unit(467, "lb"),
  42575. name: "Back",
  42576. image: {
  42577. source: "./media/characters/necahual/back.svg",
  42578. extra: 930/884,
  42579. bottom: 16/946
  42580. }
  42581. },
  42582. frontUnderwear: {
  42583. height: math.unit(9, "feet"),
  42584. weight: math.unit(467, "lb"),
  42585. name: "Front (Underwear)",
  42586. image: {
  42587. source: "./media/characters/necahual/front-underwear.svg",
  42588. extra: 920/873,
  42589. bottom: 26/946
  42590. }
  42591. },
  42592. frontDressed: {
  42593. height: math.unit(9, "feet"),
  42594. weight: math.unit(467, "lb"),
  42595. name: "Front (Dressed)",
  42596. image: {
  42597. source: "./media/characters/necahual/front-dressed.svg",
  42598. extra: 920/873,
  42599. bottom: 26/946
  42600. }
  42601. },
  42602. },
  42603. [
  42604. {
  42605. name: "Comprsesed",
  42606. height: math.unit(9, "feet")
  42607. },
  42608. {
  42609. name: "Natural",
  42610. height: math.unit(15, "feet"),
  42611. default: true
  42612. },
  42613. {
  42614. name: "Boosted",
  42615. height: math.unit(50, "feet")
  42616. },
  42617. {
  42618. name: "Boosted+",
  42619. height: math.unit(150, "feet")
  42620. },
  42621. {
  42622. name: "Max",
  42623. height: math.unit(500, "feet")
  42624. },
  42625. ]
  42626. ))
  42627. characterMakers.push(() => makeCharacter(
  42628. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42629. {
  42630. front: {
  42631. height: math.unit(22 + 1/12, "feet"),
  42632. weight: math.unit(3200, "lb"),
  42633. name: "Front",
  42634. image: {
  42635. source: "./media/characters/theo-acacia/front.svg",
  42636. extra: 1796/1741,
  42637. bottom: 83/1879
  42638. }
  42639. },
  42640. frontUnderwear: {
  42641. height: math.unit(22 + 1/12, "feet"),
  42642. weight: math.unit(3200, "lb"),
  42643. name: "Front (Underwear)",
  42644. image: {
  42645. source: "./media/characters/theo-acacia/front-underwear.svg",
  42646. extra: 1796/1741,
  42647. bottom: 83/1879
  42648. }
  42649. },
  42650. frontNude: {
  42651. height: math.unit(22 + 1/12, "feet"),
  42652. weight: math.unit(3200, "lb"),
  42653. name: "Front (Nude)",
  42654. image: {
  42655. source: "./media/characters/theo-acacia/front-nude.svg",
  42656. extra: 1796/1741,
  42657. bottom: 83/1879
  42658. }
  42659. },
  42660. },
  42661. [
  42662. {
  42663. name: "Normal",
  42664. height: math.unit(22 + 1/12, "feet"),
  42665. default: true
  42666. },
  42667. ]
  42668. ))
  42669. characterMakers.push(() => makeCharacter(
  42670. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42671. {
  42672. front: {
  42673. height: math.unit(20, "feet"),
  42674. name: "Front",
  42675. image: {
  42676. source: "./media/characters/astra/front.svg",
  42677. extra: 1850/1714,
  42678. bottom: 106/1956
  42679. }
  42680. },
  42681. frontUndressed: {
  42682. height: math.unit(20, "feet"),
  42683. name: "Front (Undressed)",
  42684. image: {
  42685. source: "./media/characters/astra/front-undressed.svg",
  42686. extra: 1926/1749,
  42687. bottom: 0/1926
  42688. }
  42689. },
  42690. hand: {
  42691. height: math.unit(1.53, "feet"),
  42692. name: "Hand",
  42693. image: {
  42694. source: "./media/characters/astra/hand.svg"
  42695. }
  42696. },
  42697. paw: {
  42698. height: math.unit(1.53, "feet"),
  42699. name: "Paw",
  42700. image: {
  42701. source: "./media/characters/astra/paw.svg"
  42702. }
  42703. },
  42704. },
  42705. [
  42706. {
  42707. name: "Smallest",
  42708. height: math.unit(20, "feet")
  42709. },
  42710. {
  42711. name: "Normal",
  42712. height: math.unit(1e9, "miles"),
  42713. default: true
  42714. },
  42715. {
  42716. name: "Larger",
  42717. height: math.unit(5, "multiverses")
  42718. },
  42719. {
  42720. name: "Largest",
  42721. height: math.unit(1e9, "multiverses")
  42722. },
  42723. ]
  42724. ))
  42725. characterMakers.push(() => makeCharacter(
  42726. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42727. {
  42728. front: {
  42729. height: math.unit(8, "feet"),
  42730. name: "Front",
  42731. image: {
  42732. source: "./media/characters/breanna/front.svg",
  42733. extra: 1912/1632,
  42734. bottom: 33/1945
  42735. }
  42736. },
  42737. },
  42738. [
  42739. {
  42740. name: "Smallest",
  42741. height: math.unit(8, "feet")
  42742. },
  42743. {
  42744. name: "Normal",
  42745. height: math.unit(1, "mile"),
  42746. default: true
  42747. },
  42748. {
  42749. name: "Maximum",
  42750. height: math.unit(1500000000000, "lightyears")
  42751. },
  42752. ]
  42753. ))
  42754. characterMakers.push(() => makeCharacter(
  42755. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42756. {
  42757. front: {
  42758. height: math.unit(5 + 11/12, "feet"),
  42759. weight: math.unit(155, "lb"),
  42760. name: "Front",
  42761. image: {
  42762. source: "./media/characters/cai/front.svg",
  42763. extra: 1823/1702,
  42764. bottom: 32/1855
  42765. }
  42766. },
  42767. back: {
  42768. height: math.unit(5 + 11/12, "feet"),
  42769. weight: math.unit(155, "lb"),
  42770. name: "Back",
  42771. image: {
  42772. source: "./media/characters/cai/back.svg",
  42773. extra: 1809/1708,
  42774. bottom: 31/1840
  42775. }
  42776. },
  42777. },
  42778. [
  42779. {
  42780. name: "Normal",
  42781. height: math.unit(5 + 11/12, "feet"),
  42782. default: true
  42783. },
  42784. {
  42785. name: "Big",
  42786. height: math.unit(15, "feet")
  42787. },
  42788. {
  42789. name: "Macro",
  42790. height: math.unit(200, "feet")
  42791. },
  42792. ]
  42793. ))
  42794. characterMakers.push(() => makeCharacter(
  42795. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42796. {
  42797. front: {
  42798. height: math.unit(5 + 6/12, "feet"),
  42799. weight: math.unit(160, "lb"),
  42800. name: "Front",
  42801. image: {
  42802. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42803. extra: 1227/1174,
  42804. bottom: 37/1264
  42805. }
  42806. },
  42807. },
  42808. [
  42809. {
  42810. name: "Macro",
  42811. height: math.unit(444, "meters"),
  42812. default: true
  42813. },
  42814. ]
  42815. ))
  42816. characterMakers.push(() => makeCharacter(
  42817. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42818. {
  42819. front: {
  42820. height: math.unit(18 + 7/12, "feet"),
  42821. name: "Front",
  42822. image: {
  42823. source: "./media/characters/rex/front.svg",
  42824. extra: 1941/1807,
  42825. bottom: 66/2007
  42826. }
  42827. },
  42828. back: {
  42829. height: math.unit(18 + 7/12, "feet"),
  42830. name: "Back",
  42831. image: {
  42832. source: "./media/characters/rex/back.svg",
  42833. extra: 1937/1822,
  42834. bottom: 42/1979
  42835. }
  42836. },
  42837. boot: {
  42838. height: math.unit(3.45, "feet"),
  42839. name: "Boot",
  42840. image: {
  42841. source: "./media/characters/rex/boot.svg"
  42842. }
  42843. },
  42844. paw: {
  42845. height: math.unit(4.17, "feet"),
  42846. name: "Paw",
  42847. image: {
  42848. source: "./media/characters/rex/paw.svg"
  42849. }
  42850. },
  42851. head: {
  42852. height: math.unit(6.728, "feet"),
  42853. name: "Head",
  42854. image: {
  42855. source: "./media/characters/rex/head.svg"
  42856. }
  42857. },
  42858. },
  42859. [
  42860. {
  42861. name: "Nano",
  42862. height: math.unit(18 + 7/12, "feet")
  42863. },
  42864. {
  42865. name: "Micro",
  42866. height: math.unit(1.5, "megameters")
  42867. },
  42868. {
  42869. name: "Normal",
  42870. height: math.unit(440, "megameters"),
  42871. default: true
  42872. },
  42873. {
  42874. name: "Macro",
  42875. height: math.unit(2.5, "gigameters")
  42876. },
  42877. {
  42878. name: "Gigamacro",
  42879. height: math.unit(2, "galaxies")
  42880. },
  42881. ]
  42882. ))
  42883. characterMakers.push(() => makeCharacter(
  42884. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42885. {
  42886. side: {
  42887. height: math.unit(32, "feet"),
  42888. weight: math.unit(250000, "lb"),
  42889. name: "Side",
  42890. image: {
  42891. source: "./media/characters/silverwing/side.svg",
  42892. extra: 1100/1019,
  42893. bottom: 204/1304
  42894. }
  42895. },
  42896. },
  42897. [
  42898. {
  42899. name: "Normal",
  42900. height: math.unit(32, "feet"),
  42901. default: true
  42902. },
  42903. ]
  42904. ))
  42905. characterMakers.push(() => makeCharacter(
  42906. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42907. {
  42908. front: {
  42909. height: math.unit(6 + 6/12, "feet"),
  42910. weight: math.unit(350, "lb"),
  42911. name: "Front",
  42912. image: {
  42913. source: "./media/characters/tristan-hawthorne/front.svg",
  42914. extra: 1159/1124,
  42915. bottom: 37/1196
  42916. },
  42917. form: "labrador",
  42918. default: true
  42919. },
  42920. skunkFront: {
  42921. height: math.unit(4 + 6/12, "feet"),
  42922. weight: math.unit(120, "lb"),
  42923. name: "Front",
  42924. image: {
  42925. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42926. extra: 1609/1551,
  42927. bottom: 169/1778
  42928. },
  42929. form: "skunk",
  42930. default: true
  42931. },
  42932. },
  42933. [
  42934. {
  42935. name: "Normal",
  42936. height: math.unit(6 + 6/12, "feet"),
  42937. form: "labrador",
  42938. default: true
  42939. },
  42940. {
  42941. name: "Normal",
  42942. height: math.unit(4 + 6/12, "feet"),
  42943. form: "skunk",
  42944. default: true
  42945. },
  42946. ],
  42947. {
  42948. "labrador": {
  42949. name: "Labrador",
  42950. default: true
  42951. },
  42952. "skunk": {
  42953. name: "Skunk"
  42954. }
  42955. }
  42956. ))
  42957. characterMakers.push(() => makeCharacter(
  42958. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42959. {
  42960. front: {
  42961. height: math.unit(5 + 11/12, "feet"),
  42962. weight: math.unit(190, "lb"),
  42963. name: "Front",
  42964. image: {
  42965. source: "./media/characters/mizu/front.svg",
  42966. extra: 1988/1788,
  42967. bottom: 14/2002
  42968. }
  42969. },
  42970. },
  42971. [
  42972. {
  42973. name: "Normal",
  42974. height: math.unit(5 + 11/12, "feet"),
  42975. default: true
  42976. },
  42977. ]
  42978. ))
  42979. characterMakers.push(() => makeCharacter(
  42980. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42981. {
  42982. front: {
  42983. height: math.unit(1.7, "feet"),
  42984. weight: math.unit(50, "lb"),
  42985. name: "Front",
  42986. image: {
  42987. source: "./media/characters/dechroma/front.svg",
  42988. extra: 1095/859,
  42989. bottom: 64/1159
  42990. }
  42991. },
  42992. },
  42993. [
  42994. {
  42995. name: "Normal",
  42996. height: math.unit(1.7, "feet"),
  42997. default: true
  42998. },
  42999. ]
  43000. ))
  43001. characterMakers.push(() => makeCharacter(
  43002. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43003. {
  43004. side: {
  43005. height: math.unit(30, "feet"),
  43006. name: "Side",
  43007. image: {
  43008. source: "./media/characters/veluren-thanazel/side.svg",
  43009. extra: 1611/633,
  43010. bottom: 118/1729
  43011. }
  43012. },
  43013. front: {
  43014. height: math.unit(30, "feet"),
  43015. name: "Front",
  43016. image: {
  43017. source: "./media/characters/veluren-thanazel/front.svg",
  43018. extra: 1486/636,
  43019. bottom: 238/1724
  43020. }
  43021. },
  43022. head: {
  43023. height: math.unit(21.4, "feet"),
  43024. name: "Head",
  43025. image: {
  43026. source: "./media/characters/veluren-thanazel/head.svg"
  43027. }
  43028. },
  43029. genitals: {
  43030. height: math.unit(19.4, "feet"),
  43031. name: "Genitals",
  43032. image: {
  43033. source: "./media/characters/veluren-thanazel/genitals.svg"
  43034. }
  43035. },
  43036. },
  43037. [
  43038. {
  43039. name: "Social",
  43040. height: math.unit(6, "feet")
  43041. },
  43042. {
  43043. name: "Play",
  43044. height: math.unit(12, "feet")
  43045. },
  43046. {
  43047. name: "True",
  43048. height: math.unit(30, "feet"),
  43049. default: true
  43050. },
  43051. ]
  43052. ))
  43053. characterMakers.push(() => makeCharacter(
  43054. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43055. {
  43056. front: {
  43057. height: math.unit(7 + 6/12, "feet"),
  43058. weight: math.unit(500, "kg"),
  43059. name: "Front",
  43060. image: {
  43061. source: "./media/characters/arcturas/front.svg",
  43062. extra: 1700/1500,
  43063. bottom: 145/1845
  43064. }
  43065. },
  43066. },
  43067. [
  43068. {
  43069. name: "Normal",
  43070. height: math.unit(7 + 6/12, "feet"),
  43071. default: true
  43072. },
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43077. {
  43078. side: {
  43079. height: math.unit(6, "feet"),
  43080. weight: math.unit(2, "tons"),
  43081. name: "Side",
  43082. image: {
  43083. source: "./media/characters/vitaen/side.svg",
  43084. extra: 1157/617,
  43085. bottom: 122/1279
  43086. }
  43087. },
  43088. },
  43089. [
  43090. {
  43091. name: "Normal",
  43092. height: math.unit(6, "feet"),
  43093. default: true
  43094. },
  43095. ]
  43096. ))
  43097. characterMakers.push(() => makeCharacter(
  43098. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43099. {
  43100. front: {
  43101. height: math.unit(19, "feet"),
  43102. name: "Front",
  43103. image: {
  43104. source: "./media/characters/fia-dreamweaver/front.svg",
  43105. extra: 1630/1504,
  43106. bottom: 25/1655
  43107. }
  43108. },
  43109. },
  43110. [
  43111. {
  43112. name: "Normal",
  43113. height: math.unit(19, "feet"),
  43114. default: true
  43115. },
  43116. ]
  43117. ))
  43118. characterMakers.push(() => makeCharacter(
  43119. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43120. {
  43121. front: {
  43122. height: math.unit(5 + 4/12, "feet"),
  43123. name: "Front",
  43124. image: {
  43125. source: "./media/characters/artan/front.svg",
  43126. extra: 1618/1535,
  43127. bottom: 46/1664
  43128. }
  43129. },
  43130. back: {
  43131. height: math.unit(5 + 4/12, "feet"),
  43132. name: "Back",
  43133. image: {
  43134. source: "./media/characters/artan/back.svg",
  43135. extra: 1618/1543,
  43136. bottom: 31/1649
  43137. }
  43138. },
  43139. },
  43140. [
  43141. {
  43142. name: "Normal",
  43143. height: math.unit(5 + 4/12, "feet"),
  43144. default: true
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43150. {
  43151. side: {
  43152. height: math.unit(182, "cm"),
  43153. weight: math.unit(1000, "lb"),
  43154. name: "Side",
  43155. image: {
  43156. source: "./media/characters/silver-dragon/side.svg",
  43157. extra: 710/287,
  43158. bottom: 88/798
  43159. }
  43160. },
  43161. },
  43162. [
  43163. {
  43164. name: "Normal",
  43165. height: math.unit(182, "cm"),
  43166. default: true
  43167. },
  43168. ]
  43169. ))
  43170. characterMakers.push(() => makeCharacter(
  43171. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43172. {
  43173. side: {
  43174. height: math.unit(6 + 6/12, "feet"),
  43175. weight: math.unit(1.5, "tons"),
  43176. name: "Side",
  43177. image: {
  43178. source: "./media/characters/zephyr/side.svg",
  43179. extra: 1433/586,
  43180. bottom: 109/1542
  43181. }
  43182. },
  43183. },
  43184. [
  43185. {
  43186. name: "Normal",
  43187. height: math.unit(6 + 6/12, "feet"),
  43188. default: true
  43189. },
  43190. ]
  43191. ))
  43192. characterMakers.push(() => makeCharacter(
  43193. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43194. {
  43195. side: {
  43196. height: math.unit(1, "feet"),
  43197. name: "Side",
  43198. image: {
  43199. source: "./media/characters/vixye/side.svg",
  43200. extra: 632/541,
  43201. bottom: 0/632
  43202. }
  43203. },
  43204. },
  43205. [
  43206. {
  43207. name: "Normal",
  43208. height: math.unit(1, "feet"),
  43209. default: true
  43210. },
  43211. {
  43212. name: "True",
  43213. height: math.unit(1e15, "multiverses")
  43214. },
  43215. ]
  43216. ))
  43217. characterMakers.push(() => makeCharacter(
  43218. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43219. {
  43220. front: {
  43221. height: math.unit(8 + 2/12, "feet"),
  43222. weight: math.unit(650, "lb"),
  43223. name: "Front",
  43224. image: {
  43225. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43226. extra: 1174/1137,
  43227. bottom: 82/1256
  43228. }
  43229. },
  43230. back: {
  43231. height: math.unit(8 + 2/12, "feet"),
  43232. weight: math.unit(650, "lb"),
  43233. name: "Back",
  43234. image: {
  43235. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43236. extra: 1204/1157,
  43237. bottom: 46/1250
  43238. }
  43239. },
  43240. },
  43241. [
  43242. {
  43243. name: "Wildform",
  43244. height: math.unit(8 + 2/12, "feet"),
  43245. default: true
  43246. },
  43247. ]
  43248. ))
  43249. characterMakers.push(() => makeCharacter(
  43250. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43251. {
  43252. front: {
  43253. height: math.unit(18, "feet"),
  43254. name: "Front",
  43255. image: {
  43256. source: "./media/characters/cyphin/front.svg",
  43257. extra: 970/886,
  43258. bottom: 42/1012
  43259. }
  43260. },
  43261. back: {
  43262. height: math.unit(18, "feet"),
  43263. name: "Back",
  43264. image: {
  43265. source: "./media/characters/cyphin/back.svg",
  43266. extra: 1009/894,
  43267. bottom: 24/1033
  43268. }
  43269. },
  43270. head: {
  43271. height: math.unit(5.05, "feet"),
  43272. name: "Head",
  43273. image: {
  43274. source: "./media/characters/cyphin/head.svg"
  43275. }
  43276. },
  43277. tailbud: {
  43278. height: math.unit(5, "feet"),
  43279. name: "Tailbud",
  43280. image: {
  43281. source: "./media/characters/cyphin/tailbud.svg"
  43282. }
  43283. },
  43284. },
  43285. [
  43286. ]
  43287. ))
  43288. characterMakers.push(() => makeCharacter(
  43289. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43290. {
  43291. side: {
  43292. height: math.unit(10, "feet"),
  43293. weight: math.unit(6, "tons"),
  43294. name: "Side",
  43295. image: {
  43296. source: "./media/characters/raijin/side.svg",
  43297. extra: 1529/613,
  43298. bottom: 337/1866
  43299. }
  43300. },
  43301. },
  43302. [
  43303. {
  43304. name: "Normal",
  43305. height: math.unit(10, "feet"),
  43306. default: true
  43307. },
  43308. ]
  43309. ))
  43310. characterMakers.push(() => makeCharacter(
  43311. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43312. {
  43313. side: {
  43314. height: math.unit(9, "feet"),
  43315. name: "Side",
  43316. image: {
  43317. source: "./media/characters/nilghais/side.svg",
  43318. extra: 1047/744,
  43319. bottom: 91/1138
  43320. }
  43321. },
  43322. head: {
  43323. height: math.unit(3.14, "feet"),
  43324. name: "Head",
  43325. image: {
  43326. source: "./media/characters/nilghais/head.svg"
  43327. }
  43328. },
  43329. mouth: {
  43330. height: math.unit(4.6, "feet"),
  43331. name: "Mouth",
  43332. image: {
  43333. source: "./media/characters/nilghais/mouth.svg"
  43334. }
  43335. },
  43336. wings: {
  43337. height: math.unit(24, "feet"),
  43338. name: "Wings",
  43339. image: {
  43340. source: "./media/characters/nilghais/wings.svg"
  43341. }
  43342. },
  43343. ass: {
  43344. height: math.unit(6.12, "feet"),
  43345. name: "Ass",
  43346. image: {
  43347. source: "./media/characters/nilghais/ass.svg"
  43348. }
  43349. },
  43350. },
  43351. [
  43352. {
  43353. name: "Normal",
  43354. height: math.unit(9, "feet"),
  43355. default: true
  43356. },
  43357. ]
  43358. ))
  43359. characterMakers.push(() => makeCharacter(
  43360. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43361. {
  43362. regular: {
  43363. height: math.unit(16 + 2/12, "feet"),
  43364. weight: math.unit(2300, "lb"),
  43365. name: "Regular",
  43366. image: {
  43367. source: "./media/characters/zolgar/regular.svg",
  43368. extra: 1246/1004,
  43369. bottom: 124/1370
  43370. }
  43371. },
  43372. boxers: {
  43373. height: math.unit(16 + 2/12, "feet"),
  43374. weight: math.unit(2300, "lb"),
  43375. name: "Boxers",
  43376. image: {
  43377. source: "./media/characters/zolgar/boxers.svg",
  43378. extra: 1246/1004,
  43379. bottom: 124/1370
  43380. }
  43381. },
  43382. armored: {
  43383. height: math.unit(16 + 2/12, "feet"),
  43384. weight: math.unit(2300, "lb"),
  43385. name: "Armored",
  43386. image: {
  43387. source: "./media/characters/zolgar/armored.svg",
  43388. extra: 1246/1004,
  43389. bottom: 124/1370
  43390. }
  43391. },
  43392. goth: {
  43393. height: math.unit(16 + 2/12, "feet"),
  43394. weight: math.unit(2300, "lb"),
  43395. name: "Goth",
  43396. image: {
  43397. source: "./media/characters/zolgar/goth.svg",
  43398. extra: 1246/1004,
  43399. bottom: 124/1370
  43400. }
  43401. },
  43402. },
  43403. [
  43404. {
  43405. name: "Shrunken Down",
  43406. height: math.unit(9 + 2/12, "feet")
  43407. },
  43408. {
  43409. name: "Normal",
  43410. height: math.unit(16 + 2/12, "feet"),
  43411. default: true
  43412. },
  43413. ]
  43414. ))
  43415. characterMakers.push(() => makeCharacter(
  43416. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43417. {
  43418. front: {
  43419. height: math.unit(6, "feet"),
  43420. weight: math.unit(168, "lb"),
  43421. name: "Front",
  43422. image: {
  43423. source: "./media/characters/luca/front.svg",
  43424. extra: 841/667,
  43425. bottom: 102/943
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Normal",
  43432. height: math.unit(6, "feet"),
  43433. default: true
  43434. },
  43435. ]
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43439. {
  43440. side: {
  43441. height: math.unit(7 + 3/12, "feet"),
  43442. weight: math.unit(312, "lb"),
  43443. name: "Side",
  43444. image: {
  43445. source: "./media/characters/zezo/side.svg",
  43446. extra: 1192/1067,
  43447. bottom: 63/1255
  43448. }
  43449. },
  43450. },
  43451. [
  43452. {
  43453. name: "Normal",
  43454. height: math.unit(7 + 3/12, "feet"),
  43455. default: true
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43461. {
  43462. front: {
  43463. height: math.unit(5 + 5/12, "feet"),
  43464. weight: math.unit(170, "lb"),
  43465. name: "Front",
  43466. image: {
  43467. source: "./media/characters/mayso/front.svg",
  43468. extra: 1215/1108,
  43469. bottom: 16/1231
  43470. }
  43471. },
  43472. },
  43473. [
  43474. {
  43475. name: "Normal",
  43476. height: math.unit(5 + 5/12, "feet"),
  43477. default: true
  43478. },
  43479. ]
  43480. ))
  43481. characterMakers.push(() => makeCharacter(
  43482. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43483. {
  43484. front: {
  43485. height: math.unit(4 + 3/12, "feet"),
  43486. weight: math.unit(80, "lb"),
  43487. name: "Front",
  43488. image: {
  43489. source: "./media/characters/hess/front.svg",
  43490. extra: 1200/1123,
  43491. bottom: 16/1216
  43492. }
  43493. },
  43494. },
  43495. [
  43496. {
  43497. name: "Normal",
  43498. height: math.unit(4 + 3/12, "feet"),
  43499. default: true
  43500. },
  43501. ]
  43502. ))
  43503. characterMakers.push(() => makeCharacter(
  43504. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43505. {
  43506. front: {
  43507. height: math.unit(1.9, "meters"),
  43508. name: "Front",
  43509. image: {
  43510. source: "./media/characters/ashgar/front.svg",
  43511. extra: 1177/1146,
  43512. bottom: 99/1276
  43513. }
  43514. },
  43515. back: {
  43516. height: math.unit(1.9, "meters"),
  43517. name: "Back",
  43518. image: {
  43519. source: "./media/characters/ashgar/back.svg",
  43520. extra: 1201/1183,
  43521. bottom: 53/1254
  43522. }
  43523. },
  43524. feral: {
  43525. height: math.unit(1.4, "meters"),
  43526. name: "Feral",
  43527. image: {
  43528. source: "./media/characters/ashgar/feral.svg",
  43529. extra: 370/345,
  43530. bottom: 45/415
  43531. }
  43532. },
  43533. },
  43534. [
  43535. {
  43536. name: "Normal",
  43537. height: math.unit(1.9, "meters"),
  43538. default: true
  43539. },
  43540. ]
  43541. ))
  43542. characterMakers.push(() => makeCharacter(
  43543. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43544. {
  43545. regular: {
  43546. height: math.unit(6, "feet"),
  43547. weight: math.unit(220, "lb"),
  43548. name: "Regular",
  43549. image: {
  43550. source: "./media/characters/phillip/regular.svg",
  43551. extra: 1373/1277,
  43552. bottom: 75/1448
  43553. }
  43554. },
  43555. dressed: {
  43556. height: math.unit(6, "feet"),
  43557. weight: math.unit(220, "lb"),
  43558. name: "Dressed",
  43559. image: {
  43560. source: "./media/characters/phillip/dressed.svg",
  43561. extra: 1373/1277,
  43562. bottom: 75/1448
  43563. }
  43564. },
  43565. paw: {
  43566. height: math.unit(1.44, "feet"),
  43567. name: "Paw",
  43568. image: {
  43569. source: "./media/characters/phillip/paw.svg"
  43570. }
  43571. },
  43572. },
  43573. [
  43574. {
  43575. name: "Normal",
  43576. height: math.unit(6, "feet"),
  43577. default: true
  43578. },
  43579. ]
  43580. ))
  43581. characterMakers.push(() => makeCharacter(
  43582. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43583. {
  43584. side: {
  43585. height: math.unit(42, "feet"),
  43586. name: "Side",
  43587. image: {
  43588. source: "./media/characters/uvula/side.svg",
  43589. extra: 683/586,
  43590. bottom: 60/743
  43591. }
  43592. },
  43593. front: {
  43594. height: math.unit(42, "feet"),
  43595. name: "Front",
  43596. image: {
  43597. source: "./media/characters/uvula/front.svg",
  43598. extra: 705/613,
  43599. bottom: 54/759
  43600. }
  43601. },
  43602. maw: {
  43603. height: math.unit(23.5, "feet"),
  43604. name: "Maw",
  43605. image: {
  43606. source: "./media/characters/uvula/maw.svg"
  43607. }
  43608. },
  43609. },
  43610. [
  43611. {
  43612. name: "Original Size",
  43613. height: math.unit(14, "inches")
  43614. },
  43615. {
  43616. name: "Human Size",
  43617. height: math.unit(6, "feet")
  43618. },
  43619. {
  43620. name: "Big",
  43621. height: math.unit(42, "feet"),
  43622. default: true
  43623. },
  43624. {
  43625. name: "Bigger",
  43626. height: math.unit(100, "feet")
  43627. },
  43628. ]
  43629. ))
  43630. characterMakers.push(() => makeCharacter(
  43631. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43632. {
  43633. front: {
  43634. height: math.unit(5 + 11/12, "feet"),
  43635. name: "Front",
  43636. image: {
  43637. source: "./media/characters/lannah/front.svg",
  43638. extra: 1208/1113,
  43639. bottom: 97/1305
  43640. }
  43641. },
  43642. },
  43643. [
  43644. {
  43645. name: "Normal",
  43646. height: math.unit(5 + 11/12, "feet"),
  43647. default: true
  43648. },
  43649. ]
  43650. ))
  43651. characterMakers.push(() => makeCharacter(
  43652. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43653. {
  43654. front: {
  43655. height: math.unit(6 + 3/12, "feet"),
  43656. weight: math.unit(3.5, "tons"),
  43657. name: "Front",
  43658. image: {
  43659. source: "./media/characters/emberflame/front.svg",
  43660. extra: 1198/672,
  43661. bottom: 82/1280
  43662. }
  43663. },
  43664. side: {
  43665. height: math.unit(6 + 3/12, "feet"),
  43666. weight: math.unit(3.5, "tons"),
  43667. name: "Side",
  43668. image: {
  43669. source: "./media/characters/emberflame/side.svg",
  43670. extra: 938/527,
  43671. bottom: 56/994
  43672. }
  43673. },
  43674. },
  43675. [
  43676. {
  43677. name: "Normal",
  43678. height: math.unit(6 + 3/12, "feet"),
  43679. default: true
  43680. },
  43681. ]
  43682. ))
  43683. characterMakers.push(() => makeCharacter(
  43684. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43685. {
  43686. side: {
  43687. height: math.unit(17.5, "feet"),
  43688. weight: math.unit(35, "tons"),
  43689. name: "Side",
  43690. image: {
  43691. source: "./media/characters/sophie-ambrose/side.svg",
  43692. extra: 1573/1242,
  43693. bottom: 71/1644
  43694. }
  43695. },
  43696. maw: {
  43697. height: math.unit(7.4, "feet"),
  43698. name: "Maw",
  43699. image: {
  43700. source: "./media/characters/sophie-ambrose/maw.svg"
  43701. }
  43702. },
  43703. },
  43704. [
  43705. {
  43706. name: "Normal",
  43707. height: math.unit(17.5, "feet"),
  43708. default: true
  43709. },
  43710. ]
  43711. ))
  43712. characterMakers.push(() => makeCharacter(
  43713. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43714. {
  43715. front: {
  43716. height: math.unit(280, "feet"),
  43717. weight: math.unit(550, "tons"),
  43718. name: "Front",
  43719. image: {
  43720. source: "./media/characters/king-mugi/front.svg",
  43721. extra: 1102/947,
  43722. bottom: 104/1206
  43723. }
  43724. },
  43725. },
  43726. [
  43727. {
  43728. name: "King Mugi",
  43729. height: math.unit(280, "feet"),
  43730. default: true
  43731. },
  43732. ]
  43733. ))
  43734. characterMakers.push(() => makeCharacter(
  43735. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43736. {
  43737. front: {
  43738. height: math.unit(64, "meters"),
  43739. name: "Front",
  43740. image: {
  43741. source: "./media/characters/nova-fox/front.svg",
  43742. extra: 1310/1246,
  43743. bottom: 65/1375
  43744. }
  43745. },
  43746. },
  43747. [
  43748. {
  43749. name: "Macro",
  43750. height: math.unit(64, "meters"),
  43751. default: true
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43757. {
  43758. front: {
  43759. height: math.unit(6 + 3/12, "feet"),
  43760. weight: math.unit(170, "lb"),
  43761. name: "Front",
  43762. image: {
  43763. source: "./media/characters/sam-bat/front.svg",
  43764. extra: 1601/1411,
  43765. bottom: 125/1726
  43766. }
  43767. },
  43768. back: {
  43769. height: math.unit(6 + 3/12, "feet"),
  43770. weight: math.unit(170, "lb"),
  43771. name: "Back",
  43772. image: {
  43773. source: "./media/characters/sam-bat/back.svg",
  43774. extra: 1577/1405,
  43775. bottom: 58/1635
  43776. }
  43777. },
  43778. },
  43779. [
  43780. {
  43781. name: "Normal",
  43782. height: math.unit(6 + 3/12, "feet"),
  43783. default: true
  43784. },
  43785. ]
  43786. ))
  43787. characterMakers.push(() => makeCharacter(
  43788. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43789. {
  43790. front: {
  43791. height: math.unit(59, "feet"),
  43792. weight: math.unit(40000, "lb"),
  43793. name: "Front",
  43794. image: {
  43795. source: "./media/characters/inari/front.svg",
  43796. extra: 1884/1350,
  43797. bottom: 95/1979
  43798. }
  43799. },
  43800. },
  43801. [
  43802. {
  43803. name: "Gigantamax",
  43804. height: math.unit(59, "feet"),
  43805. default: true
  43806. },
  43807. ]
  43808. ))
  43809. characterMakers.push(() => makeCharacter(
  43810. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43811. {
  43812. front: {
  43813. height: math.unit(5 + 8/12, "feet"),
  43814. name: "Front",
  43815. image: {
  43816. source: "./media/characters/elizabeth/front.svg",
  43817. extra: 1395/1298,
  43818. bottom: 54/1449
  43819. }
  43820. },
  43821. mouth: {
  43822. height: math.unit(1.97, "feet"),
  43823. name: "Mouth",
  43824. image: {
  43825. source: "./media/characters/elizabeth/mouth.svg"
  43826. }
  43827. },
  43828. foot: {
  43829. height: math.unit(1.17, "feet"),
  43830. name: "Foot",
  43831. image: {
  43832. source: "./media/characters/elizabeth/foot.svg"
  43833. }
  43834. },
  43835. },
  43836. [
  43837. {
  43838. name: "Normal",
  43839. height: math.unit(5 + 8/12, "feet"),
  43840. default: true
  43841. },
  43842. {
  43843. name: "Minimacro",
  43844. height: math.unit(18, "feet")
  43845. },
  43846. {
  43847. name: "Macro",
  43848. height: math.unit(180, "feet")
  43849. },
  43850. ]
  43851. ))
  43852. characterMakers.push(() => makeCharacter(
  43853. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43854. {
  43855. front: {
  43856. height: math.unit(5 + 2/12, "feet"),
  43857. name: "Front",
  43858. image: {
  43859. source: "./media/characters/october-gossamer/front.svg",
  43860. extra: 505/454,
  43861. bottom: 7/512
  43862. }
  43863. },
  43864. back: {
  43865. height: math.unit(5 + 2/12, "feet"),
  43866. name: "Back",
  43867. image: {
  43868. source: "./media/characters/october-gossamer/back.svg",
  43869. extra: 501/454,
  43870. bottom: 11/512
  43871. }
  43872. },
  43873. },
  43874. [
  43875. {
  43876. name: "Normal",
  43877. height: math.unit(5 + 2/12, "feet"),
  43878. default: true
  43879. },
  43880. ]
  43881. ))
  43882. characterMakers.push(() => makeCharacter(
  43883. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43884. {
  43885. front: {
  43886. height: math.unit(5, "feet"),
  43887. name: "Front",
  43888. image: {
  43889. source: "./media/characters/epiglottis/front.svg",
  43890. extra: 923/849,
  43891. bottom: 17/940
  43892. }
  43893. },
  43894. },
  43895. [
  43896. {
  43897. name: "Original Size",
  43898. height: math.unit(10, "inches")
  43899. },
  43900. {
  43901. name: "Human Size",
  43902. height: math.unit(5, "feet"),
  43903. default: true
  43904. },
  43905. {
  43906. name: "Big",
  43907. height: math.unit(25, "feet")
  43908. },
  43909. {
  43910. name: "Bigger",
  43911. height: math.unit(50, "feet")
  43912. },
  43913. {
  43914. name: "oh lawd",
  43915. height: math.unit(75, "feet")
  43916. },
  43917. ]
  43918. ))
  43919. characterMakers.push(() => makeCharacter(
  43920. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43921. {
  43922. front: {
  43923. height: math.unit(2 + 4/12, "feet"),
  43924. weight: math.unit(60, "lb"),
  43925. name: "Front",
  43926. image: {
  43927. source: "./media/characters/lerm/front.svg",
  43928. extra: 796/790,
  43929. bottom: 79/875
  43930. }
  43931. },
  43932. },
  43933. [
  43934. {
  43935. name: "Normal",
  43936. height: math.unit(2 + 4/12, "feet"),
  43937. default: true
  43938. },
  43939. ]
  43940. ))
  43941. characterMakers.push(() => makeCharacter(
  43942. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43943. {
  43944. front: {
  43945. height: math.unit(5.5, "feet"),
  43946. weight: math.unit(130, "lb"),
  43947. name: "Front",
  43948. image: {
  43949. source: "./media/characters/xena-nebadon/front.svg",
  43950. extra: 1828/1730,
  43951. bottom: 79/1907
  43952. }
  43953. },
  43954. },
  43955. [
  43956. {
  43957. name: "Tiny Puppy",
  43958. height: math.unit(3, "inches")
  43959. },
  43960. {
  43961. name: "Normal",
  43962. height: math.unit(5.5, "feet"),
  43963. default: true
  43964. },
  43965. {
  43966. name: "Lotta Lady",
  43967. height: math.unit(12, "feet")
  43968. },
  43969. {
  43970. name: "Pretty Big",
  43971. height: math.unit(100, "feet")
  43972. },
  43973. {
  43974. name: "Big",
  43975. height: math.unit(500, "feet")
  43976. },
  43977. {
  43978. name: "Skyscraper Toys",
  43979. height: math.unit(2500, "feet")
  43980. },
  43981. {
  43982. name: "Plane Catcher",
  43983. height: math.unit(8, "miles")
  43984. },
  43985. {
  43986. name: "Planet Toys",
  43987. height: math.unit(15, "earths")
  43988. },
  43989. {
  43990. name: "Stardust",
  43991. height: math.unit(0.25, "galaxies")
  43992. },
  43993. {
  43994. name: "Snacks",
  43995. height: math.unit(70, "universes")
  43996. },
  43997. ]
  43998. ))
  43999. characterMakers.push(() => makeCharacter(
  44000. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44001. {
  44002. front: {
  44003. height: math.unit(1.6, "meters"),
  44004. weight: math.unit(60, "kg"),
  44005. name: "Front",
  44006. image: {
  44007. source: "./media/characters/bounty/front.svg",
  44008. extra: 1426/1308,
  44009. bottom: 15/1441
  44010. }
  44011. },
  44012. back: {
  44013. height: math.unit(1.6, "meters"),
  44014. weight: math.unit(60, "kg"),
  44015. name: "Back",
  44016. image: {
  44017. source: "./media/characters/bounty/back.svg",
  44018. extra: 1417/1307,
  44019. bottom: 8/1425
  44020. }
  44021. },
  44022. },
  44023. [
  44024. {
  44025. name: "Normal",
  44026. height: math.unit(1.6, "meters"),
  44027. default: true
  44028. },
  44029. {
  44030. name: "Macro",
  44031. height: math.unit(300, "meters")
  44032. },
  44033. ]
  44034. ))
  44035. characterMakers.push(() => makeCharacter(
  44036. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44037. {
  44038. front: {
  44039. height: math.unit(2 + 8/12, "feet"),
  44040. weight: math.unit(15, "lb"),
  44041. name: "Front",
  44042. image: {
  44043. source: "./media/characters/mochi/front.svg",
  44044. extra: 1022/852,
  44045. bottom: 435/1457
  44046. }
  44047. },
  44048. back: {
  44049. height: math.unit(2 + 8/12, "feet"),
  44050. weight: math.unit(15, "lb"),
  44051. name: "Back",
  44052. image: {
  44053. source: "./media/characters/mochi/back.svg",
  44054. extra: 1335/1119,
  44055. bottom: 39/1374
  44056. }
  44057. },
  44058. bird: {
  44059. height: math.unit(2 + 8/12, "feet"),
  44060. weight: math.unit(15, "lb"),
  44061. name: "Bird",
  44062. image: {
  44063. source: "./media/characters/mochi/bird.svg",
  44064. extra: 1251/1113,
  44065. bottom: 178/1429
  44066. }
  44067. },
  44068. kaiju: {
  44069. height: math.unit(154, "feet"),
  44070. weight: math.unit(1e7, "lb"),
  44071. name: "Kaiju",
  44072. image: {
  44073. source: "./media/characters/mochi/kaiju.svg",
  44074. extra: 460/324,
  44075. bottom: 40/500
  44076. }
  44077. },
  44078. head: {
  44079. height: math.unit(1.21, "feet"),
  44080. name: "Head",
  44081. image: {
  44082. source: "./media/characters/mochi/head.svg"
  44083. }
  44084. },
  44085. alternateTail: {
  44086. height: math.unit(2 + 8/12, "feet"),
  44087. weight: math.unit(45, "lb"),
  44088. name: "Alternate Tail",
  44089. image: {
  44090. source: "./media/characters/mochi/alternate-tail.svg",
  44091. extra: 139/76,
  44092. bottom: 45/184
  44093. }
  44094. },
  44095. },
  44096. [
  44097. {
  44098. name: "Micro",
  44099. height: math.unit(2, "inches")
  44100. },
  44101. {
  44102. name: "Normal",
  44103. height: math.unit(2 + 8/12, "feet"),
  44104. default: true
  44105. },
  44106. {
  44107. name: "Macro",
  44108. height: math.unit(106, "feet")
  44109. },
  44110. ]
  44111. ))
  44112. characterMakers.push(() => makeCharacter(
  44113. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44114. {
  44115. front: {
  44116. height: math.unit(5.67, "feet"),
  44117. weight: math.unit(135, "lb"),
  44118. name: "Front",
  44119. image: {
  44120. source: "./media/characters/sarel/front.svg",
  44121. extra: 865/788,
  44122. bottom: 97/962
  44123. }
  44124. },
  44125. back: {
  44126. height: math.unit(5.67, "feet"),
  44127. weight: math.unit(135, "lb"),
  44128. name: "Back",
  44129. image: {
  44130. source: "./media/characters/sarel/back.svg",
  44131. extra: 857/777,
  44132. bottom: 32/889
  44133. }
  44134. },
  44135. chozoan: {
  44136. height: math.unit(5.67, "feet"),
  44137. weight: math.unit(135, "lb"),
  44138. name: "Chozoan",
  44139. image: {
  44140. source: "./media/characters/sarel/chozoan.svg",
  44141. extra: 865/788,
  44142. bottom: 97/962
  44143. }
  44144. },
  44145. current: {
  44146. height: math.unit(5.67, "feet"),
  44147. weight: math.unit(135, "lb"),
  44148. name: "Current",
  44149. image: {
  44150. source: "./media/characters/sarel/current.svg",
  44151. extra: 865/788,
  44152. bottom: 97/962
  44153. }
  44154. },
  44155. head: {
  44156. height: math.unit(1.77, "feet"),
  44157. name: "Head",
  44158. image: {
  44159. source: "./media/characters/sarel/head.svg"
  44160. }
  44161. },
  44162. claws: {
  44163. height: math.unit(1.8, "feet"),
  44164. name: "Claws",
  44165. image: {
  44166. source: "./media/characters/sarel/claws.svg"
  44167. }
  44168. },
  44169. clawsAlt: {
  44170. height: math.unit(1.8, "feet"),
  44171. name: "Claws-alt",
  44172. image: {
  44173. source: "./media/characters/sarel/claws-alt.svg"
  44174. }
  44175. },
  44176. },
  44177. [
  44178. {
  44179. name: "Normal",
  44180. height: math.unit(5.67, "feet"),
  44181. default: true
  44182. },
  44183. ]
  44184. ))
  44185. characterMakers.push(() => makeCharacter(
  44186. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44187. {
  44188. front: {
  44189. height: math.unit(5500, "feet"),
  44190. name: "Front",
  44191. image: {
  44192. source: "./media/characters/alyonia/front.svg",
  44193. extra: 1200/1135,
  44194. bottom: 29/1229
  44195. }
  44196. },
  44197. back: {
  44198. height: math.unit(5500, "feet"),
  44199. name: "Back",
  44200. image: {
  44201. source: "./media/characters/alyonia/back.svg",
  44202. extra: 1205/1138,
  44203. bottom: 10/1215
  44204. }
  44205. },
  44206. },
  44207. [
  44208. {
  44209. name: "Small",
  44210. height: math.unit(10, "feet")
  44211. },
  44212. {
  44213. name: "Macro",
  44214. height: math.unit(500, "feet")
  44215. },
  44216. {
  44217. name: "Mega Macro",
  44218. height: math.unit(5500, "feet"),
  44219. default: true
  44220. },
  44221. {
  44222. name: "Mega Macro+",
  44223. height: math.unit(500000, "feet")
  44224. },
  44225. {
  44226. name: "Giga Macro",
  44227. height: math.unit(3000, "miles")
  44228. },
  44229. {
  44230. name: "Tera Macro",
  44231. height: math.unit(2.8e6, "miles")
  44232. },
  44233. {
  44234. name: "Galactic",
  44235. height: math.unit(120000, "lightyears")
  44236. },
  44237. ]
  44238. ))
  44239. characterMakers.push(() => makeCharacter(
  44240. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44241. {
  44242. werewolf: {
  44243. height: math.unit(8, "feet"),
  44244. weight: math.unit(425, "lb"),
  44245. name: "Werewolf",
  44246. image: {
  44247. source: "./media/characters/autumn/werewolf.svg",
  44248. extra: 2154/2031,
  44249. bottom: 160/2314
  44250. }
  44251. },
  44252. human: {
  44253. height: math.unit(5 + 8/12, "feet"),
  44254. weight: math.unit(150, "lb"),
  44255. name: "Human",
  44256. image: {
  44257. source: "./media/characters/autumn/human.svg",
  44258. extra: 1200/1149,
  44259. bottom: 30/1230
  44260. }
  44261. },
  44262. },
  44263. [
  44264. {
  44265. name: "Normal",
  44266. height: math.unit(8, "feet"),
  44267. default: true
  44268. },
  44269. ]
  44270. ))
  44271. characterMakers.push(() => makeCharacter(
  44272. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44273. {
  44274. front: {
  44275. height: math.unit(8 + 5/12, "feet"),
  44276. weight: math.unit(825, "lb"),
  44277. name: "Front",
  44278. image: {
  44279. source: "./media/characters/cobalt-charizard/front.svg",
  44280. extra: 1268/1155,
  44281. bottom: 122/1390
  44282. }
  44283. },
  44284. side: {
  44285. height: math.unit(8 + 5/12, "feet"),
  44286. weight: math.unit(825, "lb"),
  44287. name: "Side",
  44288. image: {
  44289. source: "./media/characters/cobalt-charizard/side.svg",
  44290. extra: 1348/1257,
  44291. bottom: 58/1406
  44292. }
  44293. },
  44294. gMax: {
  44295. height: math.unit(134 + 11/12, "feet"),
  44296. name: "G-Max",
  44297. image: {
  44298. source: "./media/characters/cobalt-charizard/g-max.svg",
  44299. extra: 1835/1541,
  44300. bottom: 151/1986
  44301. }
  44302. },
  44303. },
  44304. [
  44305. {
  44306. name: "Normal",
  44307. height: math.unit(8 + 5/12, "feet"),
  44308. default: true
  44309. },
  44310. ]
  44311. ))
  44312. characterMakers.push(() => makeCharacter(
  44313. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44314. {
  44315. front: {
  44316. height: math.unit(6 + 3/12, "feet"),
  44317. weight: math.unit(210, "lb"),
  44318. name: "Front",
  44319. image: {
  44320. source: "./media/characters/stella/front.svg",
  44321. extra: 3549/3335,
  44322. bottom: 51/3600
  44323. }
  44324. },
  44325. },
  44326. [
  44327. {
  44328. name: "Normal",
  44329. height: math.unit(6 + 3/12, "feet"),
  44330. default: true
  44331. },
  44332. ]
  44333. ))
  44334. characterMakers.push(() => makeCharacter(
  44335. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44336. {
  44337. front: {
  44338. height: math.unit(5, "feet"),
  44339. weight: math.unit(90, "lb"),
  44340. name: "Front",
  44341. image: {
  44342. source: "./media/characters/riley-bishop/front.svg",
  44343. extra: 1450/1428,
  44344. bottom: 152/1602
  44345. }
  44346. },
  44347. },
  44348. [
  44349. {
  44350. name: "Normal",
  44351. height: math.unit(5, "feet"),
  44352. default: true
  44353. },
  44354. ]
  44355. ))
  44356. characterMakers.push(() => makeCharacter(
  44357. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44358. {
  44359. side: {
  44360. height: math.unit(8 + 2/12, "feet"),
  44361. weight: math.unit(500, "kg"),
  44362. name: "Side",
  44363. image: {
  44364. source: "./media/characters/theo-arcanine/side.svg",
  44365. extra: 1342/1074,
  44366. bottom: 111/1453
  44367. }
  44368. },
  44369. },
  44370. [
  44371. {
  44372. name: "Normal",
  44373. height: math.unit(8 + 2/12, "feet"),
  44374. default: true
  44375. },
  44376. ]
  44377. ))
  44378. characterMakers.push(() => makeCharacter(
  44379. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44380. {
  44381. front: {
  44382. height: math.unit(4, "feet"),
  44383. name: "Front",
  44384. image: {
  44385. source: "./media/characters/kali/front.svg",
  44386. extra: 1921/1357,
  44387. bottom: 70/1991
  44388. }
  44389. },
  44390. },
  44391. [
  44392. {
  44393. name: "Normal",
  44394. height: math.unit(4, "feet"),
  44395. default: true
  44396. },
  44397. {
  44398. name: "Macro",
  44399. height: math.unit(32, "meters")
  44400. },
  44401. {
  44402. name: "Macro+",
  44403. height: math.unit(150, "meters")
  44404. },
  44405. {
  44406. name: "Megamacro",
  44407. height: math.unit(7500, "meters")
  44408. },
  44409. {
  44410. name: "Megamacro+",
  44411. height: math.unit(80, "kilometers")
  44412. },
  44413. ]
  44414. ))
  44415. characterMakers.push(() => makeCharacter(
  44416. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44417. {
  44418. side: {
  44419. height: math.unit(5 + 11/12, "feet"),
  44420. weight: math.unit(236, "lb"),
  44421. name: "Side",
  44422. image: {
  44423. source: "./media/characters/gapp/side.svg",
  44424. extra: 775/340,
  44425. bottom: 58/833
  44426. }
  44427. },
  44428. mouth: {
  44429. height: math.unit(2.98, "feet"),
  44430. name: "Mouth",
  44431. image: {
  44432. source: "./media/characters/gapp/mouth.svg"
  44433. }
  44434. },
  44435. },
  44436. [
  44437. {
  44438. name: "Normal",
  44439. height: math.unit(5 + 1/12, "feet"),
  44440. default: true
  44441. },
  44442. ]
  44443. ))
  44444. characterMakers.push(() => makeCharacter(
  44445. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44446. {
  44447. front: {
  44448. height: math.unit(6, "feet"),
  44449. name: "Front",
  44450. image: {
  44451. source: "./media/characters/persephone/front.svg",
  44452. extra: 1895/1717,
  44453. bottom: 96/1991
  44454. }
  44455. },
  44456. back: {
  44457. height: math.unit(6, "feet"),
  44458. name: "Back",
  44459. image: {
  44460. source: "./media/characters/persephone/back.svg",
  44461. extra: 1868/1679,
  44462. bottom: 26/1894
  44463. }
  44464. },
  44465. casual: {
  44466. height: math.unit(6, "feet"),
  44467. name: "Casual",
  44468. image: {
  44469. source: "./media/characters/persephone/casual.svg",
  44470. extra: 1713/1541,
  44471. bottom: 76/1789
  44472. }
  44473. },
  44474. },
  44475. [
  44476. {
  44477. name: "Human Size",
  44478. height: math.unit(6, "feet")
  44479. },
  44480. {
  44481. name: "Big Steppy",
  44482. height: math.unit(600, "meters"),
  44483. default: true
  44484. },
  44485. {
  44486. name: "Galaxy Brain",
  44487. height: math.unit(1, "zettameter")
  44488. },
  44489. ]
  44490. ))
  44491. characterMakers.push(() => makeCharacter(
  44492. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44493. {
  44494. front: {
  44495. height: math.unit(1.85, "meters"),
  44496. name: "Front",
  44497. image: {
  44498. source: "./media/characters/riley-foxthing/front.svg",
  44499. extra: 1495/1354,
  44500. bottom: 122/1617
  44501. }
  44502. },
  44503. frontAlt: {
  44504. height: math.unit(1.85, "meters"),
  44505. name: "Front (Alt)",
  44506. image: {
  44507. source: "./media/characters/riley-foxthing/front-alt.svg",
  44508. extra: 1572/1389,
  44509. bottom: 116/1688
  44510. }
  44511. },
  44512. },
  44513. [
  44514. {
  44515. name: "Normal Sized",
  44516. height: math.unit(1.85, "meters"),
  44517. default: true
  44518. },
  44519. {
  44520. name: "Quite Sizable",
  44521. height: math.unit(5, "meters")
  44522. },
  44523. {
  44524. name: "Rather Large",
  44525. height: math.unit(20, "meters")
  44526. },
  44527. {
  44528. name: "Macro",
  44529. height: math.unit(450, "meters")
  44530. },
  44531. {
  44532. name: "Giga",
  44533. height: math.unit(5, "km")
  44534. },
  44535. ]
  44536. ))
  44537. characterMakers.push(() => makeCharacter(
  44538. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44539. {
  44540. front: {
  44541. height: math.unit(6, "feet"),
  44542. weight: math.unit(200, "lb"),
  44543. name: "Front",
  44544. image: {
  44545. source: "./media/characters/blizzard/front.svg",
  44546. extra: 1136/990,
  44547. bottom: 136/1272
  44548. }
  44549. },
  44550. back: {
  44551. height: math.unit(6, "feet"),
  44552. weight: math.unit(200, "lb"),
  44553. name: "Back",
  44554. image: {
  44555. source: "./media/characters/blizzard/back.svg",
  44556. extra: 1175/1034,
  44557. bottom: 97/1272
  44558. }
  44559. },
  44560. sitting: {
  44561. height: math.unit(3.725, "feet"),
  44562. weight: math.unit(200, "lb"),
  44563. name: "Sitting",
  44564. image: {
  44565. source: "./media/characters/blizzard/sitting.svg",
  44566. extra: 581/485,
  44567. bottom: 90/671
  44568. }
  44569. },
  44570. frontWizard: {
  44571. height: math.unit(7.9, "feet"),
  44572. weight: math.unit(200, "lb"),
  44573. name: "Front (Wizard)",
  44574. image: {
  44575. source: "./media/characters/blizzard/front-wizard.svg"
  44576. }
  44577. },
  44578. backWizard: {
  44579. height: math.unit(7.9, "feet"),
  44580. weight: math.unit(200, "lb"),
  44581. name: "Back (Wizard)",
  44582. image: {
  44583. source: "./media/characters/blizzard/back-wizard.svg"
  44584. }
  44585. },
  44586. frontNsfw: {
  44587. height: math.unit(6, "feet"),
  44588. weight: math.unit(200, "lb"),
  44589. name: "Front (NSFW)",
  44590. image: {
  44591. source: "./media/characters/blizzard/front-nsfw.svg",
  44592. extra: 1136/990,
  44593. bottom: 136/1272
  44594. }
  44595. },
  44596. backNsfw: {
  44597. height: math.unit(6, "feet"),
  44598. weight: math.unit(200, "lb"),
  44599. name: "Back (NSFW)",
  44600. image: {
  44601. source: "./media/characters/blizzard/back-nsfw.svg",
  44602. extra: 1175/1034,
  44603. bottom: 97/1272
  44604. }
  44605. },
  44606. sittingNsfw: {
  44607. height: math.unit(3.725, "feet"),
  44608. weight: math.unit(200, "lb"),
  44609. name: "Sitting (NSFW)",
  44610. image: {
  44611. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44612. extra: 581/485,
  44613. bottom: 90/671
  44614. }
  44615. },
  44616. wizardFrontNsfw: {
  44617. height: math.unit(7.9, "feet"),
  44618. weight: math.unit(200, "lb"),
  44619. name: "Wizard (Front, NSFW)",
  44620. image: {
  44621. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44622. }
  44623. },
  44624. },
  44625. [
  44626. {
  44627. name: "Normal",
  44628. height: math.unit(6, "feet"),
  44629. default: true
  44630. },
  44631. ]
  44632. ))
  44633. characterMakers.push(() => makeCharacter(
  44634. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44635. {
  44636. front: {
  44637. height: math.unit(5 + 2/12, "feet"),
  44638. name: "Front",
  44639. image: {
  44640. source: "./media/characters/lumi/front.svg",
  44641. extra: 1328/1268,
  44642. bottom: 103/1431
  44643. }
  44644. },
  44645. back: {
  44646. height: math.unit(5 + 2/12, "feet"),
  44647. name: "Back",
  44648. image: {
  44649. source: "./media/characters/lumi/back.svg",
  44650. extra: 1381/1327,
  44651. bottom: 43/1424
  44652. }
  44653. },
  44654. },
  44655. [
  44656. {
  44657. name: "Normal",
  44658. height: math.unit(5 + 2/12, "feet"),
  44659. default: true
  44660. },
  44661. ]
  44662. ))
  44663. characterMakers.push(() => makeCharacter(
  44664. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44665. {
  44666. front: {
  44667. height: math.unit(5 + 9/12, "feet"),
  44668. name: "Front",
  44669. image: {
  44670. source: "./media/characters/aliya-cotton/front.svg",
  44671. extra: 577/564,
  44672. bottom: 29/606
  44673. }
  44674. },
  44675. },
  44676. [
  44677. {
  44678. name: "Normal",
  44679. height: math.unit(5 + 9/12, "feet"),
  44680. default: true
  44681. },
  44682. ]
  44683. ))
  44684. characterMakers.push(() => makeCharacter(
  44685. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44686. {
  44687. front: {
  44688. height: math.unit(2.7, "meters"),
  44689. weight: math.unit(25000, "lb"),
  44690. name: "Front",
  44691. image: {
  44692. source: "./media/characters/noah-luxray/front.svg",
  44693. extra: 1644/825,
  44694. bottom: 339/1983
  44695. }
  44696. },
  44697. side: {
  44698. height: math.unit(2.97, "meters"),
  44699. weight: math.unit(25000, "lb"),
  44700. name: "Side",
  44701. image: {
  44702. source: "./media/characters/noah-luxray/side.svg",
  44703. extra: 1319/650,
  44704. bottom: 163/1482
  44705. }
  44706. },
  44707. dick: {
  44708. height: math.unit(7.4, "feet"),
  44709. weight: math.unit(2500, "lb"),
  44710. name: "Dick",
  44711. image: {
  44712. source: "./media/characters/noah-luxray/dick.svg"
  44713. }
  44714. },
  44715. dickAlt: {
  44716. height: math.unit(10.83, "feet"),
  44717. weight: math.unit(2500, "lb"),
  44718. name: "Dick-alt",
  44719. image: {
  44720. source: "./media/characters/noah-luxray/dick-alt.svg"
  44721. }
  44722. },
  44723. },
  44724. [
  44725. {
  44726. name: "BIG",
  44727. height: math.unit(2.7, "meters"),
  44728. default: true
  44729. },
  44730. ]
  44731. ))
  44732. characterMakers.push(() => makeCharacter(
  44733. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44734. {
  44735. standing: {
  44736. height: math.unit(183, "cm"),
  44737. weight: math.unit(68, "kg"),
  44738. name: "Standing",
  44739. image: {
  44740. source: "./media/characters/arion/standing.svg",
  44741. extra: 1869/1807,
  44742. bottom: 93/1962
  44743. }
  44744. },
  44745. reclining: {
  44746. height: math.unit(70.5, "cm"),
  44747. weight: math.unit(68, "lb"),
  44748. name: "Reclining",
  44749. image: {
  44750. source: "./media/characters/arion/reclining.svg",
  44751. extra: 937/870,
  44752. bottom: 63/1000
  44753. }
  44754. },
  44755. },
  44756. [
  44757. {
  44758. name: "Colossus Size, Low",
  44759. height: math.unit(33, "meters"),
  44760. default: true
  44761. },
  44762. {
  44763. name: "Colossus Size, Mid",
  44764. height: math.unit(52, "meters")
  44765. },
  44766. {
  44767. name: "Colossus Size, High",
  44768. height: math.unit(60, "meters")
  44769. },
  44770. {
  44771. name: "Titan Size, Low",
  44772. height: math.unit(91, "meters"),
  44773. },
  44774. {
  44775. name: "Titan Size, Mid",
  44776. height: math.unit(122, "meters")
  44777. },
  44778. {
  44779. name: "Titan Size, High",
  44780. height: math.unit(162, "meters")
  44781. },
  44782. ]
  44783. ))
  44784. characterMakers.push(() => makeCharacter(
  44785. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44786. {
  44787. front: {
  44788. height: math.unit(53, "meters"),
  44789. name: "Front",
  44790. image: {
  44791. source: "./media/characters/stellar-marbey/front.svg",
  44792. extra: 1913/1805,
  44793. bottom: 92/2005
  44794. }
  44795. },
  44796. back: {
  44797. height: math.unit(53, "meters"),
  44798. name: "Back",
  44799. image: {
  44800. source: "./media/characters/stellar-marbey/back.svg",
  44801. extra: 1960/1851,
  44802. bottom: 28/1988
  44803. }
  44804. },
  44805. mouth: {
  44806. height: math.unit(3.5, "meters"),
  44807. name: "Mouth",
  44808. image: {
  44809. source: "./media/characters/stellar-marbey/mouth.svg"
  44810. }
  44811. },
  44812. },
  44813. [
  44814. {
  44815. name: "Macro",
  44816. height: math.unit(53, "meters"),
  44817. default: true
  44818. },
  44819. ]
  44820. ))
  44821. characterMakers.push(() => makeCharacter(
  44822. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44823. {
  44824. front: {
  44825. height: math.unit(8 + 1/12, "feet"),
  44826. weight: math.unit(233, "lb"),
  44827. name: "Front",
  44828. image: {
  44829. source: "./media/characters/matsu/front.svg",
  44830. extra: 832/772,
  44831. bottom: 40/872
  44832. }
  44833. },
  44834. back: {
  44835. height: math.unit(8 + 1/12, "feet"),
  44836. weight: math.unit(233, "lb"),
  44837. name: "Back",
  44838. image: {
  44839. source: "./media/characters/matsu/back.svg",
  44840. extra: 839/780,
  44841. bottom: 47/886
  44842. }
  44843. },
  44844. },
  44845. [
  44846. {
  44847. name: "Normal",
  44848. height: math.unit(8 + 1/12, "feet"),
  44849. default: true
  44850. },
  44851. ]
  44852. ))
  44853. characterMakers.push(() => makeCharacter(
  44854. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44855. {
  44856. front: {
  44857. height: math.unit(4, "feet"),
  44858. weight: math.unit(148, "lb"),
  44859. name: "Front",
  44860. image: {
  44861. source: "./media/characters/thiz/front.svg",
  44862. extra: 1913/1748,
  44863. bottom: 62/1975
  44864. }
  44865. },
  44866. },
  44867. [
  44868. {
  44869. name: "Normal",
  44870. height: math.unit(4, "feet"),
  44871. default: true
  44872. },
  44873. ]
  44874. ))
  44875. characterMakers.push(() => makeCharacter(
  44876. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44877. {
  44878. front: {
  44879. height: math.unit(7 + 6/12, "feet"),
  44880. weight: math.unit(267, "lb"),
  44881. name: "Front",
  44882. image: {
  44883. source: "./media/characters/marcel/front.svg",
  44884. extra: 1221/1096,
  44885. bottom: 76/1297
  44886. }
  44887. },
  44888. },
  44889. [
  44890. {
  44891. name: "Normal",
  44892. height: math.unit(7 + 6/12, "feet"),
  44893. default: true
  44894. },
  44895. ]
  44896. ))
  44897. characterMakers.push(() => makeCharacter(
  44898. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44899. {
  44900. side: {
  44901. height: math.unit(42, "meters"),
  44902. name: "Side",
  44903. image: {
  44904. source: "./media/characters/flake/side.svg",
  44905. extra: 1525/1306,
  44906. bottom: 209/1734
  44907. }
  44908. },
  44909. },
  44910. [
  44911. {
  44912. name: "Normal",
  44913. height: math.unit(42, "meters"),
  44914. default: true
  44915. },
  44916. ]
  44917. ))
  44918. characterMakers.push(() => makeCharacter(
  44919. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44920. {
  44921. dressed: {
  44922. height: math.unit(6 + 4/12, "feet"),
  44923. weight: math.unit(520, "lb"),
  44924. name: "Dressed",
  44925. image: {
  44926. source: "./media/characters/someonne/dressed.svg",
  44927. extra: 1020/1010,
  44928. bottom: 178/1198
  44929. }
  44930. },
  44931. undressed: {
  44932. height: math.unit(6 + 4/12, "feet"),
  44933. weight: math.unit(520, "lb"),
  44934. name: "Undressed",
  44935. image: {
  44936. source: "./media/characters/someonne/undressed.svg",
  44937. extra: 1019/1014,
  44938. bottom: 169/1188
  44939. }
  44940. },
  44941. },
  44942. [
  44943. {
  44944. name: "Normal",
  44945. height: math.unit(6 + 4/12, "feet"),
  44946. default: true
  44947. },
  44948. ]
  44949. ))
  44950. characterMakers.push(() => makeCharacter(
  44951. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44952. {
  44953. front: {
  44954. height: math.unit(3, "feet"),
  44955. weight: math.unit(30, "lb"),
  44956. name: "Front",
  44957. image: {
  44958. source: "./media/characters/till/front.svg",
  44959. extra: 892/823,
  44960. bottom: 55/947
  44961. }
  44962. },
  44963. },
  44964. [
  44965. {
  44966. name: "Normal",
  44967. height: math.unit(3, "feet"),
  44968. default: true
  44969. },
  44970. ]
  44971. ))
  44972. characterMakers.push(() => makeCharacter(
  44973. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44974. {
  44975. front: {
  44976. height: math.unit(9 + 8/12, "feet"),
  44977. weight: math.unit(800, "lb"),
  44978. name: "Front",
  44979. image: {
  44980. source: "./media/characters/sydney-heki/front.svg",
  44981. extra: 1360/1300,
  44982. bottom: 22/1382
  44983. }
  44984. },
  44985. back: {
  44986. height: math.unit(9 + 8/12, "feet"),
  44987. weight: math.unit(800, "lb"),
  44988. name: "Back",
  44989. image: {
  44990. source: "./media/characters/sydney-heki/back.svg",
  44991. extra: 1356/1293,
  44992. bottom: 12/1368
  44993. }
  44994. },
  44995. frontDressed: {
  44996. height: math.unit(9 + 8/12, "feet"),
  44997. weight: math.unit(800, "lb"),
  44998. name: "Front-dressed",
  44999. image: {
  45000. source: "./media/characters/sydney-heki/front-dressed.svg",
  45001. extra: 1360/1300,
  45002. bottom: 22/1382
  45003. }
  45004. },
  45005. },
  45006. [
  45007. {
  45008. name: "Normal",
  45009. height: math.unit(9 + 8/12, "feet"),
  45010. default: true
  45011. },
  45012. {
  45013. name: "Macro",
  45014. height: math.unit(500, "feet")
  45015. },
  45016. {
  45017. name: "Megamacro",
  45018. height: math.unit(3.6, "miles")
  45019. },
  45020. ]
  45021. ))
  45022. characterMakers.push(() => makeCharacter(
  45023. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45024. {
  45025. front: {
  45026. height: math.unit(200, "cm"),
  45027. weight: math.unit(250, "lb"),
  45028. name: "Front",
  45029. image: {
  45030. source: "./media/characters/fowler-karlsson/front.svg",
  45031. extra: 897/845,
  45032. bottom: 123/1020
  45033. }
  45034. },
  45035. back: {
  45036. height: math.unit(200, "cm"),
  45037. weight: math.unit(250, "lb"),
  45038. name: "Back",
  45039. image: {
  45040. source: "./media/characters/fowler-karlsson/back.svg",
  45041. extra: 999/944,
  45042. bottom: 26/1025
  45043. }
  45044. },
  45045. dick: {
  45046. height: math.unit(1.92, "feet"),
  45047. weight: math.unit(150, "lb"),
  45048. name: "Dick",
  45049. image: {
  45050. source: "./media/characters/fowler-karlsson/dick.svg"
  45051. }
  45052. },
  45053. },
  45054. [
  45055. {
  45056. name: "Normal",
  45057. height: math.unit(200, "cm"),
  45058. default: true
  45059. },
  45060. {
  45061. name: "Smaller Macro",
  45062. height: math.unit(90, "m")
  45063. },
  45064. {
  45065. name: "Macro",
  45066. height: math.unit(150, "m")
  45067. },
  45068. {
  45069. name: "Bigger Macro",
  45070. height: math.unit(300, "m")
  45071. },
  45072. ]
  45073. ))
  45074. characterMakers.push(() => makeCharacter(
  45075. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45076. {
  45077. side: {
  45078. height: math.unit(8 + 2/12, "feet"),
  45079. weight: math.unit(1, "tonne"),
  45080. name: "Side",
  45081. image: {
  45082. source: "./media/characters/rylide/side.svg",
  45083. extra: 1318/1034,
  45084. bottom: 106/1424
  45085. }
  45086. },
  45087. sitting: {
  45088. height: math.unit(303, "cm"),
  45089. weight: math.unit(1, "tonne"),
  45090. name: "Sitting",
  45091. image: {
  45092. source: "./media/characters/rylide/sitting.svg",
  45093. extra: 1303/1103,
  45094. bottom: 36/1339
  45095. }
  45096. },
  45097. },
  45098. [
  45099. {
  45100. name: "Normal",
  45101. height: math.unit(8 + 2/12, "feet"),
  45102. default: true
  45103. },
  45104. ]
  45105. ))
  45106. characterMakers.push(() => makeCharacter(
  45107. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45108. {
  45109. front: {
  45110. height: math.unit(5 + 10/12, "feet"),
  45111. weight: math.unit(160, "lb"),
  45112. name: "Front",
  45113. image: {
  45114. source: "./media/characters/pudask/front.svg",
  45115. extra: 1616/1590,
  45116. bottom: 161/1777
  45117. }
  45118. },
  45119. },
  45120. [
  45121. {
  45122. name: "Ferret Height",
  45123. height: math.unit(2 + 5/12, "feet")
  45124. },
  45125. {
  45126. name: "Canon Height",
  45127. height: math.unit(5 + 10/12, "feet"),
  45128. default: true
  45129. },
  45130. ]
  45131. ))
  45132. characterMakers.push(() => makeCharacter(
  45133. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45134. {
  45135. front: {
  45136. height: math.unit(3 + 6/12, "feet"),
  45137. weight: math.unit(60, "lb"),
  45138. name: "Front",
  45139. image: {
  45140. source: "./media/characters/ramita/front.svg",
  45141. extra: 1402/1232,
  45142. bottom: 62/1464
  45143. }
  45144. },
  45145. dressed: {
  45146. height: math.unit(3 + 6/12, "feet"),
  45147. weight: math.unit(60, "lb"),
  45148. name: "Dressed",
  45149. image: {
  45150. source: "./media/characters/ramita/dressed.svg",
  45151. extra: 1534/1249,
  45152. bottom: 50/1584
  45153. }
  45154. },
  45155. },
  45156. [
  45157. {
  45158. name: "Normal",
  45159. height: math.unit(3 + 6/12, "feet"),
  45160. default: true
  45161. },
  45162. ]
  45163. ))
  45164. characterMakers.push(() => makeCharacter(
  45165. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45166. {
  45167. front: {
  45168. height: math.unit(8, "feet"),
  45169. name: "Front",
  45170. image: {
  45171. source: "./media/characters/ark/front.svg",
  45172. extra: 772/693,
  45173. bottom: 45/817
  45174. }
  45175. },
  45176. },
  45177. [
  45178. {
  45179. name: "Normal",
  45180. height: math.unit(8, "feet"),
  45181. default: true
  45182. },
  45183. ]
  45184. ))
  45185. characterMakers.push(() => makeCharacter(
  45186. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45187. {
  45188. front: {
  45189. height: math.unit(6, "feet"),
  45190. weight: math.unit(250, "lb"),
  45191. volume: math.unit(5/8, "gallons"),
  45192. name: "Front",
  45193. image: {
  45194. source: "./media/characters/ludwig-horn/front.svg",
  45195. extra: 1782/1635,
  45196. bottom: 96/1878
  45197. }
  45198. },
  45199. back: {
  45200. height: math.unit(6, "feet"),
  45201. weight: math.unit(250, "lb"),
  45202. volume: math.unit(5/8, "gallons"),
  45203. name: "Back",
  45204. image: {
  45205. source: "./media/characters/ludwig-horn/back.svg",
  45206. extra: 1874/1729,
  45207. bottom: 27/1901
  45208. }
  45209. },
  45210. dick: {
  45211. height: math.unit(1.05, "feet"),
  45212. weight: math.unit(15, "lb"),
  45213. volume: math.unit(5/8, "gallons"),
  45214. name: "Dick",
  45215. image: {
  45216. source: "./media/characters/ludwig-horn/dick.svg"
  45217. }
  45218. },
  45219. },
  45220. [
  45221. {
  45222. name: "Small",
  45223. height: math.unit(6, "feet")
  45224. },
  45225. {
  45226. name: "Typical",
  45227. height: math.unit(12, "feet"),
  45228. default: true
  45229. },
  45230. {
  45231. name: "Building",
  45232. height: math.unit(80, "feet")
  45233. },
  45234. {
  45235. name: "Town",
  45236. height: math.unit(800, "feet")
  45237. },
  45238. {
  45239. name: "Kingdom",
  45240. height: math.unit(80000, "feet")
  45241. },
  45242. {
  45243. name: "Planet",
  45244. height: math.unit(8000000, "feet")
  45245. },
  45246. {
  45247. name: "Universe",
  45248. height: math.unit(8000000000, "feet")
  45249. },
  45250. {
  45251. name: "Transcended",
  45252. height: math.unit(8e27, "feet")
  45253. },
  45254. ]
  45255. ))
  45256. characterMakers.push(() => makeCharacter(
  45257. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45258. {
  45259. front: {
  45260. height: math.unit(5, "feet"),
  45261. weight: math.unit(50, "kg"),
  45262. name: "Front",
  45263. image: {
  45264. source: "./media/characters/biot-avery/front.svg",
  45265. extra: 1295/1232,
  45266. bottom: 86/1381
  45267. }
  45268. },
  45269. },
  45270. [
  45271. {
  45272. name: "Normal",
  45273. height: math.unit(5, "feet"),
  45274. default: true
  45275. },
  45276. ]
  45277. ))
  45278. characterMakers.push(() => makeCharacter(
  45279. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45280. {
  45281. front: {
  45282. height: math.unit(6, "feet"),
  45283. name: "Front",
  45284. image: {
  45285. source: "./media/characters/kitsune-kiro/front.svg",
  45286. extra: 1270/1158,
  45287. bottom: 42/1312
  45288. }
  45289. },
  45290. frontAlt: {
  45291. height: math.unit(6, "feet"),
  45292. name: "Front-alt",
  45293. image: {
  45294. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45295. extra: 1130/1081,
  45296. bottom: 36/1166
  45297. }
  45298. },
  45299. },
  45300. [
  45301. {
  45302. name: "Smol",
  45303. height: math.unit(3, "feet")
  45304. },
  45305. {
  45306. name: "Normal",
  45307. height: math.unit(6, "feet"),
  45308. default: true
  45309. },
  45310. ]
  45311. ))
  45312. characterMakers.push(() => makeCharacter(
  45313. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45314. {
  45315. front: {
  45316. height: math.unit(6, "feet"),
  45317. weight: math.unit(125, "lb"),
  45318. name: "Front",
  45319. image: {
  45320. source: "./media/characters/jack-thatcher/front.svg",
  45321. extra: 1474/1370,
  45322. bottom: 26/1500
  45323. }
  45324. },
  45325. back: {
  45326. height: math.unit(6, "feet"),
  45327. weight: math.unit(125, "lb"),
  45328. name: "Back",
  45329. image: {
  45330. source: "./media/characters/jack-thatcher/back.svg",
  45331. extra: 1489/1384,
  45332. bottom: 18/1507
  45333. }
  45334. },
  45335. },
  45336. [
  45337. {
  45338. name: "Normal",
  45339. height: math.unit(6, "feet"),
  45340. default: true
  45341. },
  45342. {
  45343. name: "Macro",
  45344. height: math.unit(75, "feet")
  45345. },
  45346. {
  45347. name: "Macro-er",
  45348. height: math.unit(250, "feet")
  45349. },
  45350. ]
  45351. ))
  45352. characterMakers.push(() => makeCharacter(
  45353. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45354. {
  45355. front: {
  45356. height: math.unit(7, "feet"),
  45357. weight: math.unit(110, "kg"),
  45358. name: "Front",
  45359. image: {
  45360. source: "./media/characters/max-hyper/front.svg",
  45361. extra: 1969/1881,
  45362. bottom: 49/2018
  45363. }
  45364. },
  45365. },
  45366. [
  45367. {
  45368. name: "Normal",
  45369. height: math.unit(7, "feet"),
  45370. default: true
  45371. },
  45372. ]
  45373. ))
  45374. characterMakers.push(() => makeCharacter(
  45375. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45376. {
  45377. front: {
  45378. height: math.unit(5 + 5/12, "feet"),
  45379. weight: math.unit(160, "lb"),
  45380. name: "Front",
  45381. image: {
  45382. source: "./media/characters/spook/front.svg",
  45383. extra: 794/791,
  45384. bottom: 54/848
  45385. }
  45386. },
  45387. back: {
  45388. height: math.unit(5 + 5/12, "feet"),
  45389. weight: math.unit(160, "lb"),
  45390. name: "Back",
  45391. image: {
  45392. source: "./media/characters/spook/back.svg",
  45393. extra: 812/798,
  45394. bottom: 32/844
  45395. }
  45396. },
  45397. },
  45398. [
  45399. {
  45400. name: "Normal",
  45401. height: math.unit(5 + 5/12, "feet"),
  45402. default: true
  45403. },
  45404. ]
  45405. ))
  45406. characterMakers.push(() => makeCharacter(
  45407. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45408. {
  45409. front: {
  45410. height: math.unit(18, "feet"),
  45411. name: "Front",
  45412. image: {
  45413. source: "./media/characters/xeaduulix/front.svg",
  45414. extra: 1380/1166,
  45415. bottom: 110/1490
  45416. }
  45417. },
  45418. back: {
  45419. height: math.unit(18, "feet"),
  45420. name: "Back",
  45421. image: {
  45422. source: "./media/characters/xeaduulix/back.svg",
  45423. extra: 1592/1170,
  45424. bottom: 128/1720
  45425. }
  45426. },
  45427. frontNsfw: {
  45428. height: math.unit(18, "feet"),
  45429. name: "Front (NSFW)",
  45430. image: {
  45431. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45432. extra: 1380/1166,
  45433. bottom: 110/1490
  45434. }
  45435. },
  45436. backNsfw: {
  45437. height: math.unit(18, "feet"),
  45438. name: "Back (NSFW)",
  45439. image: {
  45440. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45441. extra: 1592/1170,
  45442. bottom: 128/1720
  45443. }
  45444. },
  45445. },
  45446. [
  45447. {
  45448. name: "Normal",
  45449. height: math.unit(18, "feet"),
  45450. default: true
  45451. },
  45452. ]
  45453. ))
  45454. characterMakers.push(() => makeCharacter(
  45455. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45456. {
  45457. spreadWings: {
  45458. height: math.unit(20, "feet"),
  45459. name: "Spread Wings",
  45460. image: {
  45461. source: "./media/characters/fledge/spread-wings.svg",
  45462. extra: 693/635,
  45463. bottom: 26/719
  45464. }
  45465. },
  45466. front: {
  45467. height: math.unit(20, "feet"),
  45468. name: "Front",
  45469. image: {
  45470. source: "./media/characters/fledge/front.svg",
  45471. extra: 684/637,
  45472. bottom: 18/702
  45473. }
  45474. },
  45475. frontAlt: {
  45476. height: math.unit(20, "feet"),
  45477. name: "Front (Alt)",
  45478. image: {
  45479. source: "./media/characters/fledge/front-alt.svg",
  45480. extra: 708/664,
  45481. bottom: 13/721
  45482. }
  45483. },
  45484. back: {
  45485. height: math.unit(20, "feet"),
  45486. name: "Back",
  45487. image: {
  45488. source: "./media/characters/fledge/back.svg",
  45489. extra: 718/634,
  45490. bottom: 22/740
  45491. }
  45492. },
  45493. head: {
  45494. height: math.unit(5.55, "feet"),
  45495. name: "Head",
  45496. image: {
  45497. source: "./media/characters/fledge/head.svg"
  45498. }
  45499. },
  45500. headAlt: {
  45501. height: math.unit(5.1, "feet"),
  45502. name: "Head (Alt)",
  45503. image: {
  45504. source: "./media/characters/fledge/head-alt.svg"
  45505. }
  45506. },
  45507. },
  45508. [
  45509. {
  45510. name: "Small",
  45511. height: math.unit(6 + 2/12, "feet")
  45512. },
  45513. {
  45514. name: "Big",
  45515. height: math.unit(20, "feet"),
  45516. default: true
  45517. },
  45518. {
  45519. name: "Giant",
  45520. height: math.unit(100, "feet")
  45521. },
  45522. {
  45523. name: "Macro",
  45524. height: math.unit(200, "feet")
  45525. },
  45526. ]
  45527. ))
  45528. characterMakers.push(() => makeCharacter(
  45529. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45530. {
  45531. front: {
  45532. height: math.unit(1, "meter"),
  45533. name: "Front",
  45534. image: {
  45535. source: "./media/characters/atlas-morenai/front.svg",
  45536. extra: 1275/1043,
  45537. bottom: 19/1294
  45538. }
  45539. },
  45540. back: {
  45541. height: math.unit(1, "meter"),
  45542. name: "Back",
  45543. image: {
  45544. source: "./media/characters/atlas-morenai/back.svg",
  45545. extra: 1141/1001,
  45546. bottom: 25/1166
  45547. }
  45548. },
  45549. },
  45550. [
  45551. {
  45552. name: "Normal",
  45553. height: math.unit(1, "meter"),
  45554. default: true
  45555. },
  45556. {
  45557. name: "Magic-Infused",
  45558. height: math.unit(5, "meters")
  45559. },
  45560. ]
  45561. ))
  45562. characterMakers.push(() => makeCharacter(
  45563. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45564. {
  45565. front: {
  45566. height: math.unit(5, "meters"),
  45567. name: "Front",
  45568. image: {
  45569. source: "./media/characters/cintia/front.svg",
  45570. extra: 1312/1228,
  45571. bottom: 38/1350
  45572. }
  45573. },
  45574. back: {
  45575. height: math.unit(5, "meters"),
  45576. name: "Back",
  45577. image: {
  45578. source: "./media/characters/cintia/back.svg",
  45579. extra: 1260/1166,
  45580. bottom: 98/1358
  45581. }
  45582. },
  45583. frontDick: {
  45584. height: math.unit(5, "meters"),
  45585. name: "Front (Dick)",
  45586. image: {
  45587. source: "./media/characters/cintia/front-dick.svg",
  45588. extra: 1312/1228,
  45589. bottom: 38/1350
  45590. }
  45591. },
  45592. backDick: {
  45593. height: math.unit(5, "meters"),
  45594. name: "Back (Dick)",
  45595. image: {
  45596. source: "./media/characters/cintia/back-dick.svg",
  45597. extra: 1260/1166,
  45598. bottom: 98/1358
  45599. }
  45600. },
  45601. bust: {
  45602. height: math.unit(1.97, "meters"),
  45603. name: "Bust",
  45604. image: {
  45605. source: "./media/characters/cintia/bust.svg",
  45606. extra: 617/565,
  45607. bottom: 0/617
  45608. }
  45609. },
  45610. },
  45611. [
  45612. {
  45613. name: "Normal",
  45614. height: math.unit(5, "meters"),
  45615. default: true
  45616. },
  45617. ]
  45618. ))
  45619. characterMakers.push(() => makeCharacter(
  45620. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45621. {
  45622. side: {
  45623. height: math.unit(100, "feet"),
  45624. name: "Side",
  45625. image: {
  45626. source: "./media/characters/denora/side.svg",
  45627. extra: 875/803,
  45628. bottom: 9/884
  45629. }
  45630. },
  45631. },
  45632. [
  45633. {
  45634. name: "Standard",
  45635. height: math.unit(100, "feet"),
  45636. default: true
  45637. },
  45638. {
  45639. name: "Grand",
  45640. height: math.unit(1000, "feet")
  45641. },
  45642. {
  45643. name: "Conquering",
  45644. height: math.unit(10000, "feet")
  45645. },
  45646. ]
  45647. ))
  45648. characterMakers.push(() => makeCharacter(
  45649. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45650. {
  45651. dressed: {
  45652. height: math.unit(8 + 5/12, "feet"),
  45653. weight: math.unit(700, "lb"),
  45654. name: "Dressed",
  45655. image: {
  45656. source: "./media/characters/kiva/dressed.svg",
  45657. extra: 1102/1055,
  45658. bottom: 60/1162
  45659. }
  45660. },
  45661. nude: {
  45662. height: math.unit(8 + 5/12, "feet"),
  45663. weight: math.unit(700, "lb"),
  45664. name: "Nude",
  45665. image: {
  45666. source: "./media/characters/kiva/nude.svg",
  45667. extra: 1102/1055,
  45668. bottom: 60/1162
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Base Height",
  45675. height: math.unit(8 + 5/12, "feet"),
  45676. default: true
  45677. },
  45678. {
  45679. name: "Macro",
  45680. height: math.unit(100, "feet")
  45681. },
  45682. {
  45683. name: "Max",
  45684. height: math.unit(3280, "feet")
  45685. },
  45686. ]
  45687. ))
  45688. characterMakers.push(() => makeCharacter(
  45689. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45690. {
  45691. front: {
  45692. height: math.unit(6 + 8/12, "feet"),
  45693. weight: math.unit(250, "lb"),
  45694. name: "Front",
  45695. image: {
  45696. source: "./media/characters/ztragon/front.svg",
  45697. extra: 1825/1684,
  45698. bottom: 98/1923
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Normal",
  45705. height: math.unit(6 + 8/12, "feet"),
  45706. default: true
  45707. },
  45708. {
  45709. name: "Macro",
  45710. height: math.unit(80, "feet")
  45711. },
  45712. ]
  45713. ))
  45714. characterMakers.push(() => makeCharacter(
  45715. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45716. {
  45717. front: {
  45718. height: math.unit(10.4, "feet"),
  45719. weight: math.unit(2, "tons"),
  45720. name: "Front",
  45721. image: {
  45722. source: "./media/characters/yesenia/front.svg",
  45723. extra: 1479/1474,
  45724. bottom: 233/1712
  45725. }
  45726. },
  45727. },
  45728. [
  45729. {
  45730. name: "Normal",
  45731. height: math.unit(10.4, "feet"),
  45732. default: true
  45733. },
  45734. ]
  45735. ))
  45736. characterMakers.push(() => makeCharacter(
  45737. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45738. {
  45739. normal: {
  45740. height: math.unit(6 + 1/12, "feet"),
  45741. weight: math.unit(180, "lb"),
  45742. name: "Normal",
  45743. image: {
  45744. source: "./media/characters/leanne-lycheborne/normal.svg",
  45745. extra: 1748/1660,
  45746. bottom: 98/1846
  45747. }
  45748. },
  45749. were: {
  45750. height: math.unit(12, "feet"),
  45751. weight: math.unit(1600, "lb"),
  45752. name: "Were",
  45753. image: {
  45754. source: "./media/characters/leanne-lycheborne/were.svg",
  45755. extra: 1485/1432,
  45756. bottom: 66/1551
  45757. }
  45758. },
  45759. },
  45760. [
  45761. {
  45762. name: "Normal",
  45763. height: math.unit(6 + 1/12, "feet"),
  45764. default: true
  45765. },
  45766. ]
  45767. ))
  45768. characterMakers.push(() => makeCharacter(
  45769. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45770. {
  45771. side: {
  45772. height: math.unit(13, "feet"),
  45773. name: "Side",
  45774. image: {
  45775. source: "./media/characters/kira-tyler/side.svg",
  45776. extra: 693/393,
  45777. bottom: 58/751
  45778. }
  45779. },
  45780. },
  45781. [
  45782. {
  45783. name: "Normal",
  45784. height: math.unit(13, "feet"),
  45785. default: true
  45786. },
  45787. ]
  45788. ))
  45789. characterMakers.push(() => makeCharacter(
  45790. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45791. {
  45792. front: {
  45793. height: math.unit(10.3, "feet"),
  45794. weight: math.unit(150, "lb"),
  45795. name: "Front",
  45796. image: {
  45797. source: "./media/characters/blaze/front.svg",
  45798. extra: 1378/1286,
  45799. bottom: 172/1550
  45800. }
  45801. },
  45802. },
  45803. [
  45804. {
  45805. name: "Normal",
  45806. height: math.unit(10.3, "feet"),
  45807. default: true
  45808. },
  45809. ]
  45810. ))
  45811. characterMakers.push(() => makeCharacter(
  45812. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45813. {
  45814. side: {
  45815. height: math.unit(2, "meters"),
  45816. weight: math.unit(400, "kg"),
  45817. name: "Side",
  45818. image: {
  45819. source: "./media/characters/anu/side.svg",
  45820. extra: 506/394,
  45821. bottom: 18/524
  45822. }
  45823. },
  45824. },
  45825. [
  45826. {
  45827. name: "Humanoid",
  45828. height: math.unit(2, "meters")
  45829. },
  45830. {
  45831. name: "Normal",
  45832. height: math.unit(5, "meters"),
  45833. default: true
  45834. },
  45835. ]
  45836. ))
  45837. characterMakers.push(() => makeCharacter(
  45838. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45839. {
  45840. front: {
  45841. height: math.unit(5 + 5/12, "feet"),
  45842. weight: math.unit(170, "lb"),
  45843. name: "Front",
  45844. image: {
  45845. source: "./media/characters/synx-the-lynx/front.svg",
  45846. extra: 1893/1745,
  45847. bottom: 17/1910
  45848. }
  45849. },
  45850. side: {
  45851. height: math.unit(5 + 5/12, "feet"),
  45852. weight: math.unit(170, "lb"),
  45853. name: "Side",
  45854. image: {
  45855. source: "./media/characters/synx-the-lynx/side.svg",
  45856. extra: 1884/1740,
  45857. bottom: 39/1923
  45858. }
  45859. },
  45860. back: {
  45861. height: math.unit(5 + 5/12, "feet"),
  45862. weight: math.unit(170, "lb"),
  45863. name: "Back",
  45864. image: {
  45865. source: "./media/characters/synx-the-lynx/back.svg",
  45866. extra: 1903/1755,
  45867. bottom: 14/1917
  45868. }
  45869. },
  45870. },
  45871. [
  45872. {
  45873. name: "Normal",
  45874. height: math.unit(5 + 5/12, "feet"),
  45875. default: true
  45876. },
  45877. ]
  45878. ))
  45879. characterMakers.push(() => makeCharacter(
  45880. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45881. {
  45882. back: {
  45883. height: math.unit(15, "feet"),
  45884. name: "Back",
  45885. image: {
  45886. source: "./media/characters/nadezda-fex/back.svg",
  45887. extra: 1695/1481,
  45888. bottom: 25/1720
  45889. }
  45890. },
  45891. },
  45892. [
  45893. {
  45894. name: "Normal",
  45895. height: math.unit(15, "feet"),
  45896. default: true
  45897. },
  45898. {
  45899. name: "Macro",
  45900. height: math.unit(2.5, "miles")
  45901. },
  45902. {
  45903. name: "Goddess",
  45904. height: math.unit(2, "multiverses")
  45905. },
  45906. ]
  45907. ))
  45908. characterMakers.push(() => makeCharacter(
  45909. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45910. {
  45911. front: {
  45912. height: math.unit(216, "cm"),
  45913. name: "Front",
  45914. image: {
  45915. source: "./media/characters/lev/front.svg",
  45916. extra: 1728/1670,
  45917. bottom: 82/1810
  45918. }
  45919. },
  45920. back: {
  45921. height: math.unit(216, "cm"),
  45922. name: "Back",
  45923. image: {
  45924. source: "./media/characters/lev/back.svg",
  45925. extra: 1738/1675,
  45926. bottom: 24/1762
  45927. }
  45928. },
  45929. dressed: {
  45930. height: math.unit(216, "cm"),
  45931. name: "Dressed",
  45932. image: {
  45933. source: "./media/characters/lev/dressed.svg",
  45934. extra: 1397/1351,
  45935. bottom: 73/1470
  45936. }
  45937. },
  45938. head: {
  45939. height: math.unit(0.51, "meter"),
  45940. name: "Head",
  45941. image: {
  45942. source: "./media/characters/lev/head.svg"
  45943. }
  45944. },
  45945. },
  45946. [
  45947. {
  45948. name: "Normal",
  45949. height: math.unit(216, "cm"),
  45950. default: true
  45951. },
  45952. {
  45953. name: "Relatively Macro",
  45954. height: math.unit(80, "meters")
  45955. },
  45956. {
  45957. name: "Megamacro",
  45958. height: math.unit(21600, "meters")
  45959. },
  45960. {
  45961. name: "Megamacro+",
  45962. height: math.unit(64800, "meters")
  45963. },
  45964. ]
  45965. ))
  45966. characterMakers.push(() => makeCharacter(
  45967. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45968. {
  45969. front: {
  45970. height: math.unit(2, "meters"),
  45971. weight: math.unit(80, "kg"),
  45972. name: "Front",
  45973. image: {
  45974. source: "./media/characters/moka/front.svg",
  45975. extra: 1337/1255,
  45976. bottom: 58/1395
  45977. }
  45978. },
  45979. },
  45980. [
  45981. {
  45982. name: "Micro",
  45983. height: math.unit(15, "cm")
  45984. },
  45985. {
  45986. name: "Normal",
  45987. height: math.unit(2, "meters"),
  45988. default: true
  45989. },
  45990. {
  45991. name: "Macro",
  45992. height: math.unit(20, "meters"),
  45993. },
  45994. ]
  45995. ))
  45996. characterMakers.push(() => makeCharacter(
  45997. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45998. {
  45999. front: {
  46000. height: math.unit(9, "feet"),
  46001. weight: math.unit(240, "lb"),
  46002. name: "Front",
  46003. image: {
  46004. source: "./media/characters/kuzco/front.svg",
  46005. extra: 1593/1487,
  46006. bottom: 32/1625
  46007. }
  46008. },
  46009. side: {
  46010. height: math.unit(9, "feet"),
  46011. weight: math.unit(240, "lb"),
  46012. name: "Side",
  46013. image: {
  46014. source: "./media/characters/kuzco/side.svg",
  46015. extra: 1575/1485,
  46016. bottom: 30/1605
  46017. }
  46018. },
  46019. back: {
  46020. height: math.unit(9, "feet"),
  46021. weight: math.unit(240, "lb"),
  46022. name: "Back",
  46023. image: {
  46024. source: "./media/characters/kuzco/back.svg",
  46025. extra: 1603/1514,
  46026. bottom: 14/1617
  46027. }
  46028. },
  46029. },
  46030. [
  46031. {
  46032. name: "Normal",
  46033. height: math.unit(9, "feet"),
  46034. default: true
  46035. },
  46036. ]
  46037. ))
  46038. characterMakers.push(() => makeCharacter(
  46039. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46040. {
  46041. side: {
  46042. height: math.unit(2, "meters"),
  46043. weight: math.unit(300, "kg"),
  46044. name: "Side",
  46045. image: {
  46046. source: "./media/characters/ceruleus/side.svg",
  46047. extra: 1068/974,
  46048. bottom: 126/1194
  46049. }
  46050. },
  46051. },
  46052. [
  46053. {
  46054. name: "Normal",
  46055. height: math.unit(16, "meters"),
  46056. default: true
  46057. },
  46058. ]
  46059. ))
  46060. characterMakers.push(() => makeCharacter(
  46061. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46062. {
  46063. front: {
  46064. height: math.unit(9, "feet"),
  46065. weight: math.unit(500, "kg"),
  46066. name: "Front",
  46067. image: {
  46068. source: "./media/characters/acouya/front.svg",
  46069. extra: 1660/1473,
  46070. bottom: 28/1688
  46071. }
  46072. },
  46073. },
  46074. [
  46075. {
  46076. name: "Normal",
  46077. height: math.unit(9, "feet"),
  46078. default: true
  46079. },
  46080. ]
  46081. ))
  46082. characterMakers.push(() => makeCharacter(
  46083. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46084. {
  46085. front: {
  46086. height: math.unit(5 + 6/12, "feet"),
  46087. weight: math.unit(195, "lb"),
  46088. name: "Front",
  46089. image: {
  46090. source: "./media/characters/vant/front.svg",
  46091. extra: 1396/1320,
  46092. bottom: 20/1416
  46093. }
  46094. },
  46095. back: {
  46096. height: math.unit(5 + 6/12, "feet"),
  46097. weight: math.unit(195, "lb"),
  46098. name: "Back",
  46099. image: {
  46100. source: "./media/characters/vant/back.svg",
  46101. extra: 1396/1320,
  46102. bottom: 20/1416
  46103. }
  46104. },
  46105. maw: {
  46106. height: math.unit(0.75, "feet"),
  46107. name: "Maw",
  46108. image: {
  46109. source: "./media/characters/vant/maw.svg"
  46110. }
  46111. },
  46112. paw: {
  46113. height: math.unit(1.07, "feet"),
  46114. name: "Paw",
  46115. image: {
  46116. source: "./media/characters/vant/paw.svg"
  46117. }
  46118. },
  46119. },
  46120. [
  46121. {
  46122. name: "Micro",
  46123. height: math.unit(0.25, "inches")
  46124. },
  46125. {
  46126. name: "Normal",
  46127. height: math.unit(5 + 6/12, "feet"),
  46128. default: true
  46129. },
  46130. {
  46131. name: "Macro",
  46132. height: math.unit(75, "feet")
  46133. },
  46134. ]
  46135. ))
  46136. characterMakers.push(() => makeCharacter(
  46137. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46138. {
  46139. front: {
  46140. height: math.unit(30, "meters"),
  46141. weight: math.unit(363, "tons"),
  46142. name: "Front",
  46143. image: {
  46144. source: "./media/characters/ahra/front.svg",
  46145. extra: 1914/1814,
  46146. bottom: 46/1960
  46147. }
  46148. },
  46149. },
  46150. [
  46151. {
  46152. name: "Macro",
  46153. height: math.unit(30, "meters"),
  46154. default: true
  46155. },
  46156. ]
  46157. ))
  46158. characterMakers.push(() => makeCharacter(
  46159. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46160. {
  46161. undressed: {
  46162. height: math.unit(2, "m"),
  46163. weight: math.unit(250, "kg"),
  46164. name: "Undressed",
  46165. image: {
  46166. source: "./media/characters/coriander/undressed.svg",
  46167. extra: 1757/1606,
  46168. bottom: 107/1864
  46169. }
  46170. },
  46171. dressed: {
  46172. height: math.unit(2, "m"),
  46173. weight: math.unit(250, "kg"),
  46174. name: "Dressed",
  46175. image: {
  46176. source: "./media/characters/coriander/dressed.svg",
  46177. extra: 1757/1606,
  46178. bottom: 107/1864
  46179. }
  46180. },
  46181. },
  46182. [
  46183. {
  46184. name: "Normal",
  46185. height: math.unit(4, "meters"),
  46186. default: true
  46187. },
  46188. {
  46189. name: "XL",
  46190. height: math.unit(6, "meters")
  46191. },
  46192. {
  46193. name: "XXL",
  46194. height: math.unit(8, "meters")
  46195. },
  46196. ]
  46197. ))
  46198. characterMakers.push(() => makeCharacter(
  46199. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46200. {
  46201. front: {
  46202. height: math.unit(6, "feet"),
  46203. name: "Front",
  46204. image: {
  46205. source: "./media/characters/syrinx/front.svg",
  46206. extra: 1557/1259,
  46207. bottom: 171/1728
  46208. }
  46209. },
  46210. },
  46211. [
  46212. {
  46213. name: "Normal",
  46214. height: math.unit(6 + 3/12, "feet"),
  46215. default: true
  46216. },
  46217. ]
  46218. ))
  46219. characterMakers.push(() => makeCharacter(
  46220. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46221. {
  46222. front: {
  46223. height: math.unit(11 + 6/12, "feet"),
  46224. weight: math.unit(1.5, "tons"),
  46225. name: "Front",
  46226. image: {
  46227. source: "./media/characters/bor/front.svg",
  46228. extra: 1189/1109,
  46229. bottom: 170/1359
  46230. }
  46231. },
  46232. },
  46233. [
  46234. {
  46235. name: "Normal",
  46236. height: math.unit(11 + 6/12, "feet"),
  46237. default: true
  46238. },
  46239. {
  46240. name: "Macro",
  46241. height: math.unit(32 + 9/12, "feet")
  46242. },
  46243. ]
  46244. ))
  46245. characterMakers.push(() => makeCharacter(
  46246. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46247. {
  46248. anthro: {
  46249. height: math.unit(9, "feet"),
  46250. weight: math.unit(2076, "lb"),
  46251. name: "Anthro",
  46252. image: {
  46253. source: "./media/characters/abacus/anthro.svg",
  46254. extra: 1540/1494,
  46255. bottom: 233/1773
  46256. }
  46257. },
  46258. pigeon: {
  46259. height: math.unit(1, "feet"),
  46260. name: "Pigeon",
  46261. image: {
  46262. source: "./media/characters/abacus/pigeon.svg",
  46263. extra: 528/525,
  46264. bottom: 46/574
  46265. }
  46266. },
  46267. },
  46268. [
  46269. {
  46270. name: "Normal",
  46271. height: math.unit(9, "feet"),
  46272. default: true
  46273. },
  46274. ]
  46275. ))
  46276. characterMakers.push(() => makeCharacter(
  46277. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46278. {
  46279. side: {
  46280. height: math.unit(6, "feet"),
  46281. name: "Side",
  46282. image: {
  46283. source: "./media/characters/delkhan/side.svg",
  46284. extra: 1884/1786,
  46285. bottom: 308/2192
  46286. }
  46287. },
  46288. head: {
  46289. height: math.unit(3.38, "feet"),
  46290. name: "Head",
  46291. image: {
  46292. source: "./media/characters/delkhan/head.svg"
  46293. }
  46294. },
  46295. },
  46296. [
  46297. {
  46298. name: "Normal",
  46299. height: math.unit(72, "feet"),
  46300. default: true
  46301. },
  46302. {
  46303. name: "Giant",
  46304. height: math.unit(172, "feet")
  46305. },
  46306. ]
  46307. ))
  46308. characterMakers.push(() => makeCharacter(
  46309. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46310. {
  46311. standing: {
  46312. height: math.unit(6, "feet"),
  46313. name: "Standing",
  46314. image: {
  46315. source: "./media/characters/euchidat/standing.svg",
  46316. extra: 1612/1553,
  46317. bottom: 116/1728
  46318. }
  46319. },
  46320. leaning: {
  46321. height: math.unit(6, "feet"),
  46322. name: "Leaning",
  46323. image: {
  46324. source: "./media/characters/euchidat/leaning.svg",
  46325. extra: 1719/1674,
  46326. bottom: 27/1746
  46327. }
  46328. },
  46329. },
  46330. [
  46331. {
  46332. name: "Normal",
  46333. height: math.unit(175, "feet"),
  46334. default: true
  46335. },
  46336. {
  46337. name: "Megamacro",
  46338. height: math.unit(190, "miles")
  46339. },
  46340. {
  46341. name: "Gigamacro",
  46342. height: math.unit(190000, "miles")
  46343. },
  46344. ]
  46345. ))
  46346. characterMakers.push(() => makeCharacter(
  46347. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46348. {
  46349. front: {
  46350. height: math.unit(6, "feet"),
  46351. weight: math.unit(150, "lb"),
  46352. name: "Front",
  46353. image: {
  46354. source: "./media/characters/rebecca-stack/front.svg",
  46355. extra: 1256/1201,
  46356. bottom: 18/1274
  46357. }
  46358. },
  46359. },
  46360. [
  46361. {
  46362. name: "Normal",
  46363. height: math.unit(5 + 8/12, "feet"),
  46364. default: true
  46365. },
  46366. {
  46367. name: "Demolitionist",
  46368. height: math.unit(200, "feet")
  46369. },
  46370. {
  46371. name: "Out of Control",
  46372. height: math.unit(2, "miles")
  46373. },
  46374. {
  46375. name: "Giga",
  46376. height: math.unit(7200, "miles")
  46377. },
  46378. ]
  46379. ))
  46380. characterMakers.push(() => makeCharacter(
  46381. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46382. {
  46383. front: {
  46384. height: math.unit(6, "feet"),
  46385. weight: math.unit(150, "lb"),
  46386. name: "Front",
  46387. image: {
  46388. source: "./media/characters/jenny-cartwright/front.svg",
  46389. extra: 1384/1376,
  46390. bottom: 58/1442
  46391. }
  46392. },
  46393. },
  46394. [
  46395. {
  46396. name: "Normal",
  46397. height: math.unit(6 + 7/12, "feet"),
  46398. default: true
  46399. },
  46400. {
  46401. name: "Librarian",
  46402. height: math.unit(55, "feet")
  46403. },
  46404. {
  46405. name: "Sightseer",
  46406. height: math.unit(50, "miles")
  46407. },
  46408. {
  46409. name: "Giga",
  46410. height: math.unit(30000, "miles")
  46411. },
  46412. ]
  46413. ))
  46414. characterMakers.push(() => makeCharacter(
  46415. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46416. {
  46417. nude: {
  46418. height: math.unit(8, "feet"),
  46419. weight: math.unit(225, "lb"),
  46420. name: "Nude",
  46421. image: {
  46422. source: "./media/characters/marvy/nude.svg",
  46423. extra: 1900/1683,
  46424. bottom: 89/1989
  46425. }
  46426. },
  46427. dressed: {
  46428. height: math.unit(8, "feet"),
  46429. weight: math.unit(225, "lb"),
  46430. name: "Dressed",
  46431. image: {
  46432. source: "./media/characters/marvy/dressed.svg",
  46433. extra: 1900/1683,
  46434. bottom: 89/1989
  46435. }
  46436. },
  46437. head: {
  46438. height: math.unit(2.85, "feet"),
  46439. name: "Head",
  46440. image: {
  46441. source: "./media/characters/marvy/head.svg"
  46442. }
  46443. },
  46444. },
  46445. [
  46446. {
  46447. name: "Normal",
  46448. height: math.unit(8, "feet"),
  46449. default: true
  46450. },
  46451. ]
  46452. ))
  46453. characterMakers.push(() => makeCharacter(
  46454. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46455. {
  46456. front: {
  46457. height: math.unit(8, "feet"),
  46458. weight: math.unit(250, "lb"),
  46459. name: "Front",
  46460. image: {
  46461. source: "./media/characters/leah/front.svg",
  46462. extra: 1257/1149,
  46463. bottom: 109/1366
  46464. }
  46465. },
  46466. },
  46467. [
  46468. {
  46469. name: "Normal",
  46470. height: math.unit(8, "feet"),
  46471. default: true
  46472. },
  46473. {
  46474. name: "Minimacro",
  46475. height: math.unit(40, "feet")
  46476. },
  46477. {
  46478. name: "Macro",
  46479. height: math.unit(124, "feet")
  46480. },
  46481. {
  46482. name: "Megamacro",
  46483. height: math.unit(850, "feet")
  46484. },
  46485. ]
  46486. ))
  46487. characterMakers.push(() => makeCharacter(
  46488. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46489. {
  46490. side: {
  46491. height: math.unit(13 + 6/12, "feet"),
  46492. weight: math.unit(3200, "lb"),
  46493. name: "Side",
  46494. image: {
  46495. source: "./media/characters/alvir/side.svg",
  46496. extra: 896/589,
  46497. bottom: 26/922
  46498. }
  46499. },
  46500. },
  46501. [
  46502. {
  46503. name: "Normal",
  46504. height: math.unit(13 + 6/12, "feet"),
  46505. default: true
  46506. },
  46507. ]
  46508. ))
  46509. characterMakers.push(() => makeCharacter(
  46510. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46511. {
  46512. front: {
  46513. height: math.unit(5 + 4/12, "feet"),
  46514. weight: math.unit(236, "lb"),
  46515. name: "Front",
  46516. image: {
  46517. source: "./media/characters/zaina-khalil/front.svg",
  46518. extra: 1533/1485,
  46519. bottom: 94/1627
  46520. }
  46521. },
  46522. side: {
  46523. height: math.unit(5 + 4/12, "feet"),
  46524. weight: math.unit(236, "lb"),
  46525. name: "Side",
  46526. image: {
  46527. source: "./media/characters/zaina-khalil/side.svg",
  46528. extra: 1537/1498,
  46529. bottom: 66/1603
  46530. }
  46531. },
  46532. back: {
  46533. height: math.unit(5 + 4/12, "feet"),
  46534. weight: math.unit(236, "lb"),
  46535. name: "Back",
  46536. image: {
  46537. source: "./media/characters/zaina-khalil/back.svg",
  46538. extra: 1546/1494,
  46539. bottom: 89/1635
  46540. }
  46541. },
  46542. },
  46543. [
  46544. {
  46545. name: "Normal",
  46546. height: math.unit(5 + 4/12, "feet"),
  46547. default: true
  46548. },
  46549. ]
  46550. ))
  46551. characterMakers.push(() => makeCharacter(
  46552. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46553. {
  46554. side: {
  46555. height: math.unit(12, "feet"),
  46556. weight: math.unit(4000, "lb"),
  46557. name: "Side",
  46558. image: {
  46559. source: "./media/characters/terry/side.svg",
  46560. extra: 1518/1439,
  46561. bottom: 149/1667
  46562. }
  46563. },
  46564. },
  46565. [
  46566. {
  46567. name: "Normal",
  46568. height: math.unit(12, "feet"),
  46569. default: true
  46570. },
  46571. ]
  46572. ))
  46573. characterMakers.push(() => makeCharacter(
  46574. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46575. {
  46576. front: {
  46577. height: math.unit(12, "feet"),
  46578. weight: math.unit(1500, "lb"),
  46579. name: "Front",
  46580. image: {
  46581. source: "./media/characters/kahea/front.svg",
  46582. extra: 1722/1617,
  46583. bottom: 179/1901
  46584. }
  46585. },
  46586. },
  46587. [
  46588. {
  46589. name: "Normal",
  46590. height: math.unit(12, "feet"),
  46591. default: true
  46592. },
  46593. ]
  46594. ))
  46595. characterMakers.push(() => makeCharacter(
  46596. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46597. {
  46598. demonFront: {
  46599. height: math.unit(36, "feet"),
  46600. name: "Front",
  46601. image: {
  46602. source: "./media/characters/alex-xuria/demon-front.svg",
  46603. extra: 1705/1673,
  46604. bottom: 198/1903
  46605. },
  46606. form: "demon",
  46607. default: true
  46608. },
  46609. demonBack: {
  46610. height: math.unit(36, "feet"),
  46611. name: "Back",
  46612. image: {
  46613. source: "./media/characters/alex-xuria/demon-back.svg",
  46614. extra: 1725/1693,
  46615. bottom: 70/1795
  46616. },
  46617. form: "demon"
  46618. },
  46619. demonHead: {
  46620. height: math.unit(2.14, "meters"),
  46621. name: "Head",
  46622. image: {
  46623. source: "./media/characters/alex-xuria/demon-head.svg"
  46624. },
  46625. form: "demon"
  46626. },
  46627. demonHand: {
  46628. height: math.unit(1.61, "meters"),
  46629. name: "Hand",
  46630. image: {
  46631. source: "./media/characters/alex-xuria/demon-hand.svg"
  46632. },
  46633. form: "demon"
  46634. },
  46635. demonPaw: {
  46636. height: math.unit(1.35, "meters"),
  46637. name: "Paw",
  46638. image: {
  46639. source: "./media/characters/alex-xuria/demon-paw.svg"
  46640. },
  46641. form: "demon"
  46642. },
  46643. demonFoot: {
  46644. height: math.unit(2.2, "meters"),
  46645. name: "Foot",
  46646. image: {
  46647. source: "./media/characters/alex-xuria/demon-foot.svg"
  46648. },
  46649. form: "demon"
  46650. },
  46651. demonCock: {
  46652. height: math.unit(1.74, "meters"),
  46653. name: "Cock",
  46654. image: {
  46655. source: "./media/characters/alex-xuria/demon-cock.svg"
  46656. },
  46657. form: "demon"
  46658. },
  46659. demonTailClosed: {
  46660. height: math.unit(1.47, "meters"),
  46661. name: "Tail (Closed)",
  46662. image: {
  46663. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46664. },
  46665. form: "demon"
  46666. },
  46667. demonTailOpen: {
  46668. height: math.unit(2.85, "meters"),
  46669. name: "Tail (Open)",
  46670. image: {
  46671. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46672. },
  46673. form: "demon"
  46674. },
  46675. incubusFront: {
  46676. height: math.unit(12, "feet"),
  46677. name: "Front",
  46678. image: {
  46679. source: "./media/characters/alex-xuria/incubus-front.svg",
  46680. extra: 1754/1677,
  46681. bottom: 125/1879
  46682. },
  46683. form: "incubus",
  46684. default: true
  46685. },
  46686. incubusBack: {
  46687. height: math.unit(12, "feet"),
  46688. name: "Back",
  46689. image: {
  46690. source: "./media/characters/alex-xuria/incubus-back.svg",
  46691. extra: 1702/1647,
  46692. bottom: 30/1732
  46693. },
  46694. form: "incubus"
  46695. },
  46696. incubusHead: {
  46697. height: math.unit(3.45, "feet"),
  46698. name: "Head",
  46699. image: {
  46700. source: "./media/characters/alex-xuria/incubus-head.svg"
  46701. },
  46702. form: "incubus"
  46703. },
  46704. rabbitFront: {
  46705. height: math.unit(6, "feet"),
  46706. name: "Front",
  46707. image: {
  46708. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46709. extra: 1369/1349,
  46710. bottom: 45/1414
  46711. },
  46712. form: "rabbit",
  46713. default: true
  46714. },
  46715. rabbitSide: {
  46716. height: math.unit(6, "feet"),
  46717. name: "Side",
  46718. image: {
  46719. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46720. extra: 1370/1356,
  46721. bottom: 37/1407
  46722. },
  46723. form: "rabbit"
  46724. },
  46725. rabbitBack: {
  46726. height: math.unit(6, "feet"),
  46727. name: "Back",
  46728. image: {
  46729. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46730. extra: 1375/1358,
  46731. bottom: 43/1418
  46732. },
  46733. form: "rabbit"
  46734. },
  46735. },
  46736. [
  46737. {
  46738. name: "Normal",
  46739. height: math.unit(6, "feet"),
  46740. default: true,
  46741. form: "rabbit"
  46742. },
  46743. {
  46744. name: "Incubus",
  46745. height: math.unit(12, "feet"),
  46746. default: true,
  46747. form: "incubus"
  46748. },
  46749. {
  46750. name: "Demon",
  46751. height: math.unit(36, "feet"),
  46752. default: true,
  46753. form: "demon"
  46754. }
  46755. ],
  46756. {
  46757. "demon": {
  46758. name: "Demon",
  46759. default: true
  46760. },
  46761. "incubus": {
  46762. name: "Incubus",
  46763. },
  46764. "rabbit": {
  46765. name: "Rabbit"
  46766. }
  46767. }
  46768. ))
  46769. characterMakers.push(() => makeCharacter(
  46770. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46771. {
  46772. front: {
  46773. height: math.unit(7 + 5/12, "feet"),
  46774. weight: math.unit(510, "lb"),
  46775. name: "Front",
  46776. image: {
  46777. source: "./media/characters/syrup/front.svg",
  46778. extra: 932/916,
  46779. bottom: 26/958
  46780. }
  46781. },
  46782. },
  46783. [
  46784. {
  46785. name: "Normal",
  46786. height: math.unit(7 + 5/12, "feet"),
  46787. default: true
  46788. },
  46789. {
  46790. name: "Big",
  46791. height: math.unit(50, "feet")
  46792. },
  46793. {
  46794. name: "Macro",
  46795. height: math.unit(300, "feet")
  46796. },
  46797. {
  46798. name: "Megamacro",
  46799. height: math.unit(1, "mile")
  46800. },
  46801. ]
  46802. ))
  46803. characterMakers.push(() => makeCharacter(
  46804. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46805. {
  46806. front: {
  46807. height: math.unit(6 + 9/12, "feet"),
  46808. name: "Front",
  46809. image: {
  46810. source: "./media/characters/zeimne/front.svg",
  46811. extra: 1969/1806,
  46812. bottom: 53/2022
  46813. }
  46814. },
  46815. },
  46816. [
  46817. {
  46818. name: "Normal",
  46819. height: math.unit(6 + 9/12, "feet"),
  46820. default: true
  46821. },
  46822. {
  46823. name: "Giant",
  46824. height: math.unit(550, "feet")
  46825. },
  46826. {
  46827. name: "Mega",
  46828. height: math.unit(3, "miles")
  46829. },
  46830. {
  46831. name: "Giga",
  46832. height: math.unit(250, "miles")
  46833. },
  46834. {
  46835. name: "Tera",
  46836. height: math.unit(1, "AU")
  46837. },
  46838. ]
  46839. ))
  46840. characterMakers.push(() => makeCharacter(
  46841. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46842. {
  46843. front: {
  46844. height: math.unit(5 + 2/12, "feet"),
  46845. name: "Front",
  46846. image: {
  46847. source: "./media/characters/grar/front.svg",
  46848. extra: 1331/1119,
  46849. bottom: 60/1391
  46850. }
  46851. },
  46852. back: {
  46853. height: math.unit(5 + 2/12, "feet"),
  46854. name: "Back",
  46855. image: {
  46856. source: "./media/characters/grar/back.svg",
  46857. extra: 1385/1169,
  46858. bottom: 23/1408
  46859. }
  46860. },
  46861. },
  46862. [
  46863. {
  46864. name: "Normal",
  46865. height: math.unit(5 + 2/12, "feet"),
  46866. default: true
  46867. },
  46868. ]
  46869. ))
  46870. characterMakers.push(() => makeCharacter(
  46871. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46872. {
  46873. front: {
  46874. height: math.unit(13 + 7/12, "feet"),
  46875. weight: math.unit(2200, "lb"),
  46876. name: "Front",
  46877. image: {
  46878. source: "./media/characters/endraya/front.svg",
  46879. extra: 1289/1215,
  46880. bottom: 50/1339
  46881. }
  46882. },
  46883. nude: {
  46884. height: math.unit(13 + 7/12, "feet"),
  46885. weight: math.unit(2200, "lb"),
  46886. name: "Nude",
  46887. image: {
  46888. source: "./media/characters/endraya/nude.svg",
  46889. extra: 1247/1171,
  46890. bottom: 40/1287
  46891. }
  46892. },
  46893. head: {
  46894. height: math.unit(2.6, "feet"),
  46895. name: "Head",
  46896. image: {
  46897. source: "./media/characters/endraya/head.svg"
  46898. }
  46899. },
  46900. slit: {
  46901. height: math.unit(3.4, "feet"),
  46902. name: "Slit",
  46903. image: {
  46904. source: "./media/characters/endraya/slit.svg"
  46905. }
  46906. },
  46907. },
  46908. [
  46909. {
  46910. name: "Normal",
  46911. height: math.unit(13 + 7/12, "feet"),
  46912. default: true
  46913. },
  46914. {
  46915. name: "Macro",
  46916. height: math.unit(200, "feet")
  46917. },
  46918. ]
  46919. ))
  46920. characterMakers.push(() => makeCharacter(
  46921. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46922. {
  46923. front: {
  46924. height: math.unit(1.81, "meters"),
  46925. weight: math.unit(69, "kg"),
  46926. name: "Front",
  46927. image: {
  46928. source: "./media/characters/rodryana/front.svg",
  46929. extra: 2002/1921,
  46930. bottom: 53/2055
  46931. }
  46932. },
  46933. back: {
  46934. height: math.unit(1.81, "meters"),
  46935. weight: math.unit(69, "kg"),
  46936. name: "Back",
  46937. image: {
  46938. source: "./media/characters/rodryana/back.svg",
  46939. extra: 1993/1926,
  46940. bottom: 48/2041
  46941. }
  46942. },
  46943. maw: {
  46944. height: math.unit(0.19769417475, "meters"),
  46945. name: "Maw",
  46946. image: {
  46947. source: "./media/characters/rodryana/maw.svg"
  46948. }
  46949. },
  46950. slit: {
  46951. height: math.unit(0.31631067961, "meters"),
  46952. name: "Slit",
  46953. image: {
  46954. source: "./media/characters/rodryana/slit.svg"
  46955. }
  46956. },
  46957. },
  46958. [
  46959. {
  46960. name: "Normal",
  46961. height: math.unit(1.81, "meters")
  46962. },
  46963. {
  46964. name: "Mini Macro",
  46965. height: math.unit(181, "meters")
  46966. },
  46967. {
  46968. name: "Macro",
  46969. height: math.unit(452, "meters"),
  46970. default: true
  46971. },
  46972. {
  46973. name: "Mega Macro",
  46974. height: math.unit(1.375, "km")
  46975. },
  46976. {
  46977. name: "Giga Macro",
  46978. height: math.unit(13.575, "km")
  46979. },
  46980. ]
  46981. ))
  46982. characterMakers.push(() => makeCharacter(
  46983. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46984. {
  46985. front: {
  46986. height: math.unit(6, "feet"),
  46987. weight: math.unit(1000, "lb"),
  46988. name: "Front",
  46989. image: {
  46990. source: "./media/characters/asaya/front.svg",
  46991. extra: 1460/1200,
  46992. bottom: 71/1531
  46993. }
  46994. },
  46995. },
  46996. [
  46997. {
  46998. name: "Normal",
  46999. height: math.unit(8, "km"),
  47000. default: true
  47001. },
  47002. ]
  47003. ))
  47004. characterMakers.push(() => makeCharacter(
  47005. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47006. {
  47007. front: {
  47008. height: math.unit(3.5, "meters"),
  47009. name: "Front",
  47010. image: {
  47011. source: "./media/characters/sarzu-and-israz/front.svg",
  47012. extra: 1570/1558,
  47013. bottom: 150/1720
  47014. },
  47015. },
  47016. back: {
  47017. height: math.unit(3.5, "meters"),
  47018. name: "Back",
  47019. image: {
  47020. source: "./media/characters/sarzu-and-israz/back.svg",
  47021. extra: 1523/1509,
  47022. bottom: 132/1655
  47023. },
  47024. },
  47025. frontFemale: {
  47026. height: math.unit(3.5, "meters"),
  47027. name: "Front (Female)",
  47028. image: {
  47029. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47030. extra: 1570/1558,
  47031. bottom: 150/1720
  47032. },
  47033. },
  47034. frontHerm: {
  47035. height: math.unit(3.5, "meters"),
  47036. name: "Front (Herm)",
  47037. image: {
  47038. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47039. extra: 1570/1558,
  47040. bottom: 150/1720
  47041. },
  47042. },
  47043. },
  47044. [
  47045. {
  47046. name: "Normal",
  47047. height: math.unit(3.5, "meters"),
  47048. default: true,
  47049. },
  47050. {
  47051. name: "Macro",
  47052. height: math.unit(65.5, "meters"),
  47053. },
  47054. ],
  47055. ))
  47056. characterMakers.push(() => makeCharacter(
  47057. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47058. {
  47059. front: {
  47060. height: math.unit(6, "feet"),
  47061. weight: math.unit(250, "lb"),
  47062. name: "Front",
  47063. image: {
  47064. source: "./media/characters/zenimma/front.svg",
  47065. extra: 1346/1320,
  47066. bottom: 58/1404
  47067. }
  47068. },
  47069. back: {
  47070. height: math.unit(6, "feet"),
  47071. weight: math.unit(250, "lb"),
  47072. name: "Back",
  47073. image: {
  47074. source: "./media/characters/zenimma/back.svg",
  47075. extra: 1324/1308,
  47076. bottom: 44/1368
  47077. }
  47078. },
  47079. dick: {
  47080. height: math.unit(1.44, "feet"),
  47081. name: "Dick",
  47082. image: {
  47083. source: "./media/characters/zenimma/dick.svg"
  47084. }
  47085. },
  47086. },
  47087. [
  47088. {
  47089. name: "Canon Height",
  47090. height: math.unit(66, "miles"),
  47091. default: true
  47092. },
  47093. ]
  47094. ))
  47095. characterMakers.push(() => makeCharacter(
  47096. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47097. {
  47098. nude: {
  47099. height: math.unit(6, "feet"),
  47100. weight: math.unit(150, "lb"),
  47101. name: "Nude",
  47102. image: {
  47103. source: "./media/characters/shavon/nude.svg",
  47104. extra: 1242/1096,
  47105. bottom: 98/1340
  47106. }
  47107. },
  47108. dressed: {
  47109. height: math.unit(6, "feet"),
  47110. weight: math.unit(150, "lb"),
  47111. name: "Dressed",
  47112. image: {
  47113. source: "./media/characters/shavon/dressed.svg",
  47114. extra: 1242/1096,
  47115. bottom: 98/1340
  47116. }
  47117. },
  47118. },
  47119. [
  47120. {
  47121. name: "Macro",
  47122. height: math.unit(255, "feet"),
  47123. default: true
  47124. },
  47125. ]
  47126. ))
  47127. characterMakers.push(() => makeCharacter(
  47128. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47129. {
  47130. front: {
  47131. height: math.unit(6, "feet"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/steph/front.svg",
  47135. extra: 1430/1330,
  47136. bottom: 54/1484
  47137. }
  47138. },
  47139. },
  47140. [
  47141. {
  47142. name: "Normal",
  47143. height: math.unit(6, "feet"),
  47144. default: true
  47145. },
  47146. ]
  47147. ))
  47148. characterMakers.push(() => makeCharacter(
  47149. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47150. {
  47151. front: {
  47152. height: math.unit(9, "feet"),
  47153. weight: math.unit(400, "lb"),
  47154. name: "Front",
  47155. image: {
  47156. source: "./media/characters/kil'aman/front.svg",
  47157. extra: 1210/1159,
  47158. bottom: 109/1319
  47159. }
  47160. },
  47161. head: {
  47162. height: math.unit(2.14, "feet"),
  47163. name: "Head",
  47164. image: {
  47165. source: "./media/characters/kil'aman/head.svg"
  47166. }
  47167. },
  47168. maw: {
  47169. height: math.unit(1.21, "feet"),
  47170. name: "Maw",
  47171. image: {
  47172. source: "./media/characters/kil'aman/maw.svg"
  47173. }
  47174. },
  47175. foot: {
  47176. height: math.unit(1.7, "feet"),
  47177. name: "Foot",
  47178. image: {
  47179. source: "./media/characters/kil'aman/foot.svg"
  47180. }
  47181. },
  47182. dick: {
  47183. height: math.unit(2.1, "feet"),
  47184. name: "Dick",
  47185. image: {
  47186. source: "./media/characters/kil'aman/dick.svg"
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(9, "feet")
  47194. },
  47195. {
  47196. name: "Canon Height",
  47197. height: math.unit(10, "miles"),
  47198. default: true
  47199. },
  47200. {
  47201. name: "Maximum",
  47202. height: math.unit(6e9, "miles")
  47203. },
  47204. ]
  47205. ))
  47206. characterMakers.push(() => makeCharacter(
  47207. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47208. {
  47209. front: {
  47210. height: math.unit(90, "feet"),
  47211. weight: math.unit(675000, "lb"),
  47212. name: "Front",
  47213. image: {
  47214. source: "./media/characters/qadan/front.svg",
  47215. extra: 1012/1004,
  47216. bottom: 78/1090
  47217. }
  47218. },
  47219. back: {
  47220. height: math.unit(90, "feet"),
  47221. weight: math.unit(675000, "lb"),
  47222. name: "Back",
  47223. image: {
  47224. source: "./media/characters/qadan/back.svg",
  47225. extra: 1042/1031,
  47226. bottom: 55/1097
  47227. }
  47228. },
  47229. armored: {
  47230. height: math.unit(90, "feet"),
  47231. weight: math.unit(675000, "lb"),
  47232. name: "Armored",
  47233. image: {
  47234. source: "./media/characters/qadan/armored.svg",
  47235. extra: 1047/1037,
  47236. bottom: 48/1095
  47237. }
  47238. },
  47239. },
  47240. [
  47241. {
  47242. name: "Normal",
  47243. height: math.unit(90, "feet"),
  47244. default: true
  47245. },
  47246. ]
  47247. ))
  47248. characterMakers.push(() => makeCharacter(
  47249. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47250. {
  47251. front: {
  47252. height: math.unit(6, "feet"),
  47253. weight: math.unit(225, "lb"),
  47254. name: "Front",
  47255. image: {
  47256. source: "./media/characters/brooke/front.svg",
  47257. extra: 1050/1010,
  47258. bottom: 66/1116
  47259. }
  47260. },
  47261. back: {
  47262. height: math.unit(6, "feet"),
  47263. weight: math.unit(225, "lb"),
  47264. name: "Back",
  47265. image: {
  47266. source: "./media/characters/brooke/back.svg",
  47267. extra: 1053/1013,
  47268. bottom: 41/1094
  47269. }
  47270. },
  47271. dressed: {
  47272. height: math.unit(6, "feet"),
  47273. weight: math.unit(225, "lb"),
  47274. name: "Dressed",
  47275. image: {
  47276. source: "./media/characters/brooke/dressed.svg",
  47277. extra: 1050/1010,
  47278. bottom: 66/1116
  47279. }
  47280. },
  47281. },
  47282. [
  47283. {
  47284. name: "Canon Height",
  47285. height: math.unit(500, "miles"),
  47286. default: true
  47287. },
  47288. ]
  47289. ))
  47290. characterMakers.push(() => makeCharacter(
  47291. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47292. {
  47293. front: {
  47294. height: math.unit(6 + 2/12, "feet"),
  47295. weight: math.unit(210, "lb"),
  47296. name: "Front",
  47297. image: {
  47298. source: "./media/characters/wubs/front.svg",
  47299. extra: 1345/1325,
  47300. bottom: 70/1415
  47301. }
  47302. },
  47303. back: {
  47304. height: math.unit(6 + 2/12, "feet"),
  47305. weight: math.unit(210, "lb"),
  47306. name: "Back",
  47307. image: {
  47308. source: "./media/characters/wubs/back.svg",
  47309. extra: 1296/1275,
  47310. bottom: 58/1354
  47311. }
  47312. },
  47313. },
  47314. [
  47315. {
  47316. name: "Normal",
  47317. height: math.unit(6 + 2/12, "feet"),
  47318. default: true
  47319. },
  47320. {
  47321. name: "Macro",
  47322. height: math.unit(1000, "feet")
  47323. },
  47324. {
  47325. name: "Megamacro",
  47326. height: math.unit(1, "mile")
  47327. },
  47328. ]
  47329. ))
  47330. characterMakers.push(() => makeCharacter(
  47331. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47332. {
  47333. front: {
  47334. height: math.unit(4, "feet"),
  47335. weight: math.unit(120, "lb"),
  47336. name: "Front",
  47337. image: {
  47338. source: "./media/characters/blue/front.svg",
  47339. extra: 1636/1525,
  47340. bottom: 43/1679
  47341. }
  47342. },
  47343. back: {
  47344. height: math.unit(4, "feet"),
  47345. weight: math.unit(120, "lb"),
  47346. name: "Back",
  47347. image: {
  47348. source: "./media/characters/blue/back.svg",
  47349. extra: 1660/1560,
  47350. bottom: 57/1717
  47351. }
  47352. },
  47353. paws: {
  47354. height: math.unit(0.826, "feet"),
  47355. name: "Paws",
  47356. image: {
  47357. source: "./media/characters/blue/paws.svg"
  47358. }
  47359. },
  47360. },
  47361. [
  47362. {
  47363. name: "Micro",
  47364. height: math.unit(3, "inches")
  47365. },
  47366. {
  47367. name: "Normal",
  47368. height: math.unit(4, "feet"),
  47369. default: true
  47370. },
  47371. {
  47372. name: "Femenine Form",
  47373. height: math.unit(14, "feet")
  47374. },
  47375. {
  47376. name: "Werebat Form",
  47377. height: math.unit(18, "feet")
  47378. },
  47379. ]
  47380. ))
  47381. characterMakers.push(() => makeCharacter(
  47382. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47383. {
  47384. female: {
  47385. height: math.unit(7 + 4/12, "feet"),
  47386. weight: math.unit(243, "lb"),
  47387. name: "Female",
  47388. image: {
  47389. source: "./media/characters/kaya/female.svg",
  47390. extra: 975/898,
  47391. bottom: 34/1009
  47392. }
  47393. },
  47394. herm: {
  47395. height: math.unit(7 + 4/12, "feet"),
  47396. weight: math.unit(243, "lb"),
  47397. name: "Herm",
  47398. image: {
  47399. source: "./media/characters/kaya/herm.svg",
  47400. extra: 975/898,
  47401. bottom: 34/1009
  47402. }
  47403. },
  47404. },
  47405. [
  47406. {
  47407. name: "Normal",
  47408. height: math.unit(7 + 4/12, "feet"),
  47409. default: true
  47410. },
  47411. ]
  47412. ))
  47413. characterMakers.push(() => makeCharacter(
  47414. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47415. {
  47416. female: {
  47417. height: math.unit(9 + 4/12, "feet"),
  47418. weight: math.unit(398, "lb"),
  47419. name: "Female",
  47420. image: {
  47421. source: "./media/characters/kassandra/female.svg",
  47422. extra: 908/839,
  47423. bottom: 61/969
  47424. }
  47425. },
  47426. intersex: {
  47427. height: math.unit(9 + 4/12, "feet"),
  47428. weight: math.unit(398, "lb"),
  47429. name: "Intersex",
  47430. image: {
  47431. source: "./media/characters/kassandra/intersex.svg",
  47432. extra: 908/839,
  47433. bottom: 61/969
  47434. }
  47435. },
  47436. },
  47437. [
  47438. {
  47439. name: "Normal",
  47440. height: math.unit(9 + 4/12, "feet"),
  47441. default: true
  47442. },
  47443. ]
  47444. ))
  47445. characterMakers.push(() => makeCharacter(
  47446. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47447. {
  47448. front: {
  47449. height: math.unit(3, "meters"),
  47450. name: "Front",
  47451. image: {
  47452. source: "./media/characters/amy/front.svg",
  47453. extra: 1380/1343,
  47454. bottom: 70/1450
  47455. }
  47456. },
  47457. back: {
  47458. height: math.unit(3, "meters"),
  47459. name: "Back",
  47460. image: {
  47461. source: "./media/characters/amy/back.svg",
  47462. extra: 1380/1347,
  47463. bottom: 66/1446
  47464. }
  47465. },
  47466. },
  47467. [
  47468. {
  47469. name: "Normal",
  47470. height: math.unit(3, "meters"),
  47471. default: true
  47472. },
  47473. ]
  47474. ))
  47475. characterMakers.push(() => makeCharacter(
  47476. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47477. {
  47478. side: {
  47479. height: math.unit(47, "cm"),
  47480. weight: math.unit(10.8, "kg"),
  47481. name: "Side",
  47482. image: {
  47483. source: "./media/characters/alphaschakal/side.svg",
  47484. extra: 1058/568,
  47485. bottom: 62/1120
  47486. }
  47487. },
  47488. back: {
  47489. height: math.unit(78, "cm"),
  47490. weight: math.unit(10.8, "kg"),
  47491. name: "Back",
  47492. image: {
  47493. source: "./media/characters/alphaschakal/back.svg",
  47494. extra: 1102/942,
  47495. bottom: 185/1287
  47496. }
  47497. },
  47498. head: {
  47499. height: math.unit(28, "cm"),
  47500. name: "Head",
  47501. image: {
  47502. source: "./media/characters/alphaschakal/head.svg",
  47503. extra: 696/508,
  47504. bottom: 0/696
  47505. }
  47506. },
  47507. paw: {
  47508. height: math.unit(16, "cm"),
  47509. name: "Paw",
  47510. image: {
  47511. source: "./media/characters/alphaschakal/paw.svg"
  47512. }
  47513. },
  47514. },
  47515. [
  47516. {
  47517. name: "Normal",
  47518. height: math.unit(47, "cm"),
  47519. default: true
  47520. },
  47521. {
  47522. name: "Macro",
  47523. height: math.unit(340, "cm")
  47524. },
  47525. ]
  47526. ))
  47527. characterMakers.push(() => makeCharacter(
  47528. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47529. {
  47530. front: {
  47531. height: math.unit(36, "earths"),
  47532. name: "Front",
  47533. image: {
  47534. source: "./media/characters/ecobyss/front.svg",
  47535. extra: 1282/1215,
  47536. bottom: 11/1293
  47537. }
  47538. },
  47539. back: {
  47540. height: math.unit(36, "earths"),
  47541. name: "Back",
  47542. image: {
  47543. source: "./media/characters/ecobyss/back.svg",
  47544. extra: 1291/1222,
  47545. bottom: 8/1299
  47546. }
  47547. },
  47548. },
  47549. [
  47550. {
  47551. name: "Normal",
  47552. height: math.unit(36, "earths"),
  47553. default: true
  47554. },
  47555. ]
  47556. ))
  47557. characterMakers.push(() => makeCharacter(
  47558. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47559. {
  47560. front: {
  47561. height: math.unit(12, "feet"),
  47562. name: "Front",
  47563. image: {
  47564. source: "./media/characters/vasuk/front.svg",
  47565. extra: 1326/1207,
  47566. bottom: 64/1390
  47567. }
  47568. },
  47569. },
  47570. [
  47571. {
  47572. name: "Normal",
  47573. height: math.unit(12, "feet"),
  47574. default: true
  47575. },
  47576. ]
  47577. ))
  47578. characterMakers.push(() => makeCharacter(
  47579. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47580. {
  47581. side: {
  47582. height: math.unit(100, "feet"),
  47583. name: "Side",
  47584. image: {
  47585. source: "./media/characters/linneaus/side.svg",
  47586. extra: 987/807,
  47587. bottom: 47/1034
  47588. }
  47589. },
  47590. },
  47591. [
  47592. {
  47593. name: "Macro",
  47594. height: math.unit(100, "feet"),
  47595. default: true
  47596. },
  47597. ]
  47598. ))
  47599. characterMakers.push(() => makeCharacter(
  47600. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47601. {
  47602. front: {
  47603. height: math.unit(8, "feet"),
  47604. weight: math.unit(1200, "lb"),
  47605. name: "Front",
  47606. image: {
  47607. source: "./media/characters/nyterious-daligdig/front.svg",
  47608. extra: 1284/1094,
  47609. bottom: 84/1368
  47610. }
  47611. },
  47612. back: {
  47613. height: math.unit(8, "feet"),
  47614. weight: math.unit(1200, "lb"),
  47615. name: "Back",
  47616. image: {
  47617. source: "./media/characters/nyterious-daligdig/back.svg",
  47618. extra: 1301/1121,
  47619. bottom: 129/1430
  47620. }
  47621. },
  47622. mouth: {
  47623. height: math.unit(1.464, "feet"),
  47624. name: "Mouth",
  47625. image: {
  47626. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47627. }
  47628. },
  47629. },
  47630. [
  47631. {
  47632. name: "Small",
  47633. height: math.unit(8, "feet"),
  47634. default: true
  47635. },
  47636. {
  47637. name: "Normal",
  47638. height: math.unit(15, "feet")
  47639. },
  47640. {
  47641. name: "Macro",
  47642. height: math.unit(90, "feet")
  47643. },
  47644. ]
  47645. ))
  47646. characterMakers.push(() => makeCharacter(
  47647. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47648. {
  47649. front: {
  47650. height: math.unit(7 + 4/12, "feet"),
  47651. weight: math.unit(252, "lb"),
  47652. name: "Front",
  47653. image: {
  47654. source: "./media/characters/bandel/front.svg",
  47655. extra: 1946/1775,
  47656. bottom: 26/1972
  47657. }
  47658. },
  47659. back: {
  47660. height: math.unit(7 + 4/12, "feet"),
  47661. weight: math.unit(252, "lb"),
  47662. name: "Back",
  47663. image: {
  47664. source: "./media/characters/bandel/back.svg",
  47665. extra: 1940/1770,
  47666. bottom: 25/1965
  47667. }
  47668. },
  47669. maw: {
  47670. height: math.unit(2.15, "feet"),
  47671. name: "Maw",
  47672. image: {
  47673. source: "./media/characters/bandel/maw.svg"
  47674. }
  47675. },
  47676. stomach: {
  47677. height: math.unit(1.95, "feet"),
  47678. name: "Stomach",
  47679. image: {
  47680. source: "./media/characters/bandel/stomach.svg"
  47681. }
  47682. },
  47683. },
  47684. [
  47685. {
  47686. name: "Normal",
  47687. height: math.unit(7 + 4/12, "feet"),
  47688. default: true
  47689. },
  47690. ]
  47691. ))
  47692. characterMakers.push(() => makeCharacter(
  47693. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47694. {
  47695. front: {
  47696. height: math.unit(10 + 5/12, "feet"),
  47697. weight: math.unit(773.5, "kg"),
  47698. name: "Front",
  47699. image: {
  47700. source: "./media/characters/zed/front.svg",
  47701. extra: 987/941,
  47702. bottom: 52/1039
  47703. }
  47704. },
  47705. },
  47706. [
  47707. {
  47708. name: "Short",
  47709. height: math.unit(5 + 4/12, "feet")
  47710. },
  47711. {
  47712. name: "Average",
  47713. height: math.unit(10 + 5/12, "feet"),
  47714. default: true
  47715. },
  47716. {
  47717. name: "Mini-Macro",
  47718. height: math.unit(24 + 9/12, "feet")
  47719. },
  47720. {
  47721. name: "Macro",
  47722. height: math.unit(249, "feet")
  47723. },
  47724. {
  47725. name: "Mega-Macro",
  47726. height: math.unit(12490, "feet")
  47727. },
  47728. {
  47729. name: "Giga-Macro",
  47730. height: math.unit(24.9, "miles")
  47731. },
  47732. {
  47733. name: "Tera-Macro",
  47734. height: math.unit(24900, "miles")
  47735. },
  47736. {
  47737. name: "Cosmic Scale",
  47738. height: math.unit(38.9, "lightyears")
  47739. },
  47740. {
  47741. name: "Universal Scale",
  47742. height: math.unit(138e12, "lightyears")
  47743. },
  47744. ]
  47745. ))
  47746. characterMakers.push(() => makeCharacter(
  47747. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47748. {
  47749. front: {
  47750. height: math.unit(1561, "inches"),
  47751. name: "Front",
  47752. image: {
  47753. source: "./media/characters/ivan/front.svg",
  47754. extra: 1126/1071,
  47755. bottom: 26/1152
  47756. }
  47757. },
  47758. back: {
  47759. height: math.unit(1561, "inches"),
  47760. name: "Back",
  47761. image: {
  47762. source: "./media/characters/ivan/back.svg",
  47763. extra: 1134/1079,
  47764. bottom: 30/1164
  47765. }
  47766. },
  47767. },
  47768. [
  47769. {
  47770. name: "Normal",
  47771. height: math.unit(1561, "inches"),
  47772. default: true
  47773. },
  47774. ]
  47775. ))
  47776. characterMakers.push(() => makeCharacter(
  47777. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47778. {
  47779. front: {
  47780. height: math.unit(5 + 7/12, "feet"),
  47781. weight: math.unit(150, "lb"),
  47782. name: "Front",
  47783. image: {
  47784. source: "./media/characters/robin-arctic-hare/front.svg",
  47785. extra: 1148/974,
  47786. bottom: 20/1168
  47787. }
  47788. },
  47789. },
  47790. [
  47791. {
  47792. name: "Normal",
  47793. height: math.unit(5 + 7/12, "feet"),
  47794. default: true
  47795. },
  47796. ]
  47797. ))
  47798. characterMakers.push(() => makeCharacter(
  47799. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47800. {
  47801. side: {
  47802. height: math.unit(5, "feet"),
  47803. name: "Side",
  47804. image: {
  47805. source: "./media/characters/birch/side.svg",
  47806. extra: 985/796,
  47807. bottom: 111/1096
  47808. }
  47809. },
  47810. },
  47811. [
  47812. {
  47813. name: "Normal",
  47814. height: math.unit(5, "feet"),
  47815. default: true
  47816. },
  47817. ]
  47818. ))
  47819. characterMakers.push(() => makeCharacter(
  47820. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47821. {
  47822. front: {
  47823. height: math.unit(4, "feet"),
  47824. name: "Front",
  47825. image: {
  47826. source: "./media/characters/rasp/front.svg",
  47827. extra: 561/478,
  47828. bottom: 74/635
  47829. }
  47830. },
  47831. },
  47832. [
  47833. {
  47834. name: "Normal",
  47835. height: math.unit(4, "feet"),
  47836. default: true
  47837. },
  47838. ]
  47839. ))
  47840. characterMakers.push(() => makeCharacter(
  47841. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47842. {
  47843. front: {
  47844. height: math.unit(4 + 6/12, "feet"),
  47845. name: "Front",
  47846. image: {
  47847. source: "./media/characters/agatha/front.svg",
  47848. extra: 947/933,
  47849. bottom: 42/989
  47850. }
  47851. },
  47852. back: {
  47853. height: math.unit(4 + 6/12, "feet"),
  47854. name: "Back",
  47855. image: {
  47856. source: "./media/characters/agatha/back.svg",
  47857. extra: 935/922,
  47858. bottom: 48/983
  47859. }
  47860. },
  47861. },
  47862. [
  47863. {
  47864. name: "Normal",
  47865. height: math.unit(4 + 6 /12, "feet"),
  47866. default: true
  47867. },
  47868. {
  47869. name: "Max Size",
  47870. height: math.unit(500, "feet")
  47871. },
  47872. ]
  47873. ))
  47874. characterMakers.push(() => makeCharacter(
  47875. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47876. {
  47877. side: {
  47878. height: math.unit(30, "feet"),
  47879. name: "Side",
  47880. image: {
  47881. source: "./media/characters/roggy/side.svg",
  47882. extra: 909/643,
  47883. bottom: 63/972
  47884. }
  47885. },
  47886. lounging: {
  47887. height: math.unit(20, "feet"),
  47888. name: "Lounging",
  47889. image: {
  47890. source: "./media/characters/roggy/lounging.svg",
  47891. extra: 643/479,
  47892. bottom: 145/788
  47893. }
  47894. },
  47895. handpaw: {
  47896. height: math.unit(13.1, "feet"),
  47897. name: "Handpaw",
  47898. image: {
  47899. source: "./media/characters/roggy/handpaw.svg"
  47900. }
  47901. },
  47902. footpaw: {
  47903. height: math.unit(15.8, "feet"),
  47904. name: "Footpaw",
  47905. image: {
  47906. source: "./media/characters/roggy/footpaw.svg"
  47907. }
  47908. },
  47909. },
  47910. [
  47911. {
  47912. name: "Menacing",
  47913. height: math.unit(30, "feet"),
  47914. default: true
  47915. },
  47916. ]
  47917. ))
  47918. characterMakers.push(() => makeCharacter(
  47919. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47920. {
  47921. front: {
  47922. height: math.unit(5 + 7/12, "feet"),
  47923. weight: math.unit(135, "lb"),
  47924. name: "Front",
  47925. image: {
  47926. source: "./media/characters/naomi/front.svg",
  47927. extra: 1209/1154,
  47928. bottom: 129/1338
  47929. }
  47930. },
  47931. back: {
  47932. height: math.unit(5 + 7/12, "feet"),
  47933. weight: math.unit(135, "lb"),
  47934. name: "Back",
  47935. image: {
  47936. source: "./media/characters/naomi/back.svg",
  47937. extra: 1252/1190,
  47938. bottom: 23/1275
  47939. }
  47940. },
  47941. },
  47942. [
  47943. {
  47944. name: "Normal",
  47945. height: math.unit(5 + 7 /12, "feet"),
  47946. default: true
  47947. },
  47948. ]
  47949. ))
  47950. characterMakers.push(() => makeCharacter(
  47951. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47952. {
  47953. side: {
  47954. height: math.unit(35, "meters"),
  47955. name: "Side",
  47956. image: {
  47957. source: "./media/characters/kimpi/side.svg",
  47958. extra: 419/382,
  47959. bottom: 63/482
  47960. }
  47961. },
  47962. hand: {
  47963. height: math.unit(8.96, "meters"),
  47964. name: "Hand",
  47965. image: {
  47966. source: "./media/characters/kimpi/hand.svg"
  47967. }
  47968. },
  47969. },
  47970. [
  47971. {
  47972. name: "Normal",
  47973. height: math.unit(35, "meters"),
  47974. default: true
  47975. },
  47976. ]
  47977. ))
  47978. characterMakers.push(() => makeCharacter(
  47979. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47980. {
  47981. front: {
  47982. height: math.unit(4 + 4/12, "feet"),
  47983. name: "Front",
  47984. image: {
  47985. source: "./media/characters/pepper-purrloin/front.svg",
  47986. extra: 1141/1024,
  47987. bottom: 21/1162
  47988. }
  47989. },
  47990. },
  47991. [
  47992. {
  47993. name: "Normal",
  47994. height: math.unit(4 + 4/12, "feet"),
  47995. default: true
  47996. },
  47997. ]
  47998. ))
  47999. characterMakers.push(() => makeCharacter(
  48000. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48001. {
  48002. front: {
  48003. height: math.unit(6 + 2/12, "feet"),
  48004. name: "Front",
  48005. image: {
  48006. source: "./media/characters/raphael/front.svg",
  48007. extra: 1101/962,
  48008. bottom: 59/1160
  48009. }
  48010. },
  48011. },
  48012. [
  48013. {
  48014. name: "Normal",
  48015. height: math.unit(6 + 2/12, "feet"),
  48016. default: true
  48017. },
  48018. ]
  48019. ))
  48020. characterMakers.push(() => makeCharacter(
  48021. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48022. {
  48023. front: {
  48024. height: math.unit(6, "feet"),
  48025. weight: math.unit(150, "lb"),
  48026. name: "Front",
  48027. image: {
  48028. source: "./media/characters/victor-williams/front.svg",
  48029. extra: 1894/1825,
  48030. bottom: 67/1961
  48031. }
  48032. },
  48033. },
  48034. [
  48035. {
  48036. name: "Normal",
  48037. height: math.unit(6, "feet"),
  48038. default: true
  48039. },
  48040. ]
  48041. ))
  48042. characterMakers.push(() => makeCharacter(
  48043. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48044. {
  48045. front: {
  48046. height: math.unit(5 + 8/12, "feet"),
  48047. weight: math.unit(150, "lb"),
  48048. name: "Front",
  48049. image: {
  48050. source: "./media/characters/rachel/front.svg",
  48051. extra: 1902/1787,
  48052. bottom: 46/1948
  48053. }
  48054. },
  48055. },
  48056. [
  48057. {
  48058. name: "Base Height",
  48059. height: math.unit(5 + 8/12, "feet"),
  48060. default: true
  48061. },
  48062. {
  48063. name: "Macro",
  48064. height: math.unit(200, "feet")
  48065. },
  48066. {
  48067. name: "Mega Macro",
  48068. height: math.unit(1, "mile")
  48069. },
  48070. {
  48071. name: "Giga Macro",
  48072. height: math.unit(1500, "miles")
  48073. },
  48074. {
  48075. name: "Tera Macro",
  48076. height: math.unit(8000, "miles")
  48077. },
  48078. {
  48079. name: "Tera Macro+",
  48080. height: math.unit(2e5, "miles")
  48081. },
  48082. ]
  48083. ))
  48084. characterMakers.push(() => makeCharacter(
  48085. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48086. {
  48087. front: {
  48088. height: math.unit(6.5, "feet"),
  48089. name: "Front",
  48090. image: {
  48091. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48092. extra: 860/819,
  48093. bottom: 307/1167
  48094. }
  48095. },
  48096. back: {
  48097. height: math.unit(6.5, "feet"),
  48098. name: "Back",
  48099. image: {
  48100. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48101. extra: 880/837,
  48102. bottom: 395/1275
  48103. }
  48104. },
  48105. sleeping: {
  48106. height: math.unit(2.79, "feet"),
  48107. name: "Sleeping",
  48108. image: {
  48109. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48110. extra: 465/383,
  48111. bottom: 263/728
  48112. }
  48113. },
  48114. maw: {
  48115. height: math.unit(2.52, "feet"),
  48116. name: "Maw",
  48117. image: {
  48118. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48119. }
  48120. },
  48121. },
  48122. [
  48123. {
  48124. name: "Normal",
  48125. height: math.unit(6.5, "feet"),
  48126. default: true
  48127. },
  48128. ]
  48129. ))
  48130. characterMakers.push(() => makeCharacter(
  48131. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48132. {
  48133. front: {
  48134. height: math.unit(5, "feet"),
  48135. name: "Front",
  48136. image: {
  48137. source: "./media/characters/nova-nerium/front.svg",
  48138. extra: 1548/1392,
  48139. bottom: 374/1922
  48140. }
  48141. },
  48142. back: {
  48143. height: math.unit(5, "feet"),
  48144. name: "Back",
  48145. image: {
  48146. source: "./media/characters/nova-nerium/back.svg",
  48147. extra: 1658/1468,
  48148. bottom: 257/1915
  48149. }
  48150. },
  48151. },
  48152. [
  48153. {
  48154. name: "Normal",
  48155. height: math.unit(5, "feet"),
  48156. default: true
  48157. },
  48158. ]
  48159. ))
  48160. characterMakers.push(() => makeCharacter(
  48161. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48162. {
  48163. front: {
  48164. height: math.unit(5 + 4/12, "feet"),
  48165. name: "Front",
  48166. image: {
  48167. source: "./media/characters/ashe-pyriph/front.svg",
  48168. extra: 1935/1747,
  48169. bottom: 60/1995
  48170. }
  48171. },
  48172. },
  48173. [
  48174. {
  48175. name: "Normal",
  48176. height: math.unit(5 + 4/12, "feet"),
  48177. default: true
  48178. },
  48179. ]
  48180. ))
  48181. characterMakers.push(() => makeCharacter(
  48182. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48183. {
  48184. front: {
  48185. height: math.unit(8.7, "feet"),
  48186. name: "Front",
  48187. image: {
  48188. source: "./media/characters/flicker-wisp/front.svg",
  48189. extra: 1835/1613,
  48190. bottom: 449/2284
  48191. }
  48192. },
  48193. side: {
  48194. height: math.unit(8.7, "feet"),
  48195. name: "Side",
  48196. image: {
  48197. source: "./media/characters/flicker-wisp/side.svg",
  48198. extra: 1841/1642,
  48199. bottom: 336/2177
  48200. },
  48201. default: true
  48202. },
  48203. maw: {
  48204. height: math.unit(3.35, "feet"),
  48205. name: "Maw",
  48206. image: {
  48207. source: "./media/characters/flicker-wisp/maw.svg",
  48208. extra: 2338/1506,
  48209. bottom: 0/2338
  48210. }
  48211. },
  48212. ovipositor: {
  48213. height: math.unit(4.95, "feet"),
  48214. name: "Ovipositor",
  48215. image: {
  48216. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48217. }
  48218. },
  48219. egg: {
  48220. height: math.unit(0.385, "feet"),
  48221. weight: math.unit(2, "lb"),
  48222. name: "Egg",
  48223. image: {
  48224. source: "./media/characters/flicker-wisp/egg.svg"
  48225. }
  48226. },
  48227. },
  48228. [
  48229. {
  48230. name: "Normal",
  48231. height: math.unit(8.7, "feet"),
  48232. default: true
  48233. },
  48234. ]
  48235. ))
  48236. characterMakers.push(() => makeCharacter(
  48237. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48238. {
  48239. side: {
  48240. height: math.unit(11, "feet"),
  48241. name: "Side",
  48242. image: {
  48243. source: "./media/characters/faefnul/side.svg",
  48244. extra: 1100/1007,
  48245. bottom: 0/1100
  48246. }
  48247. },
  48248. },
  48249. [
  48250. {
  48251. name: "Normal",
  48252. height: math.unit(11, "feet"),
  48253. default: true
  48254. },
  48255. ]
  48256. ))
  48257. characterMakers.push(() => makeCharacter(
  48258. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48259. {
  48260. front: {
  48261. height: math.unit(6 + 2/12, "feet"),
  48262. name: "Front",
  48263. image: {
  48264. source: "./media/characters/shady/front.svg",
  48265. extra: 502/461,
  48266. bottom: 9/511
  48267. }
  48268. },
  48269. kneeling: {
  48270. height: math.unit(4.6, "feet"),
  48271. name: "Kneeling",
  48272. image: {
  48273. source: "./media/characters/shady/kneeling.svg",
  48274. extra: 1328/1219,
  48275. bottom: 117/1445
  48276. }
  48277. },
  48278. maw: {
  48279. height: math.unit(2, "feet"),
  48280. name: "Maw",
  48281. image: {
  48282. source: "./media/characters/shady/maw.svg"
  48283. }
  48284. },
  48285. },
  48286. [
  48287. {
  48288. name: "Nano",
  48289. height: math.unit(1, "mm")
  48290. },
  48291. {
  48292. name: "Micro",
  48293. height: math.unit(12, "mm")
  48294. },
  48295. {
  48296. name: "Tiny",
  48297. height: math.unit(3, "inches")
  48298. },
  48299. {
  48300. name: "Normal",
  48301. height: math.unit(6 + 2/12, "feet"),
  48302. default: true
  48303. },
  48304. {
  48305. name: "Big",
  48306. height: math.unit(15, "feet")
  48307. },
  48308. {
  48309. name: "Macro",
  48310. height: math.unit(150, "feet")
  48311. },
  48312. {
  48313. name: "Titanic",
  48314. height: math.unit(500, "feet")
  48315. },
  48316. ]
  48317. ))
  48318. characterMakers.push(() => makeCharacter(
  48319. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48320. {
  48321. front: {
  48322. height: math.unit(12, "feet"),
  48323. name: "Front",
  48324. image: {
  48325. source: "./media/characters/fenrir/front.svg",
  48326. extra: 968/875,
  48327. bottom: 22/990
  48328. }
  48329. },
  48330. },
  48331. [
  48332. {
  48333. name: "Big",
  48334. height: math.unit(12, "feet"),
  48335. default: true
  48336. },
  48337. ]
  48338. ))
  48339. characterMakers.push(() => makeCharacter(
  48340. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48341. {
  48342. front: {
  48343. height: math.unit(5 + 4/12, "feet"),
  48344. name: "Front",
  48345. image: {
  48346. source: "./media/characters/makar/front.svg",
  48347. extra: 1181/1112,
  48348. bottom: 78/1259
  48349. }
  48350. },
  48351. },
  48352. [
  48353. {
  48354. name: "Normal",
  48355. height: math.unit(5 + 4/12, "feet"),
  48356. default: true
  48357. },
  48358. ]
  48359. ))
  48360. characterMakers.push(() => makeCharacter(
  48361. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48362. {
  48363. front: {
  48364. height: math.unit(5 + 7/12, "feet"),
  48365. name: "Front",
  48366. image: {
  48367. source: "./media/characters/callow/front.svg",
  48368. extra: 1482/1304,
  48369. bottom: 23/1505
  48370. }
  48371. },
  48372. back: {
  48373. height: math.unit(5 + 7/12, "feet"),
  48374. name: "Back",
  48375. image: {
  48376. source: "./media/characters/callow/back.svg",
  48377. extra: 1484/1296,
  48378. bottom: 25/1509
  48379. }
  48380. },
  48381. },
  48382. [
  48383. {
  48384. name: "Micro",
  48385. height: math.unit(3, "inches"),
  48386. default: true
  48387. },
  48388. {
  48389. name: "Normal",
  48390. height: math.unit(5 + 7/12, "feet")
  48391. },
  48392. ]
  48393. ))
  48394. characterMakers.push(() => makeCharacter(
  48395. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48396. {
  48397. front: {
  48398. height: math.unit(6 + 2/12, "feet"),
  48399. name: "Front",
  48400. image: {
  48401. source: "./media/characters/natel/front.svg",
  48402. extra: 1833/1692,
  48403. bottom: 166/1999
  48404. }
  48405. },
  48406. },
  48407. [
  48408. {
  48409. name: "Normal",
  48410. height: math.unit(6 + 2/12, "feet"),
  48411. default: true
  48412. },
  48413. ]
  48414. ))
  48415. characterMakers.push(() => makeCharacter(
  48416. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48417. {
  48418. front: {
  48419. height: math.unit(1.75, "meters"),
  48420. name: "Front",
  48421. image: {
  48422. source: "./media/characters/misu/front.svg",
  48423. extra: 1690/1558,
  48424. bottom: 234/1924
  48425. }
  48426. },
  48427. back: {
  48428. height: math.unit(1.75, "meters"),
  48429. name: "Back",
  48430. image: {
  48431. source: "./media/characters/misu/back.svg",
  48432. extra: 1762/1618,
  48433. bottom: 146/1908
  48434. }
  48435. },
  48436. frontNude: {
  48437. height: math.unit(1.75, "meters"),
  48438. name: "Front (Nude)",
  48439. image: {
  48440. source: "./media/characters/misu/front-nude.svg",
  48441. extra: 1690/1558,
  48442. bottom: 234/1924
  48443. }
  48444. },
  48445. backNude: {
  48446. height: math.unit(1.75, "meters"),
  48447. name: "Back (Nude)",
  48448. image: {
  48449. source: "./media/characters/misu/back-nude.svg",
  48450. extra: 1762/1618,
  48451. bottom: 146/1908
  48452. }
  48453. },
  48454. frontErect: {
  48455. height: math.unit(1.75, "meters"),
  48456. name: "Front (Erect)",
  48457. image: {
  48458. source: "./media/characters/misu/front-erect.svg",
  48459. extra: 1690/1558,
  48460. bottom: 234/1924
  48461. }
  48462. },
  48463. maw: {
  48464. height: math.unit(0.47, "meters"),
  48465. name: "Maw",
  48466. image: {
  48467. source: "./media/characters/misu/maw.svg"
  48468. }
  48469. },
  48470. head: {
  48471. height: math.unit(0.35, "meters"),
  48472. name: "Head",
  48473. image: {
  48474. source: "./media/characters/misu/head.svg"
  48475. }
  48476. },
  48477. rear: {
  48478. height: math.unit(0.47, "meters"),
  48479. name: "Rear",
  48480. image: {
  48481. source: "./media/characters/misu/rear.svg"
  48482. }
  48483. },
  48484. },
  48485. [
  48486. {
  48487. name: "Normal",
  48488. height: math.unit(1.75, "meters")
  48489. },
  48490. {
  48491. name: "Not good for the people",
  48492. height: math.unit(42, "meters")
  48493. },
  48494. {
  48495. name: "Not good for the neighborhood",
  48496. height: math.unit(135, "meters")
  48497. },
  48498. {
  48499. name: "Bit bigger problem",
  48500. height: math.unit(380, "meters"),
  48501. default: true
  48502. },
  48503. {
  48504. name: "Not good for the city",
  48505. height: math.unit(1.5, "km")
  48506. },
  48507. {
  48508. name: "Not good for the county",
  48509. height: math.unit(5.5, "km")
  48510. },
  48511. {
  48512. name: "Not good for the state",
  48513. height: math.unit(25, "km")
  48514. },
  48515. {
  48516. name: "Not good for the country",
  48517. height: math.unit(125, "km")
  48518. },
  48519. {
  48520. name: "Not good for the continent",
  48521. height: math.unit(2100, "km")
  48522. },
  48523. {
  48524. name: "Not good for the planet",
  48525. height: math.unit(35000, "km")
  48526. },
  48527. {
  48528. name: "Just no",
  48529. height: math.unit(8.5e18, "km")
  48530. },
  48531. ]
  48532. ))
  48533. characterMakers.push(() => makeCharacter(
  48534. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48535. {
  48536. front: {
  48537. height: math.unit(6.5, "feet"),
  48538. name: "Front",
  48539. image: {
  48540. source: "./media/characters/poppy/front.svg",
  48541. extra: 1878/1812,
  48542. bottom: 43/1921
  48543. }
  48544. },
  48545. feet: {
  48546. height: math.unit(1.06, "feet"),
  48547. name: "Feet",
  48548. image: {
  48549. source: "./media/characters/poppy/feet.svg",
  48550. extra: 1083/1083,
  48551. bottom: 87/1170
  48552. }
  48553. },
  48554. },
  48555. [
  48556. {
  48557. name: "Human",
  48558. height: math.unit(6.5, "feet")
  48559. },
  48560. {
  48561. name: "Default",
  48562. height: math.unit(300, "feet"),
  48563. default: true
  48564. },
  48565. {
  48566. name: "Huge",
  48567. height: math.unit(850, "feet")
  48568. },
  48569. {
  48570. name: "Mega",
  48571. height: math.unit(8000, "feet")
  48572. },
  48573. {
  48574. name: "Giga",
  48575. height: math.unit(300, "miles")
  48576. },
  48577. ]
  48578. ))
  48579. characterMakers.push(() => makeCharacter(
  48580. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48581. {
  48582. bipedal: {
  48583. height: math.unit(7, "feet"),
  48584. name: "Bipedal",
  48585. image: {
  48586. source: "./media/characters/zener/bipedal.svg",
  48587. extra: 874/805,
  48588. bottom: 109/983
  48589. }
  48590. },
  48591. quadrupedal: {
  48592. height: math.unit(4.64, "feet"),
  48593. name: "Quadrupedal",
  48594. image: {
  48595. source: "./media/characters/zener/quadrupedal.svg",
  48596. extra: 638/507,
  48597. bottom: 190/828
  48598. }
  48599. },
  48600. cock: {
  48601. height: math.unit(18, "inches"),
  48602. name: "Cock",
  48603. image: {
  48604. source: "./media/characters/zener/cock.svg"
  48605. }
  48606. },
  48607. },
  48608. [
  48609. {
  48610. name: "Normal",
  48611. height: math.unit(7, "feet"),
  48612. default: true
  48613. },
  48614. ]
  48615. ))
  48616. characterMakers.push(() => makeCharacter(
  48617. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48618. {
  48619. nude: {
  48620. height: math.unit(5 + 6/12, "feet"),
  48621. name: "Nude",
  48622. image: {
  48623. source: "./media/characters/charlie-dog/nude.svg",
  48624. extra: 768/734,
  48625. bottom: 26/794
  48626. }
  48627. },
  48628. dressed: {
  48629. height: math.unit(5 + 6/12, "feet"),
  48630. name: "Dressed",
  48631. image: {
  48632. source: "./media/characters/charlie-dog/dressed.svg",
  48633. extra: 768/734,
  48634. bottom: 26/794
  48635. }
  48636. },
  48637. },
  48638. [
  48639. {
  48640. name: "Normal",
  48641. height: math.unit(5 + 6/12, "feet"),
  48642. default: true
  48643. },
  48644. ]
  48645. ))
  48646. characterMakers.push(() => makeCharacter(
  48647. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48648. {
  48649. front: {
  48650. height: math.unit(6 + 4/12, "feet"),
  48651. name: "Front",
  48652. image: {
  48653. source: "./media/characters/ir'istrasz/front.svg",
  48654. extra: 1014/977,
  48655. bottom: 65/1079
  48656. }
  48657. },
  48658. back: {
  48659. height: math.unit(6 + 4/12, "feet"),
  48660. name: "Back",
  48661. image: {
  48662. source: "./media/characters/ir'istrasz/back.svg",
  48663. extra: 1024/992,
  48664. bottom: 34/1058
  48665. }
  48666. },
  48667. },
  48668. [
  48669. {
  48670. name: "Normal",
  48671. height: math.unit(6 + 4/12, "feet"),
  48672. default: true
  48673. },
  48674. ]
  48675. ))
  48676. characterMakers.push(() => makeCharacter(
  48677. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48678. {
  48679. front: {
  48680. height: math.unit(5 + 8/12, "feet"),
  48681. name: "Front",
  48682. image: {
  48683. source: "./media/characters/dee-ditto/front.svg",
  48684. extra: 1874/1785,
  48685. bottom: 68/1942
  48686. }
  48687. },
  48688. back: {
  48689. height: math.unit(5 + 8/12, "feet"),
  48690. name: "Back",
  48691. image: {
  48692. source: "./media/characters/dee-ditto/back.svg",
  48693. extra: 1870/1783,
  48694. bottom: 77/1947
  48695. }
  48696. },
  48697. },
  48698. [
  48699. {
  48700. name: "Normal",
  48701. height: math.unit(5 + 8/12, "feet"),
  48702. default: true
  48703. },
  48704. ]
  48705. ))
  48706. characterMakers.push(() => makeCharacter(
  48707. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48708. {
  48709. front: {
  48710. height: math.unit(7 + 6/12, "feet"),
  48711. name: "Front",
  48712. image: {
  48713. source: "./media/characters/fey/front.svg",
  48714. extra: 995/979,
  48715. bottom: 30/1025
  48716. }
  48717. },
  48718. back: {
  48719. height: math.unit(7 + 6/12, "feet"),
  48720. name: "Back",
  48721. image: {
  48722. source: "./media/characters/fey/back.svg",
  48723. extra: 1079/1008,
  48724. bottom: 5/1084
  48725. }
  48726. },
  48727. dressed: {
  48728. height: math.unit(7 + 6/12, "feet"),
  48729. name: "Dressed",
  48730. image: {
  48731. source: "./media/characters/fey/dressed.svg",
  48732. extra: 995/979,
  48733. bottom: 30/1025
  48734. }
  48735. },
  48736. },
  48737. [
  48738. {
  48739. name: "Normal",
  48740. height: math.unit(7 + 6/12, "feet"),
  48741. default: true
  48742. },
  48743. ]
  48744. ))
  48745. characterMakers.push(() => makeCharacter(
  48746. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48747. {
  48748. standing: {
  48749. height: math.unit(17, "feet"),
  48750. name: "Standing",
  48751. image: {
  48752. source: "./media/characters/aster/standing.svg",
  48753. extra: 1798/1598,
  48754. bottom: 117/1915
  48755. }
  48756. },
  48757. },
  48758. [
  48759. {
  48760. name: "Normal",
  48761. height: math.unit(17, "feet"),
  48762. default: true
  48763. },
  48764. {
  48765. name: "Homewrecker",
  48766. height: math.unit(95, "feet")
  48767. },
  48768. {
  48769. name: "Planet Devourer",
  48770. height: math.unit(1008000, "miles")
  48771. },
  48772. ]
  48773. ))
  48774. characterMakers.push(() => makeCharacter(
  48775. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48776. {
  48777. front: {
  48778. height: math.unit(6 + 5/12, "feet"),
  48779. weight: math.unit(265, "lb"),
  48780. name: "Front",
  48781. image: {
  48782. source: "./media/characters/devon-childs/front.svg",
  48783. extra: 1795/1721,
  48784. bottom: 41/1836
  48785. }
  48786. },
  48787. side: {
  48788. height: math.unit(6 + 5/12, "feet"),
  48789. weight: math.unit(265, "lb"),
  48790. name: "Side",
  48791. image: {
  48792. source: "./media/characters/devon-childs/side.svg",
  48793. extra: 1812/1738,
  48794. bottom: 30/1842
  48795. }
  48796. },
  48797. back: {
  48798. height: math.unit(6 + 5/12, "feet"),
  48799. weight: math.unit(265, "lb"),
  48800. name: "Back",
  48801. image: {
  48802. source: "./media/characters/devon-childs/back.svg",
  48803. extra: 1808/1735,
  48804. bottom: 23/1831
  48805. }
  48806. },
  48807. hand: {
  48808. height: math.unit(1.464, "feet"),
  48809. name: "Hand",
  48810. image: {
  48811. source: "./media/characters/devon-childs/hand.svg"
  48812. }
  48813. },
  48814. foot: {
  48815. height: math.unit(1.6, "feet"),
  48816. name: "Foot",
  48817. image: {
  48818. source: "./media/characters/devon-childs/foot.svg"
  48819. }
  48820. },
  48821. },
  48822. [
  48823. {
  48824. name: "Micro",
  48825. height: math.unit(7, "cm")
  48826. },
  48827. {
  48828. name: "Normal",
  48829. height: math.unit(6 + 5/12, "feet"),
  48830. default: true
  48831. },
  48832. {
  48833. name: "Macro",
  48834. height: math.unit(154, "feet")
  48835. },
  48836. ]
  48837. ))
  48838. characterMakers.push(() => makeCharacter(
  48839. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48840. {
  48841. front: {
  48842. height: math.unit(6, "feet"),
  48843. weight: math.unit(180, "lb"),
  48844. name: "Front",
  48845. image: {
  48846. source: "./media/characters/lydemox-vir/front.svg",
  48847. extra: 1632/1435,
  48848. bottom: 58/1690
  48849. }
  48850. },
  48851. frontSFW: {
  48852. height: math.unit(6, "feet"),
  48853. weight: math.unit(180, "lb"),
  48854. name: "Front (SFW)",
  48855. image: {
  48856. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48857. extra: 1632/1435,
  48858. bottom: 58/1690
  48859. }
  48860. },
  48861. back: {
  48862. height: math.unit(6, "feet"),
  48863. weight: math.unit(180, "lb"),
  48864. name: "Back",
  48865. image: {
  48866. source: "./media/characters/lydemox-vir/back.svg",
  48867. extra: 1593/1408,
  48868. bottom: 31/1624
  48869. }
  48870. },
  48871. paw: {
  48872. height: math.unit(1.85, "feet"),
  48873. name: "Paw",
  48874. image: {
  48875. source: "./media/characters/lydemox-vir/paw.svg"
  48876. }
  48877. },
  48878. dick: {
  48879. height: math.unit(1.8, "feet"),
  48880. name: "Dick",
  48881. image: {
  48882. source: "./media/characters/lydemox-vir/dick.svg"
  48883. }
  48884. },
  48885. },
  48886. [
  48887. {
  48888. name: "Macro",
  48889. height: math.unit(100, "feet"),
  48890. default: true
  48891. },
  48892. {
  48893. name: "Teramacro",
  48894. height: math.unit(1, "earth")
  48895. },
  48896. {
  48897. name: "Planetary",
  48898. height: math.unit(20, "earths")
  48899. },
  48900. ]
  48901. ))
  48902. characterMakers.push(() => makeCharacter(
  48903. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48904. {
  48905. front: {
  48906. height: math.unit(15 + 8/12, "feet"),
  48907. weight: math.unit(1237, "kg"),
  48908. name: "Front",
  48909. image: {
  48910. source: "./media/characters/mia/front.svg",
  48911. extra: 1573/1446,
  48912. bottom: 58/1631
  48913. }
  48914. },
  48915. },
  48916. [
  48917. {
  48918. name: "Small",
  48919. height: math.unit(9 + 5/12, "feet")
  48920. },
  48921. {
  48922. name: "Normal",
  48923. height: math.unit(15 + 8/12, "feet"),
  48924. default: true
  48925. },
  48926. ]
  48927. ))
  48928. characterMakers.push(() => makeCharacter(
  48929. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48930. {
  48931. front: {
  48932. height: math.unit(10 + 6/12, "feet"),
  48933. weight: math.unit(1.3, "tons"),
  48934. name: "Front",
  48935. image: {
  48936. source: "./media/characters/mr-graves/front.svg",
  48937. extra: 1779/1695,
  48938. bottom: 198/1977
  48939. }
  48940. },
  48941. },
  48942. [
  48943. {
  48944. name: "Normal",
  48945. height: math.unit(10 + 6 /12, "feet"),
  48946. default: true
  48947. },
  48948. ]
  48949. ))
  48950. characterMakers.push(() => makeCharacter(
  48951. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48952. {
  48953. dressedFront: {
  48954. height: math.unit(5 + 8/12, "feet"),
  48955. weight: math.unit(125, "lb"),
  48956. name: "Dressed (Front)",
  48957. image: {
  48958. source: "./media/characters/jess/dressed-front.svg",
  48959. extra: 1176/1152,
  48960. bottom: 42/1218
  48961. }
  48962. },
  48963. dressedSide: {
  48964. height: math.unit(5 + 8/12, "feet"),
  48965. weight: math.unit(125, "lb"),
  48966. name: "Dressed (Side)",
  48967. image: {
  48968. source: "./media/characters/jess/dressed-side.svg",
  48969. extra: 1204/1190,
  48970. bottom: 6/1210
  48971. }
  48972. },
  48973. nudeFront: {
  48974. height: math.unit(5 + 8/12, "feet"),
  48975. weight: math.unit(125, "lb"),
  48976. name: "Nude (Front)",
  48977. image: {
  48978. source: "./media/characters/jess/nude-front.svg",
  48979. extra: 1176/1152,
  48980. bottom: 42/1218
  48981. }
  48982. },
  48983. nudeSide: {
  48984. height: math.unit(5 + 8/12, "feet"),
  48985. weight: math.unit(125, "lb"),
  48986. name: "Nude (Side)",
  48987. image: {
  48988. source: "./media/characters/jess/nude-side.svg",
  48989. extra: 1204/1190,
  48990. bottom: 6/1210
  48991. }
  48992. },
  48993. organsFront: {
  48994. height: math.unit(2.83799342105, "feet"),
  48995. name: "Organs (Front)",
  48996. image: {
  48997. source: "./media/characters/jess/organs-front.svg"
  48998. }
  48999. },
  49000. organsSide: {
  49001. height: math.unit(2.64225290474, "feet"),
  49002. name: "Organs (Side)",
  49003. image: {
  49004. source: "./media/characters/jess/organs-side.svg"
  49005. }
  49006. },
  49007. digestiveTractFront: {
  49008. height: math.unit(2.8106580871, "feet"),
  49009. name: "Digestive Tract (Front)",
  49010. image: {
  49011. source: "./media/characters/jess/digestive-tract-front.svg"
  49012. }
  49013. },
  49014. digestiveTractSide: {
  49015. height: math.unit(2.54365045014, "feet"),
  49016. name: "Digestive Tract (Side)",
  49017. image: {
  49018. source: "./media/characters/jess/digestive-tract-side.svg"
  49019. }
  49020. },
  49021. respiratorySystemFront: {
  49022. height: math.unit(1.11196233456, "feet"),
  49023. name: "Respiratory System (Front)",
  49024. image: {
  49025. source: "./media/characters/jess/respiratory-system-front.svg"
  49026. }
  49027. },
  49028. respiratorySystemSide: {
  49029. height: math.unit(0.89327966297, "feet"),
  49030. name: "Respiratory System (Side)",
  49031. image: {
  49032. source: "./media/characters/jess/respiratory-system-side.svg"
  49033. }
  49034. },
  49035. urinaryTractFront: {
  49036. height: math.unit(1.16126356186, "feet"),
  49037. name: "Urinary Tract (Front)",
  49038. image: {
  49039. source: "./media/characters/jess/urinary-tract-front.svg"
  49040. }
  49041. },
  49042. urinaryTractSide: {
  49043. height: math.unit(1.20910039627, "feet"),
  49044. name: "Urinary Tract (Side)",
  49045. image: {
  49046. source: "./media/characters/jess/urinary-tract-side.svg"
  49047. }
  49048. },
  49049. reproductiveOrgansFront: {
  49050. height: math.unit(0.48422591566, "feet"),
  49051. name: "Reproductive Organs (Front)",
  49052. image: {
  49053. source: "./media/characters/jess/reproductive-organs-front.svg"
  49054. }
  49055. },
  49056. reproductiveOrgansSide: {
  49057. height: math.unit(0.61553314481, "feet"),
  49058. name: "Reproductive Organs (Side)",
  49059. image: {
  49060. source: "./media/characters/jess/reproductive-organs-side.svg"
  49061. }
  49062. },
  49063. breastsFront: {
  49064. height: math.unit(0.47690395121, "feet"),
  49065. name: "Breasts (Front)",
  49066. image: {
  49067. source: "./media/characters/jess/breasts-front.svg"
  49068. }
  49069. },
  49070. breastsSide: {
  49071. height: math.unit(0.30556998307, "feet"),
  49072. name: "Breasts (Side)",
  49073. image: {
  49074. source: "./media/characters/jess/breasts-side.svg"
  49075. }
  49076. },
  49077. heartFront: {
  49078. height: math.unit(0.53011022622, "feet"),
  49079. name: "Heart (Front)",
  49080. image: {
  49081. source: "./media/characters/jess/heart-front.svg"
  49082. }
  49083. },
  49084. heartSide: {
  49085. height: math.unit(0.51790695213, "feet"),
  49086. name: "Heart (Side)",
  49087. image: {
  49088. source: "./media/characters/jess/heart-side.svg"
  49089. }
  49090. },
  49091. earsAndNoseFront: {
  49092. height: math.unit(0.29385483995, "feet"),
  49093. name: "Ears and Nose (Front)",
  49094. image: {
  49095. source: "./media/characters/jess/ears-and-nose-front.svg"
  49096. }
  49097. },
  49098. earsAndNoseSide: {
  49099. height: math.unit(0.18109658741, "feet"),
  49100. name: "Ears and Nose (Side)",
  49101. image: {
  49102. source: "./media/characters/jess/ears-and-nose-side.svg"
  49103. }
  49104. },
  49105. },
  49106. [
  49107. {
  49108. name: "Normal",
  49109. height: math.unit(5 + 8/12, "feet"),
  49110. default: true
  49111. },
  49112. ]
  49113. ))
  49114. characterMakers.push(() => makeCharacter(
  49115. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49116. {
  49117. front: {
  49118. height: math.unit(6, "feet"),
  49119. weight: math.unit(6.64467e-7, "grams"),
  49120. name: "Front",
  49121. image: {
  49122. source: "./media/characters/wimpering/front.svg",
  49123. extra: 597/587,
  49124. bottom: 34/631
  49125. }
  49126. },
  49127. },
  49128. [
  49129. {
  49130. name: "Micro",
  49131. height: math.unit(0.4, "mm"),
  49132. default: true
  49133. },
  49134. ]
  49135. ))
  49136. characterMakers.push(() => makeCharacter(
  49137. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49138. {
  49139. front: {
  49140. height: math.unit(5 + 2/12, "feet"),
  49141. weight: math.unit(110, "lb"),
  49142. name: "Front",
  49143. image: {
  49144. source: "./media/characters/keltre/front.svg",
  49145. extra: 1099/1057,
  49146. bottom: 22/1121
  49147. }
  49148. },
  49149. back: {
  49150. height: math.unit(5 + 2/12, "feet"),
  49151. weight: math.unit(110, "lb"),
  49152. name: "Back",
  49153. image: {
  49154. source: "./media/characters/keltre/back.svg",
  49155. extra: 1095/1053,
  49156. bottom: 17/1112
  49157. }
  49158. },
  49159. dressed: {
  49160. height: math.unit(5 + 2/12, "feet"),
  49161. weight: math.unit(110, "lb"),
  49162. name: "Dressed",
  49163. image: {
  49164. source: "./media/characters/keltre/dressed.svg",
  49165. extra: 1099/1057,
  49166. bottom: 22/1121
  49167. }
  49168. },
  49169. winter: {
  49170. height: math.unit(5 + 2/12, "feet"),
  49171. weight: math.unit(110, "lb"),
  49172. name: "Winter",
  49173. image: {
  49174. source: "./media/characters/keltre/winter.svg",
  49175. extra: 1099/1057,
  49176. bottom: 22/1121
  49177. }
  49178. },
  49179. head: {
  49180. height: math.unit(1.61 * 0.86, "feet"),
  49181. name: "Head",
  49182. image: {
  49183. source: "./media/characters/keltre/head.svg",
  49184. extra: 534/421,
  49185. bottom: 0/534
  49186. }
  49187. },
  49188. hand: {
  49189. height: math.unit(1.3 * 0.86, "feet"),
  49190. name: "Hand",
  49191. image: {
  49192. source: "./media/characters/keltre/hand.svg"
  49193. }
  49194. },
  49195. foot: {
  49196. height: math.unit(1.8 * 0.86, "feet"),
  49197. name: "Foot",
  49198. image: {
  49199. source: "./media/characters/keltre/foot.svg"
  49200. }
  49201. },
  49202. },
  49203. [
  49204. {
  49205. name: "Fine",
  49206. height: math.unit(1, "inch")
  49207. },
  49208. {
  49209. name: "Dimnutive",
  49210. height: math.unit(4, "inches")
  49211. },
  49212. {
  49213. name: "Tiny",
  49214. height: math.unit(1, "foot")
  49215. },
  49216. {
  49217. name: "Small",
  49218. height: math.unit(3, "feet")
  49219. },
  49220. {
  49221. name: "Normal",
  49222. height: math.unit(5 + 2/12, "feet"),
  49223. default: true
  49224. },
  49225. ]
  49226. ))
  49227. characterMakers.push(() => makeCharacter(
  49228. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49229. {
  49230. front: {
  49231. height: math.unit(6 + 2/12, "feet"),
  49232. name: "Front",
  49233. image: {
  49234. source: "./media/characters/nox/front.svg",
  49235. extra: 1917/1830,
  49236. bottom: 74/1991
  49237. }
  49238. },
  49239. back: {
  49240. height: math.unit(6 + 2/12, "feet"),
  49241. name: "Back",
  49242. image: {
  49243. source: "./media/characters/nox/back.svg",
  49244. extra: 1896/1815,
  49245. bottom: 21/1917
  49246. }
  49247. },
  49248. head: {
  49249. height: math.unit(1.1, "feet"),
  49250. name: "Head",
  49251. image: {
  49252. source: "./media/characters/nox/head.svg",
  49253. extra: 874/704,
  49254. bottom: 0/874
  49255. }
  49256. },
  49257. tattoo: {
  49258. height: math.unit(0.729, "feet"),
  49259. name: "Tattoo",
  49260. image: {
  49261. source: "./media/characters/nox/tattoo.svg"
  49262. }
  49263. },
  49264. },
  49265. [
  49266. {
  49267. name: "Normal",
  49268. height: math.unit(6 + 2/12, "feet")
  49269. },
  49270. {
  49271. name: "Gigamacro",
  49272. height: math.unit(2, "earths"),
  49273. default: true
  49274. },
  49275. {
  49276. name: "Cosmic",
  49277. height: math.unit(867, "yottameters")
  49278. },
  49279. ]
  49280. ))
  49281. characterMakers.push(() => makeCharacter(
  49282. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49283. {
  49284. front: {
  49285. height: math.unit(6, "feet"),
  49286. weight: math.unit(150, "lb"),
  49287. name: "Front",
  49288. image: {
  49289. source: "./media/characters/caspian/front.svg",
  49290. extra: 1443/1359,
  49291. bottom: 0/1443
  49292. }
  49293. },
  49294. back: {
  49295. height: math.unit(6, "feet"),
  49296. weight: math.unit(150, "lb"),
  49297. name: "Back",
  49298. image: {
  49299. source: "./media/characters/caspian/back.svg",
  49300. extra: 1379/1309,
  49301. bottom: 0/1379
  49302. }
  49303. },
  49304. head: {
  49305. height: math.unit(0.9, "feet"),
  49306. name: "Head",
  49307. image: {
  49308. source: "./media/characters/caspian/head.svg",
  49309. extra: 692/492,
  49310. bottom: 0/692
  49311. }
  49312. },
  49313. headAlt: {
  49314. height: math.unit(0.95, "feet"),
  49315. name: "Head (Alt)",
  49316. image: {
  49317. source: "./media/characters/caspian/head-alt.svg",
  49318. extra: 668/508,
  49319. bottom: 0/668
  49320. }
  49321. },
  49322. hand: {
  49323. height: math.unit(0.8, "feet"),
  49324. name: "Hand",
  49325. image: {
  49326. source: "./media/characters/caspian/hand.svg"
  49327. }
  49328. },
  49329. paw: {
  49330. height: math.unit(0.95, "feet"),
  49331. name: "Paw",
  49332. image: {
  49333. source: "./media/characters/caspian/paw.svg"
  49334. }
  49335. },
  49336. },
  49337. [
  49338. {
  49339. name: "Normal",
  49340. height: math.unit(162, "feet"),
  49341. default: true
  49342. },
  49343. ]
  49344. ))
  49345. characterMakers.push(() => makeCharacter(
  49346. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49347. {
  49348. front: {
  49349. height: math.unit(6, "feet"),
  49350. name: "Front",
  49351. image: {
  49352. source: "./media/characters/myra-aisling/front.svg",
  49353. extra: 1268/1166,
  49354. bottom: 73/1341
  49355. }
  49356. },
  49357. back: {
  49358. height: math.unit(6, "feet"),
  49359. name: "Back",
  49360. image: {
  49361. source: "./media/characters/myra-aisling/back.svg",
  49362. extra: 1249/1149,
  49363. bottom: 79/1328
  49364. }
  49365. },
  49366. dressed: {
  49367. height: math.unit(6, "feet"),
  49368. name: "Dressed",
  49369. image: {
  49370. source: "./media/characters/myra-aisling/dressed.svg",
  49371. extra: 1290/1189,
  49372. bottom: 47/1337
  49373. }
  49374. },
  49375. hand: {
  49376. height: math.unit(1.1, "feet"),
  49377. name: "Hand",
  49378. image: {
  49379. source: "./media/characters/myra-aisling/hand.svg"
  49380. }
  49381. },
  49382. paw: {
  49383. height: math.unit(1.23, "feet"),
  49384. name: "Paw",
  49385. image: {
  49386. source: "./media/characters/myra-aisling/paw.svg"
  49387. }
  49388. },
  49389. },
  49390. [
  49391. {
  49392. name: "Normal",
  49393. height: math.unit(160, "feet"),
  49394. default: true
  49395. },
  49396. ]
  49397. ))
  49398. characterMakers.push(() => makeCharacter(
  49399. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49400. {
  49401. front: {
  49402. height: math.unit(6, "feet"),
  49403. name: "Front",
  49404. image: {
  49405. source: "./media/characters/tenley-sidero/front.svg",
  49406. extra: 1365/1276,
  49407. bottom: 47/1412
  49408. }
  49409. },
  49410. back: {
  49411. height: math.unit(6, "feet"),
  49412. name: "Back",
  49413. image: {
  49414. source: "./media/characters/tenley-sidero/back.svg",
  49415. extra: 1383/1283,
  49416. bottom: 35/1418
  49417. }
  49418. },
  49419. dressed: {
  49420. height: math.unit(6, "feet"),
  49421. name: "Dressed",
  49422. image: {
  49423. source: "./media/characters/tenley-sidero/dressed.svg",
  49424. extra: 1364/1275,
  49425. bottom: 42/1406
  49426. }
  49427. },
  49428. head: {
  49429. height: math.unit(1.47, "feet"),
  49430. name: "Head",
  49431. image: {
  49432. source: "./media/characters/tenley-sidero/head.svg",
  49433. extra: 610/490,
  49434. bottom: 0/610
  49435. }
  49436. },
  49437. },
  49438. [
  49439. {
  49440. name: "Normal",
  49441. height: math.unit(154, "feet"),
  49442. default: true
  49443. },
  49444. ]
  49445. ))
  49446. characterMakers.push(() => makeCharacter(
  49447. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49448. {
  49449. front: {
  49450. height: math.unit(5, "inches"),
  49451. name: "Front",
  49452. image: {
  49453. source: "./media/characters/mallory/front.svg",
  49454. extra: 1919/1678,
  49455. bottom: 29/1948
  49456. }
  49457. },
  49458. hand: {
  49459. height: math.unit(0.73, "inches"),
  49460. name: "Hand",
  49461. image: {
  49462. source: "./media/characters/mallory/hand.svg"
  49463. }
  49464. },
  49465. paw: {
  49466. height: math.unit(0.68, "inches"),
  49467. name: "Paw",
  49468. image: {
  49469. source: "./media/characters/mallory/paw.svg"
  49470. }
  49471. },
  49472. },
  49473. [
  49474. {
  49475. name: "Small",
  49476. height: math.unit(5, "inches"),
  49477. default: true
  49478. },
  49479. ]
  49480. ))
  49481. characterMakers.push(() => makeCharacter(
  49482. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49483. {
  49484. naked: {
  49485. height: math.unit(6, "feet"),
  49486. name: "Naked",
  49487. image: {
  49488. source: "./media/characters/mab/naked.svg",
  49489. extra: 1855/1757,
  49490. bottom: 208/2063
  49491. }
  49492. },
  49493. outside: {
  49494. height: math.unit(6, "feet"),
  49495. name: "Outside",
  49496. image: {
  49497. source: "./media/characters/mab/outside.svg",
  49498. extra: 1855/1757,
  49499. bottom: 208/2063
  49500. }
  49501. },
  49502. party: {
  49503. height: math.unit(6, "feet"),
  49504. name: "Party",
  49505. image: {
  49506. source: "./media/characters/mab/party.svg",
  49507. extra: 1855/1757,
  49508. bottom: 208/2063
  49509. }
  49510. },
  49511. },
  49512. [
  49513. {
  49514. name: "Normal",
  49515. height: math.unit(165, "feet"),
  49516. default: true
  49517. },
  49518. ]
  49519. ))
  49520. characterMakers.push(() => makeCharacter(
  49521. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49522. {
  49523. front: {
  49524. height: math.unit(12, "feet"),
  49525. weight: math.unit(20000, "lb"),
  49526. name: "Front",
  49527. image: {
  49528. source: "./media/characters/winter/front.svg",
  49529. extra: 1286/943,
  49530. bottom: 112/1398
  49531. }
  49532. },
  49533. frontNsfw: {
  49534. height: math.unit(12, "feet"),
  49535. weight: math.unit(20000, "lb"),
  49536. name: "Front (NSFW)",
  49537. image: {
  49538. source: "./media/characters/winter/front-nsfw.svg",
  49539. extra: 1286/943,
  49540. bottom: 112/1398
  49541. }
  49542. },
  49543. dick: {
  49544. height: math.unit(3.79, "feet"),
  49545. name: "Dick",
  49546. image: {
  49547. source: "./media/characters/winter/dick.svg"
  49548. }
  49549. },
  49550. },
  49551. [
  49552. {
  49553. name: "Big",
  49554. height: math.unit(12, "feet"),
  49555. default: true
  49556. },
  49557. ]
  49558. ))
  49559. characterMakers.push(() => makeCharacter(
  49560. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49561. {
  49562. front: {
  49563. height: math.unit(4.1, "inches"),
  49564. name: "Front",
  49565. image: {
  49566. source: "./media/characters/alto/front.svg",
  49567. extra: 736/627,
  49568. bottom: 90/826
  49569. }
  49570. },
  49571. },
  49572. [
  49573. {
  49574. name: "Normal",
  49575. height: math.unit(4.1, "inches"),
  49576. default: true
  49577. },
  49578. ]
  49579. ))
  49580. characterMakers.push(() => makeCharacter(
  49581. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49582. {
  49583. sitting: {
  49584. height: math.unit(3, "feet"),
  49585. name: "Sitting",
  49586. image: {
  49587. source: "./media/characters/ratstrid-v/sitting.svg",
  49588. extra: 355/310,
  49589. bottom: 136/491
  49590. }
  49591. },
  49592. },
  49593. [
  49594. {
  49595. name: "Normal",
  49596. height: math.unit(3, "feet"),
  49597. default: true
  49598. },
  49599. ]
  49600. ))
  49601. characterMakers.push(() => makeCharacter(
  49602. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49603. {
  49604. back: {
  49605. height: math.unit(6, "feet"),
  49606. weight: math.unit(350, "lb"),
  49607. name: "Back",
  49608. image: {
  49609. source: "./media/characters/siz/back.svg",
  49610. extra: 1449/1274,
  49611. bottom: 13/1462
  49612. }
  49613. },
  49614. },
  49615. [
  49616. {
  49617. name: "Over-Overcompressed",
  49618. height: math.unit(8, "feet")
  49619. },
  49620. {
  49621. name: "Overcompressed",
  49622. height: math.unit(32, "feet")
  49623. },
  49624. {
  49625. name: "Compressed",
  49626. height: math.unit(128, "feet"),
  49627. default: true
  49628. },
  49629. {
  49630. name: "Half-Compressed",
  49631. height: math.unit(512, "feet")
  49632. },
  49633. {
  49634. name: "Quarter-Compressed",
  49635. height: math.unit(2048, "feet")
  49636. },
  49637. {
  49638. name: "Uncompressed?",
  49639. height: math.unit(8192, "feet")
  49640. },
  49641. ]
  49642. ))
  49643. characterMakers.push(() => makeCharacter(
  49644. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49645. {
  49646. front: {
  49647. height: math.unit(5 + 9/12, "feet"),
  49648. weight: math.unit(150, "lb"),
  49649. name: "Front",
  49650. image: {
  49651. source: "./media/characters/ven/front.svg",
  49652. extra: 1372/1320,
  49653. bottom: 73/1445
  49654. }
  49655. },
  49656. side: {
  49657. height: math.unit(5 + 9/12, "feet"),
  49658. weight: math.unit(1150, "lb"),
  49659. name: "Side",
  49660. image: {
  49661. source: "./media/characters/ven/side.svg",
  49662. extra: 1119/1070,
  49663. bottom: 42/1161
  49664. },
  49665. default: true
  49666. },
  49667. },
  49668. [
  49669. {
  49670. name: "Normal",
  49671. height: math.unit(5 + 9/12, "feet"),
  49672. default: true
  49673. },
  49674. ]
  49675. ))
  49676. characterMakers.push(() => makeCharacter(
  49677. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49678. {
  49679. front: {
  49680. height: math.unit(12, "feet"),
  49681. weight: math.unit(1000, "kg"),
  49682. name: "Front",
  49683. image: {
  49684. source: "./media/characters/maple/front.svg",
  49685. extra: 1193/1081,
  49686. bottom: 22/1215
  49687. }
  49688. },
  49689. },
  49690. [
  49691. {
  49692. name: "Compressed",
  49693. height: math.unit(7, "feet")
  49694. },
  49695. {
  49696. name: "Normal",
  49697. height: math.unit(12, "feet"),
  49698. default: true
  49699. },
  49700. ]
  49701. ))
  49702. characterMakers.push(() => makeCharacter(
  49703. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49704. {
  49705. front: {
  49706. height: math.unit(9, "feet"),
  49707. weight: math.unit(1500, "lb"),
  49708. name: "Front",
  49709. image: {
  49710. source: "./media/characters/nora/front.svg",
  49711. extra: 1348/1286,
  49712. bottom: 218/1566
  49713. }
  49714. },
  49715. erect: {
  49716. height: math.unit(9, "feet"),
  49717. weight: math.unit(11500, "lb"),
  49718. name: "Erect",
  49719. image: {
  49720. source: "./media/characters/nora/erect.svg",
  49721. extra: 1488/1433,
  49722. bottom: 133/1621
  49723. }
  49724. },
  49725. },
  49726. [
  49727. {
  49728. name: "Normal",
  49729. height: math.unit(9, "feet"),
  49730. default: true
  49731. },
  49732. ]
  49733. ))
  49734. characterMakers.push(() => makeCharacter(
  49735. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49736. {
  49737. front: {
  49738. height: math.unit(25, "feet"),
  49739. weight: math.unit(27500, "lb"),
  49740. name: "Front",
  49741. image: {
  49742. source: "./media/characters/north-caudin/front.svg",
  49743. extra: 1184/1082,
  49744. bottom: 23/1207
  49745. }
  49746. },
  49747. },
  49748. [
  49749. {
  49750. name: "Compressed",
  49751. height: math.unit(10, "feet")
  49752. },
  49753. {
  49754. name: "Normal",
  49755. height: math.unit(25, "feet"),
  49756. default: true
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49762. {
  49763. front: {
  49764. height: math.unit(9, "feet"),
  49765. weight: math.unit(1250, "lb"),
  49766. name: "Front",
  49767. image: {
  49768. source: "./media/characters/merrian/front.svg",
  49769. extra: 2393/2304,
  49770. bottom: 40/2433
  49771. }
  49772. },
  49773. },
  49774. [
  49775. {
  49776. name: "Normal",
  49777. height: math.unit(9, "feet"),
  49778. default: true
  49779. },
  49780. ]
  49781. ))
  49782. characterMakers.push(() => makeCharacter(
  49783. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49784. {
  49785. front: {
  49786. height: math.unit(9, "feet"),
  49787. weight: math.unit(1000, "lb"),
  49788. name: "Front",
  49789. image: {
  49790. source: "./media/characters/hazel/front.svg",
  49791. extra: 2351/2298,
  49792. bottom: 38/2389
  49793. }
  49794. },
  49795. },
  49796. [
  49797. {
  49798. name: "Normal",
  49799. height: math.unit(9, "feet"),
  49800. default: true
  49801. },
  49802. ]
  49803. ))
  49804. characterMakers.push(() => makeCharacter(
  49805. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49806. {
  49807. front: {
  49808. height: math.unit(13, "feet"),
  49809. weight: math.unit(3200, "lb"),
  49810. name: "Front",
  49811. image: {
  49812. source: "./media/characters/emma/front.svg",
  49813. extra: 2263/2029,
  49814. bottom: 68/2331
  49815. }
  49816. },
  49817. },
  49818. [
  49819. {
  49820. name: "Normal",
  49821. height: math.unit(13, "feet"),
  49822. default: true
  49823. },
  49824. ]
  49825. ))
  49826. characterMakers.push(() => makeCharacter(
  49827. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49828. {
  49829. front: {
  49830. height: math.unit(11 + 9/12, "feet"),
  49831. weight: math.unit(2500, "lb"),
  49832. name: "Front",
  49833. image: {
  49834. source: "./media/characters/ilumina/front.svg",
  49835. extra: 2248/2209,
  49836. bottom: 164/2412
  49837. }
  49838. },
  49839. },
  49840. [
  49841. {
  49842. name: "Normal",
  49843. height: math.unit(11 + 9/12, "feet"),
  49844. default: true
  49845. },
  49846. ]
  49847. ))
  49848. characterMakers.push(() => makeCharacter(
  49849. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49850. {
  49851. front: {
  49852. height: math.unit(8 + 10/12, "feet"),
  49853. weight: math.unit(1350, "lb"),
  49854. name: "Front",
  49855. image: {
  49856. source: "./media/characters/moonshine/front.svg",
  49857. extra: 2395/2288,
  49858. bottom: 40/2435
  49859. }
  49860. },
  49861. },
  49862. [
  49863. {
  49864. name: "Normal",
  49865. height: math.unit(8 + 10/12, "feet"),
  49866. default: true
  49867. },
  49868. ]
  49869. ))
  49870. characterMakers.push(() => makeCharacter(
  49871. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49872. {
  49873. front: {
  49874. height: math.unit(14, "feet"),
  49875. weight: math.unit(3400, "lb"),
  49876. name: "Front",
  49877. image: {
  49878. source: "./media/characters/aletia/front.svg",
  49879. extra: 1185/1052,
  49880. bottom: 21/1206
  49881. }
  49882. },
  49883. },
  49884. [
  49885. {
  49886. name: "Compressed",
  49887. height: math.unit(8, "feet")
  49888. },
  49889. {
  49890. name: "Normal",
  49891. height: math.unit(14, "feet"),
  49892. default: true
  49893. },
  49894. ]
  49895. ))
  49896. characterMakers.push(() => makeCharacter(
  49897. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49898. {
  49899. front: {
  49900. height: math.unit(17, "feet"),
  49901. weight: math.unit(6500, "lb"),
  49902. name: "Front",
  49903. image: {
  49904. source: "./media/characters/deidra/front.svg",
  49905. extra: 1201/1081,
  49906. bottom: 16/1217
  49907. }
  49908. },
  49909. },
  49910. [
  49911. {
  49912. name: "Compressed",
  49913. height: math.unit(9 + 6/12, "feet")
  49914. },
  49915. {
  49916. name: "Normal",
  49917. height: math.unit(17, "feet"),
  49918. default: true
  49919. },
  49920. ]
  49921. ))
  49922. characterMakers.push(() => makeCharacter(
  49923. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49924. {
  49925. front: {
  49926. height: math.unit(7 + 4/12, "feet"),
  49927. weight: math.unit(280, "lb"),
  49928. name: "Front",
  49929. image: {
  49930. source: "./media/characters/freki-yrmori/front.svg",
  49931. extra: 1286/1182,
  49932. bottom: 29/1315
  49933. }
  49934. },
  49935. maw: {
  49936. height: math.unit(0.9, "feet"),
  49937. name: "Maw",
  49938. image: {
  49939. source: "./media/characters/freki-yrmori/maw.svg"
  49940. }
  49941. },
  49942. },
  49943. [
  49944. {
  49945. name: "Normal",
  49946. height: math.unit(7 + 4/12, "feet"),
  49947. default: true
  49948. },
  49949. {
  49950. name: "Macro",
  49951. height: math.unit(38.5, "meters")
  49952. },
  49953. ]
  49954. ))
  49955. characterMakers.push(() => makeCharacter(
  49956. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49957. {
  49958. side: {
  49959. height: math.unit(47.2, "meters"),
  49960. weight: math.unit(10000, "tons"),
  49961. name: "Side",
  49962. image: {
  49963. source: "./media/characters/aetherios/side.svg",
  49964. extra: 2363/642,
  49965. bottom: 221/2584
  49966. }
  49967. },
  49968. top: {
  49969. height: math.unit(240, "meters"),
  49970. weight: math.unit(10000, "tons"),
  49971. name: "Top",
  49972. image: {
  49973. source: "./media/characters/aetherios/top.svg"
  49974. }
  49975. },
  49976. bottom: {
  49977. height: math.unit(240, "meters"),
  49978. weight: math.unit(10000, "tons"),
  49979. name: "Bottom",
  49980. image: {
  49981. source: "./media/characters/aetherios/bottom.svg"
  49982. }
  49983. },
  49984. head: {
  49985. height: math.unit(38.6, "meters"),
  49986. name: "Head",
  49987. image: {
  49988. source: "./media/characters/aetherios/head.svg",
  49989. extra: 1335/1112,
  49990. bottom: 0/1335
  49991. }
  49992. },
  49993. front: {
  49994. height: math.unit(29, "meters"),
  49995. name: "Front",
  49996. image: {
  49997. source: "./media/characters/aetherios/front.svg",
  49998. extra: 1266/953,
  49999. bottom: 158/1424
  50000. }
  50001. },
  50002. maw: {
  50003. height: math.unit(16.37, "meters"),
  50004. name: "Maw",
  50005. image: {
  50006. source: "./media/characters/aetherios/maw.svg",
  50007. extra: 748/637,
  50008. bottom: 0/748
  50009. },
  50010. extraAttributes: {
  50011. preyCapacity: {
  50012. name: "Capacity",
  50013. power: 3,
  50014. type: "volume",
  50015. base: math.unit(1000, "people")
  50016. },
  50017. tongueSize: {
  50018. name: "Tongue Size",
  50019. power: 2,
  50020. type: "area",
  50021. base: math.unit(21, "m^2")
  50022. }
  50023. }
  50024. },
  50025. forepaw: {
  50026. height: math.unit(18, "meters"),
  50027. name: "Forepaw",
  50028. image: {
  50029. source: "./media/characters/aetherios/forepaw.svg"
  50030. }
  50031. },
  50032. hindpaw: {
  50033. height: math.unit(23, "meters"),
  50034. name: "Hindpaw",
  50035. image: {
  50036. source: "./media/characters/aetherios/hindpaw.svg"
  50037. }
  50038. },
  50039. genitals: {
  50040. height: math.unit(42, "meters"),
  50041. name: "Genitals",
  50042. image: {
  50043. source: "./media/characters/aetherios/genitals.svg"
  50044. }
  50045. },
  50046. },
  50047. [
  50048. {
  50049. name: "Normal",
  50050. height: math.unit(47.2, "meters"),
  50051. default: true
  50052. },
  50053. {
  50054. name: "Macro",
  50055. height: math.unit(160, "meters")
  50056. },
  50057. {
  50058. name: "Mega",
  50059. height: math.unit(1.87, "km")
  50060. },
  50061. {
  50062. name: "Giga",
  50063. height: math.unit(40000, "km")
  50064. },
  50065. {
  50066. name: "Stellar",
  50067. height: math.unit(158000000, "km")
  50068. },
  50069. {
  50070. name: "Cosmic",
  50071. height: math.unit(9.46e12, "km")
  50072. },
  50073. ]
  50074. ))
  50075. characterMakers.push(() => makeCharacter(
  50076. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50077. {
  50078. front: {
  50079. height: math.unit(5 + 4/12, "feet"),
  50080. weight: math.unit(80, "lb"),
  50081. name: "Front",
  50082. image: {
  50083. source: "./media/characters/mizu-gieeg/front.svg",
  50084. extra: 850/709,
  50085. bottom: 52/902
  50086. }
  50087. },
  50088. back: {
  50089. height: math.unit(5 + 4/12, "feet"),
  50090. weight: math.unit(80, "lb"),
  50091. name: "Back",
  50092. image: {
  50093. source: "./media/characters/mizu-gieeg/back.svg",
  50094. extra: 882/745,
  50095. bottom: 25/907
  50096. }
  50097. },
  50098. },
  50099. [
  50100. {
  50101. name: "Normal",
  50102. height: math.unit(5 + 4/12, "feet"),
  50103. default: true
  50104. },
  50105. ]
  50106. ))
  50107. characterMakers.push(() => makeCharacter(
  50108. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50109. {
  50110. front: {
  50111. height: math.unit(6, "feet"),
  50112. name: "Front",
  50113. image: {
  50114. source: "./media/characters/roselle-st-papier/front.svg",
  50115. extra: 1430/1280,
  50116. bottom: 37/1467
  50117. }
  50118. },
  50119. back: {
  50120. height: math.unit(6, "feet"),
  50121. name: "Back",
  50122. image: {
  50123. source: "./media/characters/roselle-st-papier/back.svg",
  50124. extra: 1491/1296,
  50125. bottom: 23/1514
  50126. }
  50127. },
  50128. ear: {
  50129. height: math.unit(1.26, "feet"),
  50130. name: "Ear",
  50131. image: {
  50132. source: "./media/characters/roselle-st-papier/ear.svg"
  50133. }
  50134. },
  50135. },
  50136. [
  50137. {
  50138. name: "Normal",
  50139. height: math.unit(150, "feet"),
  50140. default: true
  50141. },
  50142. ]
  50143. ))
  50144. characterMakers.push(() => makeCharacter(
  50145. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50146. {
  50147. front: {
  50148. height: math.unit(1, "inches"),
  50149. name: "Front",
  50150. image: {
  50151. source: "./media/characters/valargent/front.svg",
  50152. extra: 1825/1694,
  50153. bottom: 62/1887
  50154. }
  50155. },
  50156. back: {
  50157. height: math.unit(1, "inches"),
  50158. name: "Back",
  50159. image: {
  50160. source: "./media/characters/valargent/back.svg",
  50161. extra: 1775/1682,
  50162. bottom: 88/1863
  50163. }
  50164. },
  50165. },
  50166. [
  50167. {
  50168. name: "Micro",
  50169. height: math.unit(1, "inch"),
  50170. default: true
  50171. },
  50172. ]
  50173. ))
  50174. characterMakers.push(() => makeCharacter(
  50175. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50176. {
  50177. front: {
  50178. height: math.unit(3.4, "meters"),
  50179. name: "Front",
  50180. image: {
  50181. source: "./media/characters/zarina/front.svg",
  50182. extra: 1733/1425,
  50183. bottom: 93/1826
  50184. }
  50185. },
  50186. squatting: {
  50187. height: math.unit(2.14, "meters"),
  50188. name: "Squatting",
  50189. image: {
  50190. source: "./media/characters/zarina/squatting.svg",
  50191. extra: 1073/788,
  50192. bottom: 63/1136
  50193. }
  50194. },
  50195. back: {
  50196. height: math.unit(2.14, "meters"),
  50197. name: "Back",
  50198. image: {
  50199. source: "./media/characters/zarina/back.svg",
  50200. extra: 1128/885,
  50201. bottom: 0/1128
  50202. }
  50203. },
  50204. },
  50205. [
  50206. {
  50207. name: "Normal",
  50208. height: math.unit(3.4, "meters"),
  50209. default: true
  50210. },
  50211. {
  50212. name: "Big",
  50213. height: math.unit(5, "meters")
  50214. },
  50215. {
  50216. name: "Macro",
  50217. height: math.unit(110, "meters")
  50218. },
  50219. ]
  50220. ))
  50221. characterMakers.push(() => makeCharacter(
  50222. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50223. {
  50224. front: {
  50225. height: math.unit(7, "feet"),
  50226. name: "Front",
  50227. image: {
  50228. source: "./media/characters/ventus-astro-fox/front.svg",
  50229. extra: 1792/1623,
  50230. bottom: 28/1820
  50231. }
  50232. },
  50233. back: {
  50234. height: math.unit(7, "feet"),
  50235. name: "Back",
  50236. image: {
  50237. source: "./media/characters/ventus-astro-fox/back.svg",
  50238. extra: 1789/1620,
  50239. bottom: 31/1820
  50240. }
  50241. },
  50242. outfit: {
  50243. height: math.unit(7, "feet"),
  50244. name: "Outfit",
  50245. image: {
  50246. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50247. extra: 1054/925,
  50248. bottom: 15/1069
  50249. }
  50250. },
  50251. head: {
  50252. height: math.unit(1.12, "feet"),
  50253. name: "Head",
  50254. image: {
  50255. source: "./media/characters/ventus-astro-fox/head.svg",
  50256. extra: 866/504,
  50257. bottom: 0/866
  50258. }
  50259. },
  50260. hand: {
  50261. height: math.unit(1, "feet"),
  50262. name: "Hand",
  50263. image: {
  50264. source: "./media/characters/ventus-astro-fox/hand.svg"
  50265. }
  50266. },
  50267. paw: {
  50268. height: math.unit(1.5, "feet"),
  50269. name: "Paw",
  50270. image: {
  50271. source: "./media/characters/ventus-astro-fox/paw.svg"
  50272. }
  50273. },
  50274. },
  50275. [
  50276. {
  50277. name: "Normal",
  50278. height: math.unit(7, "feet"),
  50279. default: true
  50280. },
  50281. {
  50282. name: "Macro",
  50283. height: math.unit(200, "feet")
  50284. },
  50285. {
  50286. name: "Cosmic",
  50287. height: math.unit(3, "universes")
  50288. },
  50289. ]
  50290. ))
  50291. characterMakers.push(() => makeCharacter(
  50292. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50293. {
  50294. front: {
  50295. height: math.unit(3, "meters"),
  50296. weight: math.unit(7000, "lb"),
  50297. name: "Front",
  50298. image: {
  50299. source: "./media/characters/core-t/front.svg",
  50300. extra: 5729/4941,
  50301. bottom: 1129/6858
  50302. }
  50303. },
  50304. },
  50305. [
  50306. {
  50307. name: "Big",
  50308. height: math.unit(3, "meters"),
  50309. default: true
  50310. },
  50311. ]
  50312. ))
  50313. characterMakers.push(() => makeCharacter(
  50314. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50315. {
  50316. normal: {
  50317. height: math.unit(6 + 6/12, "feet"),
  50318. weight: math.unit(275, "lb"),
  50319. name: "Front",
  50320. image: {
  50321. source: "./media/characters/cadbunny/normal.svg",
  50322. extra: 1129/947,
  50323. bottom: 93/1222
  50324. },
  50325. default: true,
  50326. form: "normal"
  50327. },
  50328. gigantamax: {
  50329. height: math.unit(26, "feet"),
  50330. weight: math.unit(16000, "lb"),
  50331. name: "Front",
  50332. image: {
  50333. source: "./media/characters/cadbunny/gigantamax.svg",
  50334. extra: 1133/944,
  50335. bottom: 90/1223
  50336. },
  50337. default: true,
  50338. form: "gigantamax"
  50339. },
  50340. },
  50341. [
  50342. {
  50343. name: "Normal",
  50344. height: math.unit(6 + 6/12, "feet"),
  50345. default: true,
  50346. form: "normal"
  50347. },
  50348. {
  50349. name: "Small",
  50350. height: math.unit(26, "feet"),
  50351. default: true,
  50352. form: "gigantamax"
  50353. },
  50354. {
  50355. name: "Large",
  50356. height: math.unit(78, "feet"),
  50357. form: "gigantamax"
  50358. },
  50359. ],
  50360. {
  50361. "normal": {
  50362. name: "Normal",
  50363. default: true
  50364. },
  50365. "gigantamax": {
  50366. name: "Gigantamax"
  50367. }
  50368. }
  50369. ))
  50370. characterMakers.push(() => makeCharacter(
  50371. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50372. {
  50373. anthroFront: {
  50374. height: math.unit(8, "feet"),
  50375. weight: math.unit(300, "lb"),
  50376. name: "Front",
  50377. image: {
  50378. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50379. extra: 1272/1176,
  50380. bottom: 53/1325
  50381. },
  50382. form: "anthro",
  50383. default: true
  50384. },
  50385. feralSide: {
  50386. height: math.unit(4, "feet"),
  50387. weight: math.unit(250, "lb"),
  50388. name: "Side",
  50389. image: {
  50390. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50391. extra: 731/621,
  50392. bottom: 0/731
  50393. },
  50394. form: "feral",
  50395. default: true
  50396. },
  50397. },
  50398. [
  50399. {
  50400. name: "Regular",
  50401. height: math.unit(8, "feet"),
  50402. form: "anthro"
  50403. },
  50404. {
  50405. name: "Macro",
  50406. height: math.unit(250, "feet"),
  50407. form: "anthro",
  50408. default: true
  50409. },
  50410. {
  50411. name: "Regular",
  50412. height: math.unit(4, "feet"),
  50413. form: "feral"
  50414. },
  50415. {
  50416. name: "Macro",
  50417. height: math.unit(125, "feet"),
  50418. form: "feral",
  50419. default: true
  50420. },
  50421. ],
  50422. {
  50423. "anthro": {
  50424. name: "Anthro",
  50425. default: true
  50426. },
  50427. "feral": {
  50428. name: "Feral",
  50429. },
  50430. }
  50431. ))
  50432. characterMakers.push(() => makeCharacter(
  50433. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50434. {
  50435. front: {
  50436. height: math.unit(11 + 10/12, "feet"),
  50437. weight: math.unit(1587, "kg"),
  50438. name: "Front",
  50439. image: {
  50440. source: "./media/characters/maple-javira-dragon/front.svg",
  50441. extra: 1136/744,
  50442. bottom: 73/1209
  50443. }
  50444. },
  50445. side: {
  50446. height: math.unit(11 + 10/12, "feet"),
  50447. weight: math.unit(1587, "kg"),
  50448. name: "Side",
  50449. image: {
  50450. source: "./media/characters/maple-javira-dragon/side.svg",
  50451. extra: 712/505,
  50452. bottom: 17/729
  50453. }
  50454. },
  50455. head: {
  50456. height: math.unit(8.05, "feet"),
  50457. name: "Head",
  50458. image: {
  50459. source: "./media/characters/maple-javira-dragon/head.svg",
  50460. extra: 1420/1344,
  50461. bottom: 0/1420
  50462. }
  50463. },
  50464. },
  50465. [
  50466. {
  50467. name: "Normal",
  50468. height: math.unit(11 + 10/12, "feet"),
  50469. default: true
  50470. },
  50471. ]
  50472. ))
  50473. characterMakers.push(() => makeCharacter(
  50474. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50475. {
  50476. front: {
  50477. height: math.unit(117, "cm"),
  50478. weight: math.unit(50, "kg"),
  50479. name: "Front",
  50480. image: {
  50481. source: "./media/characters/sonia-wyverntail/front.svg",
  50482. extra: 708/592,
  50483. bottom: 25/733
  50484. }
  50485. },
  50486. },
  50487. [
  50488. {
  50489. name: "Normal",
  50490. height: math.unit(117, "cm"),
  50491. default: true
  50492. },
  50493. ]
  50494. ))
  50495. characterMakers.push(() => makeCharacter(
  50496. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50497. {
  50498. front: {
  50499. height: math.unit(6 + 5/12, "feet"),
  50500. name: "Front",
  50501. image: {
  50502. source: "./media/characters/micah/front.svg",
  50503. extra: 1758/1546,
  50504. bottom: 214/1972
  50505. }
  50506. },
  50507. },
  50508. [
  50509. {
  50510. name: "Normal",
  50511. height: math.unit(6 + 5/12, "feet"),
  50512. default: true
  50513. },
  50514. ]
  50515. ))
  50516. characterMakers.push(() => makeCharacter(
  50517. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50518. {
  50519. front: {
  50520. height: math.unit(5 + 10/12, "feet"),
  50521. weight: math.unit(220, "lb"),
  50522. name: "Front",
  50523. image: {
  50524. source: "./media/characters/zarya/front.svg",
  50525. extra: 593/572,
  50526. bottom: 50/643
  50527. }
  50528. },
  50529. back: {
  50530. height: math.unit(5 + 10/12, "feet"),
  50531. weight: math.unit(220, "lb"),
  50532. name: "Back",
  50533. image: {
  50534. source: "./media/characters/zarya/back.svg",
  50535. extra: 603/582,
  50536. bottom: 38/641
  50537. }
  50538. },
  50539. },
  50540. [
  50541. {
  50542. name: "Normal",
  50543. height: math.unit(5 + 10/12, "feet"),
  50544. default: true
  50545. },
  50546. ]
  50547. ))
  50548. characterMakers.push(() => makeCharacter(
  50549. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50550. {
  50551. front: {
  50552. height: math.unit(7.5, "feet"),
  50553. name: "Front",
  50554. image: {
  50555. source: "./media/characters/sven-hatisson/front.svg",
  50556. extra: 917/857,
  50557. bottom: 42/959
  50558. }
  50559. },
  50560. back: {
  50561. height: math.unit(7.5, "feet"),
  50562. name: "Back",
  50563. image: {
  50564. source: "./media/characters/sven-hatisson/back.svg",
  50565. extra: 903/856,
  50566. bottom: 15/918
  50567. }
  50568. },
  50569. },
  50570. [
  50571. {
  50572. name: "Base Height",
  50573. height: math.unit(7.5, "feet")
  50574. },
  50575. {
  50576. name: "Usual Height",
  50577. height: math.unit(13.5, "feet"),
  50578. default: true
  50579. },
  50580. {
  50581. name: "Smaller Macro",
  50582. height: math.unit(85, "feet")
  50583. },
  50584. {
  50585. name: "Moderate Macro",
  50586. height: math.unit(320, "feet")
  50587. },
  50588. {
  50589. name: "Large Macro",
  50590. height: math.unit(1000, "feet")
  50591. },
  50592. {
  50593. name: "Largest Size",
  50594. height: math.unit(2, "miles")
  50595. },
  50596. ]
  50597. ))
  50598. characterMakers.push(() => makeCharacter(
  50599. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50600. {
  50601. side: {
  50602. height: math.unit(1.8, "meters"),
  50603. weight: math.unit(275, "kg"),
  50604. name: "Side",
  50605. image: {
  50606. source: "./media/characters/terra/side.svg",
  50607. extra: 1273/1147,
  50608. bottom: 0/1273
  50609. }
  50610. },
  50611. },
  50612. [
  50613. {
  50614. name: "Normal",
  50615. height: math.unit(16.2, "meters"),
  50616. default: true
  50617. },
  50618. ]
  50619. ))
  50620. characterMakers.push(() => makeCharacter(
  50621. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50622. {
  50623. borzoiFront: {
  50624. height: math.unit(6 + 9/12, "feet"),
  50625. name: "Front",
  50626. image: {
  50627. source: "./media/characters/rae/borzoi-front.svg",
  50628. extra: 1161/1098,
  50629. bottom: 31/1192
  50630. },
  50631. form: "borzoi",
  50632. default: true
  50633. },
  50634. werewolfFront: {
  50635. height: math.unit(8 + 7/12, "feet"),
  50636. name: "Front",
  50637. image: {
  50638. source: "./media/characters/rae/werewolf-front.svg",
  50639. extra: 1411/1334,
  50640. bottom: 127/1538
  50641. },
  50642. form: "werewolf",
  50643. default: true
  50644. },
  50645. },
  50646. [
  50647. {
  50648. name: "Normal",
  50649. height: math.unit(6 + 9/12, "feet"),
  50650. default: true,
  50651. form: "borzoi"
  50652. },
  50653. {
  50654. name: "Normal",
  50655. height: math.unit(8 + 7/12, "feet"),
  50656. default: true,
  50657. form: "werewolf"
  50658. },
  50659. ],
  50660. {
  50661. "borzoi": {
  50662. name: "Borzoi",
  50663. default: true
  50664. },
  50665. "werewolf": {
  50666. name: "Werewolf",
  50667. },
  50668. }
  50669. ))
  50670. characterMakers.push(() => makeCharacter(
  50671. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50672. {
  50673. front: {
  50674. height: math.unit(8 + 7/12, "feet"),
  50675. weight: math.unit(482, "lb"),
  50676. name: "Front",
  50677. image: {
  50678. source: "./media/characters/kit/front.svg",
  50679. extra: 1247/1103,
  50680. bottom: 41/1288
  50681. }
  50682. },
  50683. back: {
  50684. height: math.unit(8 + 7/12, "feet"),
  50685. weight: math.unit(482, "lb"),
  50686. name: "Back",
  50687. image: {
  50688. source: "./media/characters/kit/back.svg",
  50689. extra: 1252/1123,
  50690. bottom: 21/1273
  50691. }
  50692. },
  50693. paw: {
  50694. height: math.unit(1.46, "feet"),
  50695. name: "Paw",
  50696. image: {
  50697. source: "./media/characters/kit/paw.svg"
  50698. }
  50699. },
  50700. },
  50701. [
  50702. {
  50703. name: "Normal",
  50704. height: math.unit(2.61, "meters"),
  50705. default: true
  50706. },
  50707. {
  50708. name: "\"Tall\"",
  50709. height: math.unit(8.21, "meters")
  50710. },
  50711. {
  50712. name: "Tall",
  50713. height: math.unit(19.6, "meters")
  50714. },
  50715. {
  50716. name: "Very Tall",
  50717. height: math.unit(57.91, "meters")
  50718. },
  50719. {
  50720. name: "Semi-Macro",
  50721. height: math.unit(138.64, "meters")
  50722. },
  50723. {
  50724. name: "Macro",
  50725. height: math.unit(831.99, "meters")
  50726. },
  50727. {
  50728. name: "EX-Macro",
  50729. height: math.unit(96451121, "meters")
  50730. },
  50731. {
  50732. name: "S1-Omnipotent",
  50733. height: math.unit(4.42074e+9, "meters")
  50734. },
  50735. {
  50736. name: "S2-Omnipotent",
  50737. height: math.unit(9.42074e+17, "meters")
  50738. },
  50739. {
  50740. name: "Omnipotent",
  50741. height: math.unit(4.23112e+24, "meters")
  50742. },
  50743. {
  50744. name: "Hypergod",
  50745. height: math.unit(5.05176e+27, "meters")
  50746. },
  50747. {
  50748. name: "Hypergod-EX",
  50749. height: math.unit(9.45532e+49, "meters")
  50750. },
  50751. {
  50752. name: "Hypergod-SP",
  50753. height: math.unit(9.45532e+195, "meters")
  50754. },
  50755. ]
  50756. ))
  50757. characterMakers.push(() => makeCharacter(
  50758. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50759. {
  50760. side: {
  50761. height: math.unit(0.6, "meters"),
  50762. weight: math.unit(24, "kg"),
  50763. name: "Side",
  50764. image: {
  50765. source: "./media/characters/celeste/side.svg",
  50766. extra: 810/517,
  50767. bottom: 53/863
  50768. }
  50769. },
  50770. },
  50771. [
  50772. {
  50773. name: "Velociraptor",
  50774. height: math.unit(0.6, "meters"),
  50775. default: true
  50776. },
  50777. {
  50778. name: "Utahraptor",
  50779. height: math.unit(1.8, "meters")
  50780. },
  50781. {
  50782. name: "Gallimimus",
  50783. height: math.unit(4.0, "meters")
  50784. },
  50785. {
  50786. name: "Large",
  50787. height: math.unit(20, "meters")
  50788. },
  50789. {
  50790. name: "Planetary",
  50791. height: math.unit(50, "megameters")
  50792. },
  50793. {
  50794. name: "Stellar",
  50795. height: math.unit(1.5, "gigameters")
  50796. },
  50797. {
  50798. name: "Galactic",
  50799. height: math.unit(100, "exameters")
  50800. },
  50801. ]
  50802. ))
  50803. characterMakers.push(() => makeCharacter(
  50804. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50805. {
  50806. front: {
  50807. height: math.unit(6, "feet"),
  50808. weight: math.unit(210, "lb"),
  50809. name: "Front",
  50810. image: {
  50811. source: "./media/characters/glacia/front.svg",
  50812. extra: 958/901,
  50813. bottom: 45/1003
  50814. }
  50815. },
  50816. },
  50817. [
  50818. {
  50819. name: "Macro",
  50820. height: math.unit(1000, "meters"),
  50821. default: true
  50822. },
  50823. ]
  50824. ))
  50825. characterMakers.push(() => makeCharacter(
  50826. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50827. {
  50828. front: {
  50829. height: math.unit(4, "meters"),
  50830. name: "Front",
  50831. image: {
  50832. source: "./media/characters/giri/front.svg",
  50833. extra: 966/894,
  50834. bottom: 21/987
  50835. }
  50836. },
  50837. },
  50838. [
  50839. {
  50840. name: "Normal",
  50841. height: math.unit(4, "meters"),
  50842. default: true
  50843. },
  50844. ]
  50845. ))
  50846. characterMakers.push(() => makeCharacter(
  50847. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50848. {
  50849. back: {
  50850. height: math.unit(4, "feet"),
  50851. weight: math.unit(37, "lb"),
  50852. name: "Back",
  50853. image: {
  50854. source: "./media/characters/tin/back.svg",
  50855. extra: 845/780,
  50856. bottom: 28/873
  50857. }
  50858. },
  50859. },
  50860. [
  50861. {
  50862. name: "Normal",
  50863. height: math.unit(4, "feet"),
  50864. default: true
  50865. },
  50866. ]
  50867. ))
  50868. characterMakers.push(() => makeCharacter(
  50869. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50870. {
  50871. front: {
  50872. height: math.unit(25, "feet"),
  50873. name: "Front",
  50874. image: {
  50875. source: "./media/characters/cadenza-vivace/front.svg",
  50876. extra: 1842/1578,
  50877. bottom: 30/1872
  50878. }
  50879. },
  50880. },
  50881. [
  50882. {
  50883. name: "Macro",
  50884. height: math.unit(25, "feet"),
  50885. default: true
  50886. },
  50887. ]
  50888. ))
  50889. characterMakers.push(() => makeCharacter(
  50890. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50891. {
  50892. front: {
  50893. height: math.unit(10, "feet"),
  50894. weight: math.unit(625, "kg"),
  50895. name: "Front",
  50896. image: {
  50897. source: "./media/characters/zain/front.svg",
  50898. extra: 1682/1498,
  50899. bottom: 223/1905
  50900. }
  50901. },
  50902. back: {
  50903. height: math.unit(10, "feet"),
  50904. weight: math.unit(625, "kg"),
  50905. name: "Back",
  50906. image: {
  50907. source: "./media/characters/zain/back.svg",
  50908. extra: 1814/1657,
  50909. bottom: 152/1966
  50910. }
  50911. },
  50912. head: {
  50913. height: math.unit(10, "feet"),
  50914. weight: math.unit(625, "kg"),
  50915. name: "Head",
  50916. image: {
  50917. source: "./media/characters/zain/head.svg",
  50918. extra: 1059/762,
  50919. bottom: 0/1059
  50920. }
  50921. },
  50922. },
  50923. [
  50924. {
  50925. name: "Normal",
  50926. height: math.unit(10, "feet"),
  50927. default: true
  50928. },
  50929. ]
  50930. ))
  50931. characterMakers.push(() => makeCharacter(
  50932. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50933. {
  50934. front: {
  50935. height: math.unit(6 + 5/12, "feet"),
  50936. weight: math.unit(750, "lb"),
  50937. name: "Front",
  50938. image: {
  50939. source: "./media/characters/ruchex/front.svg",
  50940. extra: 877/820,
  50941. bottom: 17/894
  50942. },
  50943. extraAttributes: {
  50944. "width": {
  50945. name: "Width",
  50946. power: 1,
  50947. type: "length",
  50948. base: math.unit(4.757, "feet")
  50949. },
  50950. }
  50951. },
  50952. },
  50953. [
  50954. {
  50955. name: "Normal",
  50956. height: math.unit(6 + 5/12, "feet"),
  50957. default: true
  50958. },
  50959. ]
  50960. ))
  50961. characterMakers.push(() => makeCharacter(
  50962. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50963. {
  50964. dressedFront: {
  50965. height: math.unit(191, "cm"),
  50966. weight: math.unit(80, "kg"),
  50967. name: "Front",
  50968. image: {
  50969. source: "./media/characters/buster/dressed-front.svg",
  50970. extra: 1022/973,
  50971. bottom: 69/1091
  50972. }
  50973. },
  50974. dressedBack: {
  50975. height: math.unit(191, "cm"),
  50976. weight: math.unit(80, "kg"),
  50977. name: "Back",
  50978. image: {
  50979. source: "./media/characters/buster/dressed-back.svg",
  50980. extra: 1018/970,
  50981. bottom: 55/1073
  50982. }
  50983. },
  50984. nudeFront: {
  50985. height: math.unit(191, "cm"),
  50986. weight: math.unit(80, "kg"),
  50987. name: "Front (Nude)",
  50988. image: {
  50989. source: "./media/characters/buster/nude-front.svg",
  50990. extra: 1022/973,
  50991. bottom: 69/1091
  50992. }
  50993. },
  50994. nudeBack: {
  50995. height: math.unit(191, "cm"),
  50996. weight: math.unit(80, "kg"),
  50997. name: "Back (Nude)",
  50998. image: {
  50999. source: "./media/characters/buster/nude-back.svg",
  51000. extra: 1018/970,
  51001. bottom: 55/1073
  51002. }
  51003. },
  51004. dick: {
  51005. height: math.unit(2.59, "feet"),
  51006. name: "Dick",
  51007. image: {
  51008. source: "./media/characters/buster/dick.svg"
  51009. }
  51010. },
  51011. ass: {
  51012. height: math.unit(1.2, "feet"),
  51013. name: "Ass",
  51014. image: {
  51015. source: "./media/characters/buster/ass.svg"
  51016. }
  51017. },
  51018. },
  51019. [
  51020. {
  51021. name: "Normal",
  51022. height: math.unit(191, "cm"),
  51023. default: true
  51024. },
  51025. ]
  51026. ))
  51027. characterMakers.push(() => makeCharacter(
  51028. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51029. {
  51030. side: {
  51031. height: math.unit(8.1, "feet"),
  51032. weight: math.unit(3500, "lb"),
  51033. name: "Side",
  51034. image: {
  51035. source: "./media/characters/sonya/side.svg",
  51036. extra: 1730/1317,
  51037. bottom: 86/1816
  51038. }
  51039. },
  51040. },
  51041. [
  51042. {
  51043. name: "Normal",
  51044. height: math.unit(8.1, "feet"),
  51045. default: true
  51046. },
  51047. ]
  51048. ))
  51049. characterMakers.push(() => makeCharacter(
  51050. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51051. {
  51052. front: {
  51053. height: math.unit(6, "feet"),
  51054. weight: math.unit(150, "lb"),
  51055. name: "Front",
  51056. image: {
  51057. source: "./media/characters/cadence-andrysiak/front.svg",
  51058. extra: 1164/1121,
  51059. bottom: 60/1224
  51060. }
  51061. },
  51062. back: {
  51063. height: math.unit(6, "feet"),
  51064. weight: math.unit(150, "lb"),
  51065. name: "Back",
  51066. image: {
  51067. source: "./media/characters/cadence-andrysiak/back.svg",
  51068. extra: 1200/1165,
  51069. bottom: 9/1209
  51070. }
  51071. },
  51072. dressed: {
  51073. height: math.unit(6, "feet"),
  51074. weight: math.unit(150, "lb"),
  51075. name: "Dressed",
  51076. image: {
  51077. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51078. extra: 1164/1121,
  51079. bottom: 60/1224
  51080. }
  51081. },
  51082. },
  51083. [
  51084. {
  51085. name: "Micro",
  51086. height: math.unit(1, "mm")
  51087. },
  51088. {
  51089. name: "Normal",
  51090. height: math.unit(6, "feet"),
  51091. default: true
  51092. },
  51093. ]
  51094. ))
  51095. characterMakers.push(() => makeCharacter(
  51096. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51097. {
  51098. front: {
  51099. height: math.unit(60, "inches"),
  51100. weight: math.unit(16, "lb"),
  51101. preyCapacity: math.unit(80, "liters"),
  51102. name: "Front",
  51103. image: {
  51104. source: "./media/characters/penny-lynx/front.svg",
  51105. extra: 1959/1769,
  51106. bottom: 49/2008
  51107. }
  51108. },
  51109. },
  51110. [
  51111. {
  51112. name: "Nokia",
  51113. height: math.unit(2, "inches")
  51114. },
  51115. {
  51116. name: "Desktop",
  51117. height: math.unit(24, "inches")
  51118. },
  51119. {
  51120. name: "TV",
  51121. height: math.unit(60, "inches")
  51122. },
  51123. {
  51124. name: "Jumbotron",
  51125. height: math.unit(12, "feet")
  51126. },
  51127. {
  51128. name: "Billboard",
  51129. height: math.unit(48, "feet"),
  51130. default: true
  51131. },
  51132. {
  51133. name: "IMAX",
  51134. height: math.unit(96, "feet")
  51135. },
  51136. {
  51137. name: "SINGULARITY",
  51138. height: math.unit(864938, "miles")
  51139. },
  51140. ]
  51141. ))
  51142. characterMakers.push(() => makeCharacter(
  51143. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51144. {
  51145. front: {
  51146. height: math.unit(5 + 4/12, "feet"),
  51147. weight: math.unit(230, "lb"),
  51148. name: "Front",
  51149. image: {
  51150. source: "./media/characters/sukebe/front.svg",
  51151. extra: 2130/2038,
  51152. bottom: 90/2220
  51153. }
  51154. },
  51155. back: {
  51156. height: math.unit(3.48, "feet"),
  51157. weight: math.unit(230, "lb"),
  51158. name: "Back",
  51159. image: {
  51160. source: "./media/characters/sukebe/back.svg",
  51161. extra: 1670/1604,
  51162. bottom: 0/1670
  51163. }
  51164. },
  51165. },
  51166. [
  51167. {
  51168. name: "Normal",
  51169. height: math.unit(5 + 4/12, "feet"),
  51170. default: true
  51171. },
  51172. ]
  51173. ))
  51174. characterMakers.push(() => makeCharacter(
  51175. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51176. {
  51177. front: {
  51178. height: math.unit(6, "feet"),
  51179. name: "Front",
  51180. image: {
  51181. source: "./media/characters/nylla/front.svg",
  51182. extra: 1868/1699,
  51183. bottom: 97/1965
  51184. }
  51185. },
  51186. back: {
  51187. height: math.unit(6, "feet"),
  51188. name: "Back",
  51189. image: {
  51190. source: "./media/characters/nylla/back.svg",
  51191. extra: 1889/1712,
  51192. bottom: 93/1982
  51193. }
  51194. },
  51195. frontNsfw: {
  51196. height: math.unit(6, "feet"),
  51197. name: "Front (NSFW)",
  51198. image: {
  51199. source: "./media/characters/nylla/front-nsfw.svg",
  51200. extra: 1868/1699,
  51201. bottom: 97/1965
  51202. },
  51203. extraAttributes: {
  51204. "dickLength": {
  51205. name: "Dick Length",
  51206. power: 1,
  51207. type: "length",
  51208. base: math.unit(1.4, "feet")
  51209. },
  51210. "cumVolume": {
  51211. name: "Cum Volume",
  51212. power: 3,
  51213. type: "volume",
  51214. base: math.unit(100, "mL")
  51215. },
  51216. }
  51217. },
  51218. backNsfw: {
  51219. height: math.unit(6, "feet"),
  51220. name: "Back (NSFW)",
  51221. image: {
  51222. source: "./media/characters/nylla/back-nsfw.svg",
  51223. extra: 1889/1712,
  51224. bottom: 93/1982
  51225. }
  51226. },
  51227. maw: {
  51228. height: math.unit(2.10, "feet"),
  51229. name: "Maw",
  51230. image: {
  51231. source: "./media/characters/nylla/maw.svg"
  51232. }
  51233. },
  51234. paws: {
  51235. height: math.unit(2.06, "feet"),
  51236. name: "Paws",
  51237. image: {
  51238. source: "./media/characters/nylla/paws.svg"
  51239. }
  51240. },
  51241. muzzle: {
  51242. height: math.unit(0.61, "feet"),
  51243. name: "Muzzle",
  51244. image: {
  51245. source: "./media/characters/nylla/muzzle.svg"
  51246. }
  51247. },
  51248. sheath: {
  51249. height: math.unit(1.305, "feet"),
  51250. name: "Sheath",
  51251. image: {
  51252. source: "./media/characters/nylla/sheath.svg"
  51253. }
  51254. },
  51255. },
  51256. [
  51257. {
  51258. name: "Micro",
  51259. height: math.unit(7.5, "inches")
  51260. },
  51261. {
  51262. name: "Normal",
  51263. height: math.unit(7, "feet"),
  51264. default: true
  51265. },
  51266. {
  51267. name: "Macro",
  51268. height: math.unit(60, "feet")
  51269. },
  51270. {
  51271. name: "Mega",
  51272. height: math.unit(200, "feet")
  51273. },
  51274. ]
  51275. ))
  51276. characterMakers.push(() => makeCharacter(
  51277. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51278. {
  51279. front: {
  51280. height: math.unit(10, "feet"),
  51281. weight: math.unit(2300, "lb"),
  51282. name: "Front",
  51283. image: {
  51284. source: "./media/characters/hunt3r/front.svg",
  51285. extra: 1909/1742,
  51286. bottom: 46/1955
  51287. }
  51288. },
  51289. },
  51290. [
  51291. {
  51292. name: "Normal",
  51293. height: math.unit(10, "feet"),
  51294. default: true
  51295. },
  51296. ]
  51297. ))
  51298. characterMakers.push(() => makeCharacter(
  51299. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51300. {
  51301. dressed: {
  51302. height: math.unit(11, "feet"),
  51303. weight: math.unit(18500, "lb"),
  51304. preyCapacity: math.unit(9, "people"),
  51305. name: "Dressed",
  51306. image: {
  51307. source: "./media/characters/cylphis/dressed.svg",
  51308. extra: 1028/1003,
  51309. bottom: 75/1103
  51310. },
  51311. },
  51312. undressed: {
  51313. height: math.unit(11, "feet"),
  51314. weight: math.unit(18500, "lb"),
  51315. preyCapacity: math.unit(9, "people"),
  51316. name: "Undressed",
  51317. image: {
  51318. source: "./media/characters/cylphis/undressed.svg",
  51319. extra: 1028/1003,
  51320. bottom: 75/1103
  51321. }
  51322. },
  51323. full: {
  51324. height: math.unit(11, "feet"),
  51325. weight: math.unit(18500 + 150*9, "lb"),
  51326. preyCapacity: math.unit(9, "people"),
  51327. name: "Full",
  51328. image: {
  51329. source: "./media/characters/cylphis/full.svg",
  51330. extra: 1028/1003,
  51331. bottom: 75/1103
  51332. }
  51333. },
  51334. },
  51335. [
  51336. {
  51337. name: "Small",
  51338. height: math.unit(8, "feet")
  51339. },
  51340. {
  51341. name: "Normal",
  51342. height: math.unit(11, "feet"),
  51343. default: true
  51344. },
  51345. ]
  51346. ))
  51347. characterMakers.push(() => makeCharacter(
  51348. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51349. {
  51350. front: {
  51351. height: math.unit(2 + 7/12, "feet"),
  51352. name: "Front",
  51353. image: {
  51354. source: "./media/characters/orishan/front.svg",
  51355. extra: 1058/1023,
  51356. bottom: 23/1081
  51357. }
  51358. },
  51359. back: {
  51360. height: math.unit(2 + 7/12, "feet"),
  51361. name: "Back",
  51362. image: {
  51363. source: "./media/characters/orishan/back.svg",
  51364. extra: 1058/1023,
  51365. bottom: 23/1081
  51366. }
  51367. },
  51368. },
  51369. [
  51370. {
  51371. name: "Micro",
  51372. height: math.unit(2, "cm")
  51373. },
  51374. {
  51375. name: "Normal",
  51376. height: math.unit(2 + 7/12, "feet"),
  51377. default: true
  51378. },
  51379. ]
  51380. ))
  51381. characterMakers.push(() => makeCharacter(
  51382. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51383. {
  51384. front: {
  51385. height: math.unit(3, "meters"),
  51386. weight: math.unit(508, "kg"),
  51387. name: "Front",
  51388. image: {
  51389. source: "./media/characters/seranis/front.svg",
  51390. extra: 1478/1454,
  51391. bottom: 41/1519
  51392. }
  51393. },
  51394. },
  51395. [
  51396. {
  51397. name: "Normal",
  51398. height: math.unit(3, "meters"),
  51399. default: true
  51400. },
  51401. {
  51402. name: "Macro",
  51403. height: math.unit(108, "meters")
  51404. },
  51405. {
  51406. name: "Megamacro",
  51407. height: math.unit(1250, "meters")
  51408. },
  51409. ]
  51410. ))
  51411. characterMakers.push(() => makeCharacter(
  51412. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51413. {
  51414. undressed: {
  51415. height: math.unit(5 + 3/12, "feet"),
  51416. name: "Undressed",
  51417. image: {
  51418. source: "./media/characters/ankou/undressed.svg",
  51419. extra: 1301/1213,
  51420. bottom: 87/1388
  51421. }
  51422. },
  51423. dressed: {
  51424. height: math.unit(5 + 3/12, "feet"),
  51425. name: "Dressed",
  51426. image: {
  51427. source: "./media/characters/ankou/dressed.svg",
  51428. extra: 1301/1213,
  51429. bottom: 87/1388
  51430. }
  51431. },
  51432. head: {
  51433. height: math.unit(1.61, "feet"),
  51434. name: "Head",
  51435. image: {
  51436. source: "./media/characters/ankou/head.svg"
  51437. }
  51438. },
  51439. },
  51440. [
  51441. {
  51442. name: "Normal",
  51443. height: math.unit(5 + 3/12, "feet"),
  51444. default: true
  51445. },
  51446. ]
  51447. ))
  51448. characterMakers.push(() => makeCharacter(
  51449. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51450. {
  51451. side: {
  51452. height: math.unit(6 + 3/12, "feet"),
  51453. weight: math.unit(200, "kg"),
  51454. name: "Side",
  51455. image: {
  51456. source: "./media/characters/juniper-skunktaur/side.svg",
  51457. extra: 1574/1229,
  51458. bottom: 38/1612
  51459. }
  51460. },
  51461. front: {
  51462. height: math.unit(6 + 3/12, "feet"),
  51463. weight: math.unit(200, "kg"),
  51464. name: "Front",
  51465. image: {
  51466. source: "./media/characters/juniper-skunktaur/front.svg",
  51467. extra: 1337/1278,
  51468. bottom: 22/1359
  51469. }
  51470. },
  51471. back: {
  51472. height: math.unit(6 + 3/12, "feet"),
  51473. weight: math.unit(200, "kg"),
  51474. name: "Back",
  51475. image: {
  51476. source: "./media/characters/juniper-skunktaur/back.svg",
  51477. extra: 1618/1273,
  51478. bottom: 13/1631
  51479. }
  51480. },
  51481. top: {
  51482. height: math.unit(2.62, "feet"),
  51483. weight: math.unit(200, "kg"),
  51484. name: "Top",
  51485. image: {
  51486. source: "./media/characters/juniper-skunktaur/top.svg"
  51487. }
  51488. },
  51489. },
  51490. [
  51491. {
  51492. name: "Normal",
  51493. height: math.unit(6 + 3/12, "feet"),
  51494. default: true
  51495. },
  51496. ]
  51497. ))
  51498. characterMakers.push(() => makeCharacter(
  51499. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51500. {
  51501. front: {
  51502. height: math.unit(20.5, "feet"),
  51503. name: "Front",
  51504. image: {
  51505. source: "./media/characters/rei/front.svg",
  51506. extra: 1349/1195,
  51507. bottom: 31/1380
  51508. }
  51509. },
  51510. back: {
  51511. height: math.unit(20.5, "feet"),
  51512. name: "Back",
  51513. image: {
  51514. source: "./media/characters/rei/back.svg",
  51515. extra: 1358/1204,
  51516. bottom: 22/1380
  51517. }
  51518. },
  51519. pawsDigi: {
  51520. height: math.unit(3.45, "feet"),
  51521. name: "Paws (Digi)",
  51522. image: {
  51523. source: "./media/characters/rei/paws-digi.svg"
  51524. }
  51525. },
  51526. pawsPlanti: {
  51527. height: math.unit(3.45, "feet"),
  51528. name: "Paws (Planti)",
  51529. image: {
  51530. source: "./media/characters/rei/paws-planti.svg"
  51531. }
  51532. },
  51533. },
  51534. [
  51535. {
  51536. name: "Normal",
  51537. height: math.unit(20.5, "feet"),
  51538. default: true
  51539. },
  51540. ]
  51541. ))
  51542. characterMakers.push(() => makeCharacter(
  51543. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51544. {
  51545. front: {
  51546. height: math.unit(5 + 11/12, "feet"),
  51547. name: "Front",
  51548. image: {
  51549. source: "./media/characters/carina/front.svg",
  51550. extra: 1720/1449,
  51551. bottom: 14/1734
  51552. }
  51553. },
  51554. back: {
  51555. height: math.unit(5 + 11/12, "feet"),
  51556. name: "Back",
  51557. image: {
  51558. source: "./media/characters/carina/back.svg",
  51559. extra: 1493/1445,
  51560. bottom: 17/1510
  51561. }
  51562. },
  51563. paw: {
  51564. height: math.unit(0.92, "feet"),
  51565. name: "Paw",
  51566. image: {
  51567. source: "./media/characters/carina/paw.svg"
  51568. }
  51569. },
  51570. },
  51571. [
  51572. {
  51573. name: "Normal",
  51574. height: math.unit(5 + 11/12, "feet"),
  51575. default: true
  51576. },
  51577. ]
  51578. ))
  51579. characterMakers.push(() => makeCharacter(
  51580. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51581. {
  51582. front: {
  51583. height: math.unit(4.88, "meters"),
  51584. name: "Front",
  51585. image: {
  51586. source: "./media/characters/maya/front.svg",
  51587. extra: 1222/1145,
  51588. bottom: 57/1279
  51589. }
  51590. },
  51591. },
  51592. [
  51593. {
  51594. name: "Normal",
  51595. height: math.unit(4.88, "meters"),
  51596. default: true
  51597. },
  51598. {
  51599. name: "Macro",
  51600. height: math.unit(38.1, "meters")
  51601. },
  51602. {
  51603. name: "Macro+",
  51604. height: math.unit(152.4, "meters")
  51605. },
  51606. {
  51607. name: "Macro++",
  51608. height: math.unit(16.09, "km")
  51609. },
  51610. {
  51611. name: "Mega-macro",
  51612. height: math.unit(700, "megameters")
  51613. },
  51614. ]
  51615. ))
  51616. characterMakers.push(() => makeCharacter(
  51617. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51618. {
  51619. front: {
  51620. height: math.unit(6 + 2/12, "feet"),
  51621. weight: math.unit(500, "lb"),
  51622. preyCapacity: math.unit(4, "people"),
  51623. name: "Front",
  51624. image: {
  51625. source: "./media/characters/yepir/front.svg"
  51626. }
  51627. },
  51628. side: {
  51629. height: math.unit(6 + 2/12, "feet"),
  51630. weight: math.unit(500, "lb"),
  51631. preyCapacity: math.unit(4, "people"),
  51632. name: "Side",
  51633. image: {
  51634. source: "./media/characters/yepir/side.svg"
  51635. }
  51636. },
  51637. paw: {
  51638. height: math.unit(1.05, "feet"),
  51639. name: "Paw",
  51640. image: {
  51641. source: "./media/characters/yepir/paw.svg"
  51642. }
  51643. },
  51644. },
  51645. [
  51646. {
  51647. name: "Normal",
  51648. height: math.unit(6 + 2/12, "feet"),
  51649. default: true
  51650. },
  51651. ]
  51652. ))
  51653. characterMakers.push(() => makeCharacter(
  51654. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51655. {
  51656. front: {
  51657. height: math.unit(5 + 4/12, "feet"),
  51658. name: "Front",
  51659. image: {
  51660. source: "./media/characters/russec/front.svg",
  51661. extra: 1926/1626,
  51662. bottom: 72/1998
  51663. }
  51664. },
  51665. back: {
  51666. height: math.unit(5 + 4/12, "feet"),
  51667. name: "Back",
  51668. image: {
  51669. source: "./media/characters/russec/back.svg",
  51670. extra: 1910/1591,
  51671. bottom: 48/1958
  51672. }
  51673. },
  51674. },
  51675. [
  51676. {
  51677. name: "Small",
  51678. height: math.unit(5 + 4/12, "feet")
  51679. },
  51680. {
  51681. name: "Normal",
  51682. height: math.unit(72, "feet"),
  51683. default: true
  51684. },
  51685. ]
  51686. ))
  51687. characterMakers.push(() => makeCharacter(
  51688. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51689. {
  51690. side: {
  51691. height: math.unit(12, "feet"),
  51692. name: "Side",
  51693. image: {
  51694. source: "./media/characters/cianus/side.svg",
  51695. extra: 808/526,
  51696. bottom: 61/869
  51697. }
  51698. },
  51699. },
  51700. [
  51701. {
  51702. name: "Normal",
  51703. height: math.unit(12, "feet"),
  51704. default: true
  51705. },
  51706. ]
  51707. ))
  51708. characterMakers.push(() => makeCharacter(
  51709. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51710. {
  51711. front: {
  51712. height: math.unit(9 + 6/12, "feet"),
  51713. weight: math.unit(300, "lb"),
  51714. name: "Front",
  51715. image: {
  51716. source: "./media/characters/ahab/front.svg",
  51717. extra: 1897/1868,
  51718. bottom: 121/2018
  51719. }
  51720. },
  51721. frontNsfw: {
  51722. height: math.unit(9 + 6/12, "feet"),
  51723. weight: math.unit(300, "lb"),
  51724. name: "Front-nsfw",
  51725. image: {
  51726. source: "./media/characters/ahab/front-nsfw.svg",
  51727. extra: 1897/1868,
  51728. bottom: 121/2018
  51729. }
  51730. },
  51731. },
  51732. [
  51733. {
  51734. name: "Normal",
  51735. height: math.unit(9 + 6/12, "feet")
  51736. },
  51737. {
  51738. name: "Macro",
  51739. height: math.unit(657, "feet"),
  51740. default: true
  51741. },
  51742. ]
  51743. ))
  51744. characterMakers.push(() => makeCharacter(
  51745. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51746. {
  51747. front: {
  51748. height: math.unit(2.69, "meters"),
  51749. weight: math.unit(132, "kg"),
  51750. name: "Front",
  51751. image: {
  51752. source: "./media/characters/aarkus/front.svg",
  51753. extra: 1400/1231,
  51754. bottom: 34/1434
  51755. }
  51756. },
  51757. back: {
  51758. height: math.unit(2.69, "meters"),
  51759. weight: math.unit(132, "kg"),
  51760. name: "Back",
  51761. image: {
  51762. source: "./media/characters/aarkus/back.svg",
  51763. extra: 1381/1218,
  51764. bottom: 30/1411
  51765. }
  51766. },
  51767. frontNsfw: {
  51768. height: math.unit(2.69, "meters"),
  51769. weight: math.unit(132, "kg"),
  51770. name: "Front (NSFW)",
  51771. image: {
  51772. source: "./media/characters/aarkus/front-nsfw.svg",
  51773. extra: 1400/1231,
  51774. bottom: 34/1434
  51775. }
  51776. },
  51777. foot: {
  51778. height: math.unit(1.45, "feet"),
  51779. name: "Foot",
  51780. image: {
  51781. source: "./media/characters/aarkus/foot.svg"
  51782. }
  51783. },
  51784. head: {
  51785. height: math.unit(2.85, "feet"),
  51786. name: "Head",
  51787. image: {
  51788. source: "./media/characters/aarkus/head.svg"
  51789. }
  51790. },
  51791. headAlt: {
  51792. height: math.unit(3.07, "feet"),
  51793. name: "Head (Alt)",
  51794. image: {
  51795. source: "./media/characters/aarkus/head-alt.svg"
  51796. }
  51797. },
  51798. mouth: {
  51799. height: math.unit(1.25, "feet"),
  51800. name: "Mouth",
  51801. image: {
  51802. source: "./media/characters/aarkus/mouth.svg"
  51803. }
  51804. },
  51805. dick: {
  51806. height: math.unit(1.77, "feet"),
  51807. name: "Dick",
  51808. image: {
  51809. source: "./media/characters/aarkus/dick.svg"
  51810. }
  51811. },
  51812. },
  51813. [
  51814. {
  51815. name: "Normal",
  51816. height: math.unit(2.69, "meters"),
  51817. default: true
  51818. },
  51819. {
  51820. name: "Macro",
  51821. height: math.unit(269, "meters")
  51822. },
  51823. {
  51824. name: "Macro+",
  51825. height: math.unit(672.5, "meters")
  51826. },
  51827. {
  51828. name: "Megamacro",
  51829. height: math.unit(2.017, "meters")
  51830. },
  51831. ]
  51832. ))
  51833. characterMakers.push(() => makeCharacter(
  51834. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  51835. {
  51836. front: {
  51837. height: math.unit(23.47, "cm"),
  51838. weight: math.unit(600, "grams"),
  51839. name: "Front",
  51840. image: {
  51841. source: "./media/characters/diode/front.svg",
  51842. extra: 1778/1396,
  51843. bottom: 95/1873
  51844. }
  51845. },
  51846. side: {
  51847. height: math.unit(23.47, "cm"),
  51848. weight: math.unit(600, "grams"),
  51849. name: "Side",
  51850. image: {
  51851. source: "./media/characters/diode/side.svg",
  51852. extra: 1831/1404,
  51853. bottom: 86/1917
  51854. }
  51855. },
  51856. wings: {
  51857. height: math.unit(0.683, "feet"),
  51858. name: "Wings",
  51859. image: {
  51860. source: "./media/characters/diode/wings.svg"
  51861. }
  51862. },
  51863. },
  51864. [
  51865. {
  51866. name: "Normal",
  51867. height: math.unit(23.47, "cm"),
  51868. default: true
  51869. },
  51870. ]
  51871. ))
  51872. characterMakers.push(() => makeCharacter(
  51873. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  51874. {
  51875. front: {
  51876. height: math.unit(6 + 3/12, "feet"),
  51877. weight: math.unit(250, "lb"),
  51878. name: "Front",
  51879. image: {
  51880. source: "./media/characters/reika/front.svg",
  51881. extra: 1120/1078,
  51882. bottom: 86/1206
  51883. }
  51884. },
  51885. },
  51886. [
  51887. {
  51888. name: "Normal",
  51889. height: math.unit(6 + 3/12, "feet"),
  51890. default: true
  51891. },
  51892. ]
  51893. ))
  51894. //characters
  51895. function makeCharacters() {
  51896. const results = [];
  51897. characterMakers.forEach(character => {
  51898. results.push(character());
  51899. });
  51900. return results;
  51901. }