less copy protection, more size visualization
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

53845 lines
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. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. }
  2055. //species
  2056. function getSpeciesInfo(speciesList) {
  2057. let result = new Set();
  2058. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2059. result.add(entry)
  2060. });
  2061. return Array.from(result);
  2062. };
  2063. function getSpeciesInfoHelper(species) {
  2064. if (!speciesData[species]) {
  2065. console.warn(species + " doesn't exist");
  2066. return [];
  2067. }
  2068. if (speciesData[species].parents) {
  2069. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2070. } else {
  2071. return [species];
  2072. }
  2073. }
  2074. characterMakers.push(() => makeCharacter(
  2075. {
  2076. name: "Fen",
  2077. species: ["crux"],
  2078. description: {
  2079. title: "Bio",
  2080. text: "Very furry. Sheds on everything."
  2081. },
  2082. tags: [
  2083. "anthro",
  2084. "goo"
  2085. ]
  2086. },
  2087. {
  2088. front: {
  2089. height: math.unit(12, "feet"),
  2090. weight: math.unit(2400, "lb"),
  2091. name: "Front",
  2092. image: {
  2093. source: "./media/characters/fen/front.svg",
  2094. extra: 1804/1562,
  2095. bottom: 205/2009
  2096. },
  2097. extraAttributes: {
  2098. pawSize: {
  2099. name: "Paw Size",
  2100. power: 2,
  2101. type: "area",
  2102. base: math.unit(0.35, "m^2")
  2103. }
  2104. }
  2105. },
  2106. diving: {
  2107. height: math.unit(4.9, "meters"),
  2108. weight: math.unit(2400, "lb"),
  2109. name: "Diving",
  2110. image: {
  2111. source: "./media/characters/fen/diving.svg"
  2112. }
  2113. },
  2114. goo: {
  2115. height: math.unit(12, "feet"),
  2116. weight: math.unit(3600, "lb"),
  2117. volume: math.unit(1000, "liters"),
  2118. preyCapacity: math.unit(6, "people"),
  2119. name: "Goo",
  2120. image: {
  2121. source: "./media/characters/fen/goo.svg",
  2122. extra: 1307/1071,
  2123. bottom: 134/1441
  2124. }
  2125. },
  2126. gooNsfw: {
  2127. height: math.unit(12, "feet"),
  2128. weight: math.unit(3750, "lb"),
  2129. volume: math.unit(1000, "liters"),
  2130. preyCapacity: math.unit(6, "people"),
  2131. name: "Goo (NSFW)",
  2132. image: {
  2133. source: "./media/characters/fen/goo-nsfw.svg",
  2134. extra: 1875/1734,
  2135. bottom: 122/1997
  2136. }
  2137. },
  2138. maw: {
  2139. height: math.unit(5.03, "feet"),
  2140. name: "Maw",
  2141. image: {
  2142. source: "./media/characters/fen/maw.svg"
  2143. }
  2144. },
  2145. gooCeiling: {
  2146. height: math.unit(6.6, "feet"),
  2147. weight: math.unit(3000, "lb"),
  2148. volume: math.unit(1000, "liters"),
  2149. preyCapacity: math.unit(6, "people"),
  2150. name: "Goo (Ceiling)",
  2151. image: {
  2152. source: "./media/characters/fen/goo-ceiling.svg"
  2153. }
  2154. },
  2155. paw: {
  2156. height: math.unit(3.77, "feet"),
  2157. name: "Paw",
  2158. image: {
  2159. source: "./media/characters/fen/paw.svg"
  2160. },
  2161. extraAttributes: {
  2162. "toeSize": {
  2163. name: "Toe Size",
  2164. power: 2,
  2165. type: "area",
  2166. base: math.unit(0.02875, "m^2")
  2167. },
  2168. "pawSize": {
  2169. name: "Paw Size",
  2170. power: 2,
  2171. type: "area",
  2172. base: math.unit(0.378, "m^2")
  2173. },
  2174. }
  2175. },
  2176. tail: {
  2177. height: math.unit(12.1, "feet"),
  2178. name: "Tail",
  2179. image: {
  2180. source: "./media/characters/fen/tail.svg"
  2181. }
  2182. },
  2183. tailFull: {
  2184. height: math.unit(12.1, "feet"),
  2185. name: "Full Tail",
  2186. image: {
  2187. source: "./media/characters/fen/tail-full.svg"
  2188. }
  2189. },
  2190. back: {
  2191. height: math.unit(12, "feet"),
  2192. weight: math.unit(2400, "lb"),
  2193. name: "Back",
  2194. image: {
  2195. source: "./media/characters/fen/back.svg",
  2196. },
  2197. info: {
  2198. description: {
  2199. mode: "append",
  2200. text: "\n\nHe is not currently looking at you."
  2201. }
  2202. }
  2203. },
  2204. full: {
  2205. height: math.unit(1.85, "meter"),
  2206. weight: math.unit(3200, "lb"),
  2207. name: "Full",
  2208. image: {
  2209. source: "./media/characters/fen/full.svg",
  2210. extra: 1133/859,
  2211. bottom: 145/1278
  2212. },
  2213. info: {
  2214. description: {
  2215. mode: "append",
  2216. text: "\n\nMunch."
  2217. }
  2218. }
  2219. },
  2220. gooLounging: {
  2221. height: math.unit(4.53, "feet"),
  2222. weight: math.unit(3000, "lb"),
  2223. preyCapacity: math.unit(6, "people"),
  2224. name: "Goo (Lounging)",
  2225. image: {
  2226. source: "./media/characters/fen/goo-lounging.svg",
  2227. bottom: 116 / 613
  2228. }
  2229. },
  2230. lounging: {
  2231. height: math.unit(10.52, "feet"),
  2232. weight: math.unit(2400, "lb"),
  2233. name: "Lounging",
  2234. image: {
  2235. source: "./media/characters/fen/lounging.svg"
  2236. }
  2237. },
  2238. },
  2239. [
  2240. {
  2241. name: "Small",
  2242. height: math.unit(2.2428, "meter")
  2243. },
  2244. {
  2245. name: "Normal",
  2246. height: math.unit(12, "feet"),
  2247. default: true,
  2248. },
  2249. {
  2250. name: "Big",
  2251. height: math.unit(20, "feet")
  2252. },
  2253. {
  2254. name: "Minimacro",
  2255. height: math.unit(40, "feet"),
  2256. info: {
  2257. description: {
  2258. mode: "append",
  2259. text: "\n\nTOO DAMN BIG"
  2260. }
  2261. }
  2262. },
  2263. {
  2264. name: "Macro",
  2265. height: math.unit(100, "feet"),
  2266. info: {
  2267. description: {
  2268. mode: "append",
  2269. text: "\n\nTOO DAMN BIG"
  2270. }
  2271. }
  2272. },
  2273. {
  2274. name: "Megamacro",
  2275. height: math.unit(2, "miles")
  2276. },
  2277. {
  2278. name: "Gigamacro",
  2279. height: math.unit(10, "earths")
  2280. },
  2281. ]
  2282. ))
  2283. characterMakers.push(() => makeCharacter(
  2284. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2285. {
  2286. front: {
  2287. height: math.unit(183, "cm"),
  2288. weight: math.unit(80, "kg"),
  2289. name: "Front",
  2290. image: {
  2291. source: "./media/characters/sofia-fluttertail/front.svg",
  2292. bottom: 0.01,
  2293. extra: 2154 / 2081
  2294. }
  2295. },
  2296. frontAlt: {
  2297. height: math.unit(183, "cm"),
  2298. weight: math.unit(80, "kg"),
  2299. name: "Front (alt)",
  2300. image: {
  2301. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2302. }
  2303. },
  2304. back: {
  2305. height: math.unit(183, "cm"),
  2306. weight: math.unit(80, "kg"),
  2307. name: "Back",
  2308. image: {
  2309. source: "./media/characters/sofia-fluttertail/back.svg"
  2310. }
  2311. },
  2312. kneeling: {
  2313. height: math.unit(125, "cm"),
  2314. weight: math.unit(80, "kg"),
  2315. name: "Kneeling",
  2316. image: {
  2317. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2318. extra: 1033 / 977,
  2319. bottom: 23.7 / 1057
  2320. }
  2321. },
  2322. maw: {
  2323. height: math.unit(183 / 5, "cm"),
  2324. name: "Maw",
  2325. image: {
  2326. source: "./media/characters/sofia-fluttertail/maw.svg"
  2327. }
  2328. },
  2329. mawcloseup: {
  2330. height: math.unit(183 / 5 * 0.41, "cm"),
  2331. name: "Maw (Closeup)",
  2332. image: {
  2333. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2334. }
  2335. },
  2336. paws: {
  2337. height: math.unit(1.17, "feet"),
  2338. name: "Paws",
  2339. image: {
  2340. source: "./media/characters/sofia-fluttertail/paws.svg",
  2341. extra: 851 / 851,
  2342. bottom: 17 / 868
  2343. }
  2344. },
  2345. },
  2346. [
  2347. {
  2348. name: "Normal",
  2349. height: math.unit(1.83, "meter")
  2350. },
  2351. {
  2352. name: "Size Thief",
  2353. height: math.unit(18, "feet")
  2354. },
  2355. {
  2356. name: "50 Foot Collie",
  2357. height: math.unit(50, "feet")
  2358. },
  2359. {
  2360. name: "Macro",
  2361. height: math.unit(96, "feet"),
  2362. default: true
  2363. },
  2364. {
  2365. name: "Megamerger",
  2366. height: math.unit(650, "feet")
  2367. },
  2368. ]
  2369. ))
  2370. characterMakers.push(() => makeCharacter(
  2371. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2372. {
  2373. front: {
  2374. height: math.unit(7, "feet"),
  2375. weight: math.unit(100, "kg"),
  2376. name: "Front",
  2377. image: {
  2378. source: "./media/characters/march/front.svg",
  2379. extra: 1992/1851,
  2380. bottom: 39/2031
  2381. }
  2382. },
  2383. foot: {
  2384. height: math.unit(0.9, "feet"),
  2385. name: "Foot",
  2386. image: {
  2387. source: "./media/characters/march/foot.svg"
  2388. }
  2389. },
  2390. },
  2391. [
  2392. {
  2393. name: "Normal",
  2394. height: math.unit(7.9, "feet")
  2395. },
  2396. {
  2397. name: "Macro",
  2398. height: math.unit(220, "meters")
  2399. },
  2400. {
  2401. name: "Megamacro",
  2402. height: math.unit(2.98, "km"),
  2403. default: true
  2404. },
  2405. {
  2406. name: "Gigamacro",
  2407. height: math.unit(15963, "km")
  2408. },
  2409. {
  2410. name: "Teramacro",
  2411. height: math.unit(2980000000, "km")
  2412. },
  2413. {
  2414. name: "Examacro",
  2415. height: math.unit(250, "parsecs")
  2416. },
  2417. ]
  2418. ))
  2419. characterMakers.push(() => makeCharacter(
  2420. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2421. {
  2422. front: {
  2423. height: math.unit(6, "feet"),
  2424. weight: math.unit(60, "kg"),
  2425. name: "Front",
  2426. image: {
  2427. source: "./media/characters/noir/front.svg",
  2428. extra: 1,
  2429. bottom: 0.032
  2430. }
  2431. },
  2432. },
  2433. [
  2434. {
  2435. name: "Normal",
  2436. height: math.unit(6.6, "feet")
  2437. },
  2438. {
  2439. name: "Macro",
  2440. height: math.unit(500, "feet")
  2441. },
  2442. {
  2443. name: "Megamacro",
  2444. height: math.unit(2.5, "km"),
  2445. default: true
  2446. },
  2447. {
  2448. name: "Gigamacro",
  2449. height: math.unit(22500, "km")
  2450. },
  2451. {
  2452. name: "Teramacro",
  2453. height: math.unit(2500000000, "km")
  2454. },
  2455. {
  2456. name: "Examacro",
  2457. height: math.unit(200, "parsecs")
  2458. },
  2459. ]
  2460. ))
  2461. characterMakers.push(() => makeCharacter(
  2462. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2463. {
  2464. front: {
  2465. height: math.unit(7, "feet"),
  2466. weight: math.unit(100, "kg"),
  2467. name: "Front",
  2468. image: {
  2469. source: "./media/characters/okuri/front.svg",
  2470. extra: 739/665,
  2471. bottom: 39/778
  2472. }
  2473. },
  2474. back: {
  2475. height: math.unit(7, "feet"),
  2476. weight: math.unit(100, "kg"),
  2477. name: "Back",
  2478. image: {
  2479. source: "./media/characters/okuri/back.svg",
  2480. extra: 734/653,
  2481. bottom: 13/747
  2482. }
  2483. },
  2484. sitting: {
  2485. height: math.unit(2.95, "feet"),
  2486. weight: math.unit(100, "kg"),
  2487. name: "Sitting",
  2488. image: {
  2489. source: "./media/characters/okuri/sitting.svg",
  2490. extra: 370/318,
  2491. bottom: 99/469
  2492. }
  2493. },
  2494. },
  2495. [
  2496. {
  2497. name: "Smallest",
  2498. height: math.unit(5 + 2/12, "feet")
  2499. },
  2500. {
  2501. name: "Smaller",
  2502. height: math.unit(300, "feet")
  2503. },
  2504. {
  2505. name: "Small",
  2506. height: math.unit(1000, "feet")
  2507. },
  2508. {
  2509. name: "Macro",
  2510. height: math.unit(1, "mile")
  2511. },
  2512. {
  2513. name: "Mega Macro (Small)",
  2514. height: math.unit(20, "km")
  2515. },
  2516. {
  2517. name: "Mega Macro (Large)",
  2518. height: math.unit(600, "km")
  2519. },
  2520. {
  2521. name: "Giga Macro",
  2522. height: math.unit(10000, "km")
  2523. },
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(577560, "km"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Large",
  2531. height: math.unit(4, "galaxies")
  2532. },
  2533. {
  2534. name: "Largest",
  2535. height: math.unit(15, "multiverses")
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(7, "feet"),
  2544. weight: math.unit(100, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/manny/front.svg",
  2548. extra: 1,
  2549. bottom: 0.06
  2550. }
  2551. },
  2552. back: {
  2553. height: math.unit(7, "feet"),
  2554. weight: math.unit(100, "kg"),
  2555. name: "Back",
  2556. image: {
  2557. source: "./media/characters/manny/back.svg",
  2558. extra: 1,
  2559. bottom: 0.014
  2560. }
  2561. },
  2562. },
  2563. [
  2564. {
  2565. name: "Normal",
  2566. height: math.unit(7, "feet"),
  2567. },
  2568. {
  2569. name: "Macro",
  2570. height: math.unit(78, "feet"),
  2571. default: true
  2572. },
  2573. {
  2574. name: "Macro+",
  2575. height: math.unit(300, "meters")
  2576. },
  2577. {
  2578. name: "Macro++",
  2579. height: math.unit(2400, "meters")
  2580. },
  2581. {
  2582. name: "Megamacro",
  2583. height: math.unit(5167, "meters")
  2584. },
  2585. {
  2586. name: "Gigamacro",
  2587. height: math.unit(41769, "miles")
  2588. },
  2589. ]
  2590. ))
  2591. characterMakers.push(() => makeCharacter(
  2592. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2593. {
  2594. front: {
  2595. height: math.unit(7, "feet"),
  2596. weight: math.unit(100, "kg"),
  2597. name: "Front",
  2598. image: {
  2599. source: "./media/characters/adake/front-1.svg"
  2600. }
  2601. },
  2602. frontAlt: {
  2603. height: math.unit(7, "feet"),
  2604. weight: math.unit(100, "kg"),
  2605. name: "Front (Alt)",
  2606. image: {
  2607. source: "./media/characters/adake/front-2.svg",
  2608. extra: 1,
  2609. bottom: 0.01
  2610. }
  2611. },
  2612. back: {
  2613. height: math.unit(7, "feet"),
  2614. weight: math.unit(100, "kg"),
  2615. name: "Back",
  2616. image: {
  2617. source: "./media/characters/adake/back.svg",
  2618. }
  2619. },
  2620. kneel: {
  2621. height: math.unit(5.385, "feet"),
  2622. weight: math.unit(100, "kg"),
  2623. name: "Kneeling",
  2624. image: {
  2625. source: "./media/characters/adake/kneel.svg",
  2626. bottom: 0.052
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(7, "feet"),
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(78, "feet"),
  2638. default: true
  2639. },
  2640. {
  2641. name: "Macro+",
  2642. height: math.unit(300, "meters")
  2643. },
  2644. {
  2645. name: "Macro++",
  2646. height: math.unit(2400, "meters")
  2647. },
  2648. {
  2649. name: "Megamacro",
  2650. height: math.unit(5167, "meters")
  2651. },
  2652. {
  2653. name: "Gigamacro",
  2654. height: math.unit(41769, "miles")
  2655. },
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2660. {
  2661. front: {
  2662. height: math.unit(1.65, "meters"),
  2663. weight: math.unit(50, "kg"),
  2664. name: "Front",
  2665. image: {
  2666. source: "./media/characters/elijah/front.svg",
  2667. extra: 858 / 830,
  2668. bottom: 95.5 / 953.8559
  2669. }
  2670. },
  2671. back: {
  2672. height: math.unit(1.65, "meters"),
  2673. weight: math.unit(50, "kg"),
  2674. name: "Back",
  2675. image: {
  2676. source: "./media/characters/elijah/back.svg",
  2677. extra: 895 / 850,
  2678. bottom: 5.3 / 897.956
  2679. }
  2680. },
  2681. frontNsfw: {
  2682. height: math.unit(1.65, "meters"),
  2683. weight: math.unit(50, "kg"),
  2684. name: "Front (NSFW)",
  2685. image: {
  2686. source: "./media/characters/elijah/front-nsfw.svg",
  2687. extra: 858 / 830,
  2688. bottom: 95.5 / 953.8559
  2689. }
  2690. },
  2691. backNsfw: {
  2692. height: math.unit(1.65, "meters"),
  2693. weight: math.unit(50, "kg"),
  2694. name: "Back (NSFW)",
  2695. image: {
  2696. source: "./media/characters/elijah/back-nsfw.svg",
  2697. extra: 895 / 850,
  2698. bottom: 5.3 / 897.956
  2699. }
  2700. },
  2701. dick: {
  2702. height: math.unit(1, "feet"),
  2703. name: "Dick",
  2704. image: {
  2705. source: "./media/characters/elijah/dick.svg"
  2706. }
  2707. },
  2708. beakOpen: {
  2709. height: math.unit(1.25, "feet"),
  2710. name: "Beak (Open)",
  2711. image: {
  2712. source: "./media/characters/elijah/beak-open.svg"
  2713. }
  2714. },
  2715. beakShut: {
  2716. height: math.unit(1.25, "feet"),
  2717. name: "Beak (Shut)",
  2718. image: {
  2719. source: "./media/characters/elijah/beak-shut.svg"
  2720. }
  2721. },
  2722. footFlexing: {
  2723. height: math.unit(1.61, "feet"),
  2724. name: "Foot (Flexing)",
  2725. image: {
  2726. source: "./media/characters/elijah/foot-flexing.svg"
  2727. }
  2728. },
  2729. footStepping: {
  2730. height: math.unit(1.44, "feet"),
  2731. name: "Foot (Stepping)",
  2732. image: {
  2733. source: "./media/characters/elijah/foot-stepping.svg"
  2734. }
  2735. },
  2736. plantigradeLeg: {
  2737. height: math.unit(2.34, "feet"),
  2738. name: "Plantigrade Leg",
  2739. image: {
  2740. source: "./media/characters/elijah/plantigrade-leg.svg"
  2741. }
  2742. },
  2743. plantigradeFootLeft: {
  2744. height: math.unit(0.9, "feet"),
  2745. name: "Plantigrade Foot (Left)",
  2746. image: {
  2747. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2748. }
  2749. },
  2750. plantigradeFootRight: {
  2751. height: math.unit(0.9, "feet"),
  2752. name: "Plantigrade Foot (Right)",
  2753. image: {
  2754. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2755. }
  2756. },
  2757. },
  2758. [
  2759. {
  2760. name: "Normal",
  2761. height: math.unit(1.65, "meters")
  2762. },
  2763. {
  2764. name: "Macro",
  2765. height: math.unit(55, "meters"),
  2766. default: true
  2767. },
  2768. {
  2769. name: "Macro+",
  2770. height: math.unit(105, "meters")
  2771. },
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(7 + 2/12, "feet"),
  2779. weight: math.unit(320, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/rai/front.svg",
  2783. extra: 1802/1696,
  2784. bottom: 68/1870
  2785. }
  2786. },
  2787. frontDressed: {
  2788. height: math.unit(7 + 2/12, "feet"),
  2789. weight: math.unit(320, "kg"),
  2790. name: "Front (Dressed)",
  2791. image: {
  2792. source: "./media/characters/rai/front-dressed.svg",
  2793. extra: 1802/1696,
  2794. bottom: 68/1870
  2795. }
  2796. },
  2797. side: {
  2798. height: math.unit(7 + 2/12, "feet"),
  2799. weight: math.unit(320, "kg"),
  2800. name: "Side",
  2801. image: {
  2802. source: "./media/characters/rai/side.svg",
  2803. extra: 1789/1710,
  2804. bottom: 115/1904
  2805. }
  2806. },
  2807. back: {
  2808. height: math.unit(7 + 2/12, "feet"),
  2809. weight: math.unit(320, "kg"),
  2810. name: "Back",
  2811. image: {
  2812. source: "./media/characters/rai/back.svg",
  2813. extra: 1770/1707,
  2814. bottom: 28/1798
  2815. }
  2816. },
  2817. feral: {
  2818. height: math.unit(9.5, "feet"),
  2819. weight: math.unit(640, "kg"),
  2820. name: "Feral",
  2821. image: {
  2822. source: "./media/characters/rai/feral.svg",
  2823. extra: 945/553,
  2824. bottom: 176/1121
  2825. }
  2826. },
  2827. dragon: {
  2828. height: math.unit(23, "feet"),
  2829. weight: math.unit(50000, "lb"),
  2830. name: "Dragon",
  2831. image: {
  2832. source: "./media/characters/rai/dragon.svg",
  2833. extra: 2498 / 2030,
  2834. bottom: 85.2 / 2584
  2835. }
  2836. },
  2837. maw: {
  2838. height: math.unit(1.69, "feet"),
  2839. name: "Maw",
  2840. image: {
  2841. source: "./media/characters/rai/maw.svg"
  2842. }
  2843. },
  2844. },
  2845. [
  2846. {
  2847. name: "Normal",
  2848. height: math.unit(7 + 2/12, "feet")
  2849. },
  2850. {
  2851. name: "Big",
  2852. height: math.unit(11, "feet")
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(302, "feet"),
  2857. default: true
  2858. },
  2859. ]
  2860. ))
  2861. characterMakers.push(() => makeCharacter(
  2862. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2863. {
  2864. frontDressed: {
  2865. height: math.unit(216, "feet"),
  2866. weight: math.unit(7000000, "lb"),
  2867. name: "Front (Dressed)",
  2868. image: {
  2869. source: "./media/characters/jazzy/front-dressed.svg",
  2870. extra: 2738 / 2651,
  2871. bottom: 41.8 / 2786
  2872. }
  2873. },
  2874. backDressed: {
  2875. height: math.unit(216, "feet"),
  2876. weight: math.unit(7000000, "lb"),
  2877. name: "Back (Dressed)",
  2878. image: {
  2879. source: "./media/characters/jazzy/back-dressed.svg",
  2880. extra: 2775 / 2673,
  2881. bottom: 36.8 / 2817
  2882. }
  2883. },
  2884. front: {
  2885. height: math.unit(216, "feet"),
  2886. weight: math.unit(7000000, "lb"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/jazzy/front.svg",
  2890. extra: 2738 / 2651,
  2891. bottom: 41.8 / 2786
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(216, "feet"),
  2896. weight: math.unit(7000000, "lb"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/jazzy/back.svg",
  2900. extra: 2775 / 2673,
  2901. bottom: 36.8 / 2817
  2902. }
  2903. },
  2904. maw: {
  2905. height: math.unit(20, "feet"),
  2906. name: "Maw",
  2907. image: {
  2908. source: "./media/characters/jazzy/maw.svg"
  2909. }
  2910. },
  2911. paws: {
  2912. height: math.unit(27.5, "feet"),
  2913. name: "Paws",
  2914. image: {
  2915. source: "./media/characters/jazzy/paws.svg"
  2916. }
  2917. },
  2918. eye: {
  2919. height: math.unit(4.4, "feet"),
  2920. name: "Eye",
  2921. image: {
  2922. source: "./media/characters/jazzy/eye.svg"
  2923. }
  2924. },
  2925. droneOffense: {
  2926. height: math.unit(9.5, "inches"),
  2927. name: "Drone (Offense)",
  2928. image: {
  2929. source: "./media/characters/jazzy/drone-offense.svg"
  2930. }
  2931. },
  2932. droneRecon: {
  2933. height: math.unit(9.5, "inches"),
  2934. name: "Drone (Recon)",
  2935. image: {
  2936. source: "./media/characters/jazzy/drone-recon.svg"
  2937. }
  2938. },
  2939. droneDefense: {
  2940. height: math.unit(9.5, "inches"),
  2941. name: "Drone (Defense)",
  2942. image: {
  2943. source: "./media/characters/jazzy/drone-defense.svg"
  2944. }
  2945. },
  2946. },
  2947. [
  2948. {
  2949. name: "Macro",
  2950. height: math.unit(216, "feet"),
  2951. default: true
  2952. },
  2953. ]
  2954. ))
  2955. characterMakers.push(() => makeCharacter(
  2956. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2957. {
  2958. front: {
  2959. height: math.unit(9 + 6/12, "feet"),
  2960. weight: math.unit(700, "lb"),
  2961. name: "Front",
  2962. image: {
  2963. source: "./media/characters/flamm/front.svg",
  2964. extra: 1751/1632,
  2965. bottom: 46/1797
  2966. }
  2967. },
  2968. buff: {
  2969. height: math.unit(9 + 6/12, "feet"),
  2970. weight: math.unit(950, "lb"),
  2971. name: "Buff",
  2972. image: {
  2973. source: "./media/characters/flamm/buff.svg",
  2974. extra: 3018/2874,
  2975. bottom: 221/3239
  2976. }
  2977. },
  2978. },
  2979. [
  2980. {
  2981. name: "Normal",
  2982. height: math.unit(9.5, "feet")
  2983. },
  2984. {
  2985. name: "Macro",
  2986. height: math.unit(200, "feet"),
  2987. default: true
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(5 + 3/12, "feet"),
  2996. weight: math.unit(60, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/zephiro/front.svg",
  3000. extra: 2309 / 2162,
  3001. bottom: 0.069
  3002. }
  3003. },
  3004. side: {
  3005. height: math.unit(5 + 3/12, "feet"),
  3006. weight: math.unit(60, "kg"),
  3007. name: "Side",
  3008. image: {
  3009. source: "./media/characters/zephiro/side.svg",
  3010. extra: 2403 / 2279,
  3011. bottom: 0.015
  3012. }
  3013. },
  3014. back: {
  3015. height: math.unit(5 + 3/12, "feet"),
  3016. weight: math.unit(60, "kg"),
  3017. name: "Back",
  3018. image: {
  3019. source: "./media/characters/zephiro/back.svg",
  3020. extra: 2373 / 2244,
  3021. bottom: 0.013
  3022. }
  3023. },
  3024. hand: {
  3025. height: math.unit(0.68, "feet"),
  3026. name: "Hand",
  3027. image: {
  3028. source: "./media/characters/zephiro/hand.svg"
  3029. }
  3030. },
  3031. paw: {
  3032. height: math.unit(1, "feet"),
  3033. name: "Paw",
  3034. image: {
  3035. source: "./media/characters/zephiro/paw.svg"
  3036. }
  3037. },
  3038. beans: {
  3039. height: math.unit(0.93, "feet"),
  3040. name: "Beans",
  3041. image: {
  3042. source: "./media/characters/zephiro/beans.svg"
  3043. }
  3044. },
  3045. },
  3046. [
  3047. {
  3048. name: "Micro",
  3049. height: math.unit(3, "inches")
  3050. },
  3051. {
  3052. name: "Normal",
  3053. height: math.unit(5 + 3 / 12, "feet"),
  3054. default: true
  3055. },
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(118, "feet")
  3059. },
  3060. ]
  3061. ))
  3062. characterMakers.push(() => makeCharacter(
  3063. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3064. {
  3065. front: {
  3066. height: math.unit(5, "feet"),
  3067. weight: math.unit(90, "kg"),
  3068. name: "Front",
  3069. image: {
  3070. source: "./media/characters/fory/front.svg",
  3071. extra: 2862 / 2674,
  3072. bottom: 180 / 3043.8
  3073. }
  3074. },
  3075. back: {
  3076. height: math.unit(5, "feet"),
  3077. weight: math.unit(90, "kg"),
  3078. name: "Back",
  3079. image: {
  3080. source: "./media/characters/fory/back.svg",
  3081. extra: 2962 / 2791,
  3082. bottom: 106 / 3071.8
  3083. }
  3084. },
  3085. foot: {
  3086. height: math.unit(2.14, "feet"),
  3087. name: "Foot",
  3088. image: {
  3089. source: "./media/characters/fory/foot.svg"
  3090. }
  3091. },
  3092. },
  3093. [
  3094. {
  3095. name: "Normal",
  3096. height: math.unit(5, "feet")
  3097. },
  3098. {
  3099. name: "Macro",
  3100. height: math.unit(50, "feet"),
  3101. default: true
  3102. },
  3103. {
  3104. name: "Megamacro",
  3105. height: math.unit(10, "miles")
  3106. },
  3107. {
  3108. name: "Gigamacro",
  3109. height: math.unit(5, "earths")
  3110. },
  3111. ]
  3112. ))
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(7, "feet"),
  3118. weight: math.unit(90, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/kurrikage/front.svg",
  3122. extra: 1845/1733,
  3123. bottom: 119/1964
  3124. }
  3125. },
  3126. back: {
  3127. height: math.unit(7, "feet"),
  3128. weight: math.unit(90, "kg"),
  3129. name: "Back",
  3130. image: {
  3131. source: "./media/characters/kurrikage/back.svg",
  3132. extra: 1790/1677,
  3133. bottom: 61/1851
  3134. }
  3135. },
  3136. dressed: {
  3137. height: math.unit(7, "feet"),
  3138. weight: math.unit(90, "kg"),
  3139. name: "Dressed",
  3140. image: {
  3141. source: "./media/characters/kurrikage/dressed.svg",
  3142. extra: 1845/1733,
  3143. bottom: 119/1964
  3144. }
  3145. },
  3146. foot: {
  3147. height: math.unit(1.5, "feet"),
  3148. name: "Foot",
  3149. image: {
  3150. source: "./media/characters/kurrikage/foot.svg"
  3151. }
  3152. },
  3153. staff: {
  3154. height: math.unit(6.7, "feet"),
  3155. name: "Staff",
  3156. image: {
  3157. source: "./media/characters/kurrikage/staff.svg"
  3158. }
  3159. },
  3160. peek: {
  3161. height: math.unit(1.05, "feet"),
  3162. name: "Peeking",
  3163. image: {
  3164. source: "./media/characters/kurrikage/peek.svg",
  3165. bottom: 0.08
  3166. }
  3167. },
  3168. },
  3169. [
  3170. {
  3171. name: "Normal",
  3172. height: math.unit(12, "feet"),
  3173. default: true
  3174. },
  3175. {
  3176. name: "Big",
  3177. height: math.unit(20, "feet")
  3178. },
  3179. {
  3180. name: "Macro",
  3181. height: math.unit(500, "feet")
  3182. },
  3183. {
  3184. name: "Megamacro",
  3185. height: math.unit(20, "miles")
  3186. },
  3187. ]
  3188. ))
  3189. characterMakers.push(() => makeCharacter(
  3190. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3191. {
  3192. front: {
  3193. height: math.unit(6, "feet"),
  3194. weight: math.unit(75, "kg"),
  3195. name: "Front",
  3196. image: {
  3197. source: "./media/characters/shingo/front.svg",
  3198. extra: 1900/1825,
  3199. bottom: 82/1982
  3200. }
  3201. },
  3202. side: {
  3203. height: math.unit(6, "feet"),
  3204. weight: math.unit(75, "kg"),
  3205. name: "Side",
  3206. image: {
  3207. source: "./media/characters/shingo/side.svg",
  3208. extra: 1930/1865,
  3209. bottom: 16/1946
  3210. }
  3211. },
  3212. back: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Back",
  3216. image: {
  3217. source: "./media/characters/shingo/back.svg",
  3218. extra: 1922/1852,
  3219. bottom: 16/1938
  3220. }
  3221. },
  3222. frontDressed: {
  3223. height: math.unit(6, "feet"),
  3224. weight: math.unit(150, "lb"),
  3225. name: "Front-dressed",
  3226. image: {
  3227. source: "./media/characters/shingo/front-dressed.svg",
  3228. extra: 1900/1825,
  3229. bottom: 82/1982
  3230. }
  3231. },
  3232. paw: {
  3233. height: math.unit(1.29, "feet"),
  3234. name: "Paw",
  3235. image: {
  3236. source: "./media/characters/shingo/paw.svg"
  3237. }
  3238. },
  3239. hand: {
  3240. height: math.unit(1.07, "feet"),
  3241. name: "Hand",
  3242. image: {
  3243. source: "./media/characters/shingo/hand.svg"
  3244. }
  3245. },
  3246. frontAlt: {
  3247. height: math.unit(6, "feet"),
  3248. weight: math.unit(75, "kg"),
  3249. name: "Front (Alt)",
  3250. image: {
  3251. source: "./media/characters/shingo/front-alt.svg",
  3252. extra: 3511 / 3338,
  3253. bottom: 0.005
  3254. }
  3255. },
  3256. frontAlt2: {
  3257. height: math.unit(6, "feet"),
  3258. weight: math.unit(75, "kg"),
  3259. name: "Front (Alt 2)",
  3260. image: {
  3261. source: "./media/characters/shingo/front-alt-2.svg",
  3262. extra: 706/681,
  3263. bottom: 11/717
  3264. }
  3265. },
  3266. pawAlt: {
  3267. height: math.unit(1, "feet"),
  3268. name: "Paw (Alt)",
  3269. image: {
  3270. source: "./media/characters/shingo/paw-alt.svg"
  3271. }
  3272. },
  3273. },
  3274. [
  3275. {
  3276. name: "Micro",
  3277. height: math.unit(4, "inches")
  3278. },
  3279. {
  3280. name: "Normal",
  3281. height: math.unit(6, "feet"),
  3282. default: true
  3283. },
  3284. {
  3285. name: "Macro",
  3286. height: math.unit(108, "feet")
  3287. },
  3288. {
  3289. name: "Macro+",
  3290. height: math.unit(1500, "feet")
  3291. },
  3292. ]
  3293. ))
  3294. characterMakers.push(() => makeCharacter(
  3295. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3296. {
  3297. side: {
  3298. height: math.unit(6, "feet"),
  3299. weight: math.unit(75, "kg"),
  3300. name: "Side",
  3301. image: {
  3302. source: "./media/characters/aigey/side.svg"
  3303. }
  3304. },
  3305. },
  3306. [
  3307. {
  3308. name: "Macro",
  3309. height: math.unit(200, "feet"),
  3310. default: true
  3311. },
  3312. {
  3313. name: "Megamacro",
  3314. height: math.unit(100, "miles")
  3315. },
  3316. ]
  3317. )
  3318. )
  3319. characterMakers.push(() => makeCharacter(
  3320. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3321. {
  3322. front: {
  3323. height: math.unit(5 + 5 / 12, "feet"),
  3324. weight: math.unit(75, "kg"),
  3325. name: "Front",
  3326. image: {
  3327. source: "./media/characters/natasha/front.svg",
  3328. extra: 859 / 824,
  3329. bottom: 23 / 879.6
  3330. }
  3331. },
  3332. frontNsfw: {
  3333. height: math.unit(5 + 5 / 12, "feet"),
  3334. weight: math.unit(75, "kg"),
  3335. name: "Front (NSFW)",
  3336. image: {
  3337. source: "./media/characters/natasha/front-nsfw.svg",
  3338. extra: 859 / 824,
  3339. bottom: 23 / 879.6
  3340. }
  3341. },
  3342. frontErect: {
  3343. height: math.unit(5 + 5 / 12, "feet"),
  3344. weight: math.unit(75, "kg"),
  3345. name: "Front (Erect)",
  3346. image: {
  3347. source: "./media/characters/natasha/front-erect.svg",
  3348. extra: 859 / 824,
  3349. bottom: 23 / 879.6
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(5 + 5 / 12, "feet"),
  3354. weight: math.unit(75, "kg"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/natasha/back.svg",
  3358. extra: 887.9 / 852.6,
  3359. bottom: 9.7 / 896.4
  3360. }
  3361. },
  3362. backAlt: {
  3363. height: math.unit(5 + 5 / 12, "feet"),
  3364. weight: math.unit(75, "kg"),
  3365. name: "Back (Alt)",
  3366. image: {
  3367. source: "./media/characters/natasha/back-alt.svg",
  3368. extra: 1236.7 / 1192,
  3369. bottom: 22.3 / 1258.2
  3370. }
  3371. },
  3372. dick: {
  3373. height: math.unit(1.772, "feet"),
  3374. name: "Dick",
  3375. image: {
  3376. source: "./media/characters/natasha/dick.svg"
  3377. }
  3378. },
  3379. paw: {
  3380. height: math.unit(0.250, "meters"),
  3381. name: "Paw",
  3382. image: {
  3383. source: "./media/characters/natasha/paw.svg"
  3384. },
  3385. extraAttributes: {
  3386. "toeSize": {
  3387. name: "Toe Size",
  3388. power: 2,
  3389. type: "area",
  3390. base: math.unit(0.0024, "m^2")
  3391. },
  3392. "padSize": {
  3393. name: "Pad Size",
  3394. power: 2,
  3395. type: "area",
  3396. base: math.unit(0.00889, "m^2")
  3397. },
  3398. "pawSize": {
  3399. name: "Paw Size",
  3400. power: 2,
  3401. type: "area",
  3402. base: math.unit(0.023667, "m^2")
  3403. },
  3404. }
  3405. },
  3406. },
  3407. [
  3408. {
  3409. name: "Shortstack",
  3410. height: math.unit(3, "feet"),
  3411. default: true
  3412. },
  3413. {
  3414. name: "Normal",
  3415. height: math.unit(5 + 5 / 12, "feet")
  3416. },
  3417. {
  3418. name: "Large",
  3419. height: math.unit(12, "feet")
  3420. },
  3421. {
  3422. name: "Macro",
  3423. height: math.unit(100, "feet")
  3424. },
  3425. {
  3426. name: "Macro+",
  3427. height: math.unit(260, "feet")
  3428. },
  3429. {
  3430. name: "Macro++",
  3431. height: math.unit(1, "mile")
  3432. },
  3433. ]
  3434. ))
  3435. characterMakers.push(() => makeCharacter(
  3436. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3437. {
  3438. front: {
  3439. height: math.unit(6, "feet"),
  3440. weight: math.unit(75, "kg"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/malik/front.svg",
  3444. extra: 1750/1561,
  3445. bottom: 80/1830
  3446. },
  3447. extraAttributes: {
  3448. "toeSize": {
  3449. name: "Toe Size",
  3450. power: 2,
  3451. type: "area",
  3452. base: math.unit(0.0159, "m^2")
  3453. },
  3454. "pawSize": {
  3455. name: "Paw Size",
  3456. power: 2,
  3457. type: "area",
  3458. base: math.unit(0.09834, "m^2")
  3459. },
  3460. }
  3461. },
  3462. side: {
  3463. height: math.unit(6, "feet"),
  3464. weight: math.unit(75, "kg"),
  3465. name: "Side",
  3466. image: {
  3467. source: "./media/characters/malik/side.svg",
  3468. extra: 1802/1685,
  3469. bottom: 42/1844
  3470. },
  3471. extraAttributes: {
  3472. "toeSize": {
  3473. name: "Toe Size",
  3474. power: 2,
  3475. type: "area",
  3476. base: math.unit(0.0159, "m^2")
  3477. },
  3478. "pawSize": {
  3479. name: "Paw Size",
  3480. power: 2,
  3481. type: "area",
  3482. base: math.unit(0.09834, "m^2")
  3483. },
  3484. }
  3485. },
  3486. back: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(75, "kg"),
  3489. name: "Back",
  3490. image: {
  3491. source: "./media/characters/malik/back.svg",
  3492. extra: 1803/1607,
  3493. bottom: 33/1836
  3494. },
  3495. extraAttributes: {
  3496. "toeSize": {
  3497. name: "Toe Size",
  3498. power: 2,
  3499. type: "area",
  3500. base: math.unit(0.0159, "m^2")
  3501. },
  3502. "pawSize": {
  3503. name: "Paw Size",
  3504. power: 2,
  3505. type: "area",
  3506. base: math.unit(0.09834, "m^2")
  3507. },
  3508. }
  3509. },
  3510. },
  3511. [
  3512. {
  3513. name: "Macro",
  3514. height: math.unit(156, "feet"),
  3515. default: true
  3516. },
  3517. {
  3518. name: "Macro+",
  3519. height: math.unit(1188, "feet")
  3520. },
  3521. ]
  3522. ))
  3523. characterMakers.push(() => makeCharacter(
  3524. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3525. {
  3526. front: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(75, "kg"),
  3529. name: "Front",
  3530. image: {
  3531. source: "./media/characters/sefer/front.svg",
  3532. extra: 848 / 659,
  3533. bottom: 28.3 / 876.442
  3534. }
  3535. },
  3536. back: {
  3537. height: math.unit(6, "feet"),
  3538. weight: math.unit(75, "kg"),
  3539. name: "Back",
  3540. image: {
  3541. source: "./media/characters/sefer/back.svg",
  3542. extra: 864 / 695,
  3543. bottom: 10 / 871
  3544. }
  3545. },
  3546. frontDressed: {
  3547. height: math.unit(6, "feet"),
  3548. weight: math.unit(75, "kg"),
  3549. name: "Dressed",
  3550. image: {
  3551. source: "./media/characters/sefer/dressed.svg",
  3552. extra: 839 / 653,
  3553. bottom: 37.6 / 878
  3554. }
  3555. },
  3556. },
  3557. [
  3558. {
  3559. name: "Normal",
  3560. height: math.unit(6, "feet"),
  3561. default: true
  3562. },
  3563. {
  3564. name: "Big",
  3565. height: math.unit(8, "meters")
  3566. },
  3567. ]
  3568. ))
  3569. characterMakers.push(() => makeCharacter(
  3570. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3571. {
  3572. body: {
  3573. height: math.unit(2.2428, "meter"),
  3574. weight: math.unit(124.738, "kg"),
  3575. name: "Body",
  3576. image: {
  3577. extra: 1225 / 1050,
  3578. source: "./media/characters/north/front.svg"
  3579. }
  3580. }
  3581. },
  3582. [
  3583. {
  3584. name: "Micro",
  3585. height: math.unit(4, "inches")
  3586. },
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(63, "meters")
  3590. },
  3591. {
  3592. name: "Megamacro",
  3593. height: math.unit(101, "miles"),
  3594. default: true
  3595. }
  3596. ]
  3597. ))
  3598. characterMakers.push(() => makeCharacter(
  3599. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3600. {
  3601. angled: {
  3602. height: math.unit(4, "meter"),
  3603. weight: math.unit(150, "kg"),
  3604. name: "Angled",
  3605. image: {
  3606. source: "./media/characters/talan/angled-sfw.svg",
  3607. bottom: 29 / 3734
  3608. }
  3609. },
  3610. angledNsfw: {
  3611. height: math.unit(4, "meter"),
  3612. weight: math.unit(150, "kg"),
  3613. name: "Angled (NSFW)",
  3614. image: {
  3615. source: "./media/characters/talan/angled-nsfw.svg",
  3616. bottom: 29 / 3734
  3617. }
  3618. },
  3619. frontNsfw: {
  3620. height: math.unit(4, "meter"),
  3621. weight: math.unit(150, "kg"),
  3622. name: "Front (NSFW)",
  3623. image: {
  3624. source: "./media/characters/talan/front-nsfw.svg",
  3625. bottom: 29 / 3734
  3626. }
  3627. },
  3628. sideNsfw: {
  3629. height: math.unit(4, "meter"),
  3630. weight: math.unit(150, "kg"),
  3631. name: "Side (NSFW)",
  3632. image: {
  3633. source: "./media/characters/talan/side-nsfw.svg",
  3634. bottom: 29 / 3734
  3635. }
  3636. },
  3637. back: {
  3638. height: math.unit(4, "meter"),
  3639. weight: math.unit(150, "kg"),
  3640. name: "Back",
  3641. image: {
  3642. source: "./media/characters/talan/back.svg"
  3643. }
  3644. },
  3645. dickBottom: {
  3646. height: math.unit(0.621, "meter"),
  3647. name: "Dick (Bottom)",
  3648. image: {
  3649. source: "./media/characters/talan/dick-bottom.svg"
  3650. }
  3651. },
  3652. dickTop: {
  3653. height: math.unit(0.621, "meter"),
  3654. name: "Dick (Top)",
  3655. image: {
  3656. source: "./media/characters/talan/dick-top.svg"
  3657. }
  3658. },
  3659. dickSide: {
  3660. height: math.unit(0.305, "meter"),
  3661. name: "Dick (Side)",
  3662. image: {
  3663. source: "./media/characters/talan/dick-side.svg"
  3664. }
  3665. },
  3666. dickFront: {
  3667. height: math.unit(0.305, "meter"),
  3668. name: "Dick (Front)",
  3669. image: {
  3670. source: "./media/characters/talan/dick-front.svg"
  3671. }
  3672. },
  3673. },
  3674. [
  3675. {
  3676. name: "Normal",
  3677. height: math.unit(4, "meters")
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(100, "meters")
  3682. },
  3683. {
  3684. name: "Megamacro",
  3685. height: math.unit(2, "miles"),
  3686. default: true
  3687. },
  3688. {
  3689. name: "Gigamacro",
  3690. height: math.unit(5000, "miles")
  3691. },
  3692. {
  3693. name: "Teramacro",
  3694. height: math.unit(100, "parsecs")
  3695. }
  3696. ]
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(2, "meter"),
  3703. weight: math.unit(90, "kg"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/gael'rathus/front.svg"
  3707. }
  3708. },
  3709. frontAlt: {
  3710. height: math.unit(2, "meter"),
  3711. weight: math.unit(90, "kg"),
  3712. name: "Front (alt)",
  3713. image: {
  3714. source: "./media/characters/gael'rathus/front-alt.svg"
  3715. }
  3716. },
  3717. frontAlt2: {
  3718. height: math.unit(2, "meter"),
  3719. weight: math.unit(90, "kg"),
  3720. name: "Front (alt 2)",
  3721. image: {
  3722. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3723. }
  3724. }
  3725. },
  3726. [
  3727. {
  3728. name: "Normal",
  3729. height: math.unit(9, "feet"),
  3730. default: true
  3731. },
  3732. {
  3733. name: "Large",
  3734. height: math.unit(25, "feet")
  3735. },
  3736. {
  3737. name: "Macro",
  3738. height: math.unit(0.25, "miles")
  3739. },
  3740. {
  3741. name: "Megamacro",
  3742. height: math.unit(10, "miles")
  3743. }
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3748. {
  3749. side: {
  3750. height: math.unit(2, "meter"),
  3751. weight: math.unit(140, "kg"),
  3752. name: "Side",
  3753. image: {
  3754. source: "./media/characters/sosha/side.svg",
  3755. extra: 1170/1006,
  3756. bottom: 94/1264
  3757. }
  3758. },
  3759. maw: {
  3760. height: math.unit(2.87, "feet"),
  3761. name: "Maw",
  3762. image: {
  3763. source: "./media/characters/sosha/maw.svg",
  3764. extra: 966/865,
  3765. bottom: 0/966
  3766. }
  3767. },
  3768. cooch: {
  3769. height: math.unit(5.6, "feet"),
  3770. name: "Cooch",
  3771. image: {
  3772. source: "./media/characters/sosha/cooch.svg"
  3773. }
  3774. },
  3775. },
  3776. [
  3777. {
  3778. name: "Normal",
  3779. height: math.unit(12, "feet"),
  3780. default: true
  3781. }
  3782. ]
  3783. ))
  3784. characterMakers.push(() => makeCharacter(
  3785. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3786. {
  3787. side: {
  3788. height: math.unit(5 + 5 / 12, "feet"),
  3789. weight: math.unit(170, "kg"),
  3790. name: "Side",
  3791. image: {
  3792. source: "./media/characters/runnola/side.svg",
  3793. extra: 741 / 448,
  3794. bottom: 0.05
  3795. }
  3796. },
  3797. },
  3798. [
  3799. {
  3800. name: "Small",
  3801. height: math.unit(3, "feet")
  3802. },
  3803. {
  3804. name: "Normal",
  3805. height: math.unit(5 + 5 / 12, "feet"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "Big",
  3810. height: math.unit(10, "feet")
  3811. },
  3812. ]
  3813. ))
  3814. characterMakers.push(() => makeCharacter(
  3815. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3816. {
  3817. front: {
  3818. height: math.unit(2, "meter"),
  3819. weight: math.unit(50, "kg"),
  3820. name: "Front",
  3821. image: {
  3822. source: "./media/characters/kurribird/front.svg",
  3823. bottom: 0.015
  3824. }
  3825. },
  3826. frontAlt: {
  3827. height: math.unit(1.5, "meter"),
  3828. weight: math.unit(50, "kg"),
  3829. name: "Front (Alt)",
  3830. image: {
  3831. source: "./media/characters/kurribird/front-alt.svg",
  3832. extra: 1.45
  3833. }
  3834. },
  3835. },
  3836. [
  3837. {
  3838. name: "Normal",
  3839. height: math.unit(7, "feet")
  3840. },
  3841. {
  3842. name: "Big",
  3843. height: math.unit(12, "feet"),
  3844. default: true
  3845. },
  3846. {
  3847. name: "Macro",
  3848. height: math.unit(1500, "feet")
  3849. },
  3850. {
  3851. name: "Megamacro",
  3852. height: math.unit(2, "miles")
  3853. }
  3854. ]
  3855. ))
  3856. characterMakers.push(() => makeCharacter(
  3857. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3858. {
  3859. front: {
  3860. height: math.unit(2, "meter"),
  3861. weight: math.unit(80, "kg"),
  3862. name: "Front",
  3863. image: {
  3864. source: "./media/characters/elbial/front.svg",
  3865. extra: 1643 / 1556,
  3866. bottom: 60.2 / 1696
  3867. }
  3868. },
  3869. side: {
  3870. height: math.unit(2, "meter"),
  3871. weight: math.unit(80, "kg"),
  3872. name: "Side",
  3873. image: {
  3874. source: "./media/characters/elbial/side.svg",
  3875. extra: 1601/1528,
  3876. bottom: 97/1698
  3877. }
  3878. },
  3879. back: {
  3880. height: math.unit(2, "meter"),
  3881. weight: math.unit(80, "kg"),
  3882. name: "Back",
  3883. image: {
  3884. source: "./media/characters/elbial/back.svg",
  3885. extra: 1653/1569,
  3886. bottom: 20/1673
  3887. }
  3888. },
  3889. frontDressed: {
  3890. height: math.unit(2, "meter"),
  3891. weight: math.unit(80, "kg"),
  3892. name: "Front (Dressed)",
  3893. image: {
  3894. source: "./media/characters/elbial/front-dressed.svg",
  3895. extra: 1638/1569,
  3896. bottom: 70/1708
  3897. }
  3898. },
  3899. genitals: {
  3900. height: math.unit(2 / 3.367, "meter"),
  3901. name: "Genitals",
  3902. image: {
  3903. source: "./media/characters/elbial/genitals.svg"
  3904. }
  3905. },
  3906. },
  3907. [
  3908. {
  3909. name: "Large",
  3910. height: math.unit(100, "feet")
  3911. },
  3912. {
  3913. name: "Macro",
  3914. height: math.unit(500, "feet"),
  3915. default: true
  3916. },
  3917. {
  3918. name: "Megamacro",
  3919. height: math.unit(10, "miles")
  3920. },
  3921. {
  3922. name: "Gigamacro",
  3923. height: math.unit(25000, "miles")
  3924. },
  3925. {
  3926. name: "Full-Size",
  3927. height: math.unit(8000000, "gigaparsecs")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3933. {
  3934. front: {
  3935. height: math.unit(2, "meter"),
  3936. weight: math.unit(60, "kg"),
  3937. name: "Front",
  3938. image: {
  3939. source: "./media/characters/noah/front.svg"
  3940. }
  3941. },
  3942. talons: {
  3943. height: math.unit(0.315, "meter"),
  3944. name: "Talons",
  3945. image: {
  3946. source: "./media/characters/noah/talons.svg"
  3947. }
  3948. }
  3949. },
  3950. [
  3951. {
  3952. name: "Large",
  3953. height: math.unit(50, "feet")
  3954. },
  3955. {
  3956. name: "Macro",
  3957. height: math.unit(750, "feet"),
  3958. default: true
  3959. },
  3960. {
  3961. name: "Megamacro",
  3962. height: math.unit(50, "miles")
  3963. },
  3964. {
  3965. name: "Gigamacro",
  3966. height: math.unit(100000, "miles")
  3967. },
  3968. {
  3969. name: "Full-Size",
  3970. height: math.unit(3000000000, "miles")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(2, "meter"),
  3979. weight: math.unit(80, "kg"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/natalya/front.svg"
  3983. }
  3984. },
  3985. back: {
  3986. height: math.unit(2, "meter"),
  3987. weight: math.unit(80, "kg"),
  3988. name: "Back",
  3989. image: {
  3990. source: "./media/characters/natalya/back.svg"
  3991. }
  3992. }
  3993. },
  3994. [
  3995. {
  3996. name: "Normal",
  3997. height: math.unit(150, "feet"),
  3998. default: true
  3999. },
  4000. {
  4001. name: "Megamacro",
  4002. height: math.unit(5, "miles")
  4003. },
  4004. {
  4005. name: "Full-Size",
  4006. height: math.unit(600, "kiloparsecs")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(2, "meter"),
  4015. weight: math.unit(50, "kg"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/erestrebah/front.svg",
  4019. extra: 1262/1162,
  4020. bottom: 96/1358
  4021. }
  4022. },
  4023. back: {
  4024. height: math.unit(2, "meter"),
  4025. weight: math.unit(50, "kg"),
  4026. name: "Back",
  4027. image: {
  4028. source: "./media/characters/erestrebah/back.svg",
  4029. extra: 1257/1139,
  4030. bottom: 13/1270
  4031. }
  4032. },
  4033. wing: {
  4034. height: math.unit(2, "meter"),
  4035. weight: math.unit(50, "kg"),
  4036. name: "Wing",
  4037. image: {
  4038. source: "./media/characters/erestrebah/wing.svg",
  4039. extra: 1262/1162,
  4040. bottom: 96/1358
  4041. }
  4042. },
  4043. mouth: {
  4044. height: math.unit(0.39, "feet"),
  4045. name: "Mouth",
  4046. image: {
  4047. source: "./media/characters/erestrebah/mouth.svg"
  4048. }
  4049. }
  4050. },
  4051. [
  4052. {
  4053. name: "Normal",
  4054. height: math.unit(10, "feet")
  4055. },
  4056. {
  4057. name: "Large",
  4058. height: math.unit(50, "feet"),
  4059. default: true
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(300, "feet")
  4064. },
  4065. {
  4066. name: "Macro+",
  4067. height: math.unit(750, "feet")
  4068. },
  4069. {
  4070. name: "Megamacro",
  4071. height: math.unit(3, "miles")
  4072. }
  4073. ]
  4074. ))
  4075. characterMakers.push(() => makeCharacter(
  4076. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4077. {
  4078. front: {
  4079. height: math.unit(2, "meter"),
  4080. weight: math.unit(80, "kg"),
  4081. name: "Front",
  4082. image: {
  4083. source: "./media/characters/jennifer/front.svg",
  4084. bottom: 0.11,
  4085. extra: 1.16
  4086. }
  4087. },
  4088. frontAlt: {
  4089. height: math.unit(2, "meter"),
  4090. weight: math.unit(80, "kg"),
  4091. name: "Front (Alt)",
  4092. image: {
  4093. source: "./media/characters/jennifer/front-alt.svg"
  4094. }
  4095. }
  4096. },
  4097. [
  4098. {
  4099. name: "Canon Height",
  4100. height: math.unit(120, "feet"),
  4101. default: true
  4102. },
  4103. {
  4104. name: "Macro+",
  4105. height: math.unit(300, "feet")
  4106. },
  4107. {
  4108. name: "Megamacro",
  4109. height: math.unit(20000, "feet")
  4110. }
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4115. {
  4116. front: {
  4117. height: math.unit(2, "meter"),
  4118. weight: math.unit(50, "kg"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/kalista/front.svg",
  4122. extra: 1314/1145,
  4123. bottom: 101/1415
  4124. }
  4125. },
  4126. back: {
  4127. height: math.unit(2, "meter"),
  4128. weight: math.unit(50, "kg"),
  4129. name: "Back",
  4130. image: {
  4131. source: "./media/characters/kalista/back.svg",
  4132. extra: 1366 / 1156,
  4133. bottom: 33.9 / 1362.78
  4134. }
  4135. }
  4136. },
  4137. [
  4138. {
  4139. name: "Uncomfortably Small",
  4140. height: math.unit(10, "feet")
  4141. },
  4142. {
  4143. name: "Small",
  4144. height: math.unit(30, "feet")
  4145. },
  4146. {
  4147. name: "Macro",
  4148. height: math.unit(100, "feet"),
  4149. default: true
  4150. },
  4151. {
  4152. name: "Macro+",
  4153. height: math.unit(2000, "feet")
  4154. },
  4155. {
  4156. name: "True Form",
  4157. height: math.unit(8924, "miles")
  4158. }
  4159. ]
  4160. ))
  4161. characterMakers.push(() => makeCharacter(
  4162. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4163. {
  4164. front: {
  4165. height: math.unit(2, "meter"),
  4166. weight: math.unit(120, "kg"),
  4167. name: "Front",
  4168. image: {
  4169. source: "./media/characters/ggv/front.svg"
  4170. }
  4171. },
  4172. side: {
  4173. height: math.unit(2, "meter"),
  4174. weight: math.unit(120, "kg"),
  4175. name: "Side",
  4176. image: {
  4177. source: "./media/characters/ggv/side.svg"
  4178. }
  4179. }
  4180. },
  4181. [
  4182. {
  4183. name: "Extremely Puny",
  4184. height: math.unit(9 + 5 / 12, "feet")
  4185. },
  4186. {
  4187. name: "Horribly Small",
  4188. height: math.unit(47.7, "miles"),
  4189. default: true
  4190. },
  4191. {
  4192. name: "Reasonably Sized",
  4193. height: math.unit(25000, "parsecs")
  4194. },
  4195. {
  4196. name: "Slightly Uncompressed",
  4197. height: math.unit(7.77e31, "parsecs")
  4198. },
  4199. {
  4200. name: "Omniversal",
  4201. height: math.unit(1e300, "meters")
  4202. },
  4203. ]
  4204. ))
  4205. characterMakers.push(() => makeCharacter(
  4206. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4207. {
  4208. front: {
  4209. height: math.unit(2, "meter"),
  4210. weight: math.unit(75, "lb"),
  4211. name: "Front",
  4212. image: {
  4213. source: "./media/characters/napalm/front.svg"
  4214. }
  4215. },
  4216. back: {
  4217. height: math.unit(2, "meter"),
  4218. weight: math.unit(75, "lb"),
  4219. name: "Back",
  4220. image: {
  4221. source: "./media/characters/napalm/back.svg"
  4222. }
  4223. }
  4224. },
  4225. [
  4226. {
  4227. name: "Standard",
  4228. height: math.unit(55, "feet"),
  4229. default: true
  4230. }
  4231. ]
  4232. ))
  4233. characterMakers.push(() => makeCharacter(
  4234. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4235. {
  4236. front: {
  4237. height: math.unit(7 + 5 / 6, "feet"),
  4238. weight: math.unit(325, "lb"),
  4239. name: "Front",
  4240. image: {
  4241. source: "./media/characters/asana/front.svg",
  4242. extra: 1133 / 1060,
  4243. bottom: 15.2 / 1148.6
  4244. }
  4245. },
  4246. back: {
  4247. height: math.unit(7 + 5 / 6, "feet"),
  4248. weight: math.unit(325, "lb"),
  4249. name: "Back",
  4250. image: {
  4251. source: "./media/characters/asana/back.svg",
  4252. extra: 1114 / 1043,
  4253. bottom: 5 / 1120
  4254. }
  4255. },
  4256. dressedDark: {
  4257. height: math.unit(7 + 5 / 6, "feet"),
  4258. weight: math.unit(325, "lb"),
  4259. name: "Dressed (Dark)",
  4260. image: {
  4261. source: "./media/characters/asana/dressed-dark.svg",
  4262. extra: 1133 / 1060,
  4263. bottom: 15.2 / 1148.6
  4264. }
  4265. },
  4266. dressedLight: {
  4267. height: math.unit(7 + 5 / 6, "feet"),
  4268. weight: math.unit(325, "lb"),
  4269. name: "Dressed (Light)",
  4270. image: {
  4271. source: "./media/characters/asana/dressed-light.svg",
  4272. extra: 1133 / 1060,
  4273. bottom: 15.2 / 1148.6
  4274. }
  4275. },
  4276. },
  4277. [
  4278. {
  4279. name: "Standard",
  4280. height: math.unit(7 + 5 / 6, "feet"),
  4281. default: true
  4282. },
  4283. {
  4284. name: "Large",
  4285. height: math.unit(10, "meters")
  4286. },
  4287. {
  4288. name: "Macro",
  4289. height: math.unit(2500, "meters")
  4290. },
  4291. {
  4292. name: "Megamacro",
  4293. height: math.unit(5e6, "meters")
  4294. },
  4295. {
  4296. name: "Examacro",
  4297. height: math.unit(5e12, "lightyears")
  4298. },
  4299. {
  4300. name: "Max Size",
  4301. height: math.unit(1e31, "lightyears")
  4302. }
  4303. ]
  4304. ))
  4305. characterMakers.push(() => makeCharacter(
  4306. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4307. {
  4308. front: {
  4309. height: math.unit(2, "meter"),
  4310. weight: math.unit(60, "kg"),
  4311. name: "Front",
  4312. image: {
  4313. source: "./media/characters/ebony/front.svg",
  4314. bottom: 0.03,
  4315. extra: 1045 / 810 + 0.03
  4316. }
  4317. },
  4318. side: {
  4319. height: math.unit(2, "meter"),
  4320. weight: math.unit(60, "kg"),
  4321. name: "Side",
  4322. image: {
  4323. source: "./media/characters/ebony/side.svg",
  4324. bottom: 0.03,
  4325. extra: 1045 / 810 + 0.03
  4326. }
  4327. },
  4328. back: {
  4329. height: math.unit(2, "meter"),
  4330. weight: math.unit(60, "kg"),
  4331. name: "Back",
  4332. image: {
  4333. source: "./media/characters/ebony/back.svg",
  4334. bottom: 0.01,
  4335. extra: 1045 / 810 + 0.01
  4336. }
  4337. },
  4338. },
  4339. [
  4340. // TODO check why I did this lol
  4341. {
  4342. name: "Standard",
  4343. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4344. default: true
  4345. },
  4346. {
  4347. name: "Macro",
  4348. height: math.unit(200, "feet")
  4349. },
  4350. {
  4351. name: "Gigamacro",
  4352. height: math.unit(13000, "km")
  4353. }
  4354. ]
  4355. ))
  4356. characterMakers.push(() => makeCharacter(
  4357. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4358. {
  4359. front: {
  4360. height: math.unit(6, "feet"),
  4361. weight: math.unit(175, "lb"),
  4362. name: "Front",
  4363. image: {
  4364. source: "./media/characters/mountain/front.svg",
  4365. extra: 972 / 955,
  4366. bottom: 64 / 1036.6
  4367. }
  4368. },
  4369. back: {
  4370. height: math.unit(6, "feet"),
  4371. weight: math.unit(175, "lb"),
  4372. name: "Back",
  4373. image: {
  4374. source: "./media/characters/mountain/back.svg",
  4375. extra: 970 / 950,
  4376. bottom: 28.25 / 999
  4377. }
  4378. },
  4379. },
  4380. [
  4381. {
  4382. name: "Large",
  4383. height: math.unit(20, "meters")
  4384. },
  4385. {
  4386. name: "Macro",
  4387. height: math.unit(300, "meters")
  4388. },
  4389. {
  4390. name: "Gigamacro",
  4391. height: math.unit(10000, "km"),
  4392. default: true
  4393. },
  4394. {
  4395. name: "Examacro",
  4396. height: math.unit(10e9, "lightyears")
  4397. }
  4398. ]
  4399. ))
  4400. characterMakers.push(() => makeCharacter(
  4401. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4402. {
  4403. front: {
  4404. height: math.unit(8, "feet"),
  4405. weight: math.unit(500, "lb"),
  4406. name: "Front",
  4407. image: {
  4408. source: "./media/characters/rick/front.svg"
  4409. }
  4410. }
  4411. },
  4412. [
  4413. {
  4414. name: "Normal",
  4415. height: math.unit(8, "feet"),
  4416. default: true
  4417. },
  4418. {
  4419. name: "Macro",
  4420. height: math.unit(5, "km")
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4426. {
  4427. front: {
  4428. height: math.unit(8, "feet"),
  4429. weight: math.unit(120, "lb"),
  4430. name: "Front",
  4431. image: {
  4432. source: "./media/characters/ona/front.svg"
  4433. }
  4434. },
  4435. frontAlt: {
  4436. height: math.unit(8, "feet"),
  4437. weight: math.unit(120, "lb"),
  4438. name: "Front (Alt)",
  4439. image: {
  4440. source: "./media/characters/ona/front-alt.svg"
  4441. }
  4442. },
  4443. back: {
  4444. height: math.unit(8, "feet"),
  4445. weight: math.unit(120, "lb"),
  4446. name: "Back",
  4447. image: {
  4448. source: "./media/characters/ona/back.svg"
  4449. }
  4450. },
  4451. foot: {
  4452. height: math.unit(1.1, "feet"),
  4453. name: "Foot",
  4454. image: {
  4455. source: "./media/characters/ona/foot.svg"
  4456. }
  4457. }
  4458. },
  4459. [
  4460. {
  4461. name: "Megamacro",
  4462. height: math.unit(70, "km"),
  4463. default: true
  4464. },
  4465. {
  4466. name: "Gigamacro",
  4467. height: math.unit(681818, "miles")
  4468. },
  4469. {
  4470. name: "Examacro",
  4471. height: math.unit(3800000, "lightyears")
  4472. },
  4473. ]
  4474. ))
  4475. characterMakers.push(() => makeCharacter(
  4476. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4477. {
  4478. front: {
  4479. height: math.unit(12, "feet"),
  4480. weight: math.unit(3000, "lb"),
  4481. name: "Front",
  4482. image: {
  4483. source: "./media/characters/mech/front.svg",
  4484. extra: 2900 / 2770,
  4485. bottom: 110 / 3010
  4486. }
  4487. },
  4488. back: {
  4489. height: math.unit(12, "feet"),
  4490. weight: math.unit(3000, "lb"),
  4491. name: "Back",
  4492. image: {
  4493. source: "./media/characters/mech/back.svg",
  4494. extra: 3011 / 2890,
  4495. bottom: 94 / 3105
  4496. }
  4497. },
  4498. maw: {
  4499. height: math.unit(3.07, "feet"),
  4500. name: "Maw",
  4501. image: {
  4502. source: "./media/characters/mech/maw.svg"
  4503. }
  4504. },
  4505. head: {
  4506. height: math.unit(3.07, "feet"),
  4507. name: "Head",
  4508. image: {
  4509. source: "./media/characters/mech/head.svg"
  4510. }
  4511. },
  4512. dick: {
  4513. height: math.unit(1.43, "feet"),
  4514. name: "Dick",
  4515. image: {
  4516. source: "./media/characters/mech/dick.svg"
  4517. }
  4518. },
  4519. },
  4520. [
  4521. {
  4522. name: "Normal",
  4523. height: math.unit(12, "feet")
  4524. },
  4525. {
  4526. name: "Macro",
  4527. height: math.unit(300, "feet"),
  4528. default: true
  4529. },
  4530. {
  4531. name: "Macro+",
  4532. height: math.unit(1500, "feet")
  4533. },
  4534. ]
  4535. ))
  4536. characterMakers.push(() => makeCharacter(
  4537. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4538. {
  4539. front: {
  4540. height: math.unit(1.3, "meter"),
  4541. weight: math.unit(30, "kg"),
  4542. name: "Front",
  4543. image: {
  4544. source: "./media/characters/gregory/front.svg",
  4545. }
  4546. }
  4547. },
  4548. [
  4549. {
  4550. name: "Normal",
  4551. height: math.unit(1.3, "meter"),
  4552. default: true
  4553. },
  4554. {
  4555. name: "Macro",
  4556. height: math.unit(20, "meter")
  4557. }
  4558. ]
  4559. ))
  4560. characterMakers.push(() => makeCharacter(
  4561. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4562. {
  4563. front: {
  4564. height: math.unit(2.8, "meter"),
  4565. weight: math.unit(200, "kg"),
  4566. name: "Front",
  4567. image: {
  4568. source: "./media/characters/elory/front.svg",
  4569. }
  4570. }
  4571. },
  4572. [
  4573. {
  4574. name: "Normal",
  4575. height: math.unit(2.8, "meter"),
  4576. default: true
  4577. },
  4578. {
  4579. name: "Macro",
  4580. height: math.unit(38, "meter")
  4581. }
  4582. ]
  4583. ))
  4584. characterMakers.push(() => makeCharacter(
  4585. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4586. {
  4587. front: {
  4588. height: math.unit(470, "feet"),
  4589. weight: math.unit(924, "tons"),
  4590. name: "Front",
  4591. image: {
  4592. source: "./media/characters/angelpatamon/front.svg",
  4593. }
  4594. }
  4595. },
  4596. [
  4597. {
  4598. name: "Normal",
  4599. height: math.unit(470, "feet"),
  4600. default: true
  4601. },
  4602. {
  4603. name: "Deity Size I",
  4604. height: math.unit(28651.2, "km")
  4605. },
  4606. {
  4607. name: "Deity Size II",
  4608. height: math.unit(171907.2, "km")
  4609. }
  4610. ]
  4611. ))
  4612. characterMakers.push(() => makeCharacter(
  4613. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4614. {
  4615. side: {
  4616. height: math.unit(7.2, "meter"),
  4617. weight: math.unit(8.2, "tons"),
  4618. name: "Side",
  4619. image: {
  4620. source: "./media/characters/cryae/side.svg",
  4621. extra: 3500 / 1500
  4622. }
  4623. }
  4624. },
  4625. [
  4626. {
  4627. name: "Normal",
  4628. height: math.unit(7.2, "meter"),
  4629. default: true
  4630. }
  4631. ]
  4632. ))
  4633. characterMakers.push(() => makeCharacter(
  4634. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4635. {
  4636. front: {
  4637. height: math.unit(6, "feet"),
  4638. weight: math.unit(175, "lb"),
  4639. name: "Front",
  4640. image: {
  4641. source: "./media/characters/xera/front.svg",
  4642. extra: 2377 / 1972,
  4643. bottom: 75.5 / 2452
  4644. }
  4645. },
  4646. side: {
  4647. height: math.unit(6, "feet"),
  4648. weight: math.unit(175, "lb"),
  4649. name: "Side",
  4650. image: {
  4651. source: "./media/characters/xera/side.svg",
  4652. extra: 2345 / 2019,
  4653. bottom: 39.7 / 2384
  4654. }
  4655. },
  4656. back: {
  4657. height: math.unit(6, "feet"),
  4658. weight: math.unit(175, "lb"),
  4659. name: "Back",
  4660. image: {
  4661. source: "./media/characters/xera/back.svg",
  4662. extra: 2095 / 1984,
  4663. bottom: 67 / 2166
  4664. }
  4665. },
  4666. },
  4667. [
  4668. {
  4669. name: "Small",
  4670. height: math.unit(10, "feet")
  4671. },
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(500, "meters"),
  4675. default: true
  4676. },
  4677. {
  4678. name: "Macro+",
  4679. height: math.unit(10, "km")
  4680. },
  4681. {
  4682. name: "Gigamacro",
  4683. height: math.unit(25000, "km")
  4684. },
  4685. {
  4686. name: "Teramacro",
  4687. height: math.unit(3e6, "km")
  4688. }
  4689. ]
  4690. ))
  4691. characterMakers.push(() => makeCharacter(
  4692. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4693. {
  4694. front: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(175, "lb"),
  4697. name: "Front",
  4698. image: {
  4699. source: "./media/characters/nebula/front.svg",
  4700. extra: 2566 / 2362,
  4701. bottom: 81 / 2644
  4702. }
  4703. }
  4704. },
  4705. [
  4706. {
  4707. name: "Small",
  4708. height: math.unit(4.5, "meters")
  4709. },
  4710. {
  4711. name: "Macro",
  4712. height: math.unit(1500, "meters"),
  4713. default: true
  4714. },
  4715. {
  4716. name: "Megamacro",
  4717. height: math.unit(150, "km")
  4718. },
  4719. {
  4720. name: "Gigamacro",
  4721. height: math.unit(27000, "km")
  4722. }
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4727. {
  4728. front: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(225, "lb"),
  4731. name: "Front",
  4732. image: {
  4733. source: "./media/characters/abysgar/front.svg",
  4734. extra: 1739/1614,
  4735. bottom: 71/1810
  4736. }
  4737. },
  4738. frontNsfw: {
  4739. height: math.unit(6, "feet"),
  4740. weight: math.unit(225, "lb"),
  4741. name: "Front (NSFW)",
  4742. image: {
  4743. source: "./media/characters/abysgar/front-nsfw.svg",
  4744. extra: 1739/1614,
  4745. bottom: 71/1810
  4746. }
  4747. },
  4748. back: {
  4749. height: math.unit(4.6, "feet"),
  4750. weight: math.unit(225, "lb"),
  4751. name: "Back",
  4752. image: {
  4753. source: "./media/characters/abysgar/back.svg",
  4754. extra: 1384/1327,
  4755. bottom: 0/1384
  4756. }
  4757. },
  4758. head: {
  4759. height: math.unit(1.25, "feet"),
  4760. name: "Head",
  4761. image: {
  4762. source: "./media/characters/abysgar/head.svg",
  4763. extra: 669/569,
  4764. bottom: 0/669
  4765. }
  4766. },
  4767. },
  4768. [
  4769. {
  4770. name: "Small",
  4771. height: math.unit(4.5, "meters")
  4772. },
  4773. {
  4774. name: "Macro",
  4775. height: math.unit(1250, "meters"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Megamacro",
  4780. height: math.unit(125, "km")
  4781. },
  4782. {
  4783. name: "Gigamacro",
  4784. height: math.unit(26000, "km")
  4785. }
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(180, "lb"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/yakuz/front.svg"
  4797. }
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Small",
  4803. height: math.unit(5, "meters")
  4804. },
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(1500, "meters"),
  4808. default: true
  4809. },
  4810. {
  4811. name: "Megamacro",
  4812. height: math.unit(200, "km")
  4813. },
  4814. {
  4815. name: "Gigamacro",
  4816. height: math.unit(100000, "km")
  4817. }
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(175, "lb"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/mirova/front.svg",
  4829. extra: 3334 / 3071,
  4830. bottom: 42 / 3375.6
  4831. }
  4832. }
  4833. },
  4834. [
  4835. {
  4836. name: "Small",
  4837. height: math.unit(5, "meters")
  4838. },
  4839. {
  4840. name: "Macro",
  4841. height: math.unit(900, "meters"),
  4842. default: true
  4843. },
  4844. {
  4845. name: "Megamacro",
  4846. height: math.unit(135, "km")
  4847. },
  4848. {
  4849. name: "Gigamacro",
  4850. height: math.unit(20000, "km")
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4856. {
  4857. side: {
  4858. height: math.unit(28.35, "feet"),
  4859. weight: math.unit(99.75, "tons"),
  4860. name: "Side",
  4861. image: {
  4862. source: "./media/characters/asana-mech/side.svg",
  4863. extra: 923 / 699,
  4864. bottom: 50 / 975
  4865. }
  4866. },
  4867. chaingun: {
  4868. height: math.unit(7, "feet"),
  4869. weight: math.unit(2400, "lb"),
  4870. name: "Chaingun",
  4871. image: {
  4872. source: "./media/characters/asana-mech/chaingun.svg"
  4873. }
  4874. },
  4875. laser: {
  4876. height: math.unit(7.12, "feet"),
  4877. weight: math.unit(2000, "lb"),
  4878. name: "Laser",
  4879. image: {
  4880. source: "./media/characters/asana-mech/laser.svg"
  4881. }
  4882. },
  4883. },
  4884. [
  4885. {
  4886. name: "Normal",
  4887. height: math.unit(28.35, "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(2500, "feet")
  4893. },
  4894. {
  4895. name: "Megamacro",
  4896. height: math.unit(25, "miles")
  4897. },
  4898. {
  4899. name: "Examacro",
  4900. height: math.unit(6e8, "lightyears")
  4901. },
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4906. {
  4907. front: {
  4908. height: math.unit(5, "meters"),
  4909. weight: math.unit(1000, "kg"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/asche/front.svg",
  4913. extra: 1258 / 1190,
  4914. bottom: 47 / 1305
  4915. }
  4916. },
  4917. frontUnderwear: {
  4918. height: math.unit(5, "meters"),
  4919. weight: math.unit(1000, "kg"),
  4920. name: "Front (Underwear)",
  4921. image: {
  4922. source: "./media/characters/asche/front-underwear.svg",
  4923. extra: 1258 / 1190,
  4924. bottom: 47 / 1305
  4925. }
  4926. },
  4927. frontDressed: {
  4928. height: math.unit(5, "meters"),
  4929. weight: math.unit(1000, "kg"),
  4930. name: "Front (Dressed)",
  4931. image: {
  4932. source: "./media/characters/asche/front-dressed.svg",
  4933. extra: 1258 / 1190,
  4934. bottom: 47 / 1305
  4935. }
  4936. },
  4937. frontArmor: {
  4938. height: math.unit(5, "meters"),
  4939. weight: math.unit(1000, "kg"),
  4940. name: "Front (Armored)",
  4941. image: {
  4942. source: "./media/characters/asche/front-armored.svg",
  4943. extra: 1374 / 1308,
  4944. bottom: 23 / 1397
  4945. }
  4946. },
  4947. mp724: {
  4948. height: math.unit(0.96, "meters"),
  4949. weight: math.unit(38, "kg"),
  4950. name: "H&K MP724",
  4951. image: {
  4952. source: "./media/characters/asche/h&k-mp724.svg"
  4953. }
  4954. },
  4955. side: {
  4956. height: math.unit(5, "meters"),
  4957. weight: math.unit(1000, "kg"),
  4958. name: "Side",
  4959. image: {
  4960. source: "./media/characters/asche/side.svg",
  4961. extra: 1717 / 1609,
  4962. bottom: 0.005
  4963. }
  4964. },
  4965. back: {
  4966. height: math.unit(5, "meters"),
  4967. weight: math.unit(1000, "kg"),
  4968. name: "Back",
  4969. image: {
  4970. source: "./media/characters/asche/back.svg",
  4971. extra: 1570 / 1501
  4972. }
  4973. },
  4974. },
  4975. [
  4976. {
  4977. name: "DEFCON 5",
  4978. height: math.unit(5, "meters")
  4979. },
  4980. {
  4981. name: "DEFCON 4",
  4982. height: math.unit(500, "meters"),
  4983. default: true
  4984. },
  4985. {
  4986. name: "DEFCON 3",
  4987. height: math.unit(5, "km")
  4988. },
  4989. {
  4990. name: "DEFCON 2",
  4991. height: math.unit(500, "km")
  4992. },
  4993. {
  4994. name: "DEFCON 1",
  4995. height: math.unit(500000, "km")
  4996. },
  4997. {
  4998. name: "DEFCON 0",
  4999. height: math.unit(3, "gigaparsecs")
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(2, "meters"),
  5008. weight: math.unit(76, "kg"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/gale/front.svg"
  5012. }
  5013. },
  5014. frontAlt1: {
  5015. height: math.unit(2, "meters"),
  5016. weight: math.unit(76, "kg"),
  5017. name: "Front (Alt 1)",
  5018. image: {
  5019. source: "./media/characters/gale/front-alt-1.svg"
  5020. }
  5021. },
  5022. frontAlt2: {
  5023. height: math.unit(2, "meters"),
  5024. weight: math.unit(76, "kg"),
  5025. name: "Front (Alt 2)",
  5026. image: {
  5027. source: "./media/characters/gale/front-alt-2.svg"
  5028. }
  5029. },
  5030. },
  5031. [
  5032. {
  5033. name: "Normal",
  5034. height: math.unit(7, "feet")
  5035. },
  5036. {
  5037. name: "Macro",
  5038. height: math.unit(150, "feet"),
  5039. default: true
  5040. },
  5041. {
  5042. name: "Macro+",
  5043. height: math.unit(300, "feet")
  5044. },
  5045. ]
  5046. ))
  5047. characterMakers.push(() => makeCharacter(
  5048. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5049. {
  5050. front: {
  5051. height: math.unit(5 + 10/12, "feet"),
  5052. weight: math.unit(67, "kg"),
  5053. name: "Front",
  5054. image: {
  5055. source: "./media/characters/draylen/front.svg",
  5056. extra: 832/777,
  5057. bottom: 85/917
  5058. }
  5059. }
  5060. },
  5061. [
  5062. {
  5063. name: "Normal",
  5064. height: math.unit(5 + 10/12, "feet")
  5065. },
  5066. {
  5067. name: "Macro",
  5068. height: math.unit(150, "feet"),
  5069. default: true
  5070. }
  5071. ]
  5072. ))
  5073. characterMakers.push(() => makeCharacter(
  5074. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5075. {
  5076. front: {
  5077. height: math.unit(7 + 9 / 12, "feet"),
  5078. weight: math.unit(379, "lbs"),
  5079. name: "Front",
  5080. image: {
  5081. source: "./media/characters/chez/front.svg"
  5082. }
  5083. },
  5084. side: {
  5085. height: math.unit(7 + 9 / 12, "feet"),
  5086. weight: math.unit(379, "lbs"),
  5087. name: "Side",
  5088. image: {
  5089. source: "./media/characters/chez/side.svg"
  5090. }
  5091. }
  5092. },
  5093. [
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(7 + 9 / 12, "feet"),
  5097. default: true
  5098. },
  5099. {
  5100. name: "God King",
  5101. height: math.unit(9750000, "meters")
  5102. }
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5107. {
  5108. front: {
  5109. height: math.unit(6, "feet"),
  5110. weight: math.unit(275, "lbs"),
  5111. name: "Front",
  5112. image: {
  5113. source: "./media/characters/kaylum/front.svg",
  5114. bottom: 0.01,
  5115. extra: 1166 / 1031
  5116. }
  5117. },
  5118. frontWingless: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(275, "lbs"),
  5121. name: "Front (Wingless)",
  5122. image: {
  5123. source: "./media/characters/kaylum/front-wingless.svg",
  5124. bottom: 0.01,
  5125. extra: 1117 / 1031
  5126. }
  5127. }
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(3.05, "meters")
  5133. },
  5134. {
  5135. name: "Master",
  5136. height: math.unit(5.5, "meters")
  5137. },
  5138. {
  5139. name: "Rampage",
  5140. height: math.unit(19, "meters")
  5141. },
  5142. {
  5143. name: "Macro Lite",
  5144. height: math.unit(37, "meters")
  5145. },
  5146. {
  5147. name: "Hyper Predator",
  5148. height: math.unit(61, "meters")
  5149. },
  5150. {
  5151. name: "Macro",
  5152. height: math.unit(138, "meters"),
  5153. default: true
  5154. }
  5155. ]
  5156. ))
  5157. characterMakers.push(() => makeCharacter(
  5158. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5159. {
  5160. front: {
  5161. height: math.unit(5 + 5 / 12, "feet"),
  5162. weight: math.unit(120, "lbs"),
  5163. name: "Front",
  5164. image: {
  5165. source: "./media/characters/geta/front.svg",
  5166. extra: 1003/933,
  5167. bottom: 21/1024
  5168. }
  5169. },
  5170. paw: {
  5171. height: math.unit(0.35, "feet"),
  5172. name: "Paw",
  5173. image: {
  5174. source: "./media/characters/geta/paw.svg"
  5175. }
  5176. },
  5177. },
  5178. [
  5179. {
  5180. name: "Micro",
  5181. height: math.unit(3, "inches"),
  5182. default: true
  5183. },
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(5 + 5 / 12, "feet")
  5187. }
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5192. {
  5193. front: {
  5194. height: math.unit(6, "feet"),
  5195. weight: math.unit(300, "lbs"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/tyrnn/front.svg"
  5199. }
  5200. }
  5201. },
  5202. [
  5203. {
  5204. name: "Main Height",
  5205. height: math.unit(355, "feet"),
  5206. default: true
  5207. },
  5208. {
  5209. name: "Fave. Height",
  5210. height: math.unit(2400, "feet")
  5211. }
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5216. {
  5217. front: {
  5218. height: math.unit(6, "feet"),
  5219. weight: math.unit(300, "lbs"),
  5220. name: "Front",
  5221. image: {
  5222. source: "./media/characters/appledectomy/front.svg"
  5223. }
  5224. }
  5225. },
  5226. [
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(2500, "feet")
  5230. },
  5231. {
  5232. name: "Megamacro",
  5233. height: math.unit(50, "miles"),
  5234. default: true
  5235. },
  5236. {
  5237. name: "Gigamacro",
  5238. height: math.unit(5000, "miles")
  5239. },
  5240. {
  5241. name: "Teramacro",
  5242. height: math.unit(250000, "miles")
  5243. },
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5248. {
  5249. front: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(200, "lbs"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/vulpes/front.svg",
  5255. extra: 573 / 543,
  5256. bottom: 0.033
  5257. }
  5258. },
  5259. side: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(200, "lbs"),
  5262. name: "Side",
  5263. image: {
  5264. source: "./media/characters/vulpes/side.svg",
  5265. extra: 577 / 549,
  5266. bottom: 11 / 588
  5267. }
  5268. },
  5269. back: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(200, "lbs"),
  5272. name: "Back",
  5273. image: {
  5274. source: "./media/characters/vulpes/back.svg",
  5275. extra: 573 / 549,
  5276. bottom: 20 / 593
  5277. }
  5278. },
  5279. feet: {
  5280. height: math.unit(1.276, "feet"),
  5281. name: "Feet",
  5282. image: {
  5283. source: "./media/characters/vulpes/feet.svg"
  5284. }
  5285. },
  5286. maw: {
  5287. height: math.unit(1.18, "feet"),
  5288. name: "Maw",
  5289. image: {
  5290. source: "./media/characters/vulpes/maw.svg"
  5291. }
  5292. },
  5293. },
  5294. [
  5295. {
  5296. name: "Micro",
  5297. height: math.unit(2, "inches")
  5298. },
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(6.3, "feet")
  5302. },
  5303. {
  5304. name: "Macro",
  5305. height: math.unit(850, "feet")
  5306. },
  5307. {
  5308. name: "Megamacro",
  5309. height: math.unit(7500, "feet"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Gigamacro",
  5314. height: math.unit(570000, "miles")
  5315. }
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5320. {
  5321. front: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(210, "lbs"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/rain-fallen/front.svg"
  5327. }
  5328. },
  5329. side: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(210, "lbs"),
  5332. name: "Side",
  5333. image: {
  5334. source: "./media/characters/rain-fallen/side.svg"
  5335. }
  5336. },
  5337. back: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(210, "lbs"),
  5340. name: "Back",
  5341. image: {
  5342. source: "./media/characters/rain-fallen/back.svg"
  5343. }
  5344. },
  5345. feral: {
  5346. height: math.unit(9, "feet"),
  5347. weight: math.unit(700, "lbs"),
  5348. name: "Feral",
  5349. image: {
  5350. source: "./media/characters/rain-fallen/feral.svg"
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "Meddling with Mortals",
  5357. height: math.unit(8 + 8/12, "feet")
  5358. },
  5359. {
  5360. name: "Normal",
  5361. height: math.unit(5, "meter")
  5362. },
  5363. {
  5364. name: "Macro",
  5365. height: math.unit(150, "meter"),
  5366. default: true
  5367. },
  5368. {
  5369. name: "Megamacro",
  5370. height: math.unit(278e6, "meter")
  5371. },
  5372. {
  5373. name: "Gigamacro",
  5374. height: math.unit(2e9, "meter")
  5375. },
  5376. {
  5377. name: "Teramacro",
  5378. height: math.unit(8e12, "meter")
  5379. },
  5380. {
  5381. name: "Devourer",
  5382. height: math.unit(14, "zettameters")
  5383. },
  5384. {
  5385. name: "Scarlet King",
  5386. height: math.unit(18, "yottameters")
  5387. },
  5388. {
  5389. name: "Void",
  5390. height: math.unit(1e88, "yottameters")
  5391. }
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5396. {
  5397. standing: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(180, "lbs"),
  5400. name: "Standing",
  5401. image: {
  5402. source: "./media/characters/zaakira/standing.svg",
  5403. extra: 1599/1504,
  5404. bottom: 39/1638
  5405. }
  5406. },
  5407. laying: {
  5408. height: math.unit(3.3, "feet"),
  5409. weight: math.unit(180, "lbs"),
  5410. name: "Laying",
  5411. image: {
  5412. source: "./media/characters/zaakira/laying.svg"
  5413. }
  5414. },
  5415. },
  5416. [
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(12, "feet")
  5420. },
  5421. {
  5422. name: "Macro",
  5423. height: math.unit(279, "feet"),
  5424. default: true
  5425. }
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5430. {
  5431. femSfw: {
  5432. height: math.unit(8, "feet"),
  5433. weight: math.unit(350, "lb"),
  5434. name: "Fem",
  5435. image: {
  5436. source: "./media/characters/sigvald/fem-sfw.svg",
  5437. extra: 182 / 164,
  5438. bottom: 8.7 / 190.5
  5439. }
  5440. },
  5441. femNsfw: {
  5442. height: math.unit(8, "feet"),
  5443. weight: math.unit(350, "lb"),
  5444. name: "Fem (NSFW)",
  5445. image: {
  5446. source: "./media/characters/sigvald/fem-nsfw.svg",
  5447. extra: 182 / 164,
  5448. bottom: 8.7 / 190.5
  5449. }
  5450. },
  5451. maleNsfw: {
  5452. height: math.unit(8, "feet"),
  5453. weight: math.unit(350, "lb"),
  5454. name: "Male (NSFW)",
  5455. image: {
  5456. source: "./media/characters/sigvald/male-nsfw.svg",
  5457. extra: 182 / 164,
  5458. bottom: 8.7 / 190.5
  5459. }
  5460. },
  5461. hermNsfw: {
  5462. height: math.unit(8, "feet"),
  5463. weight: math.unit(350, "lb"),
  5464. name: "Herm (NSFW)",
  5465. image: {
  5466. source: "./media/characters/sigvald/herm-nsfw.svg",
  5467. extra: 182 / 164,
  5468. bottom: 8.7 / 190.5
  5469. }
  5470. },
  5471. dick: {
  5472. height: math.unit(2.36, "feet"),
  5473. name: "Dick",
  5474. image: {
  5475. source: "./media/characters/sigvald/dick.svg"
  5476. }
  5477. },
  5478. eye: {
  5479. height: math.unit(0.31, "feet"),
  5480. name: "Eye",
  5481. image: {
  5482. source: "./media/characters/sigvald/eye.svg"
  5483. }
  5484. },
  5485. mouth: {
  5486. height: math.unit(0.92, "feet"),
  5487. name: "Mouth",
  5488. image: {
  5489. source: "./media/characters/sigvald/mouth.svg"
  5490. }
  5491. },
  5492. paws: {
  5493. height: math.unit(2.2, "feet"),
  5494. name: "Paws",
  5495. image: {
  5496. source: "./media/characters/sigvald/paws.svg"
  5497. }
  5498. }
  5499. },
  5500. [
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(8, "feet")
  5504. },
  5505. {
  5506. name: "Large",
  5507. height: math.unit(12, "feet")
  5508. },
  5509. {
  5510. name: "Larger",
  5511. height: math.unit(20, "feet")
  5512. },
  5513. {
  5514. name: "Macro",
  5515. height: math.unit(150, "feet")
  5516. },
  5517. {
  5518. name: "Macro+",
  5519. height: math.unit(200, "feet"),
  5520. default: true
  5521. },
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5526. {
  5527. side: {
  5528. height: math.unit(12, "feet"),
  5529. weight: math.unit(2000, "kg"),
  5530. name: "Side",
  5531. image: {
  5532. source: "./media/characters/scott/side.svg",
  5533. extra: 754 / 724,
  5534. bottom: 0.069
  5535. }
  5536. },
  5537. upright: {
  5538. height: math.unit(12, "feet"),
  5539. weight: math.unit(2000, "kg"),
  5540. name: "Upright",
  5541. image: {
  5542. source: "./media/characters/scott/upright.svg",
  5543. extra: 3881 / 3722,
  5544. bottom: 0.05
  5545. }
  5546. },
  5547. },
  5548. [
  5549. {
  5550. name: "Normal",
  5551. height: math.unit(12, "feet"),
  5552. default: true
  5553. },
  5554. ]
  5555. ))
  5556. characterMakers.push(() => makeCharacter(
  5557. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5558. {
  5559. side: {
  5560. height: math.unit(8, "meters"),
  5561. weight: math.unit(84755, "lbs"),
  5562. name: "Side",
  5563. image: {
  5564. source: "./media/characters/tobias/side.svg",
  5565. extra: 1474 / 1096,
  5566. bottom: 38.9 / 1513.1235
  5567. }
  5568. },
  5569. },
  5570. [
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(8, "meters"),
  5574. default: true
  5575. },
  5576. ]
  5577. ))
  5578. characterMakers.push(() => makeCharacter(
  5579. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5580. {
  5581. front: {
  5582. height: math.unit(5.5, "feet"),
  5583. weight: math.unit(400, "lbs"),
  5584. name: "Front",
  5585. image: {
  5586. source: "./media/characters/kieran/front.svg",
  5587. extra: 2694 / 2364,
  5588. bottom: 217 / 2908
  5589. }
  5590. },
  5591. side: {
  5592. height: math.unit(5.5, "feet"),
  5593. weight: math.unit(400, "lbs"),
  5594. name: "Side",
  5595. image: {
  5596. source: "./media/characters/kieran/side.svg",
  5597. extra: 875 / 777,
  5598. bottom: 84.6 / 959
  5599. }
  5600. },
  5601. },
  5602. [
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(5.5, "feet"),
  5606. default: true
  5607. },
  5608. ]
  5609. ))
  5610. characterMakers.push(() => makeCharacter(
  5611. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5612. {
  5613. side: {
  5614. height: math.unit(2, "meters"),
  5615. weight: math.unit(70, "kg"),
  5616. name: "Side",
  5617. image: {
  5618. source: "./media/characters/sanya/side.svg",
  5619. bottom: 0.02,
  5620. extra: 1.02
  5621. }
  5622. },
  5623. },
  5624. [
  5625. {
  5626. name: "Small",
  5627. height: math.unit(2, "meters")
  5628. },
  5629. {
  5630. name: "Normal",
  5631. height: math.unit(3, "meters")
  5632. },
  5633. {
  5634. name: "Macro",
  5635. height: math.unit(16, "meters"),
  5636. default: true
  5637. },
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5642. {
  5643. front: {
  5644. height: math.unit(2, "meters"),
  5645. weight: math.unit(120, "kg"),
  5646. name: "Front",
  5647. image: {
  5648. source: "./media/characters/miranda/front.svg",
  5649. extra: 195 / 185,
  5650. bottom: 10.9 / 206.5
  5651. }
  5652. },
  5653. back: {
  5654. height: math.unit(2, "meters"),
  5655. weight: math.unit(120, "kg"),
  5656. name: "Back",
  5657. image: {
  5658. source: "./media/characters/miranda/back.svg",
  5659. extra: 201 / 193,
  5660. bottom: 2.3 / 203.7
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(10, "feet"),
  5668. default: true
  5669. }
  5670. ]
  5671. ))
  5672. characterMakers.push(() => makeCharacter(
  5673. { name: "James", species: ["deer"], tags: ["anthro"] },
  5674. {
  5675. side: {
  5676. height: math.unit(2, "meters"),
  5677. weight: math.unit(100, "kg"),
  5678. name: "Front",
  5679. image: {
  5680. source: "./media/characters/james/front.svg",
  5681. extra: 10 / 8.5
  5682. }
  5683. },
  5684. },
  5685. [
  5686. {
  5687. name: "Normal",
  5688. height: math.unit(8.5, "feet"),
  5689. default: true
  5690. }
  5691. ]
  5692. ))
  5693. characterMakers.push(() => makeCharacter(
  5694. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5695. {
  5696. side: {
  5697. height: math.unit(9.5, "feet"),
  5698. weight: math.unit(2500, "lbs"),
  5699. name: "Side",
  5700. image: {
  5701. source: "./media/characters/heather/side.svg"
  5702. }
  5703. },
  5704. },
  5705. [
  5706. {
  5707. name: "Normal",
  5708. height: math.unit(9.5, "feet"),
  5709. default: true
  5710. }
  5711. ]
  5712. ))
  5713. characterMakers.push(() => makeCharacter(
  5714. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5715. {
  5716. side: {
  5717. height: math.unit(6.5, "feet"),
  5718. weight: math.unit(400, "lbs"),
  5719. name: "Side",
  5720. image: {
  5721. source: "./media/characters/lukas/side.svg",
  5722. extra: 7.25 / 6.5
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "Normal",
  5729. height: math.unit(6.5, "feet"),
  5730. default: true
  5731. }
  5732. ]
  5733. ))
  5734. characterMakers.push(() => makeCharacter(
  5735. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5736. {
  5737. side: {
  5738. height: math.unit(5, "feet"),
  5739. weight: math.unit(3000, "lbs"),
  5740. name: "Side",
  5741. image: {
  5742. source: "./media/characters/louise/side.svg"
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(5, "feet"),
  5750. default: true
  5751. }
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5756. {
  5757. side: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(150, "lbs"),
  5760. name: "Side",
  5761. image: {
  5762. source: "./media/characters/ramona/side.svg",
  5763. extra: 871/854,
  5764. bottom: 41/912
  5765. }
  5766. },
  5767. },
  5768. [
  5769. {
  5770. name: "Normal",
  5771. height: math.unit(6 + 4/12, "feet")
  5772. },
  5773. {
  5774. name: "Minimacro",
  5775. height: math.unit(5.3, "meters"),
  5776. default: true
  5777. },
  5778. {
  5779. name: "Macro",
  5780. height: math.unit(20, "stories")
  5781. },
  5782. {
  5783. name: "Macro+",
  5784. height: math.unit(50, "stories")
  5785. },
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5790. {
  5791. standing: {
  5792. height: math.unit(5.75, "feet"),
  5793. weight: math.unit(160, "lbs"),
  5794. name: "Standing",
  5795. image: {
  5796. source: "./media/characters/deerpuff/standing.svg",
  5797. extra: 682 / 624
  5798. }
  5799. },
  5800. sitting: {
  5801. height: math.unit(5.75 / 1.79, "feet"),
  5802. weight: math.unit(160, "lbs"),
  5803. name: "Sitting",
  5804. image: {
  5805. source: "./media/characters/deerpuff/sitting.svg",
  5806. bottom: 44 / 400,
  5807. extra: 1
  5808. }
  5809. },
  5810. taurLaying: {
  5811. height: math.unit(6, "feet"),
  5812. weight: math.unit(400, "lbs"),
  5813. name: "Taur (Laying)",
  5814. image: {
  5815. source: "./media/characters/deerpuff/taur-laying.svg"
  5816. }
  5817. },
  5818. },
  5819. [
  5820. {
  5821. name: "Puffball",
  5822. height: math.unit(6, "inches")
  5823. },
  5824. {
  5825. name: "Normalpuff",
  5826. height: math.unit(5.75, "feet")
  5827. },
  5828. {
  5829. name: "Macropuff",
  5830. height: math.unit(1500, "feet"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Megapuff",
  5835. height: math.unit(500, "miles")
  5836. },
  5837. {
  5838. name: "Gigapuff",
  5839. height: math.unit(250000, "miles")
  5840. },
  5841. {
  5842. name: "Omegapuff",
  5843. height: math.unit(1000, "lightyears")
  5844. },
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5849. {
  5850. stomping: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(170, "lbs"),
  5853. name: "Stomping",
  5854. image: {
  5855. source: "./media/characters/vivian/stomping.svg"
  5856. }
  5857. },
  5858. sitting: {
  5859. height: math.unit(6 / 1.75, "feet"),
  5860. weight: math.unit(170, "lbs"),
  5861. name: "Sitting",
  5862. image: {
  5863. source: "./media/characters/vivian/sitting.svg",
  5864. bottom: 1 / 6.4,
  5865. extra: 1,
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(7, "feet"),
  5873. default: true
  5874. },
  5875. {
  5876. name: "Macro",
  5877. height: math.unit(10, "stories")
  5878. },
  5879. {
  5880. name: "Macro+",
  5881. height: math.unit(30, "stories")
  5882. },
  5883. {
  5884. name: "Megamacro",
  5885. height: math.unit(10, "miles")
  5886. },
  5887. {
  5888. name: "Megamacro+",
  5889. height: math.unit(2750000, "meters")
  5890. },
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5895. {
  5896. front: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(160, "lbs"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/prince/front.svg",
  5902. extra: 3400 / 3000
  5903. }
  5904. },
  5905. jumping: {
  5906. height: math.unit(6, "feet"),
  5907. weight: math.unit(160, "lbs"),
  5908. name: "Jumping",
  5909. image: {
  5910. source: "./media/characters/prince/jump.svg",
  5911. extra: 2555 / 2134
  5912. }
  5913. },
  5914. },
  5915. [
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(7.75, "feet"),
  5919. default: true
  5920. },
  5921. {
  5922. name: "Not cute",
  5923. height: math.unit(17, "feet")
  5924. },
  5925. {
  5926. name: "I said NOT",
  5927. height: math.unit(91, "feet")
  5928. },
  5929. {
  5930. name: "Please stop",
  5931. height: math.unit(560, "feet")
  5932. },
  5933. {
  5934. name: "What have you done",
  5935. height: math.unit(2200, "feet")
  5936. },
  5937. {
  5938. name: "Deer God",
  5939. height: math.unit(3.6, "miles")
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5945. {
  5946. standing: {
  5947. height: math.unit(6, "feet"),
  5948. weight: math.unit(300, "lbs"),
  5949. name: "Standing",
  5950. image: {
  5951. source: "./media/characters/psymon/standing.svg",
  5952. extra: 1888 / 1810,
  5953. bottom: 0.05
  5954. }
  5955. },
  5956. slithering: {
  5957. height: math.unit(6, "feet"),
  5958. weight: math.unit(300, "lbs"),
  5959. name: "Slithering",
  5960. image: {
  5961. source: "./media/characters/psymon/slithering.svg",
  5962. extra: 1330 / 1224
  5963. }
  5964. },
  5965. slitheringAlt: {
  5966. height: math.unit(6, "feet"),
  5967. weight: math.unit(300, "lbs"),
  5968. name: "Slithering (Alt)",
  5969. image: {
  5970. source: "./media/characters/psymon/slithering-alt.svg",
  5971. extra: 1330 / 1224
  5972. }
  5973. },
  5974. },
  5975. [
  5976. {
  5977. name: "Normal",
  5978. height: math.unit(11.25, "feet"),
  5979. default: true
  5980. },
  5981. {
  5982. name: "Large",
  5983. height: math.unit(27, "feet")
  5984. },
  5985. {
  5986. name: "Giant",
  5987. height: math.unit(87, "feet")
  5988. },
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(365, "feet")
  5992. },
  5993. {
  5994. name: "Megamacro",
  5995. height: math.unit(3, "miles")
  5996. },
  5997. {
  5998. name: "World Serpent",
  5999. height: math.unit(8000, "miles")
  6000. },
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6005. {
  6006. front: {
  6007. height: math.unit(6, "feet"),
  6008. weight: math.unit(180, "lbs"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/daimos/front.svg",
  6012. extra: 4160 / 3897,
  6013. bottom: 0.021
  6014. }
  6015. }
  6016. },
  6017. [
  6018. {
  6019. name: "Normal",
  6020. height: math.unit(8, "feet"),
  6021. default: true
  6022. },
  6023. {
  6024. name: "Big Dog",
  6025. height: math.unit(22, "feet")
  6026. },
  6027. {
  6028. name: "Macro",
  6029. height: math.unit(127, "feet")
  6030. },
  6031. {
  6032. name: "Megamacro",
  6033. height: math.unit(3600, "feet")
  6034. },
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6039. {
  6040. side: {
  6041. height: math.unit(6, "feet"),
  6042. weight: math.unit(180, "lbs"),
  6043. name: "Side",
  6044. image: {
  6045. source: "./media/characters/blake/side.svg",
  6046. extra: 1212 / 1120,
  6047. bottom: 0.05
  6048. }
  6049. },
  6050. crouched: {
  6051. height: math.unit(6 * 0.57, "feet"),
  6052. weight: math.unit(180, "lbs"),
  6053. name: "Crouched",
  6054. image: {
  6055. source: "./media/characters/blake/crouched.svg",
  6056. extra: 840 / 587,
  6057. bottom: 0.04
  6058. }
  6059. },
  6060. bent: {
  6061. height: math.unit(6 * 0.75, "feet"),
  6062. weight: math.unit(180, "lbs"),
  6063. name: "Bent",
  6064. image: {
  6065. source: "./media/characters/blake/bent.svg",
  6066. extra: 592 / 544,
  6067. bottom: 0.035
  6068. }
  6069. },
  6070. },
  6071. [
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(8 + 1 / 6, "feet"),
  6075. default: true
  6076. },
  6077. {
  6078. name: "Big Backside",
  6079. height: math.unit(37, "feet")
  6080. },
  6081. {
  6082. name: "Subway Shredder",
  6083. height: math.unit(72, "feet")
  6084. },
  6085. {
  6086. name: "City Carver",
  6087. height: math.unit(1675, "feet")
  6088. },
  6089. {
  6090. name: "Tectonic Tweaker",
  6091. height: math.unit(2300, "miles")
  6092. },
  6093. ]
  6094. ))
  6095. characterMakers.push(() => makeCharacter(
  6096. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6097. {
  6098. front: {
  6099. height: math.unit(6, "feet"),
  6100. weight: math.unit(180, "lbs"),
  6101. name: "Front",
  6102. image: {
  6103. source: "./media/characters/guisetto/front.svg",
  6104. extra: 856 / 817,
  6105. bottom: 0.06
  6106. }
  6107. },
  6108. airborne: {
  6109. height: math.unit(6, "feet"),
  6110. weight: math.unit(180, "lbs"),
  6111. name: "Airborne",
  6112. image: {
  6113. source: "./media/characters/guisetto/airborne.svg",
  6114. extra: 584 / 525
  6115. }
  6116. },
  6117. },
  6118. [
  6119. {
  6120. name: "Normal",
  6121. height: math.unit(10 + 11 / 12, "feet"),
  6122. default: true
  6123. },
  6124. {
  6125. name: "Large",
  6126. height: math.unit(35, "feet")
  6127. },
  6128. {
  6129. name: "Macro",
  6130. height: math.unit(475, "feet")
  6131. },
  6132. ]
  6133. ))
  6134. characterMakers.push(() => makeCharacter(
  6135. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6136. {
  6137. front: {
  6138. height: math.unit(6, "feet"),
  6139. weight: math.unit(180, "lbs"),
  6140. name: "Front",
  6141. image: {
  6142. source: "./media/characters/luxor/front.svg",
  6143. extra: 2940 / 2152
  6144. }
  6145. },
  6146. back: {
  6147. height: math.unit(6, "feet"),
  6148. weight: math.unit(180, "lbs"),
  6149. name: "Back",
  6150. image: {
  6151. source: "./media/characters/luxor/back.svg",
  6152. extra: 1083 / 960
  6153. }
  6154. },
  6155. },
  6156. [
  6157. {
  6158. name: "Normal",
  6159. height: math.unit(5 + 5 / 6, "feet"),
  6160. default: true
  6161. },
  6162. {
  6163. name: "Lamp",
  6164. height: math.unit(50, "feet")
  6165. },
  6166. {
  6167. name: "Lämp",
  6168. height: math.unit(300, "feet")
  6169. },
  6170. {
  6171. name: "The sun is a lamp",
  6172. height: math.unit(250000, "miles")
  6173. },
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6178. {
  6179. front: {
  6180. height: math.unit(6, "feet"),
  6181. weight: math.unit(50, "lbs"),
  6182. name: "Front",
  6183. image: {
  6184. source: "./media/characters/huoyan/front.svg"
  6185. }
  6186. },
  6187. side: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(180, "lbs"),
  6190. name: "Side",
  6191. image: {
  6192. source: "./media/characters/huoyan/side.svg"
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Chef",
  6199. height: math.unit(9, "feet")
  6200. },
  6201. {
  6202. name: "Normal",
  6203. height: math.unit(65, "feet"),
  6204. default: true
  6205. },
  6206. {
  6207. name: "Macro",
  6208. height: math.unit(780, "feet")
  6209. },
  6210. {
  6211. name: "Flaming Mountain",
  6212. height: math.unit(4.8, "miles")
  6213. },
  6214. {
  6215. name: "Celestial",
  6216. height: math.unit(765000, "miles")
  6217. },
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(5 + 3 / 4, "feet"),
  6225. weight: math.unit(120, "lbs"),
  6226. name: "Front",
  6227. image: {
  6228. source: "./media/characters/tails/front.svg"
  6229. }
  6230. }
  6231. },
  6232. [
  6233. {
  6234. name: "Normal",
  6235. height: math.unit(5 + 3 / 4, "feet"),
  6236. default: true
  6237. }
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6242. {
  6243. front: {
  6244. height: math.unit(4, "feet"),
  6245. weight: math.unit(50, "lbs"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/rainy/front.svg"
  6249. }
  6250. }
  6251. },
  6252. [
  6253. {
  6254. name: "Macro",
  6255. height: math.unit(800, "feet"),
  6256. default: true
  6257. }
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(150, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/rainier/front.svg"
  6269. }
  6270. }
  6271. },
  6272. [
  6273. {
  6274. name: "Micro",
  6275. height: math.unit(2, "mm"),
  6276. default: true
  6277. }
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6282. {
  6283. front: {
  6284. height: math.unit(8 + 4/12, "feet"),
  6285. weight: math.unit(450, "kilograms"),
  6286. volume: math.unit(5, "cups"),
  6287. name: "Front",
  6288. image: {
  6289. source: "./media/characters/andy-renard/front.svg",
  6290. extra: 1839/1726,
  6291. bottom: 134/1973
  6292. }
  6293. },
  6294. back: {
  6295. height: math.unit(8 + 4/12, "feet"),
  6296. weight: math.unit(450, "kilograms"),
  6297. volume: math.unit(5, "cups"),
  6298. name: "Back",
  6299. image: {
  6300. source: "./media/characters/andy-renard/back.svg",
  6301. extra: 1838/1710,
  6302. bottom: 105/1943
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Tall",
  6309. height: math.unit(8 + 4/12, "feet")
  6310. },
  6311. {
  6312. name: "Mini Macro",
  6313. height: math.unit(15, "feet"),
  6314. default: true
  6315. },
  6316. {
  6317. name: "Macro",
  6318. height: math.unit(100, "feet")
  6319. },
  6320. {
  6321. name: "Mega Macro",
  6322. height: math.unit(1000, "feet")
  6323. },
  6324. {
  6325. name: "Giga Macro",
  6326. height: math.unit(10, "miles")
  6327. },
  6328. {
  6329. name: "God Macro",
  6330. height: math.unit(1, "multiverse")
  6331. },
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(6, "feet"),
  6339. weight: math.unit(210, "lbs"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/cimmaron/front-sfw.svg",
  6343. extra: 701 / 676,
  6344. bottom: 0.046
  6345. }
  6346. },
  6347. back: {
  6348. height: math.unit(6, "feet"),
  6349. weight: math.unit(210, "lbs"),
  6350. name: "Back",
  6351. image: {
  6352. source: "./media/characters/cimmaron/back-sfw.svg",
  6353. extra: 701 / 676,
  6354. bottom: 0.046
  6355. }
  6356. },
  6357. frontNsfw: {
  6358. height: math.unit(6, "feet"),
  6359. weight: math.unit(210, "lbs"),
  6360. name: "Front (NSFW)",
  6361. image: {
  6362. source: "./media/characters/cimmaron/front-nsfw.svg",
  6363. extra: 701 / 676,
  6364. bottom: 0.046
  6365. }
  6366. },
  6367. backNsfw: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(210, "lbs"),
  6370. name: "Back (NSFW)",
  6371. image: {
  6372. source: "./media/characters/cimmaron/back-nsfw.svg",
  6373. extra: 701 / 676,
  6374. bottom: 0.046
  6375. }
  6376. },
  6377. dick: {
  6378. height: math.unit(1.714, "feet"),
  6379. name: "Dick",
  6380. image: {
  6381. source: "./media/characters/cimmaron/dick.svg"
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(6, "feet"),
  6389. default: true
  6390. },
  6391. {
  6392. name: "Macro Mayor",
  6393. height: math.unit(350, "meters")
  6394. },
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(6, "feet"),
  6402. weight: math.unit(200, "lbs"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/akari/front.svg",
  6406. extra: 962 / 901,
  6407. bottom: 0.04
  6408. }
  6409. }
  6410. },
  6411. [
  6412. {
  6413. name: "Micro",
  6414. height: math.unit(5, "inches"),
  6415. default: true
  6416. },
  6417. {
  6418. name: "Normal",
  6419. height: math.unit(7, "feet")
  6420. },
  6421. ]
  6422. ))
  6423. characterMakers.push(() => makeCharacter(
  6424. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6425. {
  6426. front: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(140, "lbs"),
  6429. name: "Front",
  6430. image: {
  6431. source: "./media/characters/cynosura/front.svg",
  6432. extra: 896 / 847
  6433. }
  6434. },
  6435. back: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(140, "lbs"),
  6438. name: "Back",
  6439. image: {
  6440. source: "./media/characters/cynosura/back.svg",
  6441. extra: 1365 / 1250
  6442. }
  6443. },
  6444. },
  6445. [
  6446. {
  6447. name: "Micro",
  6448. height: math.unit(4, "inches")
  6449. },
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(5.75, "feet"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Tall",
  6457. height: math.unit(10, "feet")
  6458. },
  6459. {
  6460. name: "Big",
  6461. height: math.unit(20, "feet")
  6462. },
  6463. {
  6464. name: "Macro",
  6465. height: math.unit(50, "feet")
  6466. },
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6471. {
  6472. front: {
  6473. height: math.unit(13 + 2/12, "feet"),
  6474. weight: math.unit(800, "kg"),
  6475. name: "Front",
  6476. image: {
  6477. source: "./media/characters/gin/front.svg",
  6478. extra: 1312/1191,
  6479. bottom: 45/1357
  6480. }
  6481. },
  6482. mouth: {
  6483. height: math.unit(2.39 * 1.8, "feet"),
  6484. name: "Mouth",
  6485. image: {
  6486. source: "./media/characters/gin/mouth.svg"
  6487. }
  6488. },
  6489. hand: {
  6490. height: math.unit(1.57 * 2.19, "feet"),
  6491. name: "Hand",
  6492. image: {
  6493. source: "./media/characters/gin/hand.svg"
  6494. }
  6495. },
  6496. foot: {
  6497. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6498. name: "Foot",
  6499. image: {
  6500. source: "./media/characters/gin/foot.svg"
  6501. }
  6502. },
  6503. sole: {
  6504. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6505. name: "Sole",
  6506. image: {
  6507. source: "./media/characters/gin/sole.svg"
  6508. }
  6509. },
  6510. },
  6511. [
  6512. {
  6513. name: "Very Small",
  6514. height: math.unit(13 + 2 / 12, "feet")
  6515. },
  6516. {
  6517. name: "Micro",
  6518. height: math.unit(600, "miles")
  6519. },
  6520. {
  6521. name: "Regular",
  6522. height: math.unit(20, "earths"),
  6523. default: true
  6524. },
  6525. {
  6526. name: "Macro",
  6527. height: math.unit(2.2, "solarradii")
  6528. },
  6529. {
  6530. name: "Teramacro",
  6531. height: math.unit(1.2, "galaxies")
  6532. },
  6533. {
  6534. name: "Omegamacro",
  6535. height: math.unit(200, "universes")
  6536. },
  6537. ]
  6538. ))
  6539. characterMakers.push(() => makeCharacter(
  6540. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6541. {
  6542. front: {
  6543. height: math.unit(6 + 1 / 6, "feet"),
  6544. weight: math.unit(178, "lbs"),
  6545. name: "Front",
  6546. image: {
  6547. source: "./media/characters/guy/front.svg"
  6548. }
  6549. }
  6550. },
  6551. [
  6552. {
  6553. name: "Normal",
  6554. height: math.unit(6 + 1 / 6, "feet"),
  6555. default: true
  6556. },
  6557. {
  6558. name: "Large",
  6559. height: math.unit(25 + 7 / 12, "feet")
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(60 + 9 / 12, "feet")
  6564. },
  6565. {
  6566. name: "Macro+",
  6567. height: math.unit(246, "feet")
  6568. },
  6569. {
  6570. name: "Macro++",
  6571. height: math.unit(878, "feet")
  6572. }
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(9, "feet"),
  6580. weight: math.unit(800, "lbs"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/tiberius/front.svg",
  6584. extra: 2295 / 2071
  6585. }
  6586. },
  6587. back: {
  6588. height: math.unit(9, "feet"),
  6589. weight: math.unit(800, "lbs"),
  6590. name: "Back",
  6591. image: {
  6592. source: "./media/characters/tiberius/back.svg",
  6593. extra: 2373 / 2160
  6594. }
  6595. },
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(9, "feet"),
  6601. default: true
  6602. }
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6607. {
  6608. front: {
  6609. height: math.unit(6, "feet"),
  6610. weight: math.unit(600, "lbs"),
  6611. name: "Front",
  6612. image: {
  6613. source: "./media/characters/surgo/front.svg",
  6614. extra: 3591 / 2227
  6615. }
  6616. },
  6617. back: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(600, "lbs"),
  6620. name: "Back",
  6621. image: {
  6622. source: "./media/characters/surgo/back.svg",
  6623. extra: 3557 / 2228
  6624. }
  6625. },
  6626. laying: {
  6627. height: math.unit(6 * 0.85, "feet"),
  6628. weight: math.unit(600, "lbs"),
  6629. name: "Laying",
  6630. image: {
  6631. source: "./media/characters/surgo/laying.svg"
  6632. }
  6633. },
  6634. },
  6635. [
  6636. {
  6637. name: "Normal",
  6638. height: math.unit(6, "feet"),
  6639. default: true
  6640. }
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6645. {
  6646. side: {
  6647. height: math.unit(6, "feet"),
  6648. weight: math.unit(150, "lbs"),
  6649. name: "Side",
  6650. image: {
  6651. source: "./media/characters/cibus/side.svg",
  6652. extra: 800 / 400
  6653. }
  6654. },
  6655. },
  6656. [
  6657. {
  6658. name: "Normal",
  6659. height: math.unit(6, "feet"),
  6660. default: true
  6661. }
  6662. ]
  6663. ))
  6664. characterMakers.push(() => makeCharacter(
  6665. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6666. {
  6667. front: {
  6668. height: math.unit(6, "feet"),
  6669. weight: math.unit(240, "lbs"),
  6670. name: "Front",
  6671. image: {
  6672. source: "./media/characters/nibbles/front.svg"
  6673. }
  6674. },
  6675. side: {
  6676. height: math.unit(6, "feet"),
  6677. weight: math.unit(240, "lbs"),
  6678. name: "Side",
  6679. image: {
  6680. source: "./media/characters/nibbles/side.svg"
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(9, "feet"),
  6688. default: true
  6689. }
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6694. {
  6695. side: {
  6696. height: math.unit(5 + 1 / 6, "feet"),
  6697. weight: math.unit(130, "lbs"),
  6698. name: "Side",
  6699. image: {
  6700. source: "./media/characters/rikky/side.svg",
  6701. extra: 851 / 801
  6702. }
  6703. },
  6704. },
  6705. [
  6706. {
  6707. name: "Normal",
  6708. height: math.unit(5 + 1 / 6, "feet")
  6709. },
  6710. {
  6711. name: "Macro",
  6712. height: math.unit(152, "feet"),
  6713. default: true
  6714. },
  6715. {
  6716. name: "Megamacro",
  6717. height: math.unit(7, "miles")
  6718. }
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6723. {
  6724. side: {
  6725. height: math.unit(370, "cm"),
  6726. weight: math.unit(350, "lbs"),
  6727. name: "Side",
  6728. image: {
  6729. source: "./media/characters/malfressa/side.svg"
  6730. }
  6731. },
  6732. walking: {
  6733. height: math.unit(370, "cm"),
  6734. weight: math.unit(350, "lbs"),
  6735. name: "Walking",
  6736. image: {
  6737. source: "./media/characters/malfressa/walking.svg"
  6738. }
  6739. },
  6740. feral: {
  6741. height: math.unit(2500, "cm"),
  6742. weight: math.unit(100000, "lbs"),
  6743. name: "Feral",
  6744. image: {
  6745. source: "./media/characters/malfressa/feral.svg",
  6746. extra: 2108 / 837,
  6747. bottom: 0.02
  6748. }
  6749. },
  6750. },
  6751. [
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(370, "cm")
  6755. },
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(300, "meters"),
  6759. default: true
  6760. }
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6765. {
  6766. front: {
  6767. height: math.unit(6, "feet"),
  6768. weight: math.unit(60, "kg"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/jaro/front.svg",
  6772. extra: 845/817,
  6773. bottom: 45/890
  6774. }
  6775. },
  6776. back: {
  6777. height: math.unit(6, "feet"),
  6778. weight: math.unit(60, "kg"),
  6779. name: "Back",
  6780. image: {
  6781. source: "./media/characters/jaro/back.svg",
  6782. extra: 847/817,
  6783. bottom: 34/881
  6784. }
  6785. },
  6786. },
  6787. [
  6788. {
  6789. name: "Micro",
  6790. height: math.unit(7, "inches")
  6791. },
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(5.5, "feet"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Minimacro",
  6799. height: math.unit(20, "feet")
  6800. },
  6801. {
  6802. name: "Macro",
  6803. height: math.unit(200, "meters")
  6804. }
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6809. {
  6810. front: {
  6811. height: math.unit(6, "feet"),
  6812. weight: math.unit(195, "lb"),
  6813. name: "Front",
  6814. image: {
  6815. source: "./media/characters/rogue/front.svg"
  6816. }
  6817. },
  6818. },
  6819. [
  6820. {
  6821. name: "Macro",
  6822. height: math.unit(90, "feet"),
  6823. default: true
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6829. {
  6830. standing: {
  6831. height: math.unit(5 + 8 / 12, "feet"),
  6832. weight: math.unit(140, "lb"),
  6833. name: "Standing",
  6834. image: {
  6835. source: "./media/characters/piper/standing.svg",
  6836. extra: 1440/1284,
  6837. bottom: 66/1506
  6838. }
  6839. },
  6840. running: {
  6841. height: math.unit(5 + 8 / 12, "feet"),
  6842. weight: math.unit(140, "lb"),
  6843. name: "Running",
  6844. image: {
  6845. source: "./media/characters/piper/running.svg",
  6846. extra: 3948/3655,
  6847. bottom: 0/3948
  6848. }
  6849. },
  6850. sole: {
  6851. height: math.unit(0.81, "feet"),
  6852. weight: math.unit(2, "kg"),
  6853. name: "Sole",
  6854. image: {
  6855. source: "./media/characters/piper/sole.svg"
  6856. }
  6857. },
  6858. nipple: {
  6859. height: math.unit(0.25, "feet"),
  6860. weight: math.unit(1.5, "lb"),
  6861. name: "Nipple",
  6862. image: {
  6863. source: "./media/characters/piper/nipple.svg"
  6864. }
  6865. },
  6866. head: {
  6867. height: math.unit(1.1, "feet"),
  6868. name: "Head",
  6869. image: {
  6870. source: "./media/characters/piper/head.svg"
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Micro",
  6877. height: math.unit(2, "inches")
  6878. },
  6879. {
  6880. name: "Normal",
  6881. height: math.unit(5 + 8 / 12, "feet")
  6882. },
  6883. {
  6884. name: "Macro",
  6885. height: math.unit(250, "feet"),
  6886. default: true
  6887. },
  6888. {
  6889. name: "Megamacro",
  6890. height: math.unit(7, "miles")
  6891. },
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(6, "feet"),
  6899. weight: math.unit(220, "lb"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/gemini/front.svg"
  6903. }
  6904. },
  6905. back: {
  6906. height: math.unit(6, "feet"),
  6907. weight: math.unit(220, "lb"),
  6908. name: "Back",
  6909. image: {
  6910. source: "./media/characters/gemini/back.svg"
  6911. }
  6912. },
  6913. kneeling: {
  6914. height: math.unit(6 / 1.5, "feet"),
  6915. weight: math.unit(220, "lb"),
  6916. name: "Kneeling",
  6917. image: {
  6918. source: "./media/characters/gemini/kneeling.svg",
  6919. bottom: 0.02
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(300, "meters"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Megamacro",
  6931. height: math.unit(6900, "meters")
  6932. },
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6937. {
  6938. anthro: {
  6939. height: math.unit(2.35, "meters"),
  6940. weight: math.unit(73, "kg"),
  6941. name: "Anthro",
  6942. image: {
  6943. source: "./media/characters/alicia/anthro.svg",
  6944. extra: 2571 / 2385,
  6945. bottom: 75 / 2648
  6946. }
  6947. },
  6948. paw: {
  6949. height: math.unit(1.32, "feet"),
  6950. name: "Paw",
  6951. image: {
  6952. source: "./media/characters/alicia/paw.svg"
  6953. }
  6954. },
  6955. feral: {
  6956. height: math.unit(1.69, "meters"),
  6957. weight: math.unit(73, "kg"),
  6958. name: "Feral",
  6959. image: {
  6960. source: "./media/characters/alicia/feral.svg",
  6961. extra: 2123 / 1715,
  6962. bottom: 222 / 2349
  6963. }
  6964. },
  6965. },
  6966. [
  6967. {
  6968. name: "Normal",
  6969. height: math.unit(2.35, "meters")
  6970. },
  6971. {
  6972. name: "Macro",
  6973. height: math.unit(60, "meters"),
  6974. default: true
  6975. },
  6976. {
  6977. name: "Megamacro",
  6978. height: math.unit(10000, "kilometers")
  6979. },
  6980. ]
  6981. ))
  6982. characterMakers.push(() => makeCharacter(
  6983. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6984. {
  6985. front: {
  6986. height: math.unit(7, "feet"),
  6987. weight: math.unit(250, "lbs"),
  6988. name: "Front",
  6989. image: {
  6990. source: "./media/characters/archy/front.svg"
  6991. }
  6992. }
  6993. },
  6994. [
  6995. {
  6996. name: "Micro",
  6997. height: math.unit(1, "inch")
  6998. },
  6999. {
  7000. name: "Shorty",
  7001. height: math.unit(5, "feet")
  7002. },
  7003. {
  7004. name: "Normal",
  7005. height: math.unit(7, "feet")
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(600, "meters"),
  7010. default: true
  7011. },
  7012. {
  7013. name: "Megamacro",
  7014. height: math.unit(1, "mile")
  7015. },
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7020. {
  7021. front: {
  7022. height: math.unit(1.65, "meters"),
  7023. weight: math.unit(74, "kg"),
  7024. name: "Front",
  7025. image: {
  7026. source: "./media/characters/berri/front.svg",
  7027. extra: 857 / 837,
  7028. bottom: 18 / 877
  7029. }
  7030. },
  7031. bum: {
  7032. height: math.unit(1.46, "feet"),
  7033. name: "Bum",
  7034. image: {
  7035. source: "./media/characters/berri/bum.svg"
  7036. }
  7037. },
  7038. mouth: {
  7039. height: math.unit(0.44, "feet"),
  7040. name: "Mouth",
  7041. image: {
  7042. source: "./media/characters/berri/mouth.svg"
  7043. }
  7044. },
  7045. paw: {
  7046. height: math.unit(0.826, "feet"),
  7047. name: "Paw",
  7048. image: {
  7049. source: "./media/characters/berri/paw.svg"
  7050. }
  7051. },
  7052. },
  7053. [
  7054. {
  7055. name: "Normal",
  7056. height: math.unit(1.65, "meters")
  7057. },
  7058. {
  7059. name: "Macro",
  7060. height: math.unit(60, "m"),
  7061. default: true
  7062. },
  7063. {
  7064. name: "Megamacro",
  7065. height: math.unit(9.213, "km")
  7066. },
  7067. {
  7068. name: "Planet Eater",
  7069. height: math.unit(489, "megameters")
  7070. },
  7071. {
  7072. name: "Teramacro",
  7073. height: math.unit(2471635000000, "meters")
  7074. },
  7075. {
  7076. name: "Examacro",
  7077. height: math.unit(8.0624e+26, "meters")
  7078. }
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7083. {
  7084. front: {
  7085. height: math.unit(1.72, "meters"),
  7086. weight: math.unit(68, "kg"),
  7087. name: "Front",
  7088. image: {
  7089. source: "./media/characters/lexi/front.svg"
  7090. }
  7091. }
  7092. },
  7093. [
  7094. {
  7095. name: "Very Smol",
  7096. height: math.unit(10, "mm")
  7097. },
  7098. {
  7099. name: "Micro",
  7100. height: math.unit(6.8, "cm"),
  7101. default: true
  7102. },
  7103. {
  7104. name: "Normal",
  7105. height: math.unit(1.72, "m")
  7106. }
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(1.69, "meters"),
  7114. weight: math.unit(68, "kg"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/martin/front.svg",
  7118. extra: 596 / 581
  7119. }
  7120. }
  7121. },
  7122. [
  7123. {
  7124. name: "Micro",
  7125. height: math.unit(6.85, "cm"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(1.69, "m")
  7131. }
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7136. {
  7137. front: {
  7138. height: math.unit(1.69, "meters"),
  7139. weight: math.unit(68, "kg"),
  7140. name: "Front",
  7141. image: {
  7142. source: "./media/characters/juno/front.svg"
  7143. }
  7144. }
  7145. },
  7146. [
  7147. {
  7148. name: "Micro",
  7149. height: math.unit(7, "cm")
  7150. },
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(1.89, "m")
  7154. },
  7155. {
  7156. name: "Macro",
  7157. height: math.unit(353, "meters"),
  7158. default: true
  7159. }
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(1.93, "meters"),
  7167. weight: math.unit(83, "kg"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/samantha/front.svg"
  7171. }
  7172. },
  7173. frontClothed: {
  7174. height: math.unit(1.93, "meters"),
  7175. weight: math.unit(83, "kg"),
  7176. name: "Front (Clothed)",
  7177. image: {
  7178. source: "./media/characters/samantha/front-clothed.svg"
  7179. }
  7180. },
  7181. back: {
  7182. height: math.unit(1.93, "meters"),
  7183. weight: math.unit(83, "kg"),
  7184. name: "Back",
  7185. image: {
  7186. source: "./media/characters/samantha/back.svg"
  7187. }
  7188. },
  7189. },
  7190. [
  7191. {
  7192. name: "Normal",
  7193. height: math.unit(1.93, "m")
  7194. },
  7195. {
  7196. name: "Macro",
  7197. height: math.unit(74, "meters"),
  7198. default: true
  7199. },
  7200. {
  7201. name: "Macro+",
  7202. height: math.unit(223, "meters"),
  7203. },
  7204. {
  7205. name: "Megamacro",
  7206. height: math.unit(8381, "meters"),
  7207. },
  7208. {
  7209. name: "Megamacro+",
  7210. height: math.unit(12000, "kilometers")
  7211. },
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7216. {
  7217. front: {
  7218. height: math.unit(1.92, "meters"),
  7219. weight: math.unit(80, "kg"),
  7220. name: "Front",
  7221. image: {
  7222. source: "./media/characters/dr-clay/front.svg"
  7223. }
  7224. },
  7225. frontClothed: {
  7226. height: math.unit(1.92, "meters"),
  7227. weight: math.unit(80, "kg"),
  7228. name: "Front (Clothed)",
  7229. image: {
  7230. source: "./media/characters/dr-clay/front-clothed.svg"
  7231. }
  7232. }
  7233. },
  7234. [
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(1.92, "m")
  7238. },
  7239. {
  7240. name: "Macro",
  7241. height: math.unit(214, "meters"),
  7242. default: true
  7243. },
  7244. {
  7245. name: "Macro+",
  7246. height: math.unit(12.237, "meters"),
  7247. },
  7248. {
  7249. name: "Megamacro",
  7250. height: math.unit(557, "megameters"),
  7251. },
  7252. {
  7253. name: "Unimaginable",
  7254. height: math.unit(120e9, "lightyears")
  7255. },
  7256. ]
  7257. ))
  7258. characterMakers.push(() => makeCharacter(
  7259. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7260. {
  7261. front: {
  7262. height: math.unit(2, "meters"),
  7263. weight: math.unit(80, "kg"),
  7264. name: "Front",
  7265. image: {
  7266. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7267. }
  7268. }
  7269. },
  7270. [
  7271. {
  7272. name: "Teramacro",
  7273. height: math.unit(500000, "lightyears"),
  7274. default: true
  7275. },
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7280. {
  7281. crux: {
  7282. height: math.unit(2, "meters"),
  7283. weight: math.unit(150, "kg"),
  7284. name: "Crux",
  7285. image: {
  7286. source: "./media/characters/vemus/crux.svg",
  7287. extra: 1074/936,
  7288. bottom: 23/1097
  7289. }
  7290. },
  7291. skunkTanuki: {
  7292. height: math.unit(2, "meters"),
  7293. weight: math.unit(150, "kg"),
  7294. name: "Skunk-Tanuki",
  7295. image: {
  7296. source: "./media/characters/vemus/skunk-tanuki.svg",
  7297. extra: 926/893,
  7298. bottom: 20/946
  7299. }
  7300. },
  7301. },
  7302. [
  7303. {
  7304. name: "Normal",
  7305. height: math.unit(4, "meters"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Big",
  7310. height: math.unit(8, "meters")
  7311. },
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(100, "meters")
  7315. },
  7316. {
  7317. name: "Macro+",
  7318. height: math.unit(1500, "meters")
  7319. },
  7320. {
  7321. name: "Stellar",
  7322. height: math.unit(14e8, "meters")
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(2, "meters"),
  7331. weight: math.unit(70, "kg"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/beherit/front.svg",
  7335. extra: 1234/1109,
  7336. bottom: 55/1289
  7337. }
  7338. }
  7339. },
  7340. [
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(6, "feet")
  7344. },
  7345. {
  7346. name: "Lorg",
  7347. height: math.unit(25, "feet"),
  7348. default: true
  7349. },
  7350. {
  7351. name: "Lorger",
  7352. height: math.unit(75, "feet")
  7353. },
  7354. {
  7355. name: "Macro",
  7356. height: math.unit(200, "meters")
  7357. },
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7362. {
  7363. front: {
  7364. height: math.unit(2, "meters"),
  7365. weight: math.unit(150, "kg"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/everett/front.svg",
  7369. extra: 1017/866,
  7370. bottom: 86/1103
  7371. }
  7372. },
  7373. paw: {
  7374. height: math.unit(2 / 3.6, "meters"),
  7375. name: "Paw",
  7376. image: {
  7377. source: "./media/characters/everett/paw.svg"
  7378. }
  7379. },
  7380. },
  7381. [
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(15, "feet"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Lorg",
  7389. height: math.unit(70, "feet"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Lorger",
  7394. height: math.unit(250, "feet")
  7395. },
  7396. {
  7397. name: "Macro",
  7398. height: math.unit(500, "meters")
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7404. {
  7405. front: {
  7406. height: math.unit(2, "meters"),
  7407. weight: math.unit(86, "kg"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/rose/front.svg",
  7411. extra: 1785/1636,
  7412. bottom: 30/1815
  7413. },
  7414. form: "liom",
  7415. default: true
  7416. },
  7417. frontSporty: {
  7418. height: math.unit(2, "meters"),
  7419. weight: math.unit(86, "kg"),
  7420. name: "Front (Sporty)",
  7421. image: {
  7422. source: "./media/characters/rose/front-sporty.svg",
  7423. extra: 350/335,
  7424. bottom: 10/360
  7425. },
  7426. form: "liom"
  7427. },
  7428. frontAlt: {
  7429. height: math.unit(1.6, "meters"),
  7430. weight: math.unit(86, "kg"),
  7431. name: "Front (Alt)",
  7432. image: {
  7433. source: "./media/characters/rose/front-alt.svg",
  7434. extra: 299/283,
  7435. bottom: 3/302
  7436. },
  7437. form: "liom"
  7438. },
  7439. plush: {
  7440. height: math.unit(2, "meters"),
  7441. weight: math.unit(86/3, "kg"),
  7442. name: "Plush",
  7443. image: {
  7444. source: "./media/characters/rose/plush.svg",
  7445. extra: 361/337,
  7446. bottom: 11/372
  7447. },
  7448. form: "plush",
  7449. default: true
  7450. },
  7451. faeStanding: {
  7452. height: math.unit(10, "cm"),
  7453. weight: math.unit(10, "grams"),
  7454. name: "Standing",
  7455. image: {
  7456. source: "./media/characters/rose/fae-standing.svg",
  7457. extra: 1189/1060,
  7458. bottom: 27/1216
  7459. },
  7460. form: "fae",
  7461. default: true
  7462. },
  7463. faeSitting: {
  7464. height: math.unit(5, "cm"),
  7465. weight: math.unit(10, "grams"),
  7466. name: "Sitting",
  7467. image: {
  7468. source: "./media/characters/rose/fae-sitting.svg",
  7469. extra: 737/577,
  7470. bottom: 356/1093
  7471. },
  7472. form: "fae"
  7473. },
  7474. faePaw: {
  7475. height: math.unit(1.35, "cm"),
  7476. name: "Paw",
  7477. image: {
  7478. source: "./media/characters/rose/fae-paw.svg"
  7479. },
  7480. form: "fae"
  7481. },
  7482. },
  7483. [
  7484. {
  7485. name: "True Micro",
  7486. height: math.unit(9, "cm"),
  7487. form: "liom"
  7488. },
  7489. {
  7490. name: "Micro",
  7491. height: math.unit(16, "cm"),
  7492. form: "liom"
  7493. },
  7494. {
  7495. name: "Normal",
  7496. height: math.unit(1.85, "meters"),
  7497. default: true,
  7498. form: "liom"
  7499. },
  7500. {
  7501. name: "Mini-Macro",
  7502. height: math.unit(5, "meters"),
  7503. form: "liom"
  7504. },
  7505. {
  7506. name: "Macro",
  7507. height: math.unit(15, "meters"),
  7508. form: "liom"
  7509. },
  7510. {
  7511. name: "True Macro",
  7512. height: math.unit(40, "meters"),
  7513. form: "liom"
  7514. },
  7515. {
  7516. name: "City Scale",
  7517. height: math.unit(1, "km"),
  7518. form: "liom"
  7519. },
  7520. {
  7521. name: "Plushie",
  7522. height: math.unit(9, "cm"),
  7523. form: "plush",
  7524. default: true
  7525. },
  7526. {
  7527. name: "Fae",
  7528. height: math.unit(10, "cm"),
  7529. form: "fae",
  7530. default: true
  7531. },
  7532. ],
  7533. {
  7534. "liom": {
  7535. name: "Liom"
  7536. },
  7537. "plush": {
  7538. name: "Plush"
  7539. },
  7540. "fae": {
  7541. name: "Fae Fox",
  7542. default: true
  7543. }
  7544. }
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(2, "meters"),
  7551. weight: math.unit(350, "lbs"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/regal/front.svg"
  7555. }
  7556. },
  7557. back: {
  7558. height: math.unit(2, "meters"),
  7559. weight: math.unit(350, "lbs"),
  7560. name: "Back",
  7561. image: {
  7562. source: "./media/characters/regal/back.svg"
  7563. }
  7564. },
  7565. },
  7566. [
  7567. {
  7568. name: "Macro",
  7569. height: math.unit(350, "feet"),
  7570. default: true
  7571. }
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(4 + 11 / 12, "feet"),
  7579. weight: math.unit(100, "lbs"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/opal/front.svg"
  7583. }
  7584. },
  7585. frontAlt: {
  7586. height: math.unit(4 + 11 / 12, "feet"),
  7587. weight: math.unit(100, "lbs"),
  7588. name: "Front (Alt)",
  7589. image: {
  7590. source: "./media/characters/opal/front-alt.svg"
  7591. }
  7592. },
  7593. },
  7594. [
  7595. {
  7596. name: "Small",
  7597. height: math.unit(4 + 11 / 12, "feet")
  7598. },
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(20, "feet"),
  7602. default: true
  7603. },
  7604. {
  7605. name: "Macro",
  7606. height: math.unit(120, "feet")
  7607. },
  7608. {
  7609. name: "Megamacro",
  7610. height: math.unit(80, "miles")
  7611. },
  7612. {
  7613. name: "True Size",
  7614. height: math.unit(100000, "lightyears")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(200, "lbs"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/vector-wuff/front.svg"
  7627. }
  7628. }
  7629. },
  7630. [
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(2.8, "meters")
  7634. },
  7635. {
  7636. name: "Macro",
  7637. height: math.unit(450, "meters"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Megamacro",
  7642. height: math.unit(15, "kilometers")
  7643. }
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(6, "feet"),
  7651. weight: math.unit(256, "lbs"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/dannik/front.svg"
  7655. }
  7656. }
  7657. },
  7658. [
  7659. {
  7660. name: "Macro",
  7661. height: math.unit(69.57, "meters"),
  7662. default: true
  7663. },
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(120, "lbs"),
  7672. name: "Front",
  7673. image: {
  7674. source: "./media/characters/azura-saharah/front.svg"
  7675. }
  7676. },
  7677. back: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(120, "lbs"),
  7680. name: "Back",
  7681. image: {
  7682. source: "./media/characters/azura-saharah/back.svg"
  7683. }
  7684. },
  7685. },
  7686. [
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(100, "feet"),
  7690. default: true
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7696. {
  7697. side: {
  7698. height: math.unit(5 + 4 / 12, "feet"),
  7699. weight: math.unit(163, "lbs"),
  7700. name: "Side",
  7701. image: {
  7702. source: "./media/characters/kennedy/side.svg"
  7703. }
  7704. }
  7705. },
  7706. [
  7707. {
  7708. name: "Standard Doggo",
  7709. height: math.unit(5 + 4 / 12, "feet")
  7710. },
  7711. {
  7712. name: "Big Doggo",
  7713. height: math.unit(25 + 3 / 12, "feet"),
  7714. default: true
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7720. {
  7721. front: {
  7722. height: math.unit(5 + 5/12, "feet"),
  7723. weight: math.unit(100, "lbs"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/odios-de-lunar/front.svg",
  7727. extra: 1468/1323,
  7728. bottom: 22/1490
  7729. }
  7730. }
  7731. },
  7732. [
  7733. {
  7734. name: "Micro",
  7735. height: math.unit(3, "inches")
  7736. },
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(5.5, "feet"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(100, "feet")
  7745. },
  7746. ]
  7747. ))
  7748. characterMakers.push(() => makeCharacter(
  7749. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7750. {
  7751. back: {
  7752. height: math.unit(6, "feet"),
  7753. weight: math.unit(220, "lbs"),
  7754. name: "Back",
  7755. image: {
  7756. source: "./media/characters/mandake/back.svg"
  7757. }
  7758. }
  7759. },
  7760. [
  7761. {
  7762. name: "Normal",
  7763. height: math.unit(7, "feet"),
  7764. default: true
  7765. },
  7766. {
  7767. name: "Macro",
  7768. height: math.unit(78, "feet")
  7769. },
  7770. {
  7771. name: "Macro+",
  7772. height: math.unit(300, "meters")
  7773. },
  7774. {
  7775. name: "Macro++",
  7776. height: math.unit(2400, "feet")
  7777. },
  7778. {
  7779. name: "Megamacro",
  7780. height: math.unit(5167, "meters")
  7781. },
  7782. {
  7783. name: "Gigamacro",
  7784. height: math.unit(41769, "miles")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(120, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/yozey/front.svg"
  7797. }
  7798. },
  7799. frontAlt: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(120, "lbs"),
  7802. name: "Front (Alt)",
  7803. image: {
  7804. source: "./media/characters/yozey/front-alt.svg"
  7805. }
  7806. },
  7807. side: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(120, "lbs"),
  7810. name: "Side",
  7811. image: {
  7812. source: "./media/characters/yozey/side.svg"
  7813. }
  7814. },
  7815. },
  7816. [
  7817. {
  7818. name: "Micro",
  7819. height: math.unit(3, "inches"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Normal",
  7824. height: math.unit(6, "feet")
  7825. }
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(103, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/valeska-voss/front.svg"
  7837. }
  7838. }
  7839. },
  7840. [
  7841. {
  7842. name: "Mini-Sized Sub",
  7843. height: math.unit(3.1, "inches")
  7844. },
  7845. {
  7846. name: "Mid-Sized Sub",
  7847. height: math.unit(6.2, "inches")
  7848. },
  7849. {
  7850. name: "Full-Sized Sub",
  7851. height: math.unit(9.3, "inches")
  7852. },
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(5 + 2 / 12, "foot"),
  7856. default: true
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7862. {
  7863. front: {
  7864. height: math.unit(6, "feet"),
  7865. weight: math.unit(160, "lbs"),
  7866. name: "Front",
  7867. image: {
  7868. source: "./media/characters/gene-zeta/front.svg",
  7869. extra: 3006 / 2826,
  7870. bottom: 182 / 3188
  7871. }
  7872. }
  7873. },
  7874. [
  7875. {
  7876. name: "Micro",
  7877. height: math.unit(6, "inches")
  7878. },
  7879. {
  7880. name: "Normal",
  7881. height: math.unit(5 + 11 / 12, "foot"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Macro",
  7886. height: math.unit(140, "feet")
  7887. },
  7888. {
  7889. name: "Supercharged",
  7890. height: math.unit(2500, "feet")
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7896. {
  7897. front: {
  7898. height: math.unit(6, "feet"),
  7899. weight: math.unit(350, "lbs"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/razinox/front.svg",
  7903. extra: 1686 / 1548,
  7904. bottom: 28.2 / 1868
  7905. }
  7906. },
  7907. back: {
  7908. height: math.unit(6, "feet"),
  7909. weight: math.unit(350, "lbs"),
  7910. name: "Back",
  7911. image: {
  7912. source: "./media/characters/razinox/back.svg",
  7913. extra: 1660 / 1590,
  7914. bottom: 15 / 1665
  7915. }
  7916. },
  7917. },
  7918. [
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(10 + 8 / 12, "foot")
  7922. },
  7923. {
  7924. name: "Minimacro",
  7925. height: math.unit(15, "foot")
  7926. },
  7927. {
  7928. name: "Macro",
  7929. height: math.unit(60, "foot"),
  7930. default: true
  7931. },
  7932. {
  7933. name: "Megamacro",
  7934. height: math.unit(5, "miles")
  7935. },
  7936. {
  7937. name: "Gigamacro",
  7938. height: math.unit(6000, "miles")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(150, "lbs"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/cobalt/front.svg"
  7951. }
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(8 + 1 / 12, "foot")
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(111, "foot"),
  7962. default: true
  7963. },
  7964. {
  7965. name: "Supracosmic",
  7966. height: math.unit(1e42, "feet")
  7967. },
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(5, "inches"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/amanda/front.svg",
  7978. extra: 926/791,
  7979. bottom: 38/964
  7980. }
  7981. },
  7982. back: {
  7983. height: math.unit(5, "inches"),
  7984. name: "Back",
  7985. image: {
  7986. source: "./media/characters/amanda/back.svg",
  7987. extra: 909/805,
  7988. bottom: 43/952
  7989. }
  7990. },
  7991. },
  7992. [
  7993. {
  7994. name: "Micro",
  7995. height: math.unit(5, "inches"),
  7996. default: true
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8002. {
  8003. front: {
  8004. height: math.unit(2.75, "meters"),
  8005. weight: math.unit(1200, "lb"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/teal/front.svg",
  8009. extra: 2463 / 2320,
  8010. bottom: 166 / 2629
  8011. }
  8012. },
  8013. back: {
  8014. height: math.unit(2.75, "meters"),
  8015. weight: math.unit(1200, "lb"),
  8016. name: "Back",
  8017. image: {
  8018. source: "./media/characters/teal/back.svg",
  8019. extra: 2580 / 2489,
  8020. bottom: 151 / 2731
  8021. }
  8022. },
  8023. sitting: {
  8024. height: math.unit(1.9, "meters"),
  8025. weight: math.unit(1200, "lb"),
  8026. name: "Sitting",
  8027. image: {
  8028. source: "./media/characters/teal/sitting.svg",
  8029. extra: 623 / 590,
  8030. bottom: 121 / 744
  8031. }
  8032. },
  8033. standing: {
  8034. height: math.unit(2.75, "meters"),
  8035. weight: math.unit(1200, "lb"),
  8036. name: "Standing",
  8037. image: {
  8038. source: "./media/characters/teal/standing.svg",
  8039. extra: 923 / 893,
  8040. bottom: 60 / 983
  8041. }
  8042. },
  8043. stretching: {
  8044. height: math.unit(3.65, "meters"),
  8045. weight: math.unit(1200, "lb"),
  8046. name: "Stretching",
  8047. image: {
  8048. source: "./media/characters/teal/stretching.svg",
  8049. extra: 1276 / 1244,
  8050. bottom: 0 / 1276
  8051. }
  8052. },
  8053. legged: {
  8054. height: math.unit(1.3, "meters"),
  8055. weight: math.unit(100, "lb"),
  8056. name: "Legged",
  8057. image: {
  8058. source: "./media/characters/teal/legged.svg",
  8059. extra: 462 / 437,
  8060. bottom: 24 / 486
  8061. }
  8062. },
  8063. naga: {
  8064. height: math.unit(5.4, "meters"),
  8065. weight: math.unit(4000, "lb"),
  8066. name: "Naga",
  8067. image: {
  8068. source: "./media/characters/teal/naga.svg",
  8069. extra: 1902 / 1858,
  8070. bottom: 0 / 1902
  8071. }
  8072. },
  8073. hand: {
  8074. height: math.unit(0.52, "meters"),
  8075. name: "Hand",
  8076. image: {
  8077. source: "./media/characters/teal/hand.svg"
  8078. }
  8079. },
  8080. maw: {
  8081. height: math.unit(0.43, "meters"),
  8082. name: "Maw",
  8083. image: {
  8084. source: "./media/characters/teal/maw.svg"
  8085. }
  8086. },
  8087. slit: {
  8088. height: math.unit(0.25, "meters"),
  8089. name: "Slit",
  8090. image: {
  8091. source: "./media/characters/teal/slit.svg"
  8092. }
  8093. },
  8094. },
  8095. [
  8096. {
  8097. name: "Normal",
  8098. height: math.unit(2.75, "meters"),
  8099. default: true
  8100. },
  8101. {
  8102. name: "Macro",
  8103. height: math.unit(300, "feet")
  8104. },
  8105. {
  8106. name: "Macro+",
  8107. height: math.unit(2000, "feet")
  8108. },
  8109. ]
  8110. ))
  8111. characterMakers.push(() => makeCharacter(
  8112. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8113. {
  8114. frontCat: {
  8115. height: math.unit(6, "feet"),
  8116. weight: math.unit(180, "lbs"),
  8117. name: "Front (Cat)",
  8118. image: {
  8119. source: "./media/characters/ravin-amulet/front-cat.svg"
  8120. }
  8121. },
  8122. frontCatAlt: {
  8123. height: math.unit(6, "feet"),
  8124. weight: math.unit(180, "lbs"),
  8125. name: "Front (Alt, Cat)",
  8126. image: {
  8127. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8128. }
  8129. },
  8130. frontWerewolf: {
  8131. height: math.unit(6 * 1.2, "feet"),
  8132. weight: math.unit(225, "lbs"),
  8133. name: "Front (Werewolf)",
  8134. image: {
  8135. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8136. }
  8137. },
  8138. backWerewolf: {
  8139. height: math.unit(6 * 1.2, "feet"),
  8140. weight: math.unit(225, "lbs"),
  8141. name: "Back (Werewolf)",
  8142. image: {
  8143. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8144. }
  8145. },
  8146. },
  8147. [
  8148. {
  8149. name: "Nano",
  8150. height: math.unit(1, "micrometer")
  8151. },
  8152. {
  8153. name: "Micro",
  8154. height: math.unit(1, "inch")
  8155. },
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(6, "feet"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Macro",
  8163. height: math.unit(60, "feet")
  8164. }
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8169. {
  8170. front: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(165, "lbs"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/fluoresce/front.svg"
  8176. }
  8177. }
  8178. },
  8179. [
  8180. {
  8181. name: "Micro",
  8182. height: math.unit(6, "cm")
  8183. },
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(5 + 7 / 12, "feet"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(56, "feet")
  8192. },
  8193. {
  8194. name: "Megamacro",
  8195. height: math.unit(1.9, "miles")
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(9 + 6 / 12, "feet"),
  8204. weight: math.unit(523, "lbs"),
  8205. name: "Side",
  8206. image: {
  8207. source: "./media/characters/aurora/side.svg"
  8208. }
  8209. }
  8210. },
  8211. [
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(9 + 6 / 12, "feet")
  8215. },
  8216. {
  8217. name: "Macro",
  8218. height: math.unit(96, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Macro+",
  8223. height: math.unit(243, "feet")
  8224. },
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8229. {
  8230. front: {
  8231. height: math.unit(194, "cm"),
  8232. weight: math.unit(90, "kg"),
  8233. name: "Front",
  8234. image: {
  8235. source: "./media/characters/ranek/front.svg",
  8236. extra: 1862/1791,
  8237. bottom: 80/1942
  8238. }
  8239. },
  8240. back: {
  8241. height: math.unit(194, "cm"),
  8242. weight: math.unit(90, "kg"),
  8243. name: "Back",
  8244. image: {
  8245. source: "./media/characters/ranek/back.svg",
  8246. extra: 1853/1787,
  8247. bottom: 74/1927
  8248. }
  8249. },
  8250. feral: {
  8251. height: math.unit(30, "cm"),
  8252. weight: math.unit(1.6, "lbs"),
  8253. name: "Feral",
  8254. image: {
  8255. source: "./media/characters/ranek/feral.svg",
  8256. extra: 990/631,
  8257. bottom: 29/1019
  8258. }
  8259. },
  8260. },
  8261. [
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(194, "cm"),
  8265. default: true
  8266. },
  8267. {
  8268. name: "Macro",
  8269. height: math.unit(100, "meters")
  8270. },
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8275. {
  8276. front: {
  8277. height: math.unit(5 + 6 / 12, "feet"),
  8278. weight: math.unit(153, "lbs"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/andrew-cooper/front.svg"
  8282. }
  8283. },
  8284. },
  8285. [
  8286. {
  8287. name: "Nano",
  8288. height: math.unit(1, "mm")
  8289. },
  8290. {
  8291. name: "Micro",
  8292. height: math.unit(2, "inches")
  8293. },
  8294. {
  8295. name: "Normal",
  8296. height: math.unit(5 + 6 / 12, "feet"),
  8297. default: true
  8298. }
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8303. {
  8304. front: {
  8305. height: math.unit(6, "feet"),
  8306. weight: math.unit(180, "lbs"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/akane-sato/front.svg",
  8310. extra: 1219 / 1140
  8311. }
  8312. },
  8313. back: {
  8314. height: math.unit(6, "feet"),
  8315. weight: math.unit(180, "lbs"),
  8316. name: "Back",
  8317. image: {
  8318. source: "./media/characters/akane-sato/back.svg",
  8319. extra: 1219 / 1170
  8320. }
  8321. },
  8322. },
  8323. [
  8324. {
  8325. name: "Normal",
  8326. height: math.unit(2.5, "meters")
  8327. },
  8328. {
  8329. name: "Macro",
  8330. height: math.unit(250, "meters"),
  8331. default: true
  8332. },
  8333. {
  8334. name: "Megamacro",
  8335. height: math.unit(25, "km")
  8336. },
  8337. ]
  8338. ))
  8339. characterMakers.push(() => makeCharacter(
  8340. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8341. {
  8342. front: {
  8343. height: math.unit(6, "feet"),
  8344. weight: math.unit(65, "kg"),
  8345. name: "Front",
  8346. image: {
  8347. source: "./media/characters/rook/front.svg",
  8348. extra: 960 / 950
  8349. }
  8350. }
  8351. },
  8352. [
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(8.8, "feet")
  8356. },
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(88, "feet"),
  8360. default: true
  8361. },
  8362. {
  8363. name: "Megamacro",
  8364. height: math.unit(8, "miles")
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(12 + 2 / 12, "feet"),
  8373. weight: math.unit(808, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/prodigy/front.svg"
  8377. }
  8378. }
  8379. },
  8380. [
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(12 + 2 / 12, "feet"),
  8384. default: true
  8385. },
  8386. {
  8387. name: "Macro",
  8388. height: math.unit(143, "feet")
  8389. },
  8390. {
  8391. name: "Macro+",
  8392. height: math.unit(400, "feet")
  8393. },
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8398. {
  8399. front: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(225, "lbs"),
  8402. name: "Front",
  8403. image: {
  8404. source: "./media/characters/daniel/front.svg"
  8405. }
  8406. },
  8407. leaning: {
  8408. height: math.unit(6, "feet"),
  8409. weight: math.unit(225, "lbs"),
  8410. name: "Leaning",
  8411. image: {
  8412. source: "./media/characters/daniel/leaning.svg"
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Macro",
  8419. height: math.unit(1000, "feet"),
  8420. default: true
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(6, "feet"),
  8429. weight: math.unit(88, "lbs"),
  8430. name: "Front",
  8431. image: {
  8432. source: "./media/characters/chiros/front.svg",
  8433. extra: 306 / 226
  8434. }
  8435. },
  8436. side: {
  8437. height: math.unit(6, "feet"),
  8438. weight: math.unit(88, "lbs"),
  8439. name: "Side",
  8440. image: {
  8441. source: "./media/characters/chiros/side.svg",
  8442. extra: 306 / 226
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(6, "cm"),
  8450. default: true
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8456. {
  8457. front: {
  8458. height: math.unit(6, "feet"),
  8459. weight: math.unit(100, "lbs"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/selka/front.svg",
  8463. extra: 947 / 887
  8464. }
  8465. }
  8466. },
  8467. [
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(5, "cm"),
  8471. default: true
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(8 + 3 / 12, "feet"),
  8480. weight: math.unit(424, "lbs"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/verin/front.svg",
  8484. extra: 1845 / 1550
  8485. }
  8486. },
  8487. frontArmored: {
  8488. height: math.unit(8 + 3 / 12, "feet"),
  8489. weight: math.unit(424, "lbs"),
  8490. name: "Front (Armored)",
  8491. image: {
  8492. source: "./media/characters/verin/front-armor.svg",
  8493. extra: 1845 / 1550,
  8494. bottom: 0.01
  8495. }
  8496. },
  8497. back: {
  8498. height: math.unit(8 + 3 / 12, "feet"),
  8499. weight: math.unit(424, "lbs"),
  8500. name: "Back",
  8501. image: {
  8502. source: "./media/characters/verin/back.svg",
  8503. bottom: 0.1,
  8504. extra: 1
  8505. }
  8506. },
  8507. foot: {
  8508. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8509. name: "Foot",
  8510. image: {
  8511. source: "./media/characters/verin/foot.svg"
  8512. }
  8513. },
  8514. },
  8515. [
  8516. {
  8517. name: "Normal",
  8518. height: math.unit(8 + 3 / 12, "feet")
  8519. },
  8520. {
  8521. name: "Minimacro",
  8522. height: math.unit(21, "feet"),
  8523. default: true
  8524. },
  8525. {
  8526. name: "Macro",
  8527. height: math.unit(626, "feet")
  8528. },
  8529. ]
  8530. ))
  8531. characterMakers.push(() => makeCharacter(
  8532. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8533. {
  8534. front: {
  8535. height: math.unit(2.718, "meters"),
  8536. weight: math.unit(150, "lbs"),
  8537. name: "Front",
  8538. image: {
  8539. source: "./media/characters/sovrim-terraquian/front.svg",
  8540. extra: 1752/1689,
  8541. bottom: 36/1788
  8542. }
  8543. },
  8544. back: {
  8545. height: math.unit(2.718, "meters"),
  8546. weight: math.unit(150, "lbs"),
  8547. name: "Back",
  8548. image: {
  8549. source: "./media/characters/sovrim-terraquian/back.svg",
  8550. extra: 1698/1657,
  8551. bottom: 58/1756
  8552. }
  8553. },
  8554. tongue: {
  8555. height: math.unit(2.865, "feet"),
  8556. name: "Tongue",
  8557. image: {
  8558. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8559. }
  8560. },
  8561. hand: {
  8562. height: math.unit(1.61, "feet"),
  8563. name: "Hand",
  8564. image: {
  8565. source: "./media/characters/sovrim-terraquian/hand.svg"
  8566. }
  8567. },
  8568. foot: {
  8569. height: math.unit(1.05, "feet"),
  8570. name: "Foot",
  8571. image: {
  8572. source: "./media/characters/sovrim-terraquian/foot.svg"
  8573. }
  8574. },
  8575. footAlt: {
  8576. height: math.unit(0.88, "feet"),
  8577. name: "Foot (Alt)",
  8578. image: {
  8579. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Micro",
  8586. height: math.unit(2, "inches")
  8587. },
  8588. {
  8589. name: "Small",
  8590. height: math.unit(1, "meter")
  8591. },
  8592. {
  8593. name: "Normal",
  8594. height: math.unit(Math.E, "meters"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Macro",
  8599. height: math.unit(20, "meters")
  8600. },
  8601. {
  8602. name: "Macro+",
  8603. height: math.unit(400, "meters")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8609. {
  8610. front: {
  8611. height: math.unit(7, "feet"),
  8612. weight: math.unit(489, "lbs"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/reece-silvermane/front.svg",
  8616. bottom: 0.02,
  8617. extra: 1
  8618. }
  8619. },
  8620. },
  8621. [
  8622. {
  8623. name: "Macro",
  8624. height: math.unit(1.5, "miles"),
  8625. default: true
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(78, "kg"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/kane/front.svg",
  8638. extra: 978 / 899
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(2.1, "m"),
  8646. },
  8647. {
  8648. name: "Macro",
  8649. height: math.unit(1, "km"),
  8650. default: true
  8651. },
  8652. ]
  8653. ))
  8654. characterMakers.push(() => makeCharacter(
  8655. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8656. {
  8657. front: {
  8658. height: math.unit(6, "feet"),
  8659. weight: math.unit(200, "kg"),
  8660. name: "Front",
  8661. image: {
  8662. source: "./media/characters/tegon/front.svg",
  8663. bottom: 0.01,
  8664. extra: 1
  8665. }
  8666. },
  8667. },
  8668. [
  8669. {
  8670. name: "Micro",
  8671. height: math.unit(1, "inch")
  8672. },
  8673. {
  8674. name: "Normal",
  8675. height: math.unit(6 + 3 / 12, "feet"),
  8676. default: true
  8677. },
  8678. {
  8679. name: "Macro",
  8680. height: math.unit(300, "feet")
  8681. },
  8682. {
  8683. name: "Megamacro",
  8684. height: math.unit(69, "miles")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8690. {
  8691. side: {
  8692. height: math.unit(6, "feet"),
  8693. weight: math.unit(2304, "lbs"),
  8694. name: "Side",
  8695. image: {
  8696. source: "./media/characters/arcturax/side.svg",
  8697. extra: 790 / 376,
  8698. bottom: 0.01
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Micro",
  8705. height: math.unit(2, "inch")
  8706. },
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(6, "feet")
  8710. },
  8711. {
  8712. name: "Macro",
  8713. height: math.unit(39, "feet"),
  8714. default: true
  8715. },
  8716. {
  8717. name: "Megamacro",
  8718. height: math.unit(7, "miles")
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(6, "feet"),
  8727. weight: math.unit(50, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/sentri/front.svg",
  8731. extra: 1750 / 1570,
  8732. bottom: 0.025
  8733. }
  8734. },
  8735. frontAlt: {
  8736. height: math.unit(6, "feet"),
  8737. weight: math.unit(50, "lbs"),
  8738. name: "Front (Alt)",
  8739. image: {
  8740. source: "./media/characters/sentri/front-alt.svg",
  8741. extra: 1750 / 1570,
  8742. bottom: 0.025
  8743. }
  8744. },
  8745. },
  8746. [
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(15, "feet"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(2500, "feet")
  8755. }
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(5 + 8 / 12, "feet"),
  8763. weight: math.unit(130, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/corvin/front.svg",
  8767. extra: 1803 / 1629
  8768. }
  8769. },
  8770. frontShirt: {
  8771. height: math.unit(5 + 8 / 12, "feet"),
  8772. weight: math.unit(130, "lbs"),
  8773. name: "Front (Shirt)",
  8774. image: {
  8775. source: "./media/characters/corvin/front-shirt.svg",
  8776. extra: 1803 / 1629
  8777. }
  8778. },
  8779. frontPoncho: {
  8780. height: math.unit(5 + 8 / 12, "feet"),
  8781. weight: math.unit(130, "lbs"),
  8782. name: "Front (Poncho)",
  8783. image: {
  8784. source: "./media/characters/corvin/front-poncho.svg",
  8785. extra: 1803 / 1629
  8786. }
  8787. },
  8788. side: {
  8789. height: math.unit(5 + 8 / 12, "feet"),
  8790. weight: math.unit(130, "lbs"),
  8791. name: "Side",
  8792. image: {
  8793. source: "./media/characters/corvin/side.svg",
  8794. extra: 1012 / 945
  8795. }
  8796. },
  8797. back: {
  8798. height: math.unit(5 + 8 / 12, "feet"),
  8799. weight: math.unit(130, "lbs"),
  8800. name: "Back",
  8801. image: {
  8802. source: "./media/characters/corvin/back.svg",
  8803. extra: 1803 / 1629
  8804. }
  8805. },
  8806. },
  8807. [
  8808. {
  8809. name: "Micro",
  8810. height: math.unit(3, "inches")
  8811. },
  8812. {
  8813. name: "Normal",
  8814. height: math.unit(5 + 8 / 12, "feet")
  8815. },
  8816. {
  8817. name: "Macro",
  8818. height: math.unit(300, "feet"),
  8819. default: true
  8820. },
  8821. {
  8822. name: "Megamacro",
  8823. height: math.unit(500, "miles")
  8824. }
  8825. ]
  8826. ))
  8827. characterMakers.push(() => makeCharacter(
  8828. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8829. {
  8830. front: {
  8831. height: math.unit(6, "feet"),
  8832. weight: math.unit(135, "lbs"),
  8833. name: "Front",
  8834. image: {
  8835. source: "./media/characters/q/front.svg",
  8836. extra: 854 / 752,
  8837. bottom: 0.005
  8838. }
  8839. },
  8840. back: {
  8841. height: math.unit(6, "feet"),
  8842. weight: math.unit(130, "lbs"),
  8843. name: "Back",
  8844. image: {
  8845. source: "./media/characters/q/back.svg",
  8846. extra: 854 / 752
  8847. }
  8848. },
  8849. },
  8850. [
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(90, "feet"),
  8854. default: true
  8855. },
  8856. {
  8857. name: "Extra Macro",
  8858. height: math.unit(300, "feet"),
  8859. },
  8860. {
  8861. name: "BIG WALF",
  8862. height: math.unit(750, "feet"),
  8863. },
  8864. ]
  8865. ))
  8866. characterMakers.push(() => makeCharacter(
  8867. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8868. {
  8869. front: {
  8870. height: math.unit(3, "feet"),
  8871. weight: math.unit(28, "lbs"),
  8872. name: "Front",
  8873. image: {
  8874. source: "./media/characters/citrine/front.svg"
  8875. }
  8876. }
  8877. },
  8878. [
  8879. {
  8880. name: "Normal",
  8881. height: math.unit(3, "feet"),
  8882. default: true
  8883. }
  8884. ]
  8885. ))
  8886. characterMakers.push(() => makeCharacter(
  8887. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8888. {
  8889. front: {
  8890. height: math.unit(14, "feet"),
  8891. weight: math.unit(1450, "kg"),
  8892. preyCapacity: math.unit(15, "people"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/aura-starwind/front.svg",
  8896. extra: 1440/1327,
  8897. bottom: 11/1451
  8898. }
  8899. },
  8900. side: {
  8901. height: math.unit(14, "feet"),
  8902. weight: math.unit(1450, "kg"),
  8903. preyCapacity: math.unit(15, "people"),
  8904. name: "Side",
  8905. image: {
  8906. source: "./media/characters/aura-starwind/side.svg",
  8907. extra: 1654 / 1497
  8908. }
  8909. },
  8910. taur: {
  8911. height: math.unit(18, "feet"),
  8912. weight: math.unit(5500, "kg"),
  8913. preyCapacity: math.unit(50, "people"),
  8914. name: "Taur",
  8915. image: {
  8916. source: "./media/characters/aura-starwind/taur.svg",
  8917. extra: 1760 / 1650
  8918. }
  8919. },
  8920. feral: {
  8921. height: math.unit(46, "feet"),
  8922. weight: math.unit(25000, "kg"),
  8923. preyCapacity: math.unit(120, "people"),
  8924. name: "Feral",
  8925. image: {
  8926. source: "./media/characters/aura-starwind/feral.svg"
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(14, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Macro",
  8938. height: math.unit(50, "meters")
  8939. },
  8940. {
  8941. name: "Megamacro",
  8942. height: math.unit(5000, "meters")
  8943. },
  8944. {
  8945. name: "Gigamacro",
  8946. height: math.unit(100000, "kilometers")
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(2 + 7 / 12, "feet"),
  8955. weight: math.unit(32, "lbs"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/rivet/front.svg",
  8959. extra: 1716 / 1658,
  8960. bottom: 0.03
  8961. }
  8962. },
  8963. foot: {
  8964. height: math.unit(0.551, "feet"),
  8965. name: "Rivet's Foot",
  8966. image: {
  8967. source: "./media/characters/rivet/foot.svg"
  8968. },
  8969. rename: true
  8970. }
  8971. },
  8972. [
  8973. {
  8974. name: "Micro",
  8975. height: math.unit(1.5, "inches"),
  8976. },
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(2 + 7 / 12, "feet"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Macro",
  8984. height: math.unit(85, "feet")
  8985. },
  8986. {
  8987. name: "Megamacro",
  8988. height: math.unit(2.2, "km")
  8989. }
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(5 + 9 / 12, "feet"),
  8997. weight: math.unit(150, "lbs"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/coffee/front.svg",
  9001. extra: 3666 / 3032,
  9002. bottom: 0.04
  9003. }
  9004. },
  9005. foot: {
  9006. height: math.unit(1.29, "feet"),
  9007. name: "Foot",
  9008. image: {
  9009. source: "./media/characters/coffee/foot.svg"
  9010. }
  9011. },
  9012. },
  9013. [
  9014. {
  9015. name: "Micro",
  9016. height: math.unit(2, "inches"),
  9017. },
  9018. {
  9019. name: "Normal",
  9020. height: math.unit(5 + 9 / 12, "feet"),
  9021. default: true
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(800, "feet")
  9026. },
  9027. {
  9028. name: "Megamacro",
  9029. height: math.unit(25, "miles")
  9030. }
  9031. ]
  9032. ))
  9033. characterMakers.push(() => makeCharacter(
  9034. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9035. {
  9036. front: {
  9037. height: math.unit(6, "feet"),
  9038. weight: math.unit(200, "lbs"),
  9039. name: "Front",
  9040. image: {
  9041. source: "./media/characters/chari-gal/front.svg",
  9042. extra: 1568 / 1385,
  9043. bottom: 0.047
  9044. }
  9045. },
  9046. gigantamax: {
  9047. height: math.unit(6 * 16, "feet"),
  9048. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9049. name: "Gigantamax",
  9050. image: {
  9051. source: "./media/characters/chari-gal/gigantamax.svg",
  9052. extra: 1124 / 888,
  9053. bottom: 0.03
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(5 + 7 / 12, "feet")
  9061. },
  9062. {
  9063. name: "Macro",
  9064. height: math.unit(200, "feet"),
  9065. default: true
  9066. }
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(6, "feet"),
  9074. weight: math.unit(150, "lbs"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/nova/front.svg",
  9078. extra: 5000 / 4722,
  9079. bottom: 0.02
  9080. }
  9081. }
  9082. },
  9083. [
  9084. {
  9085. name: "Micro-",
  9086. height: math.unit(0.8, "inches")
  9087. },
  9088. {
  9089. name: "Micro",
  9090. height: math.unit(2, "inches"),
  9091. default: true
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(3 + 1 / 12, "feet"),
  9100. weight: math.unit(21.7, "lbs"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/argent/front.svg",
  9104. extra: 1471 / 1331,
  9105. bottom: 100.8 / 1575.5
  9106. }
  9107. }
  9108. },
  9109. [
  9110. {
  9111. name: "Micro",
  9112. height: math.unit(2, "inches")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(3 + 1 / 12, "feet"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Macro",
  9121. height: math.unit(120, "feet")
  9122. },
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9127. {
  9128. lamp: {
  9129. height: math.unit(7 * 1559 / 989, "feet"),
  9130. name: "Magic Lamp",
  9131. image: {
  9132. source: "./media/characters/mira-al-cul/lamp.svg",
  9133. extra: 1617 / 1559
  9134. }
  9135. },
  9136. front: {
  9137. height: math.unit(7, "feet"),
  9138. name: "Front",
  9139. image: {
  9140. source: "./media/characters/mira-al-cul/front.svg",
  9141. extra: 1044 / 990
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Heavily Restricted",
  9148. height: math.unit(7 * 1559 / 989, "feet")
  9149. },
  9150. {
  9151. name: "Freshly Freed",
  9152. height: math.unit(50 * 1559 / 989, "feet")
  9153. },
  9154. {
  9155. name: "World Encompassing",
  9156. height: math.unit(10000 * 1559 / 989, "miles")
  9157. },
  9158. {
  9159. name: "Galactic",
  9160. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9161. },
  9162. {
  9163. name: "Palmed Universe",
  9164. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9165. default: true
  9166. },
  9167. {
  9168. name: "Multiversal Matriarch",
  9169. height: math.unit(8.87e10, "yottameters")
  9170. },
  9171. {
  9172. name: "Void Mother",
  9173. height: math.unit(3.14e110, "yottaparsecs")
  9174. },
  9175. {
  9176. name: "Toying with Transcendence",
  9177. height: math.unit(1e307, "meters")
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9183. {
  9184. front: {
  9185. height: math.unit(17 + 1 / 12, "feet"),
  9186. weight: math.unit(476.2 * 5, "lbs"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/kuro-shi-uchū/front.svg",
  9190. extra: 2329 / 1835,
  9191. bottom: 0.02
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Micro",
  9198. height: math.unit(2, "inches")
  9199. },
  9200. {
  9201. name: "Normal",
  9202. height: math.unit(12, "meters")
  9203. },
  9204. {
  9205. name: "Planetary",
  9206. height: math.unit(0.00929, "AU"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Universal",
  9211. height: math.unit(20, "gigaparsecs")
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(5 + 2 / 12, "feet"),
  9220. weight: math.unit(120, "lbs"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/katherine/front.svg",
  9224. extra: 2075 / 1969
  9225. }
  9226. },
  9227. dress: {
  9228. height: math.unit(5 + 2 / 12, "feet"),
  9229. weight: math.unit(120, "lbs"),
  9230. name: "Dress",
  9231. image: {
  9232. source: "./media/characters/katherine/dress.svg",
  9233. extra: 2258 / 2064
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(1, "inches"),
  9241. default: true
  9242. },
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(5 + 2 / 12, "feet")
  9246. },
  9247. {
  9248. name: "Macro",
  9249. height: math.unit(100, "meters")
  9250. },
  9251. {
  9252. name: "Megamacro",
  9253. height: math.unit(80, "miles")
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(7 + 8 / 12, "feet"),
  9262. weight: math.unit(250, "lbs"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/yevis/front.svg",
  9266. extra: 1938 / 1755
  9267. }
  9268. }
  9269. },
  9270. [
  9271. {
  9272. name: "Mortal",
  9273. height: math.unit(7 + 8 / 12, "feet")
  9274. },
  9275. {
  9276. name: "Battle",
  9277. height: math.unit(25 + 11 / 12, "feet")
  9278. },
  9279. {
  9280. name: "Wrath",
  9281. height: math.unit(1654 + 11 / 12, "feet")
  9282. },
  9283. {
  9284. name: "Planet Destroyer",
  9285. height: math.unit(12000, "miles")
  9286. },
  9287. {
  9288. name: "Galaxy Conqueror",
  9289. height: math.unit(1.45, "zettameters"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "Universal War",
  9294. height: math.unit(184, "gigaparsecs")
  9295. },
  9296. {
  9297. name: "Eternity War",
  9298. height: math.unit(1.98e55, "yottaparsecs")
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9304. {
  9305. front: {
  9306. height: math.unit(5 + 8 / 12, "feet"),
  9307. weight: math.unit(63, "kg"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/xavier/front.svg",
  9311. extra: 944 / 883
  9312. }
  9313. },
  9314. frontStretch: {
  9315. height: math.unit(5 + 8 / 12, "feet"),
  9316. weight: math.unit(63, "kg"),
  9317. name: "Stretching",
  9318. image: {
  9319. source: "./media/characters/xavier/front-stretch.svg",
  9320. extra: 962 / 820
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(5 + 8 / 12, "feet")
  9328. },
  9329. {
  9330. name: "Macro",
  9331. height: math.unit(100, "meters"),
  9332. default: true
  9333. },
  9334. {
  9335. name: "McLargeHuge",
  9336. height: math.unit(10, "miles")
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(5 + 5 / 12, "feet"),
  9345. weight: math.unit(150, "lb"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/joshii/front.svg",
  9349. extra: 765 / 653,
  9350. bottom: 51 / 816
  9351. }
  9352. },
  9353. foot: {
  9354. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9355. name: "Foot",
  9356. image: {
  9357. source: "./media/characters/joshii/foot.svg"
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Micro",
  9364. height: math.unit(2, "inches"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(5 + 5 / 12, "feet")
  9370. },
  9371. {
  9372. name: "Macro",
  9373. height: math.unit(785, "feet")
  9374. },
  9375. {
  9376. name: "Megamacro",
  9377. height: math.unit(24.5, "miles")
  9378. },
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9383. {
  9384. front: {
  9385. height: math.unit(6, "feet"),
  9386. weight: math.unit(150, "lb"),
  9387. name: "Front",
  9388. image: {
  9389. source: "./media/characters/goddess-elizabeth/front.svg",
  9390. extra: 1800 / 1525,
  9391. bottom: 0.005
  9392. }
  9393. },
  9394. foot: {
  9395. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9396. name: "Foot",
  9397. image: {
  9398. source: "./media/characters/goddess-elizabeth/foot.svg"
  9399. }
  9400. },
  9401. mouth: {
  9402. height: math.unit(6, "feet"),
  9403. name: "Mouth",
  9404. image: {
  9405. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9406. }
  9407. },
  9408. },
  9409. [
  9410. {
  9411. name: "Micro",
  9412. height: math.unit(12, "feet")
  9413. },
  9414. {
  9415. name: "Normal",
  9416. height: math.unit(80, "miles"),
  9417. default: true
  9418. },
  9419. {
  9420. name: "Macro",
  9421. height: math.unit(15000, "parsecs")
  9422. },
  9423. ]
  9424. ))
  9425. characterMakers.push(() => makeCharacter(
  9426. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9427. {
  9428. front: {
  9429. height: math.unit(5 + 9 / 12, "feet"),
  9430. weight: math.unit(144, "lb"),
  9431. name: "Front",
  9432. image: {
  9433. source: "./media/characters/kara/front.svg"
  9434. }
  9435. },
  9436. feet: {
  9437. height: math.unit(6 / 6.765, "feet"),
  9438. name: "Kara's Feet",
  9439. rename: true,
  9440. image: {
  9441. source: "./media/characters/kara/feet.svg"
  9442. }
  9443. },
  9444. },
  9445. [
  9446. {
  9447. name: "Normal",
  9448. height: math.unit(5 + 9 / 12, "feet")
  9449. },
  9450. {
  9451. name: "Macro",
  9452. height: math.unit(174, "feet"),
  9453. default: true
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(18, "feet"),
  9462. weight: math.unit(4050, "lb"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/tyrone/front.svg",
  9466. extra: 2405 / 2270,
  9467. bottom: 182 / 2587
  9468. }
  9469. },
  9470. },
  9471. [
  9472. {
  9473. name: "Normal",
  9474. height: math.unit(18, "feet"),
  9475. default: true
  9476. },
  9477. {
  9478. name: "Macro",
  9479. height: math.unit(300, "feet")
  9480. },
  9481. {
  9482. name: "Megamacro",
  9483. height: math.unit(15, "km")
  9484. },
  9485. {
  9486. name: "Gigamacro",
  9487. height: math.unit(500, "km")
  9488. },
  9489. {
  9490. name: "Teramacro",
  9491. height: math.unit(0.5, "gigameters")
  9492. },
  9493. {
  9494. name: "Omnimacro",
  9495. height: math.unit(1e252, "yottauniverse")
  9496. },
  9497. ]
  9498. ))
  9499. characterMakers.push(() => makeCharacter(
  9500. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9501. {
  9502. front: {
  9503. height: math.unit(7 + 8 / 12, "feet"),
  9504. weight: math.unit(120, "lb"),
  9505. name: "Front",
  9506. image: {
  9507. source: "./media/characters/danny/front.svg",
  9508. extra: 1490 / 1350
  9509. }
  9510. },
  9511. back: {
  9512. height: math.unit(7 + 8 / 12, "feet"),
  9513. weight: math.unit(120, "lb"),
  9514. name: "Back",
  9515. image: {
  9516. source: "./media/characters/danny/back.svg",
  9517. extra: 1490 / 1350
  9518. }
  9519. },
  9520. },
  9521. [
  9522. {
  9523. name: "Normal",
  9524. height: math.unit(7 + 8 / 12, "feet"),
  9525. default: true
  9526. },
  9527. ]
  9528. ))
  9529. characterMakers.push(() => makeCharacter(
  9530. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9531. {
  9532. front: {
  9533. height: math.unit(3.5, "inches"),
  9534. weight: math.unit(19, "grams"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/mallow/front.svg",
  9538. extra: 471 / 431
  9539. }
  9540. },
  9541. back: {
  9542. height: math.unit(3.5, "inches"),
  9543. weight: math.unit(19, "grams"),
  9544. name: "Back",
  9545. image: {
  9546. source: "./media/characters/mallow/back.svg",
  9547. extra: 471 / 431
  9548. }
  9549. },
  9550. },
  9551. [
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(3.5, "inches"),
  9555. default: true
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(9, "feet"),
  9564. weight: math.unit(230, "kg"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/starry-aqua/front.svg"
  9568. }
  9569. },
  9570. back: {
  9571. height: math.unit(9, "feet"),
  9572. weight: math.unit(230, "kg"),
  9573. name: "Back",
  9574. image: {
  9575. source: "./media/characters/starry-aqua/back.svg"
  9576. }
  9577. },
  9578. hand: {
  9579. height: math.unit(9 * 0.1168, "feet"),
  9580. name: "Hand",
  9581. image: {
  9582. source: "./media/characters/starry-aqua/hand.svg"
  9583. }
  9584. },
  9585. foot: {
  9586. height: math.unit(9 * 0.18, "feet"),
  9587. name: "Foot",
  9588. image: {
  9589. source: "./media/characters/starry-aqua/foot.svg"
  9590. }
  9591. }
  9592. },
  9593. [
  9594. {
  9595. name: "Micro",
  9596. height: math.unit(3, "inches")
  9597. },
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(9, "feet")
  9601. },
  9602. {
  9603. name: "Macro",
  9604. height: math.unit(300, "feet"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Megamacro",
  9609. height: math.unit(3200, "feet")
  9610. }
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(15, "feet"),
  9618. weight: math.unit(5026, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/luka-towers/front.svg",
  9622. extra: 1269/1133,
  9623. bottom: 51/1320
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(15, "feet"),
  9631. default: true
  9632. },
  9633. {
  9634. name: "Minimacro",
  9635. height: math.unit(25, "feet")
  9636. },
  9637. {
  9638. name: "Macro",
  9639. height: math.unit(320, "feet")
  9640. },
  9641. {
  9642. name: "Megamacro",
  9643. height: math.unit(35000, "feet")
  9644. },
  9645. {
  9646. name: "Gigamacro",
  9647. height: math.unit(4000, "miles")
  9648. },
  9649. {
  9650. name: "Teramacro",
  9651. height: math.unit(15000, "miles")
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(6, "feet"),
  9660. weight: math.unit(150, "lb"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/natalie-nightring/front.svg",
  9664. extra: 1,
  9665. bottom: 0.06
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Uh Oh",
  9672. height: math.unit(0.1, "mm")
  9673. },
  9674. {
  9675. name: "Small",
  9676. height: math.unit(3, "inches")
  9677. },
  9678. {
  9679. name: "Human Scale",
  9680. height: math.unit(6, "feet")
  9681. },
  9682. {
  9683. name: "Librarian",
  9684. height: math.unit(50, "feet"),
  9685. default: true
  9686. },
  9687. {
  9688. name: "Immense",
  9689. height: math.unit(200, "miles")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(180, "lbs"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/danni-rosie/front.svg",
  9702. extra: 1260 / 1128,
  9703. bottom: 0.022
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Micro",
  9710. height: math.unit(2, "inches"),
  9711. default: true
  9712. },
  9713. ]
  9714. ))
  9715. characterMakers.push(() => makeCharacter(
  9716. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9717. {
  9718. front: {
  9719. height: math.unit(5 + 9 / 12, "feet"),
  9720. weight: math.unit(220, "lb"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/samantha-kruse/front.svg",
  9724. extra: (985 / 935),
  9725. bottom: 0.03
  9726. }
  9727. },
  9728. frontUndressed: {
  9729. height: math.unit(5 + 9 / 12, "feet"),
  9730. weight: math.unit(220, "lb"),
  9731. name: "Front (Undressed)",
  9732. image: {
  9733. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9734. extra: (973 / 923),
  9735. bottom: 0.025
  9736. }
  9737. },
  9738. fat: {
  9739. height: math.unit(5 + 9 / 12, "feet"),
  9740. weight: math.unit(900, "lb"),
  9741. name: "Front (Fat)",
  9742. image: {
  9743. source: "./media/characters/samantha-kruse/fat.svg",
  9744. extra: 2688 / 2561
  9745. }
  9746. },
  9747. },
  9748. [
  9749. {
  9750. name: "Normal",
  9751. height: math.unit(5 + 9 / 12, "feet"),
  9752. default: true
  9753. }
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9758. {
  9759. back: {
  9760. height: math.unit(5 + 4 / 12, "feet"),
  9761. weight: math.unit(4963, "lb"),
  9762. name: "Back",
  9763. image: {
  9764. source: "./media/characters/amelia-rosie/back.svg",
  9765. extra: 1113 / 963,
  9766. bottom: 0.01
  9767. }
  9768. },
  9769. },
  9770. [
  9771. {
  9772. name: "Level 0",
  9773. height: math.unit(5 + 4 / 12, "feet")
  9774. },
  9775. {
  9776. name: "Level 1",
  9777. height: math.unit(164597, "feet"),
  9778. default: true
  9779. },
  9780. {
  9781. name: "Level 2",
  9782. height: math.unit(956243, "miles")
  9783. },
  9784. {
  9785. name: "Level 3",
  9786. height: math.unit(29421709423, "miles")
  9787. },
  9788. {
  9789. name: "Level 4",
  9790. height: math.unit(154, "lightyears")
  9791. },
  9792. {
  9793. name: "Level 5",
  9794. height: math.unit(4738272, "lightyears")
  9795. },
  9796. {
  9797. name: "Level 6",
  9798. height: math.unit(145787152896, "lightyears")
  9799. },
  9800. ]
  9801. ))
  9802. characterMakers.push(() => makeCharacter(
  9803. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9804. {
  9805. front: {
  9806. height: math.unit(5 + 11 / 12, "feet"),
  9807. weight: math.unit(65, "kg"),
  9808. name: "Front",
  9809. image: {
  9810. source: "./media/characters/rook-kitara/front.svg",
  9811. extra: 1347 / 1274,
  9812. bottom: 0.005
  9813. }
  9814. },
  9815. },
  9816. [
  9817. {
  9818. name: "Totally Unfair",
  9819. height: math.unit(1.8, "mm")
  9820. },
  9821. {
  9822. name: "Lap Rookie",
  9823. height: math.unit(1.4, "feet")
  9824. },
  9825. {
  9826. name: "Normal",
  9827. height: math.unit(5 + 11 / 12, "feet"),
  9828. default: true
  9829. },
  9830. {
  9831. name: "How Did This Happen",
  9832. height: math.unit(80, "miles")
  9833. }
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9838. {
  9839. front: {
  9840. height: math.unit(7, "feet"),
  9841. weight: math.unit(300, "lb"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/pisces/front.svg",
  9845. extra: 2255 / 2115,
  9846. bottom: 0.03
  9847. }
  9848. },
  9849. back: {
  9850. height: math.unit(7, "feet"),
  9851. weight: math.unit(300, "lb"),
  9852. name: "Back",
  9853. image: {
  9854. source: "./media/characters/pisces/back.svg",
  9855. extra: 2146 / 2055,
  9856. bottom: 0.04
  9857. }
  9858. },
  9859. },
  9860. [
  9861. {
  9862. name: "Normal",
  9863. height: math.unit(7, "feet"),
  9864. default: true
  9865. },
  9866. {
  9867. name: "Swimming Pool",
  9868. height: math.unit(12.2, "meters")
  9869. },
  9870. {
  9871. name: "Olympic Swimming Pool",
  9872. height: math.unit(56.3, "meters")
  9873. },
  9874. {
  9875. name: "Lake Superior",
  9876. height: math.unit(93900, "meters")
  9877. },
  9878. {
  9879. name: "Mediterranean Sea",
  9880. height: math.unit(644457, "meters")
  9881. },
  9882. {
  9883. name: "World's Oceans",
  9884. height: math.unit(4567491, "meters")
  9885. },
  9886. ]
  9887. ))
  9888. characterMakers.push(() => makeCharacter(
  9889. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9890. {
  9891. front: {
  9892. height: math.unit(2.3, "meters"),
  9893. weight: math.unit(120, "kg"),
  9894. name: "Front",
  9895. image: {
  9896. source: "./media/characters/zelas/front.svg"
  9897. }
  9898. },
  9899. side: {
  9900. height: math.unit(2.3, "meters"),
  9901. weight: math.unit(120, "kg"),
  9902. name: "Side",
  9903. image: {
  9904. source: "./media/characters/zelas/side.svg"
  9905. }
  9906. },
  9907. back: {
  9908. height: math.unit(2.3, "meters"),
  9909. weight: math.unit(120, "kg"),
  9910. name: "Back",
  9911. image: {
  9912. source: "./media/characters/zelas/back.svg"
  9913. }
  9914. },
  9915. foot: {
  9916. height: math.unit(1.116, "feet"),
  9917. name: "Foot",
  9918. image: {
  9919. source: "./media/characters/zelas/foot.svg"
  9920. }
  9921. },
  9922. },
  9923. [
  9924. {
  9925. name: "Normal",
  9926. height: math.unit(2.3, "meters")
  9927. },
  9928. {
  9929. name: "Macro",
  9930. height: math.unit(30, "meters"),
  9931. default: true
  9932. },
  9933. ]
  9934. ))
  9935. characterMakers.push(() => makeCharacter(
  9936. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9937. {
  9938. front: {
  9939. height: math.unit(1, "inch"),
  9940. weight: math.unit(0.21, "grams"),
  9941. name: "Front",
  9942. image: {
  9943. source: "./media/characters/talbot/front.svg",
  9944. extra: 594 / 544
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Micro",
  9951. height: math.unit(1, "inch"),
  9952. default: true
  9953. },
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9958. {
  9959. front: {
  9960. height: math.unit(3 + 3 / 12, "feet"),
  9961. weight: math.unit(51.8, "lb"),
  9962. name: "Front",
  9963. image: {
  9964. source: "./media/characters/fliss/front.svg",
  9965. extra: 840 / 640
  9966. }
  9967. },
  9968. },
  9969. [
  9970. {
  9971. name: "Teeny Tiny",
  9972. height: math.unit(1, "mm")
  9973. },
  9974. {
  9975. name: "Small",
  9976. height: math.unit(1, "inch"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "Standard Sylveon",
  9981. height: math.unit(3 + 3 / 12, "feet")
  9982. },
  9983. {
  9984. name: "Large Nuisance",
  9985. height: math.unit(33, "feet")
  9986. },
  9987. {
  9988. name: "City Filler",
  9989. height: math.unit(3000, "feet")
  9990. },
  9991. {
  9992. name: "New Horizon",
  9993. height: math.unit(6000, "miles")
  9994. },
  9995. ]
  9996. ))
  9997. characterMakers.push(() => makeCharacter(
  9998. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9999. {
  10000. front: {
  10001. height: math.unit(5, "cm"),
  10002. weight: math.unit(1.94, "g"),
  10003. name: "Front",
  10004. image: {
  10005. source: "./media/characters/fleta/front.svg",
  10006. extra: 835 / 803
  10007. }
  10008. },
  10009. back: {
  10010. height: math.unit(5, "cm"),
  10011. weight: math.unit(1.94, "g"),
  10012. name: "Back",
  10013. image: {
  10014. source: "./media/characters/fleta/back.svg",
  10015. extra: 835 / 803
  10016. }
  10017. },
  10018. },
  10019. [
  10020. {
  10021. name: "Micro",
  10022. height: math.unit(5, "cm"),
  10023. default: true
  10024. },
  10025. ]
  10026. ))
  10027. characterMakers.push(() => makeCharacter(
  10028. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10029. {
  10030. front: {
  10031. height: math.unit(6, "feet"),
  10032. weight: math.unit(225, "lb"),
  10033. name: "Front",
  10034. image: {
  10035. source: "./media/characters/dominic/front.svg",
  10036. extra: 1770 / 1620,
  10037. bottom: 0.025
  10038. }
  10039. },
  10040. back: {
  10041. height: math.unit(6, "feet"),
  10042. weight: math.unit(225, "lb"),
  10043. name: "Back",
  10044. image: {
  10045. source: "./media/characters/dominic/back.svg",
  10046. extra: 1745 / 1620,
  10047. bottom: 0.065
  10048. }
  10049. },
  10050. },
  10051. [
  10052. {
  10053. name: "Nano",
  10054. height: math.unit(0.1, "mm")
  10055. },
  10056. {
  10057. name: "Micro-",
  10058. height: math.unit(1, "mm")
  10059. },
  10060. {
  10061. name: "Micro",
  10062. height: math.unit(4, "inches")
  10063. },
  10064. {
  10065. name: "Normal",
  10066. height: math.unit(6 + 4 / 12, "feet"),
  10067. default: true
  10068. },
  10069. {
  10070. name: "Macro",
  10071. height: math.unit(115, "feet")
  10072. },
  10073. {
  10074. name: "Macro+",
  10075. height: math.unit(955, "feet")
  10076. },
  10077. {
  10078. name: "Megamacro",
  10079. height: math.unit(8990, "feet")
  10080. },
  10081. {
  10082. name: "Gigmacro",
  10083. height: math.unit(9310, "miles")
  10084. },
  10085. {
  10086. name: "Teramacro",
  10087. height: math.unit(1567005010, "miles")
  10088. },
  10089. {
  10090. name: "Examacro",
  10091. height: math.unit(1425, "parsecs")
  10092. },
  10093. ]
  10094. ))
  10095. characterMakers.push(() => makeCharacter(
  10096. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10097. {
  10098. front: {
  10099. height: math.unit(400, "feet"),
  10100. weight: math.unit(44444444, "lb"),
  10101. name: "Front",
  10102. image: {
  10103. source: "./media/characters/major-colonel/front.svg"
  10104. }
  10105. },
  10106. back: {
  10107. height: math.unit(400, "feet"),
  10108. weight: math.unit(44444444, "lb"),
  10109. name: "Back",
  10110. image: {
  10111. source: "./media/characters/major-colonel/back.svg"
  10112. }
  10113. },
  10114. },
  10115. [
  10116. {
  10117. name: "Macro",
  10118. height: math.unit(400, "feet"),
  10119. default: true
  10120. },
  10121. ]
  10122. ))
  10123. characterMakers.push(() => makeCharacter(
  10124. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10125. {
  10126. catFront: {
  10127. height: math.unit(6, "feet"),
  10128. weight: math.unit(120, "lb"),
  10129. name: "Front (Cat Side)",
  10130. image: {
  10131. source: "./media/characters/axel-lycan/cat-front.svg",
  10132. extra: 430 / 402,
  10133. bottom: 43 / 472.35
  10134. }
  10135. },
  10136. catBack: {
  10137. height: math.unit(6, "feet"),
  10138. weight: math.unit(120, "lb"),
  10139. name: "Back (Cat Side)",
  10140. image: {
  10141. source: "./media/characters/axel-lycan/cat-back.svg",
  10142. extra: 447 / 419,
  10143. bottom: 23.3 / 469
  10144. }
  10145. },
  10146. wolfFront: {
  10147. height: math.unit(6, "feet"),
  10148. weight: math.unit(120, "lb"),
  10149. name: "Front (Wolf Side)",
  10150. image: {
  10151. source: "./media/characters/axel-lycan/wolf-front.svg",
  10152. extra: 485 / 456,
  10153. bottom: 19 / 504
  10154. }
  10155. },
  10156. wolfBack: {
  10157. height: math.unit(6, "feet"),
  10158. weight: math.unit(120, "lb"),
  10159. name: "Back (Wolf Side)",
  10160. image: {
  10161. source: "./media/characters/axel-lycan/wolf-back.svg",
  10162. extra: 475 / 438,
  10163. bottom: 39.2 / 514
  10164. }
  10165. },
  10166. },
  10167. [
  10168. {
  10169. name: "Macro",
  10170. height: math.unit(1, "km"),
  10171. default: true
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10177. {
  10178. front: {
  10179. height: math.unit(5 + 9 / 12, "feet"),
  10180. weight: math.unit(175, "lb"),
  10181. name: "Front",
  10182. image: {
  10183. source: "./media/characters/vanrel-hyena/front.svg",
  10184. extra: 1086 / 1010,
  10185. bottom: 0.04
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(5 + 9 / 12, "feet"),
  10193. default: true
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(6, "feet"),
  10202. weight: math.unit(103, "lb"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/abbott-absol/front.svg",
  10206. extra: 2010 / 1842
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Megamicro",
  10213. height: math.unit(0.1, "mm")
  10214. },
  10215. {
  10216. name: "Micro",
  10217. height: math.unit(1, "inch")
  10218. },
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(6, "feet"),
  10222. default: true
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(6, "feet"),
  10231. weight: math.unit(264, "lb"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/hector/front.svg",
  10235. extra: 2280 / 2130,
  10236. bottom: 0.07
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Normal",
  10243. height: math.unit(12.25, "foot"),
  10244. default: true
  10245. },
  10246. {
  10247. name: "Macro",
  10248. height: math.unit(160, "feet")
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(150, "lb"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/sal/front.svg",
  10261. extra: 1846 / 1699,
  10262. bottom: 0.04
  10263. }
  10264. },
  10265. },
  10266. [
  10267. {
  10268. name: "Megamacro",
  10269. height: math.unit(10, "miles"),
  10270. default: true
  10271. },
  10272. ]
  10273. ))
  10274. characterMakers.push(() => makeCharacter(
  10275. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10276. {
  10277. front: {
  10278. height: math.unit(3, "meters"),
  10279. weight: math.unit(450, "kg"),
  10280. name: "front",
  10281. image: {
  10282. source: "./media/characters/ranger/front.svg",
  10283. extra: 2401 / 2243,
  10284. bottom: 0.05
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(3, "meters"),
  10292. default: true
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(14, "feet"),
  10301. weight: math.unit(800, "kg"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/theresa/front.svg",
  10305. extra: 3575 / 3346,
  10306. bottom: 0.03
  10307. }
  10308. },
  10309. },
  10310. [
  10311. {
  10312. name: "Normal",
  10313. height: math.unit(14, "feet"),
  10314. default: true
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10320. {
  10321. front: {
  10322. height: math.unit(6, "feet"),
  10323. weight: math.unit(3, "kg"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/ine/front.svg",
  10327. extra: 678 / 539,
  10328. bottom: 0.023
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(2.265, "feet"),
  10336. default: true
  10337. },
  10338. ]
  10339. ))
  10340. characterMakers.push(() => makeCharacter(
  10341. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10342. {
  10343. front: {
  10344. height: math.unit(5, "feet"),
  10345. weight: math.unit(30, "kg"),
  10346. name: "Front",
  10347. image: {
  10348. source: "./media/characters/vial/front.svg",
  10349. extra: 1365 / 1277,
  10350. bottom: 0.04
  10351. }
  10352. },
  10353. },
  10354. [
  10355. {
  10356. name: "Normal",
  10357. height: math.unit(5, "feet"),
  10358. default: true
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10364. {
  10365. side: {
  10366. height: math.unit(3.4, "meters"),
  10367. weight: math.unit(1000, "lb"),
  10368. name: "Side",
  10369. image: {
  10370. source: "./media/characters/rovoska/side.svg",
  10371. extra: 4403 / 1515
  10372. }
  10373. },
  10374. },
  10375. [
  10376. {
  10377. name: "Normal",
  10378. height: math.unit(3.4, "meters"),
  10379. default: true
  10380. },
  10381. ]
  10382. ))
  10383. characterMakers.push(() => makeCharacter(
  10384. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10385. {
  10386. front: {
  10387. height: math.unit(8, "feet"),
  10388. weight: math.unit(315, "lb"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/gunner-rotthbauer/front.svg"
  10392. }
  10393. },
  10394. back: {
  10395. height: math.unit(8, "feet"),
  10396. weight: math.unit(315, "lb"),
  10397. name: "Back",
  10398. image: {
  10399. source: "./media/characters/gunner-rotthbauer/back.svg"
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Micro",
  10406. height: math.unit(3.5, "inches")
  10407. },
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(8, "feet"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "Macro",
  10415. height: math.unit(250, "feet")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(1, "AU")
  10420. },
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10425. {
  10426. front: {
  10427. height: math.unit(5 + 5 / 12, "feet"),
  10428. weight: math.unit(140, "lb"),
  10429. name: "Front",
  10430. image: {
  10431. source: "./media/characters/allatia/front.svg",
  10432. extra: 1227 / 1180,
  10433. bottom: 0.027
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(5 + 5 / 12, "feet")
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(250, "feet"),
  10445. default: true
  10446. },
  10447. {
  10448. name: "Megamacro",
  10449. height: math.unit(8, "miles")
  10450. }
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10455. {
  10456. front: {
  10457. height: math.unit(6, "feet"),
  10458. weight: math.unit(120, "lb"),
  10459. name: "Front",
  10460. image: {
  10461. source: "./media/characters/tene/front.svg",
  10462. extra: 814/750,
  10463. bottom: 36/850
  10464. }
  10465. },
  10466. stomping: {
  10467. height: math.unit(2.025, "meters"),
  10468. weight: math.unit(120, "lb"),
  10469. name: "Stomping",
  10470. image: {
  10471. source: "./media/characters/tene/stomping.svg",
  10472. extra: 885/821,
  10473. bottom: 15/900
  10474. }
  10475. },
  10476. sitting: {
  10477. height: math.unit(1, "meter"),
  10478. weight: math.unit(120, "lb"),
  10479. name: "Sitting",
  10480. image: {
  10481. source: "./media/characters/tene/sitting.svg",
  10482. extra: 396/366,
  10483. bottom: 79/475
  10484. }
  10485. },
  10486. smiling: {
  10487. height: math.unit(1.2, "feet"),
  10488. name: "Smiling",
  10489. image: {
  10490. source: "./media/characters/tene/smiling.svg",
  10491. extra: 1364/1071,
  10492. bottom: 0/1364
  10493. }
  10494. },
  10495. smug: {
  10496. height: math.unit(1.3, "feet"),
  10497. name: "Smug",
  10498. image: {
  10499. source: "./media/characters/tene/smug.svg",
  10500. extra: 1323/1082,
  10501. bottom: 0/1323
  10502. }
  10503. },
  10504. feral: {
  10505. height: math.unit(3.9, "feet"),
  10506. weight: math.unit(250, "lb"),
  10507. name: "Feral",
  10508. image: {
  10509. source: "./media/characters/tene/feral.svg",
  10510. extra: 717 / 458,
  10511. bottom: 0.179
  10512. }
  10513. },
  10514. },
  10515. [
  10516. {
  10517. name: "Normal",
  10518. height: math.unit(6, "feet")
  10519. },
  10520. {
  10521. name: "Macro",
  10522. height: math.unit(300, "feet"),
  10523. default: true
  10524. },
  10525. {
  10526. name: "Megamacro",
  10527. height: math.unit(5, "miles")
  10528. },
  10529. ]
  10530. ))
  10531. characterMakers.push(() => makeCharacter(
  10532. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10533. {
  10534. side: {
  10535. height: math.unit(6, "feet"),
  10536. name: "Side",
  10537. image: {
  10538. source: "./media/characters/evander/side.svg",
  10539. extra: 877 / 477
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Normal",
  10546. height: math.unit(0.83, "meters"),
  10547. default: true
  10548. },
  10549. ]
  10550. ))
  10551. characterMakers.push(() => makeCharacter(
  10552. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10553. {
  10554. front: {
  10555. height: math.unit(12, "feet"),
  10556. weight: math.unit(1000, "lb"),
  10557. name: "Front",
  10558. image: {
  10559. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10560. extra: 1762 / 1611
  10561. }
  10562. },
  10563. back: {
  10564. height: math.unit(12, "feet"),
  10565. weight: math.unit(1000, "lb"),
  10566. name: "Back",
  10567. image: {
  10568. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10569. extra: 1762 / 1611
  10570. }
  10571. },
  10572. },
  10573. [
  10574. {
  10575. name: "Normal",
  10576. height: math.unit(12, "feet"),
  10577. default: true
  10578. },
  10579. {
  10580. name: "Kaiju",
  10581. height: math.unit(150, "feet")
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10587. {
  10588. front: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(150, "lb"),
  10591. name: "Front",
  10592. image: {
  10593. source: "./media/characters/zero-alurus/front.svg"
  10594. }
  10595. },
  10596. back: {
  10597. height: math.unit(6, "feet"),
  10598. weight: math.unit(150, "lb"),
  10599. name: "Back",
  10600. image: {
  10601. source: "./media/characters/zero-alurus/back.svg"
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Normal",
  10608. height: math.unit(5 + 10 / 12, "feet")
  10609. },
  10610. {
  10611. name: "Macro",
  10612. height: math.unit(60, "feet"),
  10613. default: true
  10614. },
  10615. {
  10616. name: "Macro+",
  10617. height: math.unit(450, "feet")
  10618. },
  10619. ]
  10620. ))
  10621. characterMakers.push(() => makeCharacter(
  10622. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10623. {
  10624. front: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(200, "lb"),
  10627. name: "Front",
  10628. image: {
  10629. source: "./media/characters/mega-shi/front.svg",
  10630. extra: 1279 / 1250,
  10631. bottom: 0.02
  10632. }
  10633. },
  10634. back: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(200, "lb"),
  10637. name: "Back",
  10638. image: {
  10639. source: "./media/characters/mega-shi/back.svg",
  10640. extra: 1279 / 1250,
  10641. bottom: 0.02
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Micro",
  10648. height: math.unit(16 + 6 / 12, "feet")
  10649. },
  10650. {
  10651. name: "Third Dimension",
  10652. height: math.unit(40, "meters")
  10653. },
  10654. {
  10655. name: "Normal",
  10656. height: math.unit(660, "feet"),
  10657. default: true
  10658. },
  10659. {
  10660. name: "Megamacro",
  10661. height: math.unit(10, "miles")
  10662. },
  10663. {
  10664. name: "Planetary Launch",
  10665. height: math.unit(500, "miles")
  10666. },
  10667. {
  10668. name: "Interstellar",
  10669. height: math.unit(1e9, "miles")
  10670. },
  10671. {
  10672. name: "Leaving the Universe",
  10673. height: math.unit(1, "gigaparsec")
  10674. },
  10675. {
  10676. name: "Travelling Universes",
  10677. height: math.unit(30e15, "parsecs")
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(5 + 4/12, "feet"),
  10686. weight: math.unit(120, "lb"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/odyssey/front.svg",
  10690. extra: 1747/1571,
  10691. bottom: 47/1794
  10692. }
  10693. },
  10694. side: {
  10695. height: math.unit(5.1, "feet"),
  10696. weight: math.unit(120, "lb"),
  10697. name: "Side",
  10698. image: {
  10699. source: "./media/characters/odyssey/side.svg",
  10700. extra: 1847/1619,
  10701. bottom: 47/1894
  10702. }
  10703. },
  10704. lounging: {
  10705. height: math.unit(1.464, "feet"),
  10706. weight: math.unit(120, "lb"),
  10707. name: "Lounging",
  10708. image: {
  10709. source: "./media/characters/odyssey/lounging.svg",
  10710. extra: 1235/837,
  10711. bottom: 551/1786
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Normal",
  10718. height: math.unit(5 + 4 / 12, "feet")
  10719. },
  10720. {
  10721. name: "Macro",
  10722. height: math.unit(1, "km")
  10723. },
  10724. {
  10725. name: "Megamacro",
  10726. height: math.unit(3000, "km")
  10727. },
  10728. {
  10729. name: "Gigamacro",
  10730. height: math.unit(1, "AU"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Omniversal",
  10735. height: math.unit(100e14, "lightyears")
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(6, "feet"),
  10744. weight: math.unit(300, "lb"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/mekuto/front.svg",
  10748. extra: 921 / 832,
  10749. bottom: 0.03
  10750. }
  10751. },
  10752. hand: {
  10753. height: math.unit(6 / 10.24, "feet"),
  10754. name: "Hand",
  10755. image: {
  10756. source: "./media/characters/mekuto/hand.svg"
  10757. }
  10758. },
  10759. foot: {
  10760. height: math.unit(6 / 5.05, "feet"),
  10761. name: "Foot",
  10762. image: {
  10763. source: "./media/characters/mekuto/foot.svg"
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Minimicro",
  10770. height: math.unit(0.2, "inches")
  10771. },
  10772. {
  10773. name: "Micro",
  10774. height: math.unit(1.5, "inches")
  10775. },
  10776. {
  10777. name: "Normal",
  10778. height: math.unit(5 + 11 / 12, "feet"),
  10779. default: true
  10780. },
  10781. {
  10782. name: "Minimacro",
  10783. height: math.unit(17 + 9 / 12, "feet")
  10784. },
  10785. {
  10786. name: "Macro",
  10787. height: math.unit(177.5, "feet")
  10788. },
  10789. {
  10790. name: "Megamacro",
  10791. height: math.unit(152, "miles")
  10792. },
  10793. ]
  10794. ))
  10795. characterMakers.push(() => makeCharacter(
  10796. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10797. {
  10798. front: {
  10799. height: math.unit(6.5, "inches"),
  10800. weight: math.unit(13, "oz"),
  10801. name: "Front",
  10802. image: {
  10803. source: "./media/characters/dafydd-tomos/front.svg",
  10804. extra: 2990 / 2603,
  10805. bottom: 0.03
  10806. }
  10807. },
  10808. },
  10809. [
  10810. {
  10811. name: "Micro",
  10812. height: math.unit(6.5, "inches"),
  10813. default: true
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10819. {
  10820. front: {
  10821. height: math.unit(6, "feet"),
  10822. weight: math.unit(150, "lb"),
  10823. name: "Front",
  10824. image: {
  10825. source: "./media/characters/splinter/front.svg",
  10826. extra: 2990 / 2882,
  10827. bottom: 0.04
  10828. }
  10829. },
  10830. back: {
  10831. height: math.unit(6, "feet"),
  10832. weight: math.unit(150, "lb"),
  10833. name: "Back",
  10834. image: {
  10835. source: "./media/characters/splinter/back.svg",
  10836. extra: 2990 / 2882,
  10837. bottom: 0.04
  10838. }
  10839. },
  10840. },
  10841. [
  10842. {
  10843. name: "Normal",
  10844. height: math.unit(6, "feet")
  10845. },
  10846. {
  10847. name: "Macro",
  10848. height: math.unit(230, "meters"),
  10849. default: true
  10850. },
  10851. ]
  10852. ))
  10853. characterMakers.push(() => makeCharacter(
  10854. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10855. {
  10856. front: {
  10857. height: math.unit(4 + 10 / 12, "feet"),
  10858. weight: math.unit(480, "lb"),
  10859. name: "Front",
  10860. image: {
  10861. source: "./media/characters/snow-gabumon/front.svg",
  10862. extra: 1140 / 963,
  10863. bottom: 0.058
  10864. }
  10865. },
  10866. back: {
  10867. height: math.unit(4 + 10 / 12, "feet"),
  10868. weight: math.unit(480, "lb"),
  10869. name: "Back",
  10870. image: {
  10871. source: "./media/characters/snow-gabumon/back.svg",
  10872. extra: 1115 / 962,
  10873. bottom: 0.041
  10874. }
  10875. },
  10876. frontUndresed: {
  10877. height: math.unit(4 + 10 / 12, "feet"),
  10878. weight: math.unit(480, "lb"),
  10879. name: "Front (Undressed)",
  10880. image: {
  10881. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10882. extra: 1061 / 960,
  10883. bottom: 0.045
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Micro",
  10890. height: math.unit(1, "inch")
  10891. },
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(4 + 10 / 12, "feet"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(200, "feet")
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(120, "miles")
  10904. },
  10905. {
  10906. name: "Gigamacro",
  10907. height: math.unit(9800, "miles")
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(1.7, "meters"),
  10916. weight: math.unit(140, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/moody/front.svg",
  10920. extra: 3226 / 3007,
  10921. bottom: 0.087
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Micro",
  10928. height: math.unit(1, "mm")
  10929. },
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(1.7, "meters"),
  10933. default: true
  10934. },
  10935. {
  10936. name: "Macro",
  10937. height: math.unit(80, "meters")
  10938. },
  10939. {
  10940. name: "Macro+",
  10941. height: math.unit(500, "meters")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10947. {
  10948. front: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(150, "lb"),
  10951. name: "Front",
  10952. image: {
  10953. source: "./media/characters/zyas/front.svg",
  10954. extra: 1180 / 1120,
  10955. bottom: 0.045
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Normal",
  10962. height: math.unit(10, "feet"),
  10963. default: true
  10964. },
  10965. {
  10966. name: "Macro",
  10967. height: math.unit(500, "feet")
  10968. },
  10969. {
  10970. name: "Megamacro",
  10971. height: math.unit(5, "miles")
  10972. },
  10973. {
  10974. name: "Teramacro",
  10975. height: math.unit(150000, "miles")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10981. {
  10982. front: {
  10983. height: math.unit(6, "feet"),
  10984. weight: math.unit(150, "lb"),
  10985. name: "Front",
  10986. image: {
  10987. source: "./media/characters/cuon/front.svg",
  10988. extra: 1390 / 1320,
  10989. bottom: 0.008
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Micro",
  10996. height: math.unit(3, "inches")
  10997. },
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(18 + 9 / 12, "feet"),
  11001. default: true
  11002. },
  11003. {
  11004. name: "Macro",
  11005. height: math.unit(360, "feet")
  11006. },
  11007. {
  11008. name: "Megamacro",
  11009. height: math.unit(360, "miles")
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11015. {
  11016. front: {
  11017. height: math.unit(2.4, "meters"),
  11018. weight: math.unit(70, "kg"),
  11019. name: "Front",
  11020. image: {
  11021. source: "./media/characters/nyanuxk/front.svg",
  11022. extra: 1172 / 1084,
  11023. bottom: 0.065
  11024. }
  11025. },
  11026. side: {
  11027. height: math.unit(2.4, "meters"),
  11028. weight: math.unit(70, "kg"),
  11029. name: "Side",
  11030. image: {
  11031. source: "./media/characters/nyanuxk/side.svg",
  11032. extra: 1190 / 1132,
  11033. bottom: 0.007
  11034. }
  11035. },
  11036. back: {
  11037. height: math.unit(2.4, "meters"),
  11038. weight: math.unit(70, "kg"),
  11039. name: "Back",
  11040. image: {
  11041. source: "./media/characters/nyanuxk/back.svg",
  11042. extra: 1200 / 1141,
  11043. bottom: 0.015
  11044. }
  11045. },
  11046. foot: {
  11047. height: math.unit(0.52, "meters"),
  11048. name: "Foot",
  11049. image: {
  11050. source: "./media/characters/nyanuxk/foot.svg"
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Micro",
  11057. height: math.unit(2, "cm")
  11058. },
  11059. {
  11060. name: "Normal",
  11061. height: math.unit(2.4, "meters"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Smaller Macro",
  11066. height: math.unit(120, "meters")
  11067. },
  11068. {
  11069. name: "Bigger Macro",
  11070. height: math.unit(1.2, "km")
  11071. },
  11072. {
  11073. name: "Megamacro",
  11074. height: math.unit(15, "kilometers")
  11075. },
  11076. {
  11077. name: "Gigamacro",
  11078. height: math.unit(2000, "km")
  11079. },
  11080. {
  11081. name: "Teramacro",
  11082. height: math.unit(500000, "km")
  11083. },
  11084. ]
  11085. ))
  11086. characterMakers.push(() => makeCharacter(
  11087. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11088. {
  11089. side: {
  11090. height: math.unit(6, "feet"),
  11091. name: "Side",
  11092. image: {
  11093. source: "./media/characters/ailbhe/side.svg",
  11094. extra: 757 / 464,
  11095. bottom: 0.041
  11096. }
  11097. },
  11098. },
  11099. [
  11100. {
  11101. name: "Normal",
  11102. height: math.unit(1.07, "meters"),
  11103. default: true
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11109. {
  11110. front: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(120, "kg"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/zevulfius/front.svg",
  11116. extra: 965 / 903
  11117. }
  11118. },
  11119. side: {
  11120. height: math.unit(6, "feet"),
  11121. weight: math.unit(120, "kg"),
  11122. name: "Side",
  11123. image: {
  11124. source: "./media/characters/zevulfius/side.svg",
  11125. extra: 939 / 900
  11126. }
  11127. },
  11128. back: {
  11129. height: math.unit(6, "feet"),
  11130. weight: math.unit(120, "kg"),
  11131. name: "Back",
  11132. image: {
  11133. source: "./media/characters/zevulfius/back.svg",
  11134. extra: 918 / 854,
  11135. bottom: 0.005
  11136. }
  11137. },
  11138. foot: {
  11139. height: math.unit(6 / 3.72, "feet"),
  11140. name: "Foot",
  11141. image: {
  11142. source: "./media/characters/zevulfius/foot.svg"
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Macro",
  11149. height: math.unit(750, "meters")
  11150. },
  11151. {
  11152. name: "Megamacro",
  11153. height: math.unit(20, "km"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Gigamacro",
  11158. height: math.unit(2000, "km")
  11159. },
  11160. {
  11161. name: "Teramacro",
  11162. height: math.unit(250000, "km")
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(100, "feet"),
  11171. weight: math.unit(350, "kg"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/rikes/front.svg",
  11175. extra: 1565 / 1483,
  11176. bottom: 0.017
  11177. }
  11178. },
  11179. },
  11180. [
  11181. {
  11182. name: "Macro",
  11183. height: math.unit(100, "feet"),
  11184. default: true
  11185. },
  11186. ]
  11187. ))
  11188. characterMakers.push(() => makeCharacter(
  11189. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11190. {
  11191. front: {
  11192. height: math.unit(8, "feet"),
  11193. weight: math.unit(356, "lb"),
  11194. name: "Front",
  11195. image: {
  11196. source: "./media/characters/adam-silver-mane/front.svg",
  11197. extra: 1036/937,
  11198. bottom: 63/1099
  11199. }
  11200. },
  11201. side: {
  11202. height: math.unit(8, "feet"),
  11203. weight: math.unit(356, "lb"),
  11204. name: "Side",
  11205. image: {
  11206. source: "./media/characters/adam-silver-mane/side.svg",
  11207. extra: 997/901,
  11208. bottom: 59/1056
  11209. }
  11210. },
  11211. frontNsfw: {
  11212. height: math.unit(8, "feet"),
  11213. weight: math.unit(356, "lb"),
  11214. name: "Front (NSFW)",
  11215. image: {
  11216. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11217. extra: 1036/937,
  11218. bottom: 63/1099
  11219. }
  11220. },
  11221. sideNsfw: {
  11222. height: math.unit(8, "feet"),
  11223. weight: math.unit(356, "lb"),
  11224. name: "Side (NSFW)",
  11225. image: {
  11226. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11227. extra: 997/901,
  11228. bottom: 59/1056
  11229. }
  11230. },
  11231. dick: {
  11232. height: math.unit(2.1, "feet"),
  11233. name: "Dick",
  11234. image: {
  11235. source: "./media/characters/adam-silver-mane/dick.svg"
  11236. }
  11237. },
  11238. taur: {
  11239. height: math.unit(16, "feet"),
  11240. weight: math.unit(1500, "kg"),
  11241. name: "Taur",
  11242. image: {
  11243. source: "./media/characters/adam-silver-mane/taur.svg",
  11244. extra: 1713 / 1571,
  11245. bottom: 0.01
  11246. }
  11247. },
  11248. },
  11249. [
  11250. {
  11251. name: "Normal",
  11252. height: math.unit(8, "feet")
  11253. },
  11254. {
  11255. name: "Minimacro",
  11256. height: math.unit(80, "feet")
  11257. },
  11258. {
  11259. name: "MDA",
  11260. height: math.unit(80, "meters")
  11261. },
  11262. {
  11263. name: "Macro",
  11264. height: math.unit(800, "feet"),
  11265. default: true
  11266. },
  11267. {
  11268. name: "Megamacro",
  11269. height: math.unit(8000, "feet")
  11270. },
  11271. {
  11272. name: "Gigamacro",
  11273. height: math.unit(800, "miles")
  11274. },
  11275. {
  11276. name: "Teramacro",
  11277. height: math.unit(80000, "miles")
  11278. },
  11279. {
  11280. name: "Celestial",
  11281. height: math.unit(8e6, "miles")
  11282. },
  11283. {
  11284. name: "Star Dragon",
  11285. height: math.unit(800000, "parsecs")
  11286. },
  11287. {
  11288. name: "Godly",
  11289. height: math.unit(800, "teraparsecs")
  11290. },
  11291. ]
  11292. ))
  11293. characterMakers.push(() => makeCharacter(
  11294. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11295. {
  11296. front: {
  11297. height: math.unit(6, "feet"),
  11298. weight: math.unit(150, "lb"),
  11299. name: "Front",
  11300. image: {
  11301. source: "./media/characters/ky'owin/front.svg",
  11302. extra: 3888 / 3068,
  11303. bottom: 0.015
  11304. }
  11305. },
  11306. },
  11307. [
  11308. {
  11309. name: "Normal",
  11310. height: math.unit(6 + 8 / 12, "feet")
  11311. },
  11312. {
  11313. name: "Large",
  11314. height: math.unit(68, "feet")
  11315. },
  11316. {
  11317. name: "Macro",
  11318. height: math.unit(132, "feet")
  11319. },
  11320. {
  11321. name: "Macro+",
  11322. height: math.unit(340, "feet")
  11323. },
  11324. {
  11325. name: "Macro++",
  11326. height: math.unit(680, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(1, "mile")
  11332. },
  11333. {
  11334. name: "Megamacro+",
  11335. height: math.unit(10, "miles")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(4, "feet"),
  11344. weight: math.unit(50, "lb"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/mal/front.svg",
  11348. extra: 785 / 724,
  11349. bottom: 0.07
  11350. }
  11351. },
  11352. },
  11353. [
  11354. {
  11355. name: "Micro",
  11356. height: math.unit(4, "inches")
  11357. },
  11358. {
  11359. name: "Normal",
  11360. height: math.unit(4, "feet"),
  11361. default: true
  11362. },
  11363. {
  11364. name: "Macro",
  11365. height: math.unit(200, "feet")
  11366. },
  11367. ]
  11368. ))
  11369. characterMakers.push(() => makeCharacter(
  11370. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11371. {
  11372. front: {
  11373. height: math.unit(6, "feet"),
  11374. weight: math.unit(150, "lb"),
  11375. name: "Front",
  11376. image: {
  11377. source: "./media/characters/jordan-deware/front.svg",
  11378. extra: 1191 / 1012
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Nano",
  11385. height: math.unit(0.01, "mm")
  11386. },
  11387. {
  11388. name: "Minimicro",
  11389. height: math.unit(1, "mm")
  11390. },
  11391. {
  11392. name: "Micro",
  11393. height: math.unit(0.5, "inches")
  11394. },
  11395. {
  11396. name: "Normal",
  11397. height: math.unit(4, "feet"),
  11398. default: true
  11399. },
  11400. {
  11401. name: "Minimacro",
  11402. height: math.unit(40, "meters")
  11403. },
  11404. {
  11405. name: "Small Macro",
  11406. height: math.unit(400, "meters")
  11407. },
  11408. {
  11409. name: "Macro",
  11410. height: math.unit(4, "miles")
  11411. },
  11412. {
  11413. name: "Megamacro",
  11414. height: math.unit(40, "miles")
  11415. },
  11416. {
  11417. name: "Megamacro+",
  11418. height: math.unit(400, "miles")
  11419. },
  11420. {
  11421. name: "Gigamacro",
  11422. height: math.unit(400000, "miles")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11428. {
  11429. side: {
  11430. height: math.unit(6, "feet"),
  11431. weight: math.unit(150, "lb"),
  11432. name: "Side",
  11433. image: {
  11434. source: "./media/characters/kimiko/side.svg",
  11435. extra: 600 / 358
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(15, "feet"),
  11443. default: true
  11444. },
  11445. {
  11446. name: "Macro",
  11447. height: math.unit(220, "feet")
  11448. },
  11449. {
  11450. name: "Macro+",
  11451. height: math.unit(1450, "feet")
  11452. },
  11453. {
  11454. name: "Megamacro",
  11455. height: math.unit(11500, "feet")
  11456. },
  11457. {
  11458. name: "Gigamacro",
  11459. height: math.unit(9500, "miles")
  11460. },
  11461. {
  11462. name: "Teramacro",
  11463. height: math.unit(2208005005, "miles")
  11464. },
  11465. {
  11466. name: "Examacro",
  11467. height: math.unit(2750, "parsecs")
  11468. },
  11469. {
  11470. name: "Zettamacro",
  11471. height: math.unit(101500, "parsecs")
  11472. },
  11473. ]
  11474. ))
  11475. characterMakers.push(() => makeCharacter(
  11476. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11477. {
  11478. front: {
  11479. height: math.unit(6, "feet"),
  11480. weight: math.unit(70, "kg"),
  11481. name: "Front",
  11482. image: {
  11483. source: "./media/characters/andrew-sleepy/front.svg"
  11484. }
  11485. },
  11486. side: {
  11487. height: math.unit(6, "feet"),
  11488. weight: math.unit(70, "kg"),
  11489. name: "Side",
  11490. image: {
  11491. source: "./media/characters/andrew-sleepy/side.svg"
  11492. }
  11493. },
  11494. },
  11495. [
  11496. {
  11497. name: "Micro",
  11498. height: math.unit(1, "mm"),
  11499. default: true
  11500. },
  11501. ]
  11502. ))
  11503. characterMakers.push(() => makeCharacter(
  11504. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11505. {
  11506. front: {
  11507. height: math.unit(6, "feet"),
  11508. weight: math.unit(150, "lb"),
  11509. name: "Front",
  11510. image: {
  11511. source: "./media/characters/judio/front.svg",
  11512. extra: 1258 / 1110
  11513. }
  11514. },
  11515. },
  11516. [
  11517. {
  11518. name: "Normal",
  11519. height: math.unit(5 + 6 / 12, "feet")
  11520. },
  11521. {
  11522. name: "Macro",
  11523. height: math.unit(1000, "feet"),
  11524. default: true
  11525. },
  11526. {
  11527. name: "Megamacro",
  11528. height: math.unit(10, "miles")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11534. {
  11535. frontDressed: {
  11536. height: math.unit(6, "feet"),
  11537. weight: math.unit(68, "kg"),
  11538. name: "Front (Dressed)",
  11539. image: {
  11540. source: "./media/characters/nomaxice/front-dressed.svg",
  11541. extra: 1137/824,
  11542. bottom: 74/1211
  11543. }
  11544. },
  11545. frontShorts: {
  11546. height: math.unit(6, "feet"),
  11547. weight: math.unit(68, "kg"),
  11548. name: "Front (Shorts)",
  11549. image: {
  11550. source: "./media/characters/nomaxice/front-shorts.svg",
  11551. extra: 1137/824,
  11552. bottom: 74/1211
  11553. }
  11554. },
  11555. back: {
  11556. height: math.unit(6, "feet"),
  11557. weight: math.unit(68, "kg"),
  11558. name: "Back",
  11559. image: {
  11560. source: "./media/characters/nomaxice/back.svg",
  11561. extra: 822/786,
  11562. bottom: 39/861
  11563. }
  11564. },
  11565. hand: {
  11566. height: math.unit(0.565, "feet"),
  11567. name: "Hand",
  11568. image: {
  11569. source: "./media/characters/nomaxice/hand.svg"
  11570. }
  11571. },
  11572. foot: {
  11573. height: math.unit(1, "feet"),
  11574. name: "Foot",
  11575. image: {
  11576. source: "./media/characters/nomaxice/foot.svg"
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Micro",
  11583. height: math.unit(8, "cm")
  11584. },
  11585. {
  11586. name: "Norm",
  11587. height: math.unit(1.82, "m")
  11588. },
  11589. {
  11590. name: "Norm+",
  11591. height: math.unit(8.8, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Big",
  11596. height: math.unit(8, "meters")
  11597. },
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(18, "meters")
  11601. },
  11602. {
  11603. name: "Macro+",
  11604. height: math.unit(88, "meters")
  11605. },
  11606. ]
  11607. ))
  11608. characterMakers.push(() => makeCharacter(
  11609. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11610. {
  11611. front: {
  11612. height: math.unit(12, "feet"),
  11613. weight: math.unit(1.5, "tons"),
  11614. name: "Front",
  11615. image: {
  11616. source: "./media/characters/dydros/front.svg",
  11617. extra: 863 / 800,
  11618. bottom: 0.015
  11619. }
  11620. },
  11621. back: {
  11622. height: math.unit(12, "feet"),
  11623. weight: math.unit(1.5, "tons"),
  11624. name: "Back",
  11625. image: {
  11626. source: "./media/characters/dydros/back.svg",
  11627. extra: 900 / 843,
  11628. bottom: 0.005
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(12, "feet"),
  11636. default: true
  11637. },
  11638. ]
  11639. ))
  11640. characterMakers.push(() => makeCharacter(
  11641. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11642. {
  11643. front: {
  11644. height: math.unit(6, "feet"),
  11645. weight: math.unit(100, "kg"),
  11646. name: "Front",
  11647. image: {
  11648. source: "./media/characters/riggi/front.svg",
  11649. extra: 5787 / 5303
  11650. }
  11651. },
  11652. hyper: {
  11653. height: math.unit(6 * 5 / 3, "feet"),
  11654. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11655. name: "Hyper",
  11656. image: {
  11657. source: "./media/characters/riggi/hyper.svg",
  11658. extra: 3595 / 3485
  11659. }
  11660. },
  11661. },
  11662. [
  11663. {
  11664. name: "Small Macro",
  11665. height: math.unit(50, "feet")
  11666. },
  11667. {
  11668. name: "Default",
  11669. height: math.unit(200, "feet"),
  11670. default: true
  11671. },
  11672. {
  11673. name: "Loom",
  11674. height: math.unit(10000, "feet")
  11675. },
  11676. {
  11677. name: "Cruising Altitude",
  11678. height: math.unit(30000, "feet")
  11679. },
  11680. {
  11681. name: "Megamacro",
  11682. height: math.unit(100, "miles")
  11683. },
  11684. {
  11685. name: "Continent Sized",
  11686. height: math.unit(2800, "miles")
  11687. },
  11688. {
  11689. name: "Earth Sized",
  11690. height: math.unit(8000, "miles")
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11696. {
  11697. front: {
  11698. height: math.unit(6, "feet"),
  11699. weight: math.unit(250, "lb"),
  11700. name: "Front",
  11701. image: {
  11702. source: "./media/characters/alexi/front.svg",
  11703. extra: 3483 / 3291,
  11704. bottom: 0.04
  11705. }
  11706. },
  11707. back: {
  11708. height: math.unit(6, "feet"),
  11709. weight: math.unit(250, "lb"),
  11710. name: "Back",
  11711. image: {
  11712. source: "./media/characters/alexi/back.svg",
  11713. extra: 3533 / 3356,
  11714. bottom: 0.021
  11715. }
  11716. },
  11717. frontTransforming: {
  11718. height: math.unit(8.58, "feet"),
  11719. weight: math.unit(1300, "lb"),
  11720. name: "Transforming",
  11721. image: {
  11722. source: "./media/characters/alexi/front-transforming.svg",
  11723. extra: 437 / 409,
  11724. bottom: 19 / 458.66
  11725. }
  11726. },
  11727. frontTransformed: {
  11728. height: math.unit(12.5, "feet"),
  11729. weight: math.unit(4000, "lb"),
  11730. name: "Transformed",
  11731. image: {
  11732. source: "./media/characters/alexi/front-transformed.svg",
  11733. extra: 639 / 614,
  11734. bottom: 30.55 / 671
  11735. }
  11736. },
  11737. },
  11738. [
  11739. {
  11740. name: "Normal",
  11741. height: math.unit(14, "feet"),
  11742. default: true
  11743. },
  11744. {
  11745. name: "Minimacro",
  11746. height: math.unit(30, "meters")
  11747. },
  11748. {
  11749. name: "Macro",
  11750. height: math.unit(500, "meters")
  11751. },
  11752. {
  11753. name: "Megamacro",
  11754. height: math.unit(9000, "km")
  11755. },
  11756. {
  11757. name: "Teramacro",
  11758. height: math.unit(384000, "km")
  11759. },
  11760. ]
  11761. ))
  11762. characterMakers.push(() => makeCharacter(
  11763. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11764. {
  11765. front: {
  11766. height: math.unit(6, "feet"),
  11767. weight: math.unit(150, "lb"),
  11768. name: "Front",
  11769. image: {
  11770. source: "./media/characters/kayroo/front.svg",
  11771. extra: 1153 / 1038,
  11772. bottom: 0.06
  11773. }
  11774. },
  11775. foot: {
  11776. height: math.unit(6, "feet"),
  11777. weight: math.unit(150, "lb"),
  11778. name: "Foot",
  11779. image: {
  11780. source: "./media/characters/kayroo/foot.svg"
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Normal",
  11787. height: math.unit(8, "feet"),
  11788. default: true
  11789. },
  11790. {
  11791. name: "Minimacro",
  11792. height: math.unit(250, "feet")
  11793. },
  11794. {
  11795. name: "Macro",
  11796. height: math.unit(2800, "feet")
  11797. },
  11798. {
  11799. name: "Megamacro",
  11800. height: math.unit(5200, "feet")
  11801. },
  11802. {
  11803. name: "Gigamacro",
  11804. height: math.unit(27000, "feet")
  11805. },
  11806. {
  11807. name: "Omega",
  11808. height: math.unit(45000, "feet")
  11809. },
  11810. ]
  11811. ))
  11812. characterMakers.push(() => makeCharacter(
  11813. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11814. {
  11815. front: {
  11816. height: math.unit(18, "feet"),
  11817. weight: math.unit(5800, "lb"),
  11818. name: "Front",
  11819. image: {
  11820. source: "./media/characters/rhys/front.svg",
  11821. extra: 3386 / 3090,
  11822. bottom: 0.07
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Normal",
  11829. height: math.unit(18, "feet"),
  11830. default: true
  11831. },
  11832. {
  11833. name: "Working Size",
  11834. height: math.unit(200, "feet")
  11835. },
  11836. {
  11837. name: "Demolition Size",
  11838. height: math.unit(2000, "feet")
  11839. },
  11840. {
  11841. name: "Maximum Licensed Size",
  11842. height: math.unit(5, "miles")
  11843. },
  11844. {
  11845. name: "Maximum Observed Size",
  11846. height: math.unit(10, "yottameters")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11852. {
  11853. front: {
  11854. height: math.unit(6, "feet"),
  11855. weight: math.unit(250, "lb"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/toto/front.svg",
  11859. extra: 527 / 479,
  11860. bottom: 0.05
  11861. }
  11862. },
  11863. },
  11864. [
  11865. {
  11866. name: "Micro",
  11867. height: math.unit(3, "feet")
  11868. },
  11869. {
  11870. name: "Normal",
  11871. height: math.unit(10, "feet")
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(150, "feet"),
  11876. default: true
  11877. },
  11878. {
  11879. name: "Megamacro",
  11880. height: math.unit(1200, "feet")
  11881. },
  11882. ]
  11883. ))
  11884. characterMakers.push(() => makeCharacter(
  11885. { name: "King", species: ["lion"], tags: ["anthro"] },
  11886. {
  11887. back: {
  11888. height: math.unit(6, "feet"),
  11889. weight: math.unit(150, "lb"),
  11890. name: "Back",
  11891. image: {
  11892. source: "./media/characters/king/back.svg"
  11893. }
  11894. },
  11895. },
  11896. [
  11897. {
  11898. name: "Micro",
  11899. height: math.unit(2, "inches")
  11900. },
  11901. {
  11902. name: "Normal",
  11903. height: math.unit(8, "feet")
  11904. },
  11905. {
  11906. name: "Macro",
  11907. height: math.unit(200, "feet"),
  11908. default: true
  11909. },
  11910. {
  11911. name: "Megamacro",
  11912. height: math.unit(50, "miles")
  11913. },
  11914. ]
  11915. ))
  11916. characterMakers.push(() => makeCharacter(
  11917. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11918. {
  11919. front: {
  11920. height: math.unit(11, "feet"),
  11921. weight: math.unit(1400, "lb"),
  11922. name: "Front",
  11923. image: {
  11924. source: "./media/characters/cordite/front.svg",
  11925. extra: 1919/1827,
  11926. bottom: 40/1959
  11927. }
  11928. },
  11929. side: {
  11930. height: math.unit(11, "feet"),
  11931. weight: math.unit(1400, "lb"),
  11932. name: "Side",
  11933. image: {
  11934. source: "./media/characters/cordite/side.svg",
  11935. extra: 1908/1793,
  11936. bottom: 38/1946
  11937. }
  11938. },
  11939. back: {
  11940. height: math.unit(11, "feet"),
  11941. weight: math.unit(1400, "lb"),
  11942. name: "Back",
  11943. image: {
  11944. source: "./media/characters/cordite/back.svg",
  11945. extra: 1938/1837,
  11946. bottom: 10/1948
  11947. }
  11948. },
  11949. feral: {
  11950. height: math.unit(2, "feet"),
  11951. weight: math.unit(90, "lb"),
  11952. name: "Feral",
  11953. image: {
  11954. source: "./media/characters/cordite/feral.svg",
  11955. extra: 1260 / 755,
  11956. bottom: 0.05
  11957. }
  11958. },
  11959. },
  11960. [
  11961. {
  11962. name: "Normal",
  11963. height: math.unit(11, "feet"),
  11964. default: true
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11970. {
  11971. front: {
  11972. height: math.unit(6, "feet"),
  11973. weight: math.unit(150, "lb"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/pianostrong/front.svg",
  11977. extra: 6577 / 6254,
  11978. bottom: 0.02
  11979. }
  11980. },
  11981. side: {
  11982. height: math.unit(6, "feet"),
  11983. weight: math.unit(150, "lb"),
  11984. name: "Side",
  11985. image: {
  11986. source: "./media/characters/pianostrong/side.svg",
  11987. extra: 6106 / 5730
  11988. }
  11989. },
  11990. back: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(150, "lb"),
  11993. name: "Back",
  11994. image: {
  11995. source: "./media/characters/pianostrong/back.svg",
  11996. extra: 6085 / 5733,
  11997. bottom: 0.01
  11998. }
  11999. },
  12000. },
  12001. [
  12002. {
  12003. name: "Macro",
  12004. height: math.unit(100, "feet")
  12005. },
  12006. {
  12007. name: "Macro+",
  12008. height: math.unit(300, "feet"),
  12009. default: true
  12010. },
  12011. {
  12012. name: "Macro++",
  12013. height: math.unit(1000, "feet")
  12014. },
  12015. ]
  12016. ))
  12017. characterMakers.push(() => makeCharacter(
  12018. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12019. {
  12020. front: {
  12021. height: math.unit(6, "feet"),
  12022. weight: math.unit(150, "lb"),
  12023. name: "Front",
  12024. image: {
  12025. source: "./media/characters/kona/front.svg",
  12026. extra: 2960 / 2629,
  12027. bottom: 0.005
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Normal",
  12034. height: math.unit(11 + 8 / 12, "feet")
  12035. },
  12036. {
  12037. name: "Macro",
  12038. height: math.unit(850, "feet"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Macro+",
  12043. height: math.unit(1.5, "km"),
  12044. default: true
  12045. },
  12046. {
  12047. name: "Megamacro",
  12048. height: math.unit(80, "miles")
  12049. },
  12050. {
  12051. name: "Gigamacro",
  12052. height: math.unit(3500, "miles")
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12058. {
  12059. side: {
  12060. height: math.unit(1.9, "meters"),
  12061. weight: math.unit(326, "kg"),
  12062. name: "Side",
  12063. image: {
  12064. source: "./media/characters/levi/side.svg",
  12065. extra: 1704 / 1334,
  12066. bottom: 0.02
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(1.9, "meters"),
  12074. default: true
  12075. },
  12076. {
  12077. name: "Macro",
  12078. height: math.unit(20, "meters")
  12079. },
  12080. {
  12081. name: "Macro+",
  12082. height: math.unit(200, "meters")
  12083. },
  12084. {
  12085. name: "Megamacro",
  12086. height: math.unit(2, "km")
  12087. },
  12088. {
  12089. name: "Megamacro+",
  12090. height: math.unit(20, "km")
  12091. },
  12092. {
  12093. name: "Gigamacro",
  12094. height: math.unit(2500, "km")
  12095. },
  12096. {
  12097. name: "Gigamacro+",
  12098. height: math.unit(120000, "km")
  12099. },
  12100. {
  12101. name: "Teramacro",
  12102. height: math.unit(7.77e6, "km")
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12108. {
  12109. front: {
  12110. height: math.unit(6 + 4/12, "feet"),
  12111. weight: math.unit(190, "lb"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/bmc/front.svg",
  12115. extra: 1626/1472,
  12116. bottom: 79/1705
  12117. }
  12118. },
  12119. back: {
  12120. height: math.unit(6 + 4/12, "feet"),
  12121. weight: math.unit(190, "lb"),
  12122. name: "Back",
  12123. image: {
  12124. source: "./media/characters/bmc/back.svg",
  12125. extra: 1640/1479,
  12126. bottom: 45/1685
  12127. }
  12128. },
  12129. frontArmor: {
  12130. height: math.unit(6 + 4/12, "feet"),
  12131. weight: math.unit(190, "lb"),
  12132. name: "Front-armor",
  12133. image: {
  12134. source: "./media/characters/bmc/front-armor.svg",
  12135. extra: 1538/1468,
  12136. bottom: 79/1617
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Human-sized",
  12143. height: math.unit(6 + 4 / 12, "feet")
  12144. },
  12145. {
  12146. name: "Interactive Size",
  12147. height: math.unit(25, "feet")
  12148. },
  12149. {
  12150. name: "Small",
  12151. height: math.unit(250, "feet")
  12152. },
  12153. {
  12154. name: "Normal",
  12155. height: math.unit(1250, "feet"),
  12156. default: true
  12157. },
  12158. {
  12159. name: "Good Day",
  12160. height: math.unit(88, "miles")
  12161. },
  12162. {
  12163. name: "Largest Measured Size",
  12164. height: math.unit(105.960, "galaxies")
  12165. },
  12166. ]
  12167. ))
  12168. characterMakers.push(() => makeCharacter(
  12169. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12170. {
  12171. front: {
  12172. height: math.unit(20, "feet"),
  12173. weight: math.unit(2016, "kg"),
  12174. name: "Front",
  12175. image: {
  12176. source: "./media/characters/sven-the-kaiju/front.svg",
  12177. extra: 1277/1250,
  12178. bottom: 35/1312
  12179. }
  12180. },
  12181. mouth: {
  12182. height: math.unit(1.85, "feet"),
  12183. name: "Mouth",
  12184. image: {
  12185. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Fairy",
  12192. height: math.unit(6, "inches")
  12193. },
  12194. {
  12195. name: "Normal",
  12196. height: math.unit(20, "feet"),
  12197. default: true
  12198. },
  12199. {
  12200. name: "Rampage",
  12201. height: math.unit(200, "feet")
  12202. },
  12203. {
  12204. name: "Archfey Forest Guardian",
  12205. height: math.unit(1, "mile")
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(4, "meters"),
  12214. weight: math.unit(2, "tons"),
  12215. name: "Front",
  12216. image: {
  12217. source: "./media/characters/marik/front.svg",
  12218. extra: 1057 / 1003,
  12219. bottom: 0.08
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Normal",
  12226. height: math.unit(4, "meters"),
  12227. default: true
  12228. },
  12229. {
  12230. name: "Macro",
  12231. height: math.unit(20, "meters")
  12232. },
  12233. {
  12234. name: "Megamacro",
  12235. height: math.unit(50, "km")
  12236. },
  12237. {
  12238. name: "Gigamacro",
  12239. height: math.unit(100, "km")
  12240. },
  12241. {
  12242. name: "Alpha Macro",
  12243. height: math.unit(7.88e7, "yottameters")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(6, "feet"),
  12252. weight: math.unit(110, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/mel/front.svg",
  12256. extra: 736 / 617,
  12257. bottom: 0.017
  12258. }
  12259. },
  12260. },
  12261. [
  12262. {
  12263. name: "Pico",
  12264. height: math.unit(3, "pm")
  12265. },
  12266. {
  12267. name: "Nano",
  12268. height: math.unit(3, "nm")
  12269. },
  12270. {
  12271. name: "Micro",
  12272. height: math.unit(0.3, "mm"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Micro+",
  12277. height: math.unit(3, "mm")
  12278. },
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(5 + 10.5 / 12, "feet")
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12287. {
  12288. kaiju: {
  12289. height: math.unit(1.75, "meters"),
  12290. weight: math.unit(55, "kg"),
  12291. name: "Kaiju",
  12292. image: {
  12293. source: "./media/characters/lykonous/kaiju.svg",
  12294. extra: 1055 / 946,
  12295. bottom: 0.135
  12296. }
  12297. },
  12298. },
  12299. [
  12300. {
  12301. name: "Normal",
  12302. height: math.unit(2.5, "meters"),
  12303. default: true
  12304. },
  12305. {
  12306. name: "Kaiju Dragon",
  12307. height: math.unit(60, "meters")
  12308. },
  12309. {
  12310. name: "Mega Kaiju",
  12311. height: math.unit(120, "km")
  12312. },
  12313. {
  12314. name: "Giga Kaiju",
  12315. height: math.unit(200, "megameters")
  12316. },
  12317. {
  12318. name: "Terra Kaiju",
  12319. height: math.unit(400, "gigameters")
  12320. },
  12321. {
  12322. name: "Kaiju Dragon God",
  12323. height: math.unit(13000, "exaparsecs")
  12324. },
  12325. ]
  12326. ))
  12327. characterMakers.push(() => makeCharacter(
  12328. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12329. {
  12330. front: {
  12331. height: math.unit(6, "feet"),
  12332. weight: math.unit(150, "lb"),
  12333. name: "Front",
  12334. image: {
  12335. source: "./media/characters/blü/front.svg",
  12336. extra: 1883 / 1564,
  12337. bottom: 0.031
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Normal",
  12344. height: math.unit(13, "feet"),
  12345. default: true
  12346. },
  12347. {
  12348. name: "Big Boi",
  12349. height: math.unit(150, "meters")
  12350. },
  12351. {
  12352. name: "Mini Stomper",
  12353. height: math.unit(300, "meters")
  12354. },
  12355. {
  12356. name: "Macro",
  12357. height: math.unit(1000, "meters")
  12358. },
  12359. {
  12360. name: "Megamacro",
  12361. height: math.unit(11000, "meters")
  12362. },
  12363. {
  12364. name: "Gigamacro",
  12365. height: math.unit(11000, "km")
  12366. },
  12367. {
  12368. name: "Teramacro",
  12369. height: math.unit(420000, "km")
  12370. },
  12371. {
  12372. name: "Examacro",
  12373. height: math.unit(120, "parsecs")
  12374. },
  12375. {
  12376. name: "God Tho",
  12377. height: math.unit(98000000000, "parsecs")
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12383. {
  12384. taurFront: {
  12385. height: math.unit(6, "feet"),
  12386. weight: math.unit(200, "lb"),
  12387. name: "Taur (Front)",
  12388. image: {
  12389. source: "./media/characters/scales/taur-front.svg",
  12390. extra: 1,
  12391. bottom: 0.05
  12392. }
  12393. },
  12394. taurBack: {
  12395. height: math.unit(6, "feet"),
  12396. weight: math.unit(200, "lb"),
  12397. name: "Taur (Back)",
  12398. image: {
  12399. source: "./media/characters/scales/taur-back.svg",
  12400. extra: 1,
  12401. bottom: 0.08
  12402. }
  12403. },
  12404. anthro: {
  12405. height: math.unit(6 * 7 / 12, "feet"),
  12406. weight: math.unit(100, "lb"),
  12407. name: "Anthro",
  12408. image: {
  12409. source: "./media/characters/scales/anthro.svg",
  12410. extra: 1,
  12411. bottom: 0.06
  12412. }
  12413. },
  12414. },
  12415. [
  12416. {
  12417. name: "Normal",
  12418. height: math.unit(12, "feet"),
  12419. default: true
  12420. },
  12421. ]
  12422. ))
  12423. characterMakers.push(() => makeCharacter(
  12424. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12425. {
  12426. front: {
  12427. height: math.unit(6, "feet"),
  12428. weight: math.unit(150, "lb"),
  12429. name: "Front",
  12430. image: {
  12431. source: "./media/characters/koragos/front.svg",
  12432. extra: 841 / 794,
  12433. bottom: 0.035
  12434. }
  12435. },
  12436. back: {
  12437. height: math.unit(6, "feet"),
  12438. weight: math.unit(150, "lb"),
  12439. name: "Back",
  12440. image: {
  12441. source: "./media/characters/koragos/back.svg",
  12442. extra: 841 / 810,
  12443. bottom: 0.022
  12444. }
  12445. },
  12446. },
  12447. [
  12448. {
  12449. name: "Normal",
  12450. height: math.unit(6 + 11 / 12, "feet"),
  12451. default: true
  12452. },
  12453. {
  12454. name: "Macro",
  12455. height: math.unit(490, "feet")
  12456. },
  12457. {
  12458. name: "Megamacro",
  12459. height: math.unit(10, "miles")
  12460. },
  12461. {
  12462. name: "Gigamacro",
  12463. height: math.unit(50, "miles")
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12469. {
  12470. front: {
  12471. height: math.unit(6, "feet"),
  12472. weight: math.unit(250, "lb"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/xylrem/front.svg",
  12476. extra: 3323 / 3050,
  12477. bottom: 0.065
  12478. }
  12479. },
  12480. },
  12481. [
  12482. {
  12483. name: "Micro",
  12484. height: math.unit(4, "feet")
  12485. },
  12486. {
  12487. name: "Normal",
  12488. height: math.unit(16, "feet"),
  12489. default: true
  12490. },
  12491. {
  12492. name: "Macro",
  12493. height: math.unit(2720, "feet")
  12494. },
  12495. {
  12496. name: "Megamacro",
  12497. height: math.unit(25000, "miles")
  12498. },
  12499. ]
  12500. ))
  12501. characterMakers.push(() => makeCharacter(
  12502. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12503. {
  12504. front: {
  12505. height: math.unit(8, "feet"),
  12506. weight: math.unit(250, "kg"),
  12507. name: "Front",
  12508. image: {
  12509. source: "./media/characters/ikideru/front.svg",
  12510. extra: 930 / 870,
  12511. bottom: 0.087
  12512. }
  12513. },
  12514. back: {
  12515. height: math.unit(8, "feet"),
  12516. weight: math.unit(250, "kg"),
  12517. name: "Back",
  12518. image: {
  12519. source: "./media/characters/ikideru/back.svg",
  12520. extra: 919 / 852,
  12521. bottom: 0.055
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Rare",
  12528. height: math.unit(8, "feet"),
  12529. default: true
  12530. },
  12531. {
  12532. name: "Playful Loom",
  12533. height: math.unit(80, "feet")
  12534. },
  12535. {
  12536. name: "City Leaner",
  12537. height: math.unit(230, "feet")
  12538. },
  12539. {
  12540. name: "Megamacro",
  12541. height: math.unit(2500, "feet")
  12542. },
  12543. {
  12544. name: "Gigamacro",
  12545. height: math.unit(26400, "feet")
  12546. },
  12547. {
  12548. name: "Tectonic Shifter",
  12549. height: math.unit(1.7, "megameters")
  12550. },
  12551. {
  12552. name: "Planet Carer",
  12553. height: math.unit(21, "megameters")
  12554. },
  12555. {
  12556. name: "God",
  12557. height: math.unit(11157.22, "parsecs")
  12558. },
  12559. ]
  12560. ))
  12561. characterMakers.push(() => makeCharacter(
  12562. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12563. {
  12564. front: {
  12565. height: math.unit(6, "feet"),
  12566. weight: math.unit(120, "lb"),
  12567. name: "Front",
  12568. image: {
  12569. source: "./media/characters/neo/front.svg"
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Micro",
  12576. height: math.unit(2, "inches"),
  12577. default: true
  12578. },
  12579. {
  12580. name: "Human Size",
  12581. height: math.unit(5 + 8 / 12, "feet")
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12587. {
  12588. front: {
  12589. height: math.unit(13 + 10 / 12, "feet"),
  12590. weight: math.unit(5320, "lb"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/chauncey-chantz/front.svg",
  12594. extra: 1587 / 1435,
  12595. bottom: 0.02
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Normal",
  12602. height: math.unit(13 + 10 / 12, "feet"),
  12603. default: true
  12604. },
  12605. {
  12606. name: "Macro",
  12607. height: math.unit(45, "feet")
  12608. },
  12609. {
  12610. name: "Megamacro",
  12611. height: math.unit(250, "miles")
  12612. },
  12613. {
  12614. name: "Planetary",
  12615. height: math.unit(10000, "miles")
  12616. },
  12617. {
  12618. name: "Galactic",
  12619. height: math.unit(40000, "parsecs")
  12620. },
  12621. {
  12622. name: "Universal",
  12623. height: math.unit(1, "yottameter")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12629. {
  12630. front: {
  12631. height: math.unit(6, "feet"),
  12632. weight: math.unit(150, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/epifox/front.svg",
  12636. extra: 1,
  12637. bottom: 0.075
  12638. }
  12639. },
  12640. },
  12641. [
  12642. {
  12643. name: "Micro",
  12644. height: math.unit(6, "inches")
  12645. },
  12646. {
  12647. name: "Normal",
  12648. height: math.unit(12, "feet"),
  12649. default: true
  12650. },
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(3810, "feet")
  12654. },
  12655. {
  12656. name: "Megamacro",
  12657. height: math.unit(500, "miles")
  12658. },
  12659. ]
  12660. ))
  12661. characterMakers.push(() => makeCharacter(
  12662. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12663. {
  12664. front: {
  12665. height: math.unit(1.8796, "m"),
  12666. weight: math.unit(230, "lb"),
  12667. name: "Front",
  12668. image: {
  12669. source: "./media/characters/colin-t/front.svg",
  12670. extra: 1272 / 1193,
  12671. bottom: 0.07
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Micro",
  12678. height: math.unit(0.571, "meters")
  12679. },
  12680. {
  12681. name: "Normal",
  12682. height: math.unit(1.8796, "meters"),
  12683. default: true
  12684. },
  12685. {
  12686. name: "Tall",
  12687. height: math.unit(4, "meters")
  12688. },
  12689. {
  12690. name: "Macro",
  12691. height: math.unit(67.241, "meters")
  12692. },
  12693. {
  12694. name: "Megamacro",
  12695. height: math.unit(371.856, "meters")
  12696. },
  12697. {
  12698. name: "Planetary",
  12699. height: math.unit(12631.5689, "km")
  12700. },
  12701. ]
  12702. ))
  12703. characterMakers.push(() => makeCharacter(
  12704. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12705. {
  12706. front: {
  12707. height: math.unit(1.85, "meters"),
  12708. weight: math.unit(80, "kg"),
  12709. name: "Front",
  12710. image: {
  12711. source: "./media/characters/matvei/front.svg",
  12712. extra: 614 / 594,
  12713. bottom: 0.01
  12714. }
  12715. },
  12716. },
  12717. [
  12718. {
  12719. name: "Normal",
  12720. height: math.unit(1.85, "meters"),
  12721. default: true
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12727. {
  12728. front: {
  12729. height: math.unit(5 + 9 / 12, "feet"),
  12730. weight: math.unit(70, "lb"),
  12731. name: "Front",
  12732. image: {
  12733. source: "./media/characters/quincy/front.svg",
  12734. extra: 3041 / 2751
  12735. }
  12736. },
  12737. back: {
  12738. height: math.unit(5 + 9 / 12, "feet"),
  12739. weight: math.unit(70, "lb"),
  12740. name: "Back",
  12741. image: {
  12742. source: "./media/characters/quincy/back.svg",
  12743. extra: 3041 / 2751
  12744. }
  12745. },
  12746. flying: {
  12747. height: math.unit(5 + 4 / 12, "feet"),
  12748. weight: math.unit(70, "lb"),
  12749. name: "Flying",
  12750. image: {
  12751. source: "./media/characters/quincy/flying.svg",
  12752. extra: 1044 / 930
  12753. }
  12754. },
  12755. },
  12756. [
  12757. {
  12758. name: "Micro",
  12759. height: math.unit(3, "cm")
  12760. },
  12761. {
  12762. name: "Normal",
  12763. height: math.unit(5 + 9 / 12, "feet")
  12764. },
  12765. {
  12766. name: "Macro",
  12767. height: math.unit(200, "meters"),
  12768. default: true
  12769. },
  12770. {
  12771. name: "Megamacro",
  12772. height: math.unit(1000, "meters")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12778. {
  12779. front: {
  12780. height: math.unit(3 + 11/12, "feet"),
  12781. weight: math.unit(50, "lb"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/vanrel/front.svg",
  12785. extra: 1104/949,
  12786. bottom: 52/1156
  12787. }
  12788. },
  12789. back: {
  12790. height: math.unit(3 + 11/12, "feet"),
  12791. weight: math.unit(50, "lb"),
  12792. name: "Back",
  12793. image: {
  12794. source: "./media/characters/vanrel/back.svg",
  12795. extra: 1119/976,
  12796. bottom: 37/1156
  12797. }
  12798. },
  12799. tome: {
  12800. height: math.unit(1.35, "feet"),
  12801. weight: math.unit(10, "lb"),
  12802. name: "Vanrel's Tome",
  12803. rename: true,
  12804. image: {
  12805. source: "./media/characters/vanrel/tome.svg"
  12806. }
  12807. },
  12808. beans: {
  12809. height: math.unit(0.89, "feet"),
  12810. name: "Beans",
  12811. image: {
  12812. source: "./media/characters/vanrel/beans.svg"
  12813. }
  12814. },
  12815. },
  12816. [
  12817. {
  12818. name: "Normal",
  12819. height: math.unit(3 + 11/12, "feet"),
  12820. default: true
  12821. },
  12822. ]
  12823. ))
  12824. characterMakers.push(() => makeCharacter(
  12825. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12826. {
  12827. front: {
  12828. height: math.unit(7 + 5 / 12, "feet"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/kuiper-vanrel/front.svg",
  12832. extra: 1219/1169,
  12833. bottom: 69/1288
  12834. }
  12835. },
  12836. back: {
  12837. height: math.unit(7 + 5 / 12, "feet"),
  12838. name: "Back",
  12839. image: {
  12840. source: "./media/characters/kuiper-vanrel/back.svg",
  12841. extra: 1236/1193,
  12842. bottom: 27/1263
  12843. }
  12844. },
  12845. foot: {
  12846. height: math.unit(0.55, "meters"),
  12847. name: "Foot",
  12848. image: {
  12849. source: "./media/characters/kuiper-vanrel/foot.svg",
  12850. }
  12851. },
  12852. battle: {
  12853. height: math.unit(6.824, "feet"),
  12854. name: "Battle",
  12855. image: {
  12856. source: "./media/characters/kuiper-vanrel/battle.svg",
  12857. extra: 1466 / 1327,
  12858. bottom: 29 / 1492.5
  12859. }
  12860. },
  12861. meerkui: {
  12862. height: math.unit(18, "inches"),
  12863. name: "Meerkui",
  12864. image: {
  12865. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12866. extra: 1354/1289,
  12867. bottom: 69/1423
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(7 + 5 / 12, "feet"),
  12875. default: true
  12876. },
  12877. ]
  12878. ))
  12879. characterMakers.push(() => makeCharacter(
  12880. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12881. {
  12882. front: {
  12883. height: math.unit(8 + 5 / 12, "feet"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/keset-vanrel/front.svg",
  12887. extra: 1231/1148,
  12888. bottom: 82/1313
  12889. }
  12890. },
  12891. back: {
  12892. height: math.unit(8 + 5 / 12, "feet"),
  12893. name: "Back",
  12894. image: {
  12895. source: "./media/characters/keset-vanrel/back.svg",
  12896. extra: 1240/1174,
  12897. bottom: 33/1273
  12898. }
  12899. },
  12900. hand: {
  12901. height: math.unit(0.6, "meters"),
  12902. name: "Hand",
  12903. image: {
  12904. source: "./media/characters/keset-vanrel/hand.svg"
  12905. }
  12906. },
  12907. foot: {
  12908. height: math.unit(0.94978, "meters"),
  12909. name: "Foot",
  12910. image: {
  12911. source: "./media/characters/keset-vanrel/foot.svg"
  12912. }
  12913. },
  12914. battle: {
  12915. height: math.unit(7.408, "feet"),
  12916. name: "Battle",
  12917. image: {
  12918. source: "./media/characters/keset-vanrel/battle.svg",
  12919. extra: 1890 / 1386,
  12920. bottom: 73.28 / 1970
  12921. }
  12922. },
  12923. },
  12924. [
  12925. {
  12926. name: "Normal",
  12927. height: math.unit(8 + 5 / 12, "feet"),
  12928. default: true
  12929. },
  12930. ]
  12931. ))
  12932. characterMakers.push(() => makeCharacter(
  12933. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12934. {
  12935. front: {
  12936. height: math.unit(6, "feet"),
  12937. weight: math.unit(150, "lb"),
  12938. name: "Front",
  12939. image: {
  12940. source: "./media/characters/neos/front.svg",
  12941. extra: 1696 / 992,
  12942. bottom: 0.14
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(54, "cm"),
  12950. default: true
  12951. },
  12952. {
  12953. name: "Macro",
  12954. height: math.unit(100, "m")
  12955. },
  12956. {
  12957. name: "Megamacro",
  12958. height: math.unit(10, "km")
  12959. },
  12960. {
  12961. name: "Megamacro+",
  12962. height: math.unit(100, "km")
  12963. },
  12964. {
  12965. name: "Gigamacro",
  12966. height: math.unit(100, "Mm")
  12967. },
  12968. {
  12969. name: "Teramacro",
  12970. height: math.unit(100, "Gm")
  12971. },
  12972. {
  12973. name: "Examacro",
  12974. height: math.unit(100, "Em")
  12975. },
  12976. {
  12977. name: "Godly",
  12978. height: math.unit(10000, "Ym")
  12979. },
  12980. {
  12981. name: "Beyond Godly",
  12982. height: math.unit(25, "multiverses")
  12983. },
  12984. ]
  12985. ))
  12986. characterMakers.push(() => makeCharacter(
  12987. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12988. {
  12989. feminine: {
  12990. height: math.unit(5, "feet"),
  12991. weight: math.unit(100, "lb"),
  12992. name: "Feminine",
  12993. image: {
  12994. source: "./media/characters/sammy-mouse/feminine.svg",
  12995. extra: 2526 / 2425,
  12996. bottom: 0.123
  12997. }
  12998. },
  12999. masculine: {
  13000. height: math.unit(5, "feet"),
  13001. weight: math.unit(100, "lb"),
  13002. name: "Masculine",
  13003. image: {
  13004. source: "./media/characters/sammy-mouse/masculine.svg",
  13005. extra: 2526 / 2425,
  13006. bottom: 0.123
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Micro",
  13013. height: math.unit(5, "inches")
  13014. },
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(5, "feet"),
  13018. default: true
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(60, "feet")
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13028. {
  13029. front: {
  13030. height: math.unit(4, "feet"),
  13031. weight: math.unit(50, "lb"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/kole/front.svg",
  13035. extra: 1423 / 1303,
  13036. bottom: 0.025
  13037. }
  13038. },
  13039. back: {
  13040. height: math.unit(4, "feet"),
  13041. weight: math.unit(50, "lb"),
  13042. name: "Back",
  13043. image: {
  13044. source: "./media/characters/kole/back.svg",
  13045. extra: 1426 / 1280,
  13046. bottom: 0.02
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Normal",
  13053. height: math.unit(4, "feet"),
  13054. default: true
  13055. },
  13056. ]
  13057. ))
  13058. characterMakers.push(() => makeCharacter(
  13059. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13060. {
  13061. front: {
  13062. height: math.unit(2.5, "feet"),
  13063. weight: math.unit(32, "lb"),
  13064. name: "Front",
  13065. image: {
  13066. source: "./media/characters/rufran/front.svg",
  13067. extra: 1313/885,
  13068. bottom: 94/1407
  13069. }
  13070. },
  13071. side: {
  13072. height: math.unit(2.5, "feet"),
  13073. weight: math.unit(32, "lb"),
  13074. name: "Side",
  13075. image: {
  13076. source: "./media/characters/rufran/side.svg",
  13077. extra: 1109/852,
  13078. bottom: 118/1227
  13079. }
  13080. },
  13081. back: {
  13082. height: math.unit(2.5, "feet"),
  13083. weight: math.unit(32, "lb"),
  13084. name: "Back",
  13085. image: {
  13086. source: "./media/characters/rufran/back.svg",
  13087. extra: 1280/878,
  13088. bottom: 131/1411
  13089. }
  13090. },
  13091. mouth: {
  13092. height: math.unit(1.13, "feet"),
  13093. name: "Mouth",
  13094. image: {
  13095. source: "./media/characters/rufran/mouth.svg"
  13096. }
  13097. },
  13098. foot: {
  13099. height: math.unit(1.33, "feet"),
  13100. name: "Foot",
  13101. image: {
  13102. source: "./media/characters/rufran/foot.svg"
  13103. }
  13104. },
  13105. koboldFront: {
  13106. height: math.unit(2 + 6 / 12, "feet"),
  13107. weight: math.unit(20, "lb"),
  13108. name: "Front (Kobold)",
  13109. image: {
  13110. source: "./media/characters/rufran/kobold-front.svg",
  13111. extra: 2041 / 1839,
  13112. bottom: 0.055
  13113. }
  13114. },
  13115. koboldBack: {
  13116. height: math.unit(2 + 6 / 12, "feet"),
  13117. weight: math.unit(20, "lb"),
  13118. name: "Back (Kobold)",
  13119. image: {
  13120. source: "./media/characters/rufran/kobold-back.svg",
  13121. extra: 2054 / 1839,
  13122. bottom: 0.01
  13123. }
  13124. },
  13125. koboldHand: {
  13126. height: math.unit(0.2166, "meters"),
  13127. name: "Hand (Kobold)",
  13128. image: {
  13129. source: "./media/characters/rufran/kobold-hand.svg"
  13130. }
  13131. },
  13132. koboldFoot: {
  13133. height: math.unit(0.185, "meters"),
  13134. name: "Foot (Kobold)",
  13135. image: {
  13136. source: "./media/characters/rufran/kobold-foot.svg"
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Micro",
  13143. height: math.unit(1, "inch")
  13144. },
  13145. {
  13146. name: "Normal",
  13147. height: math.unit(2 + 6 / 12, "feet"),
  13148. default: true
  13149. },
  13150. {
  13151. name: "Big",
  13152. height: math.unit(60, "feet")
  13153. },
  13154. {
  13155. name: "Macro",
  13156. height: math.unit(325, "feet")
  13157. },
  13158. ]
  13159. ))
  13160. characterMakers.push(() => makeCharacter(
  13161. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13162. {
  13163. front: {
  13164. height: math.unit(0.3, "meters"),
  13165. weight: math.unit(3.5, "kg"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/chip/front.svg",
  13169. extra: 748 / 674
  13170. }
  13171. },
  13172. },
  13173. [
  13174. {
  13175. name: "Micro",
  13176. height: math.unit(1, "inch"),
  13177. default: true
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13183. {
  13184. side: {
  13185. height: math.unit(2.3, "meters"),
  13186. weight: math.unit(3500, "lb"),
  13187. name: "Side",
  13188. image: {
  13189. source: "./media/characters/torvid/side.svg",
  13190. extra: 1972 / 722,
  13191. bottom: 0.035
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Normal",
  13198. height: math.unit(2.3, "meters"),
  13199. default: true
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(2, "meters"),
  13208. weight: math.unit(150.5, "kg"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/susan/front.svg",
  13212. extra: 693 / 635,
  13213. bottom: 0.05
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Megamacro",
  13220. height: math.unit(505, "miles"),
  13221. default: true
  13222. },
  13223. ]
  13224. ))
  13225. characterMakers.push(() => makeCharacter(
  13226. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13227. {
  13228. front: {
  13229. height: math.unit(6, "feet"),
  13230. weight: math.unit(150, "lb"),
  13231. name: "Front",
  13232. image: {
  13233. source: "./media/characters/raindrops/front.svg",
  13234. extra: 2655 / 2461,
  13235. bottom: 49 / 2705
  13236. }
  13237. },
  13238. back: {
  13239. height: math.unit(6, "feet"),
  13240. weight: math.unit(150, "lb"),
  13241. name: "Back",
  13242. image: {
  13243. source: "./media/characters/raindrops/back.svg",
  13244. extra: 2574 / 2400,
  13245. bottom: 65 / 2634
  13246. }
  13247. },
  13248. },
  13249. [
  13250. {
  13251. name: "Micro",
  13252. height: math.unit(6, "inches")
  13253. },
  13254. {
  13255. name: "Normal",
  13256. height: math.unit(6 + 2 / 12, "feet")
  13257. },
  13258. {
  13259. name: "Macro",
  13260. height: math.unit(131, "feet"),
  13261. default: true
  13262. },
  13263. {
  13264. name: "Megamacro",
  13265. height: math.unit(15, "miles")
  13266. },
  13267. {
  13268. name: "Gigamacro",
  13269. height: math.unit(4000, "miles")
  13270. },
  13271. {
  13272. name: "Teramacro",
  13273. height: math.unit(315000, "miles")
  13274. },
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13279. {
  13280. front: {
  13281. height: math.unit(2.794, "meters"),
  13282. weight: math.unit(325, "kg"),
  13283. name: "Front",
  13284. image: {
  13285. source: "./media/characters/tezwa/front.svg",
  13286. extra: 2083 / 1906,
  13287. bottom: 0.031
  13288. }
  13289. },
  13290. foot: {
  13291. height: math.unit(0.687, "meters"),
  13292. name: "Foot",
  13293. image: {
  13294. source: "./media/characters/tezwa/foot.svg"
  13295. }
  13296. },
  13297. },
  13298. [
  13299. {
  13300. name: "Normal",
  13301. height: math.unit(9 + 2 / 12, "feet"),
  13302. default: true
  13303. },
  13304. ]
  13305. ))
  13306. characterMakers.push(() => makeCharacter(
  13307. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13308. {
  13309. front: {
  13310. height: math.unit(58, "feet"),
  13311. weight: math.unit(89000, "lb"),
  13312. name: "Front",
  13313. image: {
  13314. source: "./media/characters/typhus/front.svg",
  13315. extra: 816 / 800,
  13316. bottom: 0.065
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(58, "feet"),
  13324. default: true
  13325. },
  13326. ]
  13327. ))
  13328. characterMakers.push(() => makeCharacter(
  13329. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13330. {
  13331. front: {
  13332. height: math.unit(12, "feet"),
  13333. weight: math.unit(6, "tonnes"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/lyra-von-wulf/front.svg",
  13337. extra: 1,
  13338. bottom: 0.10
  13339. }
  13340. },
  13341. frontMecha: {
  13342. height: math.unit(12, "feet"),
  13343. weight: math.unit(12, "tonnes"),
  13344. name: "Front (Mecha)",
  13345. image: {
  13346. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13347. extra: 1,
  13348. bottom: 0.042
  13349. }
  13350. },
  13351. maw: {
  13352. height: math.unit(2.2, "feet"),
  13353. name: "Maw",
  13354. image: {
  13355. source: "./media/characters/lyra-von-wulf/maw.svg"
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Normal",
  13362. height: math.unit(12, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Classic",
  13367. height: math.unit(50, "feet")
  13368. },
  13369. {
  13370. name: "Macro",
  13371. height: math.unit(500, "feet")
  13372. },
  13373. {
  13374. name: "Megamacro",
  13375. height: math.unit(1, "mile")
  13376. },
  13377. {
  13378. name: "Gigamacro",
  13379. height: math.unit(400, "miles")
  13380. },
  13381. {
  13382. name: "Teramacro",
  13383. height: math.unit(22000, "miles")
  13384. },
  13385. {
  13386. name: "Solarmacro",
  13387. height: math.unit(8600000, "miles")
  13388. },
  13389. {
  13390. name: "Galactic",
  13391. height: math.unit(1057000, "lightyears")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13397. {
  13398. front: {
  13399. height: math.unit(6 + 10 / 12, "feet"),
  13400. weight: math.unit(150, "lb"),
  13401. name: "Front",
  13402. image: {
  13403. source: "./media/characters/dixon/front.svg",
  13404. extra: 3361 / 3209,
  13405. bottom: 0.01
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Normal",
  13412. height: math.unit(6 + 10 / 12, "feet"),
  13413. default: true
  13414. },
  13415. {
  13416. name: "Big",
  13417. height: math.unit(12, "meters")
  13418. },
  13419. {
  13420. name: "Macro",
  13421. height: math.unit(500, "meters")
  13422. },
  13423. {
  13424. name: "Megamacro",
  13425. height: math.unit(2, "km")
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13431. {
  13432. front: {
  13433. height: math.unit(185, "cm"),
  13434. weight: math.unit(68, "kg"),
  13435. name: "Front",
  13436. image: {
  13437. source: "./media/characters/kauko/front.svg",
  13438. extra: 1455 / 1421,
  13439. bottom: 0.03
  13440. }
  13441. },
  13442. back: {
  13443. height: math.unit(185, "cm"),
  13444. weight: math.unit(68, "kg"),
  13445. name: "Back",
  13446. image: {
  13447. source: "./media/characters/kauko/back.svg",
  13448. extra: 1455 / 1421,
  13449. bottom: 0.004
  13450. }
  13451. },
  13452. },
  13453. [
  13454. {
  13455. name: "Normal",
  13456. height: math.unit(185, "cm"),
  13457. default: true
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(6, "feet"),
  13466. weight: math.unit(150, "kg"),
  13467. name: "Front",
  13468. image: {
  13469. source: "./media/characters/varg/front.svg",
  13470. extra: 1108 / 1018,
  13471. bottom: 0.0375
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Normal",
  13478. height: math.unit(5, "meters")
  13479. },
  13480. {
  13481. name: "Macro",
  13482. height: math.unit(200, "meters")
  13483. },
  13484. {
  13485. name: "Megamacro",
  13486. height: math.unit(20, "kilometers")
  13487. },
  13488. {
  13489. name: "True Size",
  13490. height: math.unit(211, "km"),
  13491. default: true
  13492. },
  13493. {
  13494. name: "Gigamacro",
  13495. height: math.unit(1000, "km")
  13496. },
  13497. {
  13498. name: "Gigamacro+",
  13499. height: math.unit(8000, "km")
  13500. },
  13501. {
  13502. name: "Teramacro",
  13503. height: math.unit(1000000, "km")
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13509. {
  13510. front: {
  13511. height: math.unit(7 + 7 / 12, "feet"),
  13512. weight: math.unit(267, "lb"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/dayza/front.svg",
  13516. extra: 1262 / 1200,
  13517. bottom: 0.035
  13518. }
  13519. },
  13520. side: {
  13521. height: math.unit(7 + 7 / 12, "feet"),
  13522. weight: math.unit(267, "lb"),
  13523. name: "Side",
  13524. image: {
  13525. source: "./media/characters/dayza/side.svg",
  13526. extra: 1295 / 1245,
  13527. bottom: 0.05
  13528. }
  13529. },
  13530. back: {
  13531. height: math.unit(7 + 7 / 12, "feet"),
  13532. weight: math.unit(267, "lb"),
  13533. name: "Back",
  13534. image: {
  13535. source: "./media/characters/dayza/back.svg",
  13536. extra: 1241 / 1170
  13537. }
  13538. },
  13539. },
  13540. [
  13541. {
  13542. name: "Normal",
  13543. height: math.unit(7 + 7 / 12, "feet"),
  13544. default: true
  13545. },
  13546. {
  13547. name: "Macro",
  13548. height: math.unit(155, "feet")
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13554. {
  13555. front: {
  13556. height: math.unit(6 + 5 / 12, "feet"),
  13557. weight: math.unit(160, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/xanthos/front.svg",
  13561. extra: 1,
  13562. bottom: 0.04
  13563. }
  13564. },
  13565. back: {
  13566. height: math.unit(6 + 5 / 12, "feet"),
  13567. weight: math.unit(160, "lb"),
  13568. name: "Back",
  13569. image: {
  13570. source: "./media/characters/xanthos/back.svg",
  13571. extra: 1,
  13572. bottom: 0.03
  13573. }
  13574. },
  13575. hand: {
  13576. height: math.unit(0.928, "feet"),
  13577. name: "Hand",
  13578. image: {
  13579. source: "./media/characters/xanthos/hand.svg"
  13580. }
  13581. },
  13582. foot: {
  13583. height: math.unit(1.286, "feet"),
  13584. name: "Foot",
  13585. image: {
  13586. source: "./media/characters/xanthos/foot.svg"
  13587. }
  13588. },
  13589. },
  13590. [
  13591. {
  13592. name: "Normal",
  13593. height: math.unit(6 + 5 / 12, "feet"),
  13594. default: true
  13595. },
  13596. {
  13597. name: "Normal+",
  13598. height: math.unit(6, "meters")
  13599. },
  13600. {
  13601. name: "Macro",
  13602. height: math.unit(40, "feet")
  13603. },
  13604. {
  13605. name: "Macro+",
  13606. height: math.unit(200, "meters")
  13607. },
  13608. {
  13609. name: "Megamacro",
  13610. height: math.unit(20, "km")
  13611. },
  13612. {
  13613. name: "Megamacro+",
  13614. height: math.unit(100, "km")
  13615. },
  13616. {
  13617. name: "Gigamacro",
  13618. height: math.unit(200, "megameters")
  13619. },
  13620. {
  13621. name: "Gigamacro+",
  13622. height: math.unit(1.5, "gigameters")
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13628. {
  13629. front: {
  13630. height: math.unit(6 + 3 / 12, "feet"),
  13631. weight: math.unit(215, "lb"),
  13632. name: "Front",
  13633. image: {
  13634. source: "./media/characters/grynn/front.svg",
  13635. extra: 4627 / 4209,
  13636. bottom: 0.047
  13637. }
  13638. },
  13639. },
  13640. [
  13641. {
  13642. name: "Micro",
  13643. height: math.unit(6, "inches")
  13644. },
  13645. {
  13646. name: "Normal",
  13647. height: math.unit(6 + 3 / 12, "feet"),
  13648. default: true
  13649. },
  13650. {
  13651. name: "Big",
  13652. height: math.unit(104, "feet")
  13653. },
  13654. {
  13655. name: "Macro",
  13656. height: math.unit(944, "feet")
  13657. },
  13658. {
  13659. name: "Macro+",
  13660. height: math.unit(9480, "feet")
  13661. },
  13662. {
  13663. name: "Megamacro",
  13664. height: math.unit(78752, "feet")
  13665. },
  13666. {
  13667. name: "Megamacro+",
  13668. height: math.unit(630128, "feet")
  13669. },
  13670. {
  13671. name: "Megamacro++",
  13672. height: math.unit(3150695, "feet")
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(7 + 5 / 12, "feet"),
  13681. weight: math.unit(450, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/mocha-aura/front.svg",
  13685. extra: 1907 / 1817,
  13686. bottom: 0.04
  13687. }
  13688. },
  13689. back: {
  13690. height: math.unit(7 + 5 / 12, "feet"),
  13691. weight: math.unit(450, "lb"),
  13692. name: "Back",
  13693. image: {
  13694. source: "./media/characters/mocha-aura/back.svg",
  13695. extra: 1900 / 1825,
  13696. bottom: 0.045
  13697. }
  13698. },
  13699. },
  13700. [
  13701. {
  13702. name: "Nano",
  13703. height: math.unit(1, "nm")
  13704. },
  13705. {
  13706. name: "Megamicro",
  13707. height: math.unit(1, "mm")
  13708. },
  13709. {
  13710. name: "Micro",
  13711. height: math.unit(3, "inches")
  13712. },
  13713. {
  13714. name: "Normal",
  13715. height: math.unit(7 + 5 / 12, "feet"),
  13716. default: true
  13717. },
  13718. {
  13719. name: "Macro",
  13720. height: math.unit(30, "feet")
  13721. },
  13722. {
  13723. name: "Megamacro",
  13724. height: math.unit(3500, "feet")
  13725. },
  13726. {
  13727. name: "Teramacro",
  13728. height: math.unit(500000, "miles")
  13729. },
  13730. {
  13731. name: "Petamacro",
  13732. height: math.unit(50000000000000000, "parsecs")
  13733. },
  13734. ]
  13735. ))
  13736. characterMakers.push(() => makeCharacter(
  13737. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13738. {
  13739. front: {
  13740. height: math.unit(6, "feet"),
  13741. weight: math.unit(150, "lb"),
  13742. name: "Front",
  13743. image: {
  13744. source: "./media/characters/ilisha-devya/front.svg",
  13745. extra: 1053/1049,
  13746. bottom: 270/1323
  13747. }
  13748. },
  13749. back: {
  13750. height: math.unit(6, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Back",
  13753. image: {
  13754. source: "./media/characters/ilisha-devya/back.svg",
  13755. extra: 1131/1128,
  13756. bottom: 39/1170
  13757. }
  13758. },
  13759. },
  13760. [
  13761. {
  13762. name: "Macro",
  13763. height: math.unit(500, "feet"),
  13764. default: true
  13765. },
  13766. {
  13767. name: "Megamacro",
  13768. height: math.unit(10, "miles")
  13769. },
  13770. {
  13771. name: "Gigamacro",
  13772. height: math.unit(100000, "miles")
  13773. },
  13774. {
  13775. name: "Examacro",
  13776. height: math.unit(1e9, "lightyears")
  13777. },
  13778. {
  13779. name: "Omniversal",
  13780. height: math.unit(1e33, "lightyears")
  13781. },
  13782. {
  13783. name: "Beyond Infinite",
  13784. height: math.unit(1e100, "lightyears")
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13790. {
  13791. Side: {
  13792. height: math.unit(6, "feet"),
  13793. weight: math.unit(150, "lb"),
  13794. name: "Side",
  13795. image: {
  13796. source: "./media/characters/mira/side.svg",
  13797. extra: 900 / 799,
  13798. bottom: 0.02
  13799. }
  13800. },
  13801. },
  13802. [
  13803. {
  13804. name: "Human Size",
  13805. height: math.unit(6, "feet")
  13806. },
  13807. {
  13808. name: "Macro",
  13809. height: math.unit(100, "feet"),
  13810. default: true
  13811. },
  13812. {
  13813. name: "Megamacro",
  13814. height: math.unit(10, "miles")
  13815. },
  13816. {
  13817. name: "Gigamacro",
  13818. height: math.unit(25000, "miles")
  13819. },
  13820. {
  13821. name: "Teramacro",
  13822. height: math.unit(300, "AU")
  13823. },
  13824. {
  13825. name: "Full Size",
  13826. height: math.unit(4.5e10, "lightyears")
  13827. },
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13832. {
  13833. front: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Front",
  13837. image: {
  13838. source: "./media/characters/holly/front.svg",
  13839. extra: 639 / 606
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(150, "lb"),
  13845. name: "Back",
  13846. image: {
  13847. source: "./media/characters/holly/back.svg",
  13848. extra: 623 / 598
  13849. }
  13850. },
  13851. frontWorking: {
  13852. height: math.unit(6, "feet"),
  13853. weight: math.unit(150, "lb"),
  13854. name: "Front (Working)",
  13855. image: {
  13856. source: "./media/characters/holly/front-working.svg",
  13857. extra: 607 / 577,
  13858. bottom: 0.048
  13859. }
  13860. },
  13861. },
  13862. [
  13863. {
  13864. name: "Normal",
  13865. height: math.unit(12 + 3 / 12, "feet"),
  13866. default: true
  13867. },
  13868. ]
  13869. ))
  13870. characterMakers.push(() => makeCharacter(
  13871. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13872. {
  13873. front: {
  13874. height: math.unit(6, "feet"),
  13875. weight: math.unit(150, "lb"),
  13876. name: "Front",
  13877. image: {
  13878. source: "./media/characters/porter/front.svg",
  13879. extra: 1,
  13880. bottom: 0.01
  13881. }
  13882. },
  13883. frontRobes: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(150, "lb"),
  13886. name: "Front (Robes)",
  13887. image: {
  13888. source: "./media/characters/porter/front-robes.svg",
  13889. extra: 1.01,
  13890. bottom: 0.01
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Normal",
  13897. height: math.unit(11 + 9 / 12, "feet"),
  13898. default: true
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13904. {
  13905. legendary: {
  13906. height: math.unit(6, "feet"),
  13907. weight: math.unit(150, "lb"),
  13908. name: "Legendary",
  13909. image: {
  13910. source: "./media/characters/lucy/legendary.svg",
  13911. extra: 1355 / 1100,
  13912. bottom: 0.045
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Legendary",
  13919. height: math.unit(86882 * 2, "miles"),
  13920. default: true
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(150, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/drusilla/front.svg",
  13933. extra: 678 / 635,
  13934. bottom: 0.03
  13935. }
  13936. },
  13937. back: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(150, "lb"),
  13940. name: "Back",
  13941. image: {
  13942. source: "./media/characters/drusilla/back.svg",
  13943. extra: 678 / 635,
  13944. bottom: 0.005
  13945. }
  13946. },
  13947. },
  13948. [
  13949. {
  13950. name: "Macro",
  13951. height: math.unit(100, "feet")
  13952. },
  13953. {
  13954. name: "Canon Height",
  13955. height: math.unit(2000, "feet"),
  13956. default: true
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13962. {
  13963. front: {
  13964. height: math.unit(6, "feet"),
  13965. weight: math.unit(180, "lb"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/renard-thatch/front.svg",
  13969. extra: 2411 / 2275,
  13970. bottom: 0.01
  13971. }
  13972. },
  13973. frontPosing: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(180, "lb"),
  13976. name: "Front (Posing)",
  13977. image: {
  13978. source: "./media/characters/renard-thatch/front-posing.svg",
  13979. extra: 2381 / 2261,
  13980. bottom: 0.01
  13981. }
  13982. },
  13983. back: {
  13984. height: math.unit(6, "feet"),
  13985. weight: math.unit(180, "lb"),
  13986. name: "Back",
  13987. image: {
  13988. source: "./media/characters/renard-thatch/back.svg",
  13989. extra: 2428 / 2288
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Micro",
  13996. height: math.unit(3, "inches")
  13997. },
  13998. {
  13999. name: "Default",
  14000. height: math.unit(6, "feet"),
  14001. default: true
  14002. },
  14003. {
  14004. name: "Macro",
  14005. height: math.unit(75, "feet")
  14006. },
  14007. ]
  14008. ))
  14009. characterMakers.push(() => makeCharacter(
  14010. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14011. {
  14012. front: {
  14013. height: math.unit(1450, "feet"),
  14014. weight: math.unit(1.21e6, "tons"),
  14015. name: "Front",
  14016. image: {
  14017. source: "./media/characters/sekvra/front.svg",
  14018. extra: 1193/1190,
  14019. bottom: 78/1271
  14020. }
  14021. },
  14022. side: {
  14023. height: math.unit(1450, "feet"),
  14024. weight: math.unit(1.21e6, "tons"),
  14025. name: "Side",
  14026. image: {
  14027. source: "./media/characters/sekvra/side.svg",
  14028. extra: 1193/1190,
  14029. bottom: 52/1245
  14030. }
  14031. },
  14032. back: {
  14033. height: math.unit(1450, "feet"),
  14034. weight: math.unit(1.21e6, "tons"),
  14035. name: "Back",
  14036. image: {
  14037. source: "./media/characters/sekvra/back.svg",
  14038. extra: 1219/1216,
  14039. bottom: 21/1240
  14040. }
  14041. },
  14042. frontClothed: {
  14043. height: math.unit(1450, "feet"),
  14044. weight: math.unit(1.21e6, "tons"),
  14045. name: "Front (Clothed)",
  14046. image: {
  14047. source: "./media/characters/sekvra/front-clothed.svg",
  14048. extra: 1192/1189,
  14049. bottom: 79/1271
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Macro",
  14056. height: math.unit(1450, "feet"),
  14057. default: true
  14058. },
  14059. {
  14060. name: "Megamacro",
  14061. height: math.unit(15000, "feet")
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14067. {
  14068. front: {
  14069. height: math.unit(6, "feet"),
  14070. weight: math.unit(150, "lb"),
  14071. name: "Front",
  14072. image: {
  14073. source: "./media/characters/carmine/front.svg",
  14074. extra: 1,
  14075. bottom: 0.035
  14076. }
  14077. },
  14078. frontArmor: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(150, "lb"),
  14081. name: "Front (Armor)",
  14082. image: {
  14083. source: "./media/characters/carmine/front-armor.svg",
  14084. extra: 1,
  14085. bottom: 0.035
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Large",
  14092. height: math.unit(1, "mile")
  14093. },
  14094. {
  14095. name: "Huge",
  14096. height: math.unit(40, "miles"),
  14097. default: true
  14098. },
  14099. {
  14100. name: "Colossal",
  14101. height: math.unit(2500, "miles")
  14102. },
  14103. ]
  14104. ))
  14105. characterMakers.push(() => makeCharacter(
  14106. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14107. {
  14108. front: {
  14109. height: math.unit(6, "feet"),
  14110. weight: math.unit(150, "lb"),
  14111. name: "Front",
  14112. image: {
  14113. source: "./media/characters/elyssia/front.svg",
  14114. extra: 2201 / 2035,
  14115. bottom: 0.05
  14116. }
  14117. },
  14118. frontClothed: {
  14119. height: math.unit(6, "feet"),
  14120. weight: math.unit(150, "lb"),
  14121. name: "Front (Clothed)",
  14122. image: {
  14123. source: "./media/characters/elyssia/front-clothed.svg",
  14124. extra: 2201 / 2035,
  14125. bottom: 0.05
  14126. }
  14127. },
  14128. back: {
  14129. height: math.unit(6, "feet"),
  14130. weight: math.unit(150, "lb"),
  14131. name: "Back",
  14132. image: {
  14133. source: "./media/characters/elyssia/back.svg",
  14134. extra: 2201 / 2035,
  14135. bottom: 0.013
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Smaller",
  14142. height: math.unit(150, "feet")
  14143. },
  14144. {
  14145. name: "Standard",
  14146. height: math.unit(1400, "feet"),
  14147. default: true
  14148. },
  14149. {
  14150. name: "Distracted",
  14151. height: math.unit(15000, "feet")
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14157. {
  14158. front: {
  14159. height: math.unit(7 + 4/12, "feet"),
  14160. weight: math.unit(690, "lb"),
  14161. name: "Front",
  14162. image: {
  14163. source: "./media/characters/geno-maxwell/front.svg",
  14164. extra: 984/856,
  14165. bottom: 87/1071
  14166. }
  14167. },
  14168. back: {
  14169. height: math.unit(7 + 4/12, "feet"),
  14170. weight: math.unit(690, "lb"),
  14171. name: "Back",
  14172. image: {
  14173. source: "./media/characters/geno-maxwell/back.svg",
  14174. extra: 981/854,
  14175. bottom: 57/1038
  14176. }
  14177. },
  14178. frontCostume: {
  14179. height: math.unit(7 + 4/12, "feet"),
  14180. weight: math.unit(690, "lb"),
  14181. name: "Front (Costume)",
  14182. image: {
  14183. source: "./media/characters/geno-maxwell/front-costume.svg",
  14184. extra: 984/856,
  14185. bottom: 87/1071
  14186. }
  14187. },
  14188. backcostume: {
  14189. height: math.unit(7 + 4/12, "feet"),
  14190. weight: math.unit(690, "lb"),
  14191. name: "Back (Costume)",
  14192. image: {
  14193. source: "./media/characters/geno-maxwell/back-costume.svg",
  14194. extra: 981/854,
  14195. bottom: 57/1038
  14196. }
  14197. },
  14198. },
  14199. [
  14200. {
  14201. name: "Micro",
  14202. height: math.unit(3, "inches")
  14203. },
  14204. {
  14205. name: "Normal",
  14206. height: math.unit(7 + 4 / 12, "feet"),
  14207. default: true
  14208. },
  14209. {
  14210. name: "Macro",
  14211. height: math.unit(220, "feet")
  14212. },
  14213. {
  14214. name: "Megamacro",
  14215. height: math.unit(11, "miles")
  14216. },
  14217. ]
  14218. ))
  14219. characterMakers.push(() => makeCharacter(
  14220. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14221. {
  14222. front: {
  14223. height: math.unit(7 + 4/12, "feet"),
  14224. weight: math.unit(750, "lb"),
  14225. name: "Front",
  14226. image: {
  14227. source: "./media/characters/regena-maxwell/front.svg",
  14228. extra: 984/856,
  14229. bottom: 87/1071
  14230. }
  14231. },
  14232. back: {
  14233. height: math.unit(7 + 4/12, "feet"),
  14234. weight: math.unit(750, "lb"),
  14235. name: "Back",
  14236. image: {
  14237. source: "./media/characters/regena-maxwell/back.svg",
  14238. extra: 981/854,
  14239. bottom: 57/1038
  14240. }
  14241. },
  14242. frontCostume: {
  14243. height: math.unit(7 + 4/12, "feet"),
  14244. weight: math.unit(750, "lb"),
  14245. name: "Front (Costume)",
  14246. image: {
  14247. source: "./media/characters/regena-maxwell/front-costume.svg",
  14248. extra: 984/856,
  14249. bottom: 87/1071
  14250. }
  14251. },
  14252. backcostume: {
  14253. height: math.unit(7 + 4/12, "feet"),
  14254. weight: math.unit(750, "lb"),
  14255. name: "Back (Costume)",
  14256. image: {
  14257. source: "./media/characters/regena-maxwell/back-costume.svg",
  14258. extra: 981/854,
  14259. bottom: 57/1038
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(7 + 4 / 12, "feet"),
  14267. default: true
  14268. },
  14269. {
  14270. name: "Macro",
  14271. height: math.unit(220, "feet")
  14272. },
  14273. {
  14274. name: "Megamacro",
  14275. height: math.unit(11, "miles")
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14281. {
  14282. front: {
  14283. height: math.unit(6, "feet"),
  14284. weight: math.unit(150, "lb"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14288. extra: 860 / 690,
  14289. bottom: 0.03
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Normal",
  14296. height: math.unit(1.7, "meters"),
  14297. default: true
  14298. },
  14299. ]
  14300. ))
  14301. characterMakers.push(() => makeCharacter(
  14302. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14303. {
  14304. front: {
  14305. height: math.unit(6, "feet"),
  14306. weight: math.unit(150, "lb"),
  14307. name: "Front",
  14308. image: {
  14309. source: "./media/characters/quilly/front.svg",
  14310. extra: 890 / 776
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Gigamacro",
  14317. height: math.unit(404090, "miles"),
  14318. default: true
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(7 + 8 / 12, "feet"),
  14327. weight: math.unit(350, "lb"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/tempest/front.svg",
  14331. extra: 1175 / 1086,
  14332. bottom: 0.02
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Normal",
  14339. height: math.unit(7 + 8 / 12, "feet"),
  14340. default: true
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14346. {
  14347. side: {
  14348. height: math.unit(4 + 5 / 12, "feet"),
  14349. weight: math.unit(80, "lb"),
  14350. name: "Side",
  14351. image: {
  14352. source: "./media/characters/rodger/side.svg",
  14353. extra: 1235 / 1118
  14354. }
  14355. },
  14356. },
  14357. [
  14358. {
  14359. name: "Micro",
  14360. height: math.unit(1, "inch")
  14361. },
  14362. {
  14363. name: "Normal",
  14364. height: math.unit(4 + 5 / 12, "feet"),
  14365. default: true
  14366. },
  14367. {
  14368. name: "Macro",
  14369. height: math.unit(120, "feet")
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14375. {
  14376. front: {
  14377. height: math.unit(6, "feet"),
  14378. weight: math.unit(150, "lb"),
  14379. name: "Front",
  14380. image: {
  14381. source: "./media/characters/danyel/front.svg",
  14382. extra: 1185 / 1123,
  14383. bottom: 0.05
  14384. }
  14385. },
  14386. },
  14387. [
  14388. {
  14389. name: "Shrunken",
  14390. height: math.unit(0.5, "mm")
  14391. },
  14392. {
  14393. name: "Micro",
  14394. height: math.unit(1, "mm"),
  14395. default: true
  14396. },
  14397. {
  14398. name: "Upsized",
  14399. height: math.unit(5 + 5 / 12, "feet")
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14405. {
  14406. front: {
  14407. height: math.unit(5 + 6 / 12, "feet"),
  14408. weight: math.unit(200, "lb"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/vivian-bijoux/front.svg",
  14412. extra: 1217/1209,
  14413. bottom: 76/1293
  14414. }
  14415. },
  14416. back: {
  14417. height: math.unit(5 + 6 / 12, "feet"),
  14418. weight: math.unit(200, "lb"),
  14419. name: "Back",
  14420. image: {
  14421. source: "./media/characters/vivian-bijoux/back.svg",
  14422. extra: 1214/1208,
  14423. bottom: 51/1265
  14424. }
  14425. },
  14426. dressed: {
  14427. height: math.unit(5 + 6 / 12, "feet"),
  14428. weight: math.unit(200, "lb"),
  14429. name: "Dressed",
  14430. image: {
  14431. source: "./media/characters/vivian-bijoux/dressed.svg",
  14432. extra: 1217/1209,
  14433. bottom: 76/1293
  14434. }
  14435. },
  14436. },
  14437. [
  14438. {
  14439. name: "Normal",
  14440. height: math.unit(5 + 6 / 12, "feet"),
  14441. default: true
  14442. },
  14443. {
  14444. name: "Bad Dream",
  14445. height: math.unit(500, "feet")
  14446. },
  14447. {
  14448. name: "Nightmare",
  14449. height: math.unit(500, "miles")
  14450. },
  14451. ]
  14452. ))
  14453. characterMakers.push(() => makeCharacter(
  14454. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14455. {
  14456. front: {
  14457. height: math.unit(6 + 1 / 12, "feet"),
  14458. weight: math.unit(260, "lb"),
  14459. name: "Front",
  14460. image: {
  14461. source: "./media/characters/zeta/front.svg",
  14462. extra: 1968 / 1889,
  14463. bottom: 0.06
  14464. }
  14465. },
  14466. back: {
  14467. height: math.unit(6 + 1 / 12, "feet"),
  14468. weight: math.unit(260, "lb"),
  14469. name: "Back",
  14470. image: {
  14471. source: "./media/characters/zeta/back.svg",
  14472. extra: 1944 / 1858,
  14473. bottom: 0.03
  14474. }
  14475. },
  14476. hand: {
  14477. height: math.unit(1.112, "feet"),
  14478. name: "Hand",
  14479. image: {
  14480. source: "./media/characters/zeta/hand.svg"
  14481. }
  14482. },
  14483. foot: {
  14484. height: math.unit(1.48, "feet"),
  14485. name: "Foot",
  14486. image: {
  14487. source: "./media/characters/zeta/foot.svg"
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Micro",
  14494. height: math.unit(6, "inches")
  14495. },
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(6 + 1 / 12, "feet"),
  14499. default: true
  14500. },
  14501. {
  14502. name: "Macro",
  14503. height: math.unit(20, "feet")
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14509. {
  14510. front: {
  14511. height: math.unit(6, "feet"),
  14512. weight: math.unit(150, "lb"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/jamie-larsen/front.svg",
  14516. extra: 962 / 933,
  14517. bottom: 0.02
  14518. }
  14519. },
  14520. back: {
  14521. height: math.unit(6, "feet"),
  14522. weight: math.unit(150, "lb"),
  14523. name: "Back",
  14524. image: {
  14525. source: "./media/characters/jamie-larsen/back.svg",
  14526. extra: 997 / 946
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Macro",
  14533. height: math.unit(28 + 7 / 12, "feet"),
  14534. default: true
  14535. },
  14536. {
  14537. name: "Macro+",
  14538. height: math.unit(180, "feet")
  14539. },
  14540. {
  14541. name: "Megamacro",
  14542. height: math.unit(10, "miles")
  14543. },
  14544. {
  14545. name: "Gigamacro",
  14546. height: math.unit(200000, "miles")
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14552. {
  14553. front: {
  14554. height: math.unit(6, "feet"),
  14555. weight: math.unit(120, "lb"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/vance/front.svg",
  14559. extra: 1980 / 1890,
  14560. bottom: 0.09
  14561. }
  14562. },
  14563. back: {
  14564. height: math.unit(6, "feet"),
  14565. weight: math.unit(120, "lb"),
  14566. name: "Back",
  14567. image: {
  14568. source: "./media/characters/vance/back.svg",
  14569. extra: 2081 / 1994,
  14570. bottom: 0.014
  14571. }
  14572. },
  14573. hand: {
  14574. height: math.unit(0.88, "feet"),
  14575. name: "Hand",
  14576. image: {
  14577. source: "./media/characters/vance/hand.svg"
  14578. }
  14579. },
  14580. foot: {
  14581. height: math.unit(0.64, "feet"),
  14582. name: "Foot",
  14583. image: {
  14584. source: "./media/characters/vance/foot.svg"
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Small",
  14591. height: math.unit(90, "feet"),
  14592. default: true
  14593. },
  14594. {
  14595. name: "Macro",
  14596. height: math.unit(100, "meters")
  14597. },
  14598. {
  14599. name: "Megamacro",
  14600. height: math.unit(15, "miles")
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14606. {
  14607. front: {
  14608. height: math.unit(6, "feet"),
  14609. weight: math.unit(180, "lb"),
  14610. name: "Front",
  14611. image: {
  14612. source: "./media/characters/xochitl/front.svg",
  14613. extra: 2297 / 2261,
  14614. bottom: 0.065
  14615. }
  14616. },
  14617. back: {
  14618. height: math.unit(6, "feet"),
  14619. weight: math.unit(180, "lb"),
  14620. name: "Back",
  14621. image: {
  14622. source: "./media/characters/xochitl/back.svg",
  14623. extra: 2386 / 2354,
  14624. bottom: 0.01
  14625. }
  14626. },
  14627. foot: {
  14628. height: math.unit(6 / 5 * 1.15, "feet"),
  14629. weight: math.unit(150, "lb"),
  14630. name: "Foot",
  14631. image: {
  14632. source: "./media/characters/xochitl/foot.svg"
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Macro",
  14639. height: math.unit(80, "feet")
  14640. },
  14641. {
  14642. name: "Macro+",
  14643. height: math.unit(400, "feet"),
  14644. default: true
  14645. },
  14646. {
  14647. name: "Gigamacro",
  14648. height: math.unit(80000, "miles")
  14649. },
  14650. {
  14651. name: "Gigamacro+",
  14652. height: math.unit(400000, "miles")
  14653. },
  14654. {
  14655. name: "Teramacro",
  14656. height: math.unit(300, "AU")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14662. {
  14663. front: {
  14664. height: math.unit(6, "feet"),
  14665. weight: math.unit(150, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/vincent/front.svg",
  14669. extra: 1130 / 1080,
  14670. bottom: 0.055
  14671. }
  14672. },
  14673. beak: {
  14674. height: math.unit(6 * 0.1, "feet"),
  14675. name: "Beak",
  14676. image: {
  14677. source: "./media/characters/vincent/beak.svg"
  14678. }
  14679. },
  14680. hand: {
  14681. height: math.unit(6 * 0.85, "feet"),
  14682. weight: math.unit(150, "lb"),
  14683. name: "Hand",
  14684. image: {
  14685. source: "./media/characters/vincent/hand.svg"
  14686. }
  14687. },
  14688. foot: {
  14689. height: math.unit(6 * 0.19, "feet"),
  14690. weight: math.unit(150, "lb"),
  14691. name: "Foot",
  14692. image: {
  14693. source: "./media/characters/vincent/foot.svg"
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Base",
  14700. height: math.unit(6 + 5 / 12, "feet"),
  14701. default: true
  14702. },
  14703. {
  14704. name: "Macro",
  14705. height: math.unit(300, "feet")
  14706. },
  14707. {
  14708. name: "Megamacro",
  14709. height: math.unit(2, "miles")
  14710. },
  14711. {
  14712. name: "Gigamacro",
  14713. height: math.unit(1000, "miles")
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(2, "meters"),
  14722. weight: math.unit(500, "kg"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/coatl/front.svg",
  14726. extra: 3948 / 3500,
  14727. bottom: 0.082
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(4, "meters")
  14735. },
  14736. {
  14737. name: "Macro",
  14738. height: math.unit(100, "meters"),
  14739. default: true
  14740. },
  14741. {
  14742. name: "Macro+",
  14743. height: math.unit(300, "meters")
  14744. },
  14745. {
  14746. name: "Megamacro",
  14747. height: math.unit(3, "gigameters")
  14748. },
  14749. {
  14750. name: "Megamacro+",
  14751. height: math.unit(300, "terameters")
  14752. },
  14753. {
  14754. name: "Megamacro++",
  14755. height: math.unit(3, "lightyears")
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(6, "feet"),
  14764. weight: math.unit(50, "kg"),
  14765. name: "front",
  14766. image: {
  14767. source: "./media/characters/shiroryu/front.svg",
  14768. extra: 1990 / 1935
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Mortal Mingling",
  14775. height: math.unit(3, "meters")
  14776. },
  14777. {
  14778. name: "Kaiju-ish",
  14779. height: math.unit(250, "meters")
  14780. },
  14781. {
  14782. name: "Somewhat Godly",
  14783. height: math.unit(400, "km"),
  14784. default: true
  14785. },
  14786. {
  14787. name: "Planetary",
  14788. height: math.unit(300, "megameters")
  14789. },
  14790. {
  14791. name: "Galaxy-dwarfing",
  14792. height: math.unit(450, "kiloparsecs")
  14793. },
  14794. {
  14795. name: "Universe Eater",
  14796. height: math.unit(150, "gigaparsecs")
  14797. },
  14798. {
  14799. name: "Almost Immeasurable",
  14800. height: math.unit(1.3e266, "yottaparsecs")
  14801. },
  14802. ]
  14803. ))
  14804. characterMakers.push(() => makeCharacter(
  14805. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14806. {
  14807. front: {
  14808. height: math.unit(6, "feet"),
  14809. weight: math.unit(150, "lb"),
  14810. name: "Front",
  14811. image: {
  14812. source: "./media/characters/umeko/front.svg",
  14813. extra: 1,
  14814. bottom: 0.019
  14815. }
  14816. },
  14817. frontArmored: {
  14818. height: math.unit(6, "feet"),
  14819. weight: math.unit(150, "lb"),
  14820. name: "Front (Armored)",
  14821. image: {
  14822. source: "./media/characters/umeko/front-armored.svg",
  14823. extra: 1,
  14824. bottom: 0.021
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Macro",
  14831. height: math.unit(220, "feet"),
  14832. default: true
  14833. },
  14834. {
  14835. name: "Guardian Dragon",
  14836. height: math.unit(50, "miles")
  14837. },
  14838. {
  14839. name: "Cosmic",
  14840. height: math.unit(800000, "miles")
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(6, "feet"),
  14849. weight: math.unit(150, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/cassidy/front.svg",
  14853. extra: 810/808,
  14854. bottom: 41/851
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Canon Height",
  14861. height: math.unit(120, "feet"),
  14862. default: true
  14863. },
  14864. {
  14865. name: "Macro+",
  14866. height: math.unit(400, "feet")
  14867. },
  14868. {
  14869. name: "Macro++",
  14870. height: math.unit(4000, "feet")
  14871. },
  14872. {
  14873. name: "Megamacro",
  14874. height: math.unit(3, "miles")
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(150, "lb"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/isaac/front.svg",
  14887. extra: 896 / 815,
  14888. bottom: 0.11
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Human Size",
  14895. height: math.unit(8, "feet"),
  14896. default: true
  14897. },
  14898. {
  14899. name: "Macro",
  14900. height: math.unit(400, "feet")
  14901. },
  14902. {
  14903. name: "Megamacro",
  14904. height: math.unit(50, "miles")
  14905. },
  14906. {
  14907. name: "Canon Height",
  14908. height: math.unit(200, "AU")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(72, "kg"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/sleekit/front.svg",
  14921. extra: 4693 / 4487,
  14922. bottom: 0.012
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Minimum Height",
  14929. height: math.unit(10, "meters")
  14930. },
  14931. {
  14932. name: "Smaller",
  14933. height: math.unit(25, "meters")
  14934. },
  14935. {
  14936. name: "Larger",
  14937. height: math.unit(38, "meters"),
  14938. default: true
  14939. },
  14940. {
  14941. name: "Maximum height",
  14942. height: math.unit(100, "meters")
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14948. {
  14949. front: {
  14950. height: math.unit(6, "feet"),
  14951. weight: math.unit(150, "lb"),
  14952. name: "Front",
  14953. image: {
  14954. source: "./media/characters/nillia/front.svg",
  14955. extra: 2195 / 2037,
  14956. bottom: 0.005
  14957. }
  14958. },
  14959. back: {
  14960. height: math.unit(6, "feet"),
  14961. weight: math.unit(150, "lb"),
  14962. name: "Back",
  14963. image: {
  14964. source: "./media/characters/nillia/back.svg",
  14965. extra: 2195 / 2037,
  14966. bottom: 0.005
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Canon Height",
  14973. height: math.unit(489, "feet"),
  14974. default: true
  14975. }
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14980. {
  14981. front: {
  14982. height: math.unit(6, "feet"),
  14983. weight: math.unit(150, "lb"),
  14984. name: "Front",
  14985. image: {
  14986. source: "./media/characters/mesmyriza/front.svg",
  14987. extra: 2067 / 1784,
  14988. bottom: 0.035
  14989. }
  14990. },
  14991. foot: {
  14992. height: math.unit(6 / (250 / 35), "feet"),
  14993. name: "Foot",
  14994. image: {
  14995. source: "./media/characters/mesmyriza/foot.svg"
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Macro",
  15002. height: math.unit(457, "meters"),
  15003. default: true
  15004. },
  15005. {
  15006. name: "Megamacro",
  15007. height: math.unit(8, "megameters")
  15008. },
  15009. ]
  15010. ))
  15011. characterMakers.push(() => makeCharacter(
  15012. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15013. {
  15014. front: {
  15015. height: math.unit(6, "feet"),
  15016. weight: math.unit(250, "lb"),
  15017. name: "Front",
  15018. image: {
  15019. source: "./media/characters/saudade/front.svg",
  15020. extra: 1172 / 1139,
  15021. bottom: 0.035
  15022. }
  15023. },
  15024. },
  15025. [
  15026. {
  15027. name: "Micro",
  15028. height: math.unit(3, "inches")
  15029. },
  15030. {
  15031. name: "Normal",
  15032. height: math.unit(6, "feet"),
  15033. default: true
  15034. },
  15035. {
  15036. name: "Macro",
  15037. height: math.unit(50, "feet")
  15038. },
  15039. {
  15040. name: "Megamacro",
  15041. height: math.unit(2800, "feet")
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(5 + 4 / 12, "feet"),
  15050. weight: math.unit(100, "lb"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/keireer/front.svg",
  15054. extra: 716 / 666,
  15055. bottom: 0.05
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Normal",
  15062. height: math.unit(5 + 4 / 12, "feet"),
  15063. default: true
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(6, "feet"),
  15072. weight: math.unit(90, "kg"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/mirja/front.svg",
  15076. extra: 1789 / 1683,
  15077. bottom: 0.05
  15078. }
  15079. },
  15080. frontDressed: {
  15081. height: math.unit(6, "feet"),
  15082. weight: math.unit(90, "lb"),
  15083. name: "Front (Dressed)",
  15084. image: {
  15085. source: "./media/characters/mirja/front-dressed.svg",
  15086. extra: 1789 / 1683,
  15087. bottom: 0.05
  15088. }
  15089. },
  15090. back: {
  15091. height: math.unit(6, "feet"),
  15092. weight: math.unit(90, "lb"),
  15093. name: "Back",
  15094. image: {
  15095. source: "./media/characters/mirja/back.svg",
  15096. extra: 953 / 917,
  15097. bottom: 0.017
  15098. }
  15099. },
  15100. },
  15101. [
  15102. {
  15103. name: "\"Incognito\"",
  15104. height: math.unit(3, "meters")
  15105. },
  15106. {
  15107. name: "Strolling Size",
  15108. height: math.unit(15, "km")
  15109. },
  15110. {
  15111. name: "Larger Strolling Size",
  15112. height: math.unit(400, "km")
  15113. },
  15114. {
  15115. name: "Preferred Size",
  15116. height: math.unit(5000, "km")
  15117. },
  15118. {
  15119. name: "True Size",
  15120. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15121. default: true
  15122. },
  15123. ]
  15124. ))
  15125. characterMakers.push(() => makeCharacter(
  15126. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15127. {
  15128. front: {
  15129. height: math.unit(15, "feet"),
  15130. weight: math.unit(880, "kg"),
  15131. name: "Front",
  15132. image: {
  15133. source: "./media/characters/nightraver/front.svg",
  15134. extra: 2444 / 2160,
  15135. bottom: 0.027
  15136. }
  15137. },
  15138. back: {
  15139. height: math.unit(15, "feet"),
  15140. weight: math.unit(880, "kg"),
  15141. name: "Back",
  15142. image: {
  15143. source: "./media/characters/nightraver/back.svg",
  15144. extra: 2309 / 2180,
  15145. bottom: 0.005
  15146. }
  15147. },
  15148. sole: {
  15149. height: math.unit(2.878, "feet"),
  15150. name: "Sole",
  15151. image: {
  15152. source: "./media/characters/nightraver/sole.svg"
  15153. }
  15154. },
  15155. foot: {
  15156. height: math.unit(2.285, "feet"),
  15157. name: "Foot",
  15158. image: {
  15159. source: "./media/characters/nightraver/foot.svg"
  15160. }
  15161. },
  15162. maw: {
  15163. height: math.unit(2.67, "feet"),
  15164. name: "Maw",
  15165. image: {
  15166. source: "./media/characters/nightraver/maw.svg"
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Micro",
  15173. height: math.unit(1, "cm")
  15174. },
  15175. {
  15176. name: "Normal",
  15177. height: math.unit(15, "feet"),
  15178. default: true
  15179. },
  15180. {
  15181. name: "Macro",
  15182. height: math.unit(300, "feet")
  15183. },
  15184. {
  15185. name: "Megamacro",
  15186. height: math.unit(300, "miles")
  15187. },
  15188. {
  15189. name: "Gigamacro",
  15190. height: math.unit(10000, "miles")
  15191. },
  15192. ]
  15193. ))
  15194. characterMakers.push(() => makeCharacter(
  15195. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15196. {
  15197. side: {
  15198. height: math.unit(2, "inches"),
  15199. weight: math.unit(5, "grams"),
  15200. name: "Side",
  15201. image: {
  15202. source: "./media/characters/arc/side.svg"
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Micro",
  15209. height: math.unit(2, "inches"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(1.1938, "meters"),
  15219. weight: math.unit(54, "kg"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/nebula-shahar/front.svg",
  15223. extra: 1642 / 1436,
  15224. bottom: 0.06
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Megamicro",
  15231. height: math.unit(0.3, "mm")
  15232. },
  15233. {
  15234. name: "Micro",
  15235. height: math.unit(3, "cm")
  15236. },
  15237. {
  15238. name: "Normal",
  15239. height: math.unit(138, "cm"),
  15240. default: true
  15241. },
  15242. {
  15243. name: "Macro",
  15244. height: math.unit(30, "m")
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(5.24, "feet"),
  15253. weight: math.unit(150, "lb"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/shayla/front.svg",
  15257. extra: 1512 / 1414,
  15258. bottom: 0.01
  15259. }
  15260. },
  15261. back: {
  15262. height: math.unit(5.24, "feet"),
  15263. weight: math.unit(150, "lb"),
  15264. name: "Back",
  15265. image: {
  15266. source: "./media/characters/shayla/back.svg",
  15267. extra: 1512 / 1414
  15268. }
  15269. },
  15270. hand: {
  15271. height: math.unit(0.7781496062992126, "feet"),
  15272. name: "Hand",
  15273. image: {
  15274. source: "./media/characters/shayla/hand.svg"
  15275. }
  15276. },
  15277. foot: {
  15278. height: math.unit(1.4206036745406823, "feet"),
  15279. name: "Foot",
  15280. image: {
  15281. source: "./media/characters/shayla/foot.svg"
  15282. }
  15283. },
  15284. },
  15285. [
  15286. {
  15287. name: "Micro",
  15288. height: math.unit(0.32, "feet")
  15289. },
  15290. {
  15291. name: "Normal",
  15292. height: math.unit(5.24, "feet"),
  15293. default: true
  15294. },
  15295. {
  15296. name: "Macro",
  15297. height: math.unit(492.12, "feet")
  15298. },
  15299. {
  15300. name: "Megamacro",
  15301. height: math.unit(186.41, "miles")
  15302. },
  15303. ]
  15304. ))
  15305. characterMakers.push(() => makeCharacter(
  15306. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15307. {
  15308. front: {
  15309. height: math.unit(2.2, "m"),
  15310. weight: math.unit(120, "kg"),
  15311. name: "Front",
  15312. image: {
  15313. source: "./media/characters/pia-jr/front.svg",
  15314. extra: 1000 / 970,
  15315. bottom: 0.035
  15316. }
  15317. },
  15318. hand: {
  15319. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15320. name: "Hand",
  15321. image: {
  15322. source: "./media/characters/pia-jr/hand.svg"
  15323. }
  15324. },
  15325. paw: {
  15326. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15327. name: "Paw",
  15328. image: {
  15329. source: "./media/characters/pia-jr/paw.svg"
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Micro",
  15336. height: math.unit(1.2, "cm")
  15337. },
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(2.2, "m"),
  15341. default: true
  15342. },
  15343. {
  15344. name: "Macro",
  15345. height: math.unit(180, "m")
  15346. },
  15347. {
  15348. name: "Megamacro",
  15349. height: math.unit(420, "km")
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(2, "m"),
  15358. weight: math.unit(115, "kg"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/pia-sr/front.svg",
  15362. extra: 760 / 730,
  15363. bottom: 0.015
  15364. }
  15365. },
  15366. back: {
  15367. height: math.unit(2, "m"),
  15368. weight: math.unit(115, "kg"),
  15369. name: "Back",
  15370. image: {
  15371. source: "./media/characters/pia-sr/back.svg",
  15372. extra: 760 / 730,
  15373. bottom: 0.01
  15374. }
  15375. },
  15376. hand: {
  15377. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15378. name: "Hand",
  15379. image: {
  15380. source: "./media/characters/pia-sr/hand.svg"
  15381. }
  15382. },
  15383. foot: {
  15384. height: math.unit(1.83, "feet"),
  15385. name: "Foot",
  15386. image: {
  15387. source: "./media/characters/pia-sr/foot.svg"
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Micro",
  15394. height: math.unit(88, "mm")
  15395. },
  15396. {
  15397. name: "Normal",
  15398. height: math.unit(2, "m"),
  15399. default: true
  15400. },
  15401. {
  15402. name: "Macro",
  15403. height: math.unit(200, "m")
  15404. },
  15405. {
  15406. name: "Megamacro",
  15407. height: math.unit(420, "km")
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(8 + 2 / 12, "feet"),
  15416. weight: math.unit(300, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/kibibyte/front.svg",
  15420. extra: 2221 / 2098,
  15421. bottom: 0.04
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(8 + 2 / 12, "feet"),
  15429. default: true
  15430. },
  15431. {
  15432. name: "Socialable Macro",
  15433. height: math.unit(50, "feet")
  15434. },
  15435. {
  15436. name: "Macro",
  15437. height: math.unit(300, "feet")
  15438. },
  15439. {
  15440. name: "Megamacro",
  15441. height: math.unit(500, "miles")
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15447. {
  15448. front: {
  15449. height: math.unit(6, "feet"),
  15450. weight: math.unit(150, "lb"),
  15451. name: "Front",
  15452. image: {
  15453. source: "./media/characters/felix/front.svg",
  15454. extra: 762 / 722,
  15455. bottom: 0.02
  15456. }
  15457. },
  15458. frontClothed: {
  15459. height: math.unit(6, "feet"),
  15460. weight: math.unit(150, "lb"),
  15461. name: "Front (Clothed)",
  15462. image: {
  15463. source: "./media/characters/felix/front-clothed.svg",
  15464. extra: 762 / 722,
  15465. bottom: 0.02
  15466. }
  15467. },
  15468. },
  15469. [
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(6 + 8 / 12, "feet"),
  15473. default: true
  15474. },
  15475. {
  15476. name: "Macro",
  15477. height: math.unit(2600, "feet")
  15478. },
  15479. {
  15480. name: "Megamacro",
  15481. height: math.unit(450, "miles")
  15482. },
  15483. ]
  15484. ))
  15485. characterMakers.push(() => makeCharacter(
  15486. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15487. {
  15488. front: {
  15489. height: math.unit(6 + 1 / 12, "feet"),
  15490. weight: math.unit(250, "lb"),
  15491. name: "Front",
  15492. image: {
  15493. source: "./media/characters/tobo/front.svg",
  15494. extra: 608 / 586,
  15495. bottom: 0.023
  15496. }
  15497. },
  15498. back: {
  15499. height: math.unit(6 + 1 / 12, "feet"),
  15500. weight: math.unit(250, "lb"),
  15501. name: "Back",
  15502. image: {
  15503. source: "./media/characters/tobo/back.svg",
  15504. extra: 608 / 586
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Nano",
  15511. height: math.unit(2, "nm")
  15512. },
  15513. {
  15514. name: "Megamicro",
  15515. height: math.unit(0.1, "mm")
  15516. },
  15517. {
  15518. name: "Micro",
  15519. height: math.unit(1, "inch"),
  15520. default: true
  15521. },
  15522. {
  15523. name: "Human-sized",
  15524. height: math.unit(6 + 1 / 12, "feet")
  15525. },
  15526. {
  15527. name: "Macro",
  15528. height: math.unit(250, "feet")
  15529. },
  15530. {
  15531. name: "Megamacro",
  15532. height: math.unit(75, "miles")
  15533. },
  15534. {
  15535. name: "Texas-sized",
  15536. height: math.unit(750, "miles")
  15537. },
  15538. {
  15539. name: "Teramacro",
  15540. height: math.unit(50000, "miles")
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(269, "lb"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/danny-kapowsky/front.svg",
  15553. extra: 766 / 736,
  15554. bottom: 0.044
  15555. }
  15556. },
  15557. back: {
  15558. height: math.unit(6, "feet"),
  15559. weight: math.unit(269, "lb"),
  15560. name: "Back",
  15561. image: {
  15562. source: "./media/characters/danny-kapowsky/back.svg",
  15563. extra: 797 / 760,
  15564. bottom: 0.025
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Macro",
  15571. height: math.unit(150, "feet"),
  15572. default: true
  15573. },
  15574. {
  15575. name: "Macro+",
  15576. height: math.unit(200, "feet")
  15577. },
  15578. {
  15579. name: "Macro++",
  15580. height: math.unit(300, "feet")
  15581. },
  15582. {
  15583. name: "Macro+++",
  15584. height: math.unit(400, "feet")
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15590. {
  15591. side: {
  15592. height: math.unit(6, "feet"),
  15593. weight: math.unit(170, "lb"),
  15594. name: "Side",
  15595. image: {
  15596. source: "./media/characters/finn/side.svg",
  15597. extra: 1953 / 1807,
  15598. bottom: 0.057
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Megamacro",
  15605. height: math.unit(14445, "feet"),
  15606. default: true
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(5 + 6 / 12, "feet"),
  15615. weight: math.unit(125, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/roy/front.svg",
  15619. extra: 1,
  15620. bottom: 0.11
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Micro",
  15627. height: math.unit(3, "inches"),
  15628. default: true
  15629. },
  15630. {
  15631. name: "Normal",
  15632. height: math.unit(5 + 6 / 12, "feet")
  15633. },
  15634. {
  15635. name: "Lesser Macro",
  15636. height: math.unit(60, "feet")
  15637. },
  15638. {
  15639. name: "Greater Macro",
  15640. height: math.unit(120, "feet")
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(6, "feet"),
  15649. weight: math.unit(100, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/aevsivs/front.svg",
  15653. extra: 1,
  15654. bottom: 0.03
  15655. }
  15656. },
  15657. back: {
  15658. height: math.unit(6, "feet"),
  15659. weight: math.unit(100, "lb"),
  15660. name: "Back",
  15661. image: {
  15662. source: "./media/characters/aevsivs/back.svg"
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Micro",
  15669. height: math.unit(2, "inches"),
  15670. default: true
  15671. },
  15672. {
  15673. name: "Normal",
  15674. height: math.unit(5, "feet")
  15675. },
  15676. ]
  15677. ))
  15678. characterMakers.push(() => makeCharacter(
  15679. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15680. {
  15681. front: {
  15682. height: math.unit(5 + 7 / 12, "feet"),
  15683. weight: math.unit(159, "lb"),
  15684. name: "Front",
  15685. image: {
  15686. source: "./media/characters/hildegard/front.svg",
  15687. extra: 289 / 269,
  15688. bottom: 7.63 / 297.8
  15689. }
  15690. },
  15691. back: {
  15692. height: math.unit(5 + 7 / 12, "feet"),
  15693. weight: math.unit(159, "lb"),
  15694. name: "Back",
  15695. image: {
  15696. source: "./media/characters/hildegard/back.svg",
  15697. extra: 280 / 260,
  15698. bottom: 2.3 / 282
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(5 + 7 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15712. {
  15713. bernard: {
  15714. height: math.unit(2 + 7 / 12, "feet"),
  15715. weight: math.unit(66, "lb"),
  15716. name: "Bernard",
  15717. rename: true,
  15718. image: {
  15719. source: "./media/characters/bernard-wilder/bernard.svg",
  15720. extra: 192 / 128,
  15721. bottom: 0.05
  15722. }
  15723. },
  15724. wilder: {
  15725. height: math.unit(5 + 8 / 12, "feet"),
  15726. weight: math.unit(143, "lb"),
  15727. name: "Wilder",
  15728. rename: true,
  15729. image: {
  15730. source: "./media/characters/bernard-wilder/wilder.svg",
  15731. extra: 361 / 312,
  15732. bottom: 0.02
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(2 + 7 / 12, "feet"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15746. {
  15747. anthro: {
  15748. height: math.unit(6 + 1 / 12, "feet"),
  15749. weight: math.unit(155, "lb"),
  15750. name: "Anthro",
  15751. image: {
  15752. source: "./media/characters/hearth/anthro.svg",
  15753. extra: 1178/1136,
  15754. bottom: 28/1206
  15755. }
  15756. },
  15757. feral: {
  15758. height: math.unit(3.78, "feet"),
  15759. weight: math.unit(35, "kg"),
  15760. name: "Feral",
  15761. image: {
  15762. source: "./media/characters/hearth/feral.svg",
  15763. extra: 153 / 135,
  15764. bottom: 0.03
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(6 + 1 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(6, "feet"),
  15781. weight: math.unit(182, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/ingrid/front.svg",
  15785. extra: 294 / 268,
  15786. bottom: 0.027
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(6, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15800. {
  15801. eevee: {
  15802. height: math.unit(2 + 10 / 12, "feet"),
  15803. weight: math.unit(86, "lb"),
  15804. name: "Malgam",
  15805. image: {
  15806. source: "./media/characters/malgam/eevee.svg",
  15807. extra: 952/784,
  15808. bottom: 38/990
  15809. }
  15810. },
  15811. sylveon: {
  15812. height: math.unit(4, "feet"),
  15813. weight: math.unit(101, "lb"),
  15814. name: "Future Malgam",
  15815. rename: true,
  15816. image: {
  15817. source: "./media/characters/malgam/sylveon.svg",
  15818. extra: 371 / 325,
  15819. bottom: 0.015
  15820. }
  15821. },
  15822. gigantamax: {
  15823. height: math.unit(50, "feet"),
  15824. name: "Gigantamax Malgam",
  15825. rename: true,
  15826. image: {
  15827. source: "./media/characters/malgam/gigantamax.svg"
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(2 + 10 / 12, "feet"),
  15835. default: true
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(5 + 11 / 12, "feet"),
  15844. weight: math.unit(188, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/fleur/front.svg",
  15848. extra: 309 / 283,
  15849. bottom: 0.007
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(5 + 11 / 12, "feet"),
  15857. default: true
  15858. },
  15859. ]
  15860. ))
  15861. characterMakers.push(() => makeCharacter(
  15862. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15863. {
  15864. front: {
  15865. height: math.unit(5 + 4 / 12, "feet"),
  15866. weight: math.unit(122, "lb"),
  15867. name: "Front",
  15868. image: {
  15869. source: "./media/characters/jude/front.svg",
  15870. extra: 288 / 273,
  15871. bottom: 0.03
  15872. }
  15873. },
  15874. },
  15875. [
  15876. {
  15877. name: "Normal",
  15878. height: math.unit(5 + 4 / 12, "feet"),
  15879. default: true
  15880. },
  15881. ]
  15882. ))
  15883. characterMakers.push(() => makeCharacter(
  15884. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15885. {
  15886. front: {
  15887. height: math.unit(5 + 11 / 12, "feet"),
  15888. weight: math.unit(190, "lb"),
  15889. name: "Front",
  15890. image: {
  15891. source: "./media/characters/seara/front.svg",
  15892. extra: 1,
  15893. bottom: 0.05
  15894. }
  15895. },
  15896. },
  15897. [
  15898. {
  15899. name: "Normal",
  15900. height: math.unit(5 + 11 / 12, "feet"),
  15901. default: true
  15902. },
  15903. ]
  15904. ))
  15905. characterMakers.push(() => makeCharacter(
  15906. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15907. {
  15908. front: {
  15909. height: math.unit(16 + 5 / 12, "feet"),
  15910. weight: math.unit(524, "lb"),
  15911. name: "Front",
  15912. image: {
  15913. source: "./media/characters/caspian-lugia/front.svg",
  15914. extra: 1,
  15915. bottom: 0.04
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Normal",
  15922. height: math.unit(16 + 5 / 12, "feet"),
  15923. default: true
  15924. },
  15925. ]
  15926. ))
  15927. characterMakers.push(() => makeCharacter(
  15928. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15929. {
  15930. front: {
  15931. height: math.unit(5 + 7 / 12, "feet"),
  15932. weight: math.unit(170, "lb"),
  15933. name: "Front",
  15934. image: {
  15935. source: "./media/characters/mika/front.svg",
  15936. extra: 1,
  15937. bottom: 0.016
  15938. }
  15939. },
  15940. },
  15941. [
  15942. {
  15943. name: "Normal",
  15944. height: math.unit(5 + 7 / 12, "feet"),
  15945. default: true
  15946. },
  15947. ]
  15948. ))
  15949. characterMakers.push(() => makeCharacter(
  15950. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15951. {
  15952. front: {
  15953. height: math.unit(6 + 2 / 12, "feet"),
  15954. weight: math.unit(268, "lb"),
  15955. name: "Front",
  15956. image: {
  15957. source: "./media/characters/sol/front.svg",
  15958. extra: 247 / 231,
  15959. bottom: 0.05
  15960. }
  15961. },
  15962. },
  15963. [
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(6 + 2 / 12, "feet"),
  15967. default: true
  15968. },
  15969. ]
  15970. ))
  15971. characterMakers.push(() => makeCharacter(
  15972. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15973. {
  15974. buizel: {
  15975. height: math.unit(2 + 5 / 12, "feet"),
  15976. weight: math.unit(87, "lb"),
  15977. name: "Front",
  15978. image: {
  15979. source: "./media/characters/umiko/buizel.svg",
  15980. extra: 172 / 157,
  15981. bottom: 0.01
  15982. },
  15983. form: "buizel",
  15984. default: true
  15985. },
  15986. floatzel: {
  15987. height: math.unit(5 + 9 / 12, "feet"),
  15988. weight: math.unit(250, "lb"),
  15989. name: "Front",
  15990. image: {
  15991. source: "./media/characters/umiko/floatzel.svg",
  15992. extra: 1076/1006,
  15993. bottom: 15/1091
  15994. },
  15995. form: "floatzel",
  15996. default: true
  15997. },
  15998. },
  15999. [
  16000. {
  16001. name: "Normal",
  16002. height: math.unit(2 + 5 / 12, "feet"),
  16003. form: "buizel",
  16004. default: true
  16005. },
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(5 + 9 / 12, "feet"),
  16009. form: "floatzel",
  16010. default: true
  16011. },
  16012. ],
  16013. {
  16014. "buizel": {
  16015. name: "Buizel"
  16016. },
  16017. "floatzel": {
  16018. name: "Floatzel",
  16019. default: true
  16020. }
  16021. }
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16025. {
  16026. front: {
  16027. height: math.unit(6 + 2 / 12, "feet"),
  16028. weight: math.unit(146, "lb"),
  16029. name: "Front",
  16030. image: {
  16031. source: "./media/characters/iliac/front.svg",
  16032. extra: 389 / 365,
  16033. bottom: 0.035
  16034. }
  16035. },
  16036. },
  16037. [
  16038. {
  16039. name: "Normal",
  16040. height: math.unit(6 + 2 / 12, "feet"),
  16041. default: true
  16042. },
  16043. ]
  16044. ))
  16045. characterMakers.push(() => makeCharacter(
  16046. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16047. {
  16048. front: {
  16049. height: math.unit(6, "feet"),
  16050. weight: math.unit(170, "lb"),
  16051. name: "Front",
  16052. image: {
  16053. source: "./media/characters/topaz/front.svg",
  16054. extra: 317 / 303,
  16055. bottom: 0.055
  16056. }
  16057. },
  16058. },
  16059. [
  16060. {
  16061. name: "Normal",
  16062. height: math.unit(6, "feet"),
  16063. default: true
  16064. },
  16065. ]
  16066. ))
  16067. characterMakers.push(() => makeCharacter(
  16068. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16069. {
  16070. front: {
  16071. height: math.unit(5 + 11 / 12, "feet"),
  16072. weight: math.unit(144, "lb"),
  16073. name: "Front",
  16074. image: {
  16075. source: "./media/characters/gabriel/front.svg",
  16076. extra: 285 / 262,
  16077. bottom: 0.004
  16078. }
  16079. },
  16080. },
  16081. [
  16082. {
  16083. name: "Normal",
  16084. height: math.unit(5 + 11 / 12, "feet"),
  16085. default: true
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16091. {
  16092. side: {
  16093. height: math.unit(6 + 5 / 12, "feet"),
  16094. weight: math.unit(300, "lb"),
  16095. name: "Side",
  16096. image: {
  16097. source: "./media/characters/tempest-suicune/side.svg",
  16098. extra: 195 / 154,
  16099. bottom: 0.04
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(6 + 5 / 12, "feet"),
  16107. default: true
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16113. {
  16114. front: {
  16115. height: math.unit(7 + 2 / 12, "feet"),
  16116. weight: math.unit(322, "lb"),
  16117. name: "Front",
  16118. image: {
  16119. source: "./media/characters/vulcan/front.svg",
  16120. extra: 154 / 147,
  16121. bottom: 0.04
  16122. }
  16123. },
  16124. },
  16125. [
  16126. {
  16127. name: "Normal",
  16128. height: math.unit(7 + 2 / 12, "feet"),
  16129. default: true
  16130. },
  16131. ]
  16132. ))
  16133. characterMakers.push(() => makeCharacter(
  16134. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16135. {
  16136. front: {
  16137. height: math.unit(5 + 10 / 12, "feet"),
  16138. weight: math.unit(264, "lb"),
  16139. name: "Front",
  16140. image: {
  16141. source: "./media/characters/gault/front.svg",
  16142. extra: 161 / 140,
  16143. bottom: 0.028
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Normal",
  16150. height: math.unit(5 + 10 / 12, "feet"),
  16151. default: true
  16152. },
  16153. ]
  16154. ))
  16155. characterMakers.push(() => makeCharacter(
  16156. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16157. {
  16158. front: {
  16159. height: math.unit(6, "feet"),
  16160. weight: math.unit(150, "lb"),
  16161. name: "Front",
  16162. image: {
  16163. source: "./media/characters/shard/front.svg",
  16164. extra: 273 / 238,
  16165. bottom: 0.02
  16166. }
  16167. },
  16168. },
  16169. [
  16170. {
  16171. name: "Normal",
  16172. height: math.unit(3 + 6 / 12, "feet"),
  16173. default: true
  16174. },
  16175. ]
  16176. ))
  16177. characterMakers.push(() => makeCharacter(
  16178. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16179. {
  16180. front: {
  16181. height: math.unit(5 + 11 / 12, "feet"),
  16182. weight: math.unit(146, "lb"),
  16183. name: "Front",
  16184. image: {
  16185. source: "./media/characters/ashe/front.svg",
  16186. extra: 400 / 373,
  16187. bottom: 0.01
  16188. }
  16189. },
  16190. },
  16191. [
  16192. {
  16193. name: "Normal",
  16194. height: math.unit(5 + 11 / 12, "feet"),
  16195. default: true
  16196. },
  16197. ]
  16198. ))
  16199. characterMakers.push(() => makeCharacter(
  16200. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16201. {
  16202. front: {
  16203. height: math.unit(5 + 5 / 12, "feet"),
  16204. weight: math.unit(135, "lb"),
  16205. name: "Front",
  16206. image: {
  16207. source: "./media/characters/beatrix/front.svg",
  16208. extra: 392 / 379,
  16209. bottom: 0.01
  16210. }
  16211. },
  16212. },
  16213. [
  16214. {
  16215. name: "Normal",
  16216. height: math.unit(6, "feet"),
  16217. default: true
  16218. },
  16219. ]
  16220. ))
  16221. characterMakers.push(() => makeCharacter(
  16222. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16223. {
  16224. front: {
  16225. height: math.unit(6 + 2/12, "feet"),
  16226. weight: math.unit(135, "lb"),
  16227. name: "Front",
  16228. image: {
  16229. source: "./media/characters/ignatius/front.svg",
  16230. extra: 1380/1259,
  16231. bottom: 27/1407
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(6 + 2/12, "feet"),
  16239. default: true
  16240. },
  16241. ]
  16242. ))
  16243. characterMakers.push(() => makeCharacter(
  16244. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16245. {
  16246. front: {
  16247. height: math.unit(6 + 2 / 12, "feet"),
  16248. weight: math.unit(138, "lb"),
  16249. name: "Front",
  16250. image: {
  16251. source: "./media/characters/mei-li/front.svg",
  16252. extra: 237 / 229,
  16253. bottom: 0.03
  16254. }
  16255. },
  16256. },
  16257. [
  16258. {
  16259. name: "Normal",
  16260. height: math.unit(6 + 2 / 12, "feet"),
  16261. default: true
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16267. {
  16268. front: {
  16269. height: math.unit(2 + 4 / 12, "feet"),
  16270. weight: math.unit(62, "lb"),
  16271. name: "Front",
  16272. image: {
  16273. source: "./media/characters/puru/front.svg",
  16274. extra: 206 / 149,
  16275. bottom: 0.06
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(2 + 4 / 12, "feet"),
  16283. default: true
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16289. {
  16290. anthro: {
  16291. height: math.unit(5 + 8/12, "feet"),
  16292. weight: math.unit(200, "lb"),
  16293. energyNeed: math.unit(2000, "kcal"),
  16294. name: "Anthro",
  16295. image: {
  16296. source: "./media/characters/kee/anthro.svg",
  16297. extra: 3251/3184,
  16298. bottom: 250/3501
  16299. }
  16300. },
  16301. taur: {
  16302. height: math.unit(11, "feet"),
  16303. weight: math.unit(500, "lb"),
  16304. energyNeed: math.unit(5000, "kcal"),
  16305. name: "Taur",
  16306. image: {
  16307. source: "./media/characters/kee/taur.svg",
  16308. extra: 1362/1320,
  16309. bottom: 83/1445
  16310. }
  16311. },
  16312. },
  16313. [
  16314. {
  16315. name: "Normal",
  16316. height: math.unit(5 + 8/12, "feet"),
  16317. default: true
  16318. },
  16319. {
  16320. name: "Macro",
  16321. height: math.unit(35, "feet")
  16322. },
  16323. ]
  16324. ))
  16325. characterMakers.push(() => makeCharacter(
  16326. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16327. {
  16328. anthro: {
  16329. height: math.unit(7, "feet"),
  16330. weight: math.unit(190, "lb"),
  16331. name: "Anthro",
  16332. image: {
  16333. source: "./media/characters/cobalt-dracha/anthro.svg",
  16334. extra: 231 / 225,
  16335. bottom: 0.04
  16336. }
  16337. },
  16338. feral: {
  16339. height: math.unit(9 + 7 / 12, "feet"),
  16340. weight: math.unit(294, "lb"),
  16341. name: "Feral",
  16342. image: {
  16343. source: "./media/characters/cobalt-dracha/feral.svg",
  16344. extra: 692 / 633,
  16345. bottom: 0.05
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(7, "feet"),
  16353. default: true
  16354. },
  16355. ]
  16356. ))
  16357. characterMakers.push(() => makeCharacter(
  16358. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16359. {
  16360. fallen: {
  16361. height: math.unit(11 + 8 / 12, "feet"),
  16362. weight: math.unit(485, "lb"),
  16363. name: "Java (Fallen)",
  16364. rename: true,
  16365. image: {
  16366. source: "./media/characters/java/fallen.svg",
  16367. extra: 226 / 208,
  16368. bottom: 0.005
  16369. }
  16370. },
  16371. godkin: {
  16372. height: math.unit(10 + 6 / 12, "feet"),
  16373. weight: math.unit(328, "lb"),
  16374. name: "Java (Godkin)",
  16375. rename: true,
  16376. image: {
  16377. source: "./media/characters/java/godkin.svg",
  16378. extra: 1104/1068,
  16379. bottom: 36/1140
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Normal",
  16386. height: math.unit(11 + 8 / 12, "feet"),
  16387. default: true
  16388. },
  16389. ]
  16390. ))
  16391. characterMakers.push(() => makeCharacter(
  16392. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16393. {
  16394. front: {
  16395. height: math.unit(5 + 9 / 12, "feet"),
  16396. weight: math.unit(170, "lb"),
  16397. name: "Front",
  16398. image: {
  16399. source: "./media/characters/purna/front.svg",
  16400. extra: 239 / 229,
  16401. bottom: 0.01
  16402. }
  16403. },
  16404. },
  16405. [
  16406. {
  16407. name: "Normal",
  16408. height: math.unit(5 + 9 / 12, "feet"),
  16409. default: true
  16410. },
  16411. ]
  16412. ))
  16413. characterMakers.push(() => makeCharacter(
  16414. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16415. {
  16416. front: {
  16417. height: math.unit(5 + 9 / 12, "feet"),
  16418. weight: math.unit(142, "lb"),
  16419. name: "Front",
  16420. image: {
  16421. source: "./media/characters/kuva/front.svg",
  16422. extra: 281 / 271,
  16423. bottom: 0.006
  16424. }
  16425. },
  16426. },
  16427. [
  16428. {
  16429. name: "Normal",
  16430. height: math.unit(5 + 9 / 12, "feet"),
  16431. default: true
  16432. },
  16433. ]
  16434. ))
  16435. characterMakers.push(() => makeCharacter(
  16436. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16437. {
  16438. anthro: {
  16439. height: math.unit(9 + 2 / 12, "feet"),
  16440. weight: math.unit(270, "lb"),
  16441. name: "Anthro",
  16442. image: {
  16443. source: "./media/characters/embra/anthro.svg",
  16444. extra: 200 / 187,
  16445. bottom: 0.02
  16446. }
  16447. },
  16448. feral: {
  16449. height: math.unit(18 + 8 / 12, "feet"),
  16450. weight: math.unit(576, "lb"),
  16451. name: "Feral",
  16452. image: {
  16453. source: "./media/characters/embra/feral.svg",
  16454. extra: 152 / 137,
  16455. bottom: 0.037
  16456. }
  16457. },
  16458. },
  16459. [
  16460. {
  16461. name: "Normal",
  16462. height: math.unit(9 + 2 / 12, "feet"),
  16463. default: true
  16464. },
  16465. ]
  16466. ))
  16467. characterMakers.push(() => makeCharacter(
  16468. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16469. {
  16470. anthro: {
  16471. height: math.unit(10 + 9 / 12, "feet"),
  16472. weight: math.unit(224, "lb"),
  16473. name: "Anthro",
  16474. image: {
  16475. source: "./media/characters/grottos/anthro.svg",
  16476. extra: 350 / 332,
  16477. bottom: 0.045
  16478. }
  16479. },
  16480. feral: {
  16481. height: math.unit(20 + 7 / 12, "feet"),
  16482. weight: math.unit(629, "lb"),
  16483. name: "Feral",
  16484. image: {
  16485. source: "./media/characters/grottos/feral.svg",
  16486. extra: 207 / 190,
  16487. bottom: 0.05
  16488. }
  16489. },
  16490. },
  16491. [
  16492. {
  16493. name: "Normal",
  16494. height: math.unit(10 + 9 / 12, "feet"),
  16495. default: true
  16496. },
  16497. ]
  16498. ))
  16499. characterMakers.push(() => makeCharacter(
  16500. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16501. {
  16502. anthro: {
  16503. height: math.unit(9 + 6 / 12, "feet"),
  16504. weight: math.unit(298, "lb"),
  16505. name: "Anthro",
  16506. image: {
  16507. source: "./media/characters/frifna/anthro.svg",
  16508. extra: 282 / 269,
  16509. bottom: 0.015
  16510. }
  16511. },
  16512. feral: {
  16513. height: math.unit(16 + 2 / 12, "feet"),
  16514. weight: math.unit(624, "lb"),
  16515. name: "Feral",
  16516. image: {
  16517. source: "./media/characters/frifna/feral.svg"
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Normal",
  16524. height: math.unit(9 + 6 / 12, "feet"),
  16525. default: true
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(6 + 2 / 12, "feet"),
  16534. weight: math.unit(168, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/elise/front.svg",
  16538. extra: 276 / 271
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Normal",
  16545. height: math.unit(6 + 2 / 12, "feet"),
  16546. default: true
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16552. {
  16553. front: {
  16554. height: math.unit(5 + 10 / 12, "feet"),
  16555. weight: math.unit(210, "lb"),
  16556. name: "Front",
  16557. image: {
  16558. source: "./media/characters/glade/front.svg",
  16559. extra: 258 / 247,
  16560. bottom: 0.008
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(5 + 10 / 12, "feet"),
  16568. default: true
  16569. },
  16570. ]
  16571. ))
  16572. characterMakers.push(() => makeCharacter(
  16573. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16574. {
  16575. front: {
  16576. height: math.unit(5 + 10 / 12, "feet"),
  16577. weight: math.unit(129, "lb"),
  16578. name: "Front",
  16579. image: {
  16580. source: "./media/characters/rina/front.svg",
  16581. extra: 266 / 255,
  16582. bottom: 0.005
  16583. }
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(5 + 10 / 12, "feet"),
  16590. default: true
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16596. {
  16597. front: {
  16598. height: math.unit(6 + 1 / 12, "feet"),
  16599. weight: math.unit(192, "lb"),
  16600. name: "Front",
  16601. image: {
  16602. source: "./media/characters/veronica/front.svg",
  16603. extra: 319 / 309,
  16604. bottom: 0.005
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Normal",
  16611. height: math.unit(6 + 1 / 12, "feet"),
  16612. default: true
  16613. },
  16614. ]
  16615. ))
  16616. characterMakers.push(() => makeCharacter(
  16617. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16618. {
  16619. front: {
  16620. height: math.unit(9 + 3 / 12, "feet"),
  16621. weight: math.unit(1100, "lb"),
  16622. name: "Front",
  16623. image: {
  16624. source: "./media/characters/braxton/front.svg",
  16625. extra: 1057 / 984,
  16626. bottom: 0.05
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Normal",
  16633. height: math.unit(9 + 3 / 12, "feet")
  16634. },
  16635. {
  16636. name: "Giant",
  16637. height: math.unit(300, "feet"),
  16638. default: true
  16639. },
  16640. {
  16641. name: "Macro",
  16642. height: math.unit(700, "feet")
  16643. },
  16644. {
  16645. name: "Megamacro",
  16646. height: math.unit(6000, "feet")
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(6 + 7 / 12, "feet"),
  16655. weight: math.unit(150, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/blue-feyonics/front.svg",
  16659. extra: 1403 / 1306,
  16660. bottom: 0.047
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(6 + 7 / 12, "feet"),
  16668. default: true
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16674. {
  16675. front: {
  16676. height: math.unit(1.8, "meters"),
  16677. weight: math.unit(60, "kg"),
  16678. name: "Front",
  16679. image: {
  16680. source: "./media/characters/maxwell/front.svg",
  16681. extra: 2060 / 1873
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Micro",
  16688. height: math.unit(1, "mm")
  16689. },
  16690. {
  16691. name: "Normal",
  16692. height: math.unit(1.8, "meter"),
  16693. default: true
  16694. },
  16695. {
  16696. name: "Macro",
  16697. height: math.unit(30, "meters")
  16698. },
  16699. {
  16700. name: "Megamacro",
  16701. height: math.unit(10, "km")
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16707. {
  16708. front: {
  16709. height: math.unit(6, "feet"),
  16710. weight: math.unit(150, "lb"),
  16711. name: "Front",
  16712. image: {
  16713. source: "./media/characters/jack/front.svg",
  16714. extra: 1754 / 1640,
  16715. bottom: 0.01
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(80000, "feet"),
  16723. default: true
  16724. },
  16725. {
  16726. name: "Max size",
  16727. height: math.unit(10, "lightyears")
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16733. {
  16734. urban: {
  16735. height: math.unit(5, "feet"),
  16736. weight: math.unit(240, "lb"),
  16737. name: "Urban",
  16738. image: {
  16739. source: "./media/characters/cafat/urban.svg",
  16740. extra: 1223/1126,
  16741. bottom: 205/1428
  16742. }
  16743. },
  16744. summer: {
  16745. height: math.unit(5, "feet"),
  16746. weight: math.unit(240, "lb"),
  16747. name: "Summer",
  16748. image: {
  16749. source: "./media/characters/cafat/summer.svg",
  16750. extra: 1223/1126,
  16751. bottom: 205/1428
  16752. }
  16753. },
  16754. winter: {
  16755. height: math.unit(5, "feet"),
  16756. weight: math.unit(240, "lb"),
  16757. name: "Winter",
  16758. image: {
  16759. source: "./media/characters/cafat/winter.svg",
  16760. extra: 1223/1126,
  16761. bottom: 205/1428
  16762. }
  16763. },
  16764. lingerie: {
  16765. height: math.unit(5, "feet"),
  16766. weight: math.unit(240, "lb"),
  16767. name: "Lingerie",
  16768. image: {
  16769. source: "./media/characters/cafat/lingerie.svg",
  16770. extra: 1223/1126,
  16771. bottom: 205/1428
  16772. }
  16773. },
  16774. upright: {
  16775. height: math.unit(6.3, "feet"),
  16776. weight: math.unit(240, "lb"),
  16777. name: "Upright",
  16778. image: {
  16779. source: "./media/characters/cafat/upright.svg",
  16780. bottom: 0.01
  16781. }
  16782. },
  16783. uprightFull: {
  16784. height: math.unit(6.3, "feet"),
  16785. weight: math.unit(240, "lb"),
  16786. name: "Upright (Full)",
  16787. image: {
  16788. source: "./media/characters/cafat/upright-full.svg",
  16789. bottom: 0.01
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Small",
  16796. height: math.unit(5, "feet"),
  16797. default: true
  16798. },
  16799. {
  16800. name: "Large",
  16801. height: math.unit(13, "feet")
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16807. {
  16808. front: {
  16809. height: math.unit(6, "feet"),
  16810. weight: math.unit(150, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/verin-raharra/front.svg",
  16814. extra: 5019 / 4835,
  16815. bottom: 0.023
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(7 + 5 / 12, "feet"),
  16823. default: true
  16824. },
  16825. {
  16826. name: "Upsized",
  16827. height: math.unit(20, "feet")
  16828. },
  16829. ]
  16830. ))
  16831. characterMakers.push(() => makeCharacter(
  16832. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16833. {
  16834. front: {
  16835. height: math.unit(7, "feet"),
  16836. weight: math.unit(230, "lb"),
  16837. name: "Front",
  16838. image: {
  16839. source: "./media/characters/nakata/front.svg",
  16840. extra: 1.005,
  16841. bottom: 0.01
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Normal",
  16848. height: math.unit(7, "feet"),
  16849. default: true
  16850. },
  16851. {
  16852. name: "Big",
  16853. height: math.unit(14, "feet")
  16854. },
  16855. {
  16856. name: "Macro",
  16857. height: math.unit(400, "feet")
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(4.91, "feet"),
  16866. weight: math.unit(100, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/lily/front.svg",
  16870. extra: 1585 / 1415,
  16871. bottom: 0.02
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Normal",
  16878. height: math.unit(4.91, "feet"),
  16879. default: true
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16885. {
  16886. laying: {
  16887. height: math.unit(4 + 4 / 12, "feet"),
  16888. weight: math.unit(600, "lb"),
  16889. name: "Laying",
  16890. image: {
  16891. source: "./media/characters/sheila/laying.svg",
  16892. extra: 1333 / 1265,
  16893. bottom: 0.16
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(4 + 4 / 12, "feet"),
  16901. default: true
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16907. {
  16908. front: {
  16909. height: math.unit(6, "feet"),
  16910. weight: math.unit(190, "lb"),
  16911. name: "Front",
  16912. image: {
  16913. source: "./media/characters/sax/front.svg",
  16914. extra: 1187 / 973,
  16915. bottom: 0.042
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Micro",
  16922. height: math.unit(4, "inches"),
  16923. default: true
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16929. {
  16930. front: {
  16931. height: math.unit(6, "feet"),
  16932. weight: math.unit(150, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/pandora/front.svg",
  16936. extra: 2720 / 2556,
  16937. bottom: 0.015
  16938. }
  16939. },
  16940. back: {
  16941. height: math.unit(6, "feet"),
  16942. weight: math.unit(150, "lb"),
  16943. name: "Back",
  16944. image: {
  16945. source: "./media/characters/pandora/back.svg",
  16946. extra: 2720 / 2556,
  16947. bottom: 0.01
  16948. }
  16949. },
  16950. beans: {
  16951. height: math.unit(6 / 8, "feet"),
  16952. name: "Beans",
  16953. image: {
  16954. source: "./media/characters/pandora/beans.svg"
  16955. }
  16956. },
  16957. collar: {
  16958. height: math.unit(0.31, "feet"),
  16959. name: "Collar",
  16960. image: {
  16961. source: "./media/characters/pandora/collar.svg"
  16962. }
  16963. },
  16964. skirt: {
  16965. height: math.unit(6, "feet"),
  16966. weight: math.unit(150, "lb"),
  16967. name: "Skirt",
  16968. image: {
  16969. source: "./media/characters/pandora/skirt.svg",
  16970. extra: 1622 / 1525,
  16971. bottom: 0.015
  16972. }
  16973. },
  16974. hoodie: {
  16975. height: math.unit(6, "feet"),
  16976. weight: math.unit(150, "lb"),
  16977. name: "Hoodie",
  16978. image: {
  16979. source: "./media/characters/pandora/hoodie.svg",
  16980. extra: 1622 / 1525,
  16981. bottom: 0.015
  16982. }
  16983. },
  16984. casual: {
  16985. height: math.unit(6, "feet"),
  16986. weight: math.unit(150, "lb"),
  16987. name: "Casual",
  16988. image: {
  16989. source: "./media/characters/pandora/casual.svg",
  16990. extra: 1622 / 1525,
  16991. bottom: 0.015
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Normal",
  16998. height: math.unit(6, "feet")
  16999. },
  17000. {
  17001. name: "Big Steppy",
  17002. height: math.unit(1, "km"),
  17003. default: true
  17004. },
  17005. {
  17006. name: "Galactic Steppy",
  17007. height: math.unit(2, "gigameters")
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17013. {
  17014. side: {
  17015. height: math.unit(10, "feet"),
  17016. weight: math.unit(800, "kg"),
  17017. name: "Side",
  17018. image: {
  17019. source: "./media/characters/venio-darcony/side.svg",
  17020. extra: 1373 / 1003,
  17021. bottom: 0.037
  17022. }
  17023. },
  17024. front: {
  17025. height: math.unit(19, "feet"),
  17026. weight: math.unit(800, "kg"),
  17027. name: "Front",
  17028. image: {
  17029. source: "./media/characters/venio-darcony/front.svg"
  17030. }
  17031. },
  17032. back: {
  17033. height: math.unit(19, "feet"),
  17034. weight: math.unit(800, "kg"),
  17035. name: "Back",
  17036. image: {
  17037. source: "./media/characters/venio-darcony/back.svg"
  17038. }
  17039. },
  17040. sideNsfw: {
  17041. height: math.unit(10, "feet"),
  17042. weight: math.unit(800, "kg"),
  17043. name: "Side (NSFW)",
  17044. image: {
  17045. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17046. extra: 1373 / 1003,
  17047. bottom: 0.037
  17048. }
  17049. },
  17050. frontNsfw: {
  17051. height: math.unit(19, "feet"),
  17052. weight: math.unit(800, "kg"),
  17053. name: "Front (NSFW)",
  17054. image: {
  17055. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17056. }
  17057. },
  17058. backNsfw: {
  17059. height: math.unit(19, "feet"),
  17060. weight: math.unit(800, "kg"),
  17061. name: "Back (NSFW)",
  17062. image: {
  17063. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17064. }
  17065. },
  17066. sideArmored: {
  17067. height: math.unit(10, "feet"),
  17068. weight: math.unit(800, "kg"),
  17069. name: "Side (Armored)",
  17070. image: {
  17071. source: "./media/characters/venio-darcony/side-armored.svg",
  17072. extra: 1373 / 1003,
  17073. bottom: 0.037
  17074. }
  17075. },
  17076. frontArmored: {
  17077. height: math.unit(19, "feet"),
  17078. weight: math.unit(900, "kg"),
  17079. name: "Front (Armored)",
  17080. image: {
  17081. source: "./media/characters/venio-darcony/front-armored.svg"
  17082. }
  17083. },
  17084. backArmored: {
  17085. height: math.unit(19, "feet"),
  17086. weight: math.unit(900, "kg"),
  17087. name: "Back (Armored)",
  17088. image: {
  17089. source: "./media/characters/venio-darcony/back-armored.svg"
  17090. }
  17091. },
  17092. sword: {
  17093. height: math.unit(10, "feet"),
  17094. weight: math.unit(50, "lb"),
  17095. name: "Sword",
  17096. image: {
  17097. source: "./media/characters/venio-darcony/sword.svg"
  17098. }
  17099. },
  17100. },
  17101. [
  17102. {
  17103. name: "Normal",
  17104. height: math.unit(10, "feet")
  17105. },
  17106. {
  17107. name: "Macro",
  17108. height: math.unit(130, "feet"),
  17109. default: true
  17110. },
  17111. {
  17112. name: "Macro+",
  17113. height: math.unit(240, "feet")
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17119. {
  17120. front: {
  17121. height: math.unit(6, "feet"),
  17122. weight: math.unit(150, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/veski/front.svg",
  17126. extra: 1299 / 1225,
  17127. bottom: 0.04
  17128. }
  17129. },
  17130. back: {
  17131. height: math.unit(6, "feet"),
  17132. weight: math.unit(150, "lb"),
  17133. name: "Back",
  17134. image: {
  17135. source: "./media/characters/veski/back.svg",
  17136. extra: 1299 / 1225,
  17137. bottom: 0.008
  17138. }
  17139. },
  17140. maw: {
  17141. height: math.unit(1.5 * 1.21, "feet"),
  17142. name: "Maw",
  17143. image: {
  17144. source: "./media/characters/veski/maw.svg"
  17145. }
  17146. },
  17147. },
  17148. [
  17149. {
  17150. name: "Macro",
  17151. height: math.unit(2, "km"),
  17152. default: true
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17158. {
  17159. front: {
  17160. height: math.unit(5 + 7 / 12, "feet"),
  17161. name: "Front",
  17162. image: {
  17163. source: "./media/characters/isabelle/front.svg",
  17164. extra: 2130 / 1976,
  17165. bottom: 0.05
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Supermicro",
  17172. height: math.unit(10, "micrometers")
  17173. },
  17174. {
  17175. name: "Micro",
  17176. height: math.unit(1, "inch")
  17177. },
  17178. {
  17179. name: "Tiny",
  17180. height: math.unit(5, "inches")
  17181. },
  17182. {
  17183. name: "Standard",
  17184. height: math.unit(5 + 7 / 12, "inches")
  17185. },
  17186. {
  17187. name: "Macro",
  17188. height: math.unit(80, "meters"),
  17189. default: true
  17190. },
  17191. {
  17192. name: "Megamacro",
  17193. height: math.unit(250, "meters")
  17194. },
  17195. {
  17196. name: "Gigamacro",
  17197. height: math.unit(5, "km")
  17198. },
  17199. {
  17200. name: "Cosmic",
  17201. height: math.unit(2.5e6, "miles")
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(6, "feet"),
  17210. weight: math.unit(150, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/hanzo/front.svg",
  17214. extra: 374 / 344,
  17215. bottom: 0.02
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(8, "feet"),
  17223. default: true
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17229. {
  17230. front: {
  17231. height: math.unit(7, "feet"),
  17232. weight: math.unit(130, "lb"),
  17233. name: "Front",
  17234. image: {
  17235. source: "./media/characters/anna/front.svg",
  17236. extra: 169 / 145,
  17237. bottom: 0.06
  17238. }
  17239. },
  17240. full: {
  17241. height: math.unit(4.96, "feet"),
  17242. weight: math.unit(220, "lb"),
  17243. name: "Full",
  17244. image: {
  17245. source: "./media/characters/anna/full.svg",
  17246. extra: 138 / 114,
  17247. bottom: 0.15
  17248. }
  17249. },
  17250. tongue: {
  17251. height: math.unit(2.53, "feet"),
  17252. name: "Tongue",
  17253. image: {
  17254. source: "./media/characters/anna/tongue.svg"
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Normal",
  17261. height: math.unit(7, "feet"),
  17262. default: true
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17268. {
  17269. front: {
  17270. height: math.unit(7, "feet"),
  17271. weight: math.unit(150, "lb"),
  17272. name: "Front",
  17273. image: {
  17274. source: "./media/characters/ian-corvid/front.svg",
  17275. extra: 150 / 142,
  17276. bottom: 0.02
  17277. }
  17278. },
  17279. back: {
  17280. height: math.unit(7, "feet"),
  17281. weight: math.unit(150, "lb"),
  17282. name: "Back",
  17283. image: {
  17284. source: "./media/characters/ian-corvid/back.svg",
  17285. extra: 150 / 143,
  17286. bottom: 0.01
  17287. }
  17288. },
  17289. stomping: {
  17290. height: math.unit(7, "feet"),
  17291. weight: math.unit(150, "lb"),
  17292. name: "Stomping",
  17293. image: {
  17294. source: "./media/characters/ian-corvid/stomping.svg",
  17295. extra: 76 / 72
  17296. }
  17297. },
  17298. sitting: {
  17299. height: math.unit(7 / 1.8, "feet"),
  17300. weight: math.unit(150, "lb"),
  17301. name: "Sitting",
  17302. image: {
  17303. source: "./media/characters/ian-corvid/sitting.svg",
  17304. extra: 1400 / 1269,
  17305. bottom: 0.15
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Tiny Microw",
  17312. height: math.unit(1, "inch")
  17313. },
  17314. {
  17315. name: "Microw",
  17316. height: math.unit(6, "inches")
  17317. },
  17318. {
  17319. name: "Crow",
  17320. height: math.unit(7 + 1 / 12, "feet"),
  17321. default: true
  17322. },
  17323. {
  17324. name: "Macrow",
  17325. height: math.unit(176, "feet")
  17326. },
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17331. {
  17332. front: {
  17333. height: math.unit(5 + 7 / 12, "feet"),
  17334. weight: math.unit(147, "lb"),
  17335. name: "Front",
  17336. image: {
  17337. source: "./media/characters/natalie-kellon/front.svg",
  17338. extra: 1214 / 1141,
  17339. bottom: 0.02
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Micro",
  17346. height: math.unit(1 / 16, "inch")
  17347. },
  17348. {
  17349. name: "Tiny",
  17350. height: math.unit(4, "inches")
  17351. },
  17352. {
  17353. name: "Normal",
  17354. height: math.unit(5 + 7 / 12, "feet"),
  17355. default: true
  17356. },
  17357. {
  17358. name: "Amazon",
  17359. height: math.unit(12, "feet")
  17360. },
  17361. {
  17362. name: "Giantess",
  17363. height: math.unit(160, "meters")
  17364. },
  17365. {
  17366. name: "Titaness",
  17367. height: math.unit(800, "meters")
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(6, "feet"),
  17376. weight: math.unit(150, "lb"),
  17377. name: "Front",
  17378. image: {
  17379. source: "./media/characters/alluria/front.svg",
  17380. extra: 806 / 738,
  17381. bottom: 0.01
  17382. }
  17383. },
  17384. side: {
  17385. height: math.unit(6, "feet"),
  17386. weight: math.unit(150, "lb"),
  17387. name: "Side",
  17388. image: {
  17389. source: "./media/characters/alluria/side.svg",
  17390. extra: 800 / 750,
  17391. }
  17392. },
  17393. back: {
  17394. height: math.unit(6, "feet"),
  17395. weight: math.unit(150, "lb"),
  17396. name: "Back",
  17397. image: {
  17398. source: "./media/characters/alluria/back.svg",
  17399. extra: 806 / 738,
  17400. }
  17401. },
  17402. frontMaid: {
  17403. height: math.unit(6, "feet"),
  17404. weight: math.unit(150, "lb"),
  17405. name: "Front (Maid)",
  17406. image: {
  17407. source: "./media/characters/alluria/front-maid.svg",
  17408. extra: 806 / 738,
  17409. bottom: 0.01
  17410. }
  17411. },
  17412. sideMaid: {
  17413. height: math.unit(6, "feet"),
  17414. weight: math.unit(150, "lb"),
  17415. name: "Side (Maid)",
  17416. image: {
  17417. source: "./media/characters/alluria/side-maid.svg",
  17418. extra: 800 / 750,
  17419. bottom: 0.005
  17420. }
  17421. },
  17422. backMaid: {
  17423. height: math.unit(6, "feet"),
  17424. weight: math.unit(150, "lb"),
  17425. name: "Back (Maid)",
  17426. image: {
  17427. source: "./media/characters/alluria/back-maid.svg",
  17428. extra: 806 / 738,
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Micro",
  17435. height: math.unit(6, "inches"),
  17436. default: true
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(6, "feet"),
  17445. weight: math.unit(150, "lb"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/kyle/front.svg",
  17449. extra: 1069 / 962,
  17450. bottom: 77.228 / 1727.45
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Macro",
  17457. height: math.unit(150, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(6, "feet"),
  17467. weight: math.unit(300, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/duncan/front.svg",
  17471. extra: 1650 / 1482,
  17472. bottom: 0.05
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Macro",
  17479. height: math.unit(100, "feet"),
  17480. default: true
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(5 + 4 / 12, "feet"),
  17489. weight: math.unit(220, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/memory/front.svg",
  17493. extra: 3641 / 3545,
  17494. bottom: 0.03
  17495. }
  17496. },
  17497. back: {
  17498. height: math.unit(5 + 4 / 12, "feet"),
  17499. weight: math.unit(220, "lb"),
  17500. name: "Back",
  17501. image: {
  17502. source: "./media/characters/memory/back.svg",
  17503. extra: 3641 / 3545,
  17504. bottom: 0.025
  17505. }
  17506. },
  17507. frontSkirt: {
  17508. height: math.unit(5 + 4 / 12, "feet"),
  17509. weight: math.unit(220, "lb"),
  17510. name: "Front (Skirt)",
  17511. image: {
  17512. source: "./media/characters/memory/front-skirt.svg",
  17513. extra: 3641 / 3545,
  17514. bottom: 0.03
  17515. }
  17516. },
  17517. frontDress: {
  17518. height: math.unit(5 + 4 / 12, "feet"),
  17519. weight: math.unit(220, "lb"),
  17520. name: "Front (Dress)",
  17521. image: {
  17522. source: "./media/characters/memory/front-dress.svg",
  17523. extra: 3641 / 3545,
  17524. bottom: 0.03
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Micro",
  17531. height: math.unit(6, "inches"),
  17532. default: true
  17533. },
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(5 + 4 / 12, "feet")
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17542. {
  17543. front: {
  17544. height: math.unit(4 + 11 / 12, "feet"),
  17545. weight: math.unit(100, "lb"),
  17546. name: "Front",
  17547. image: {
  17548. source: "./media/characters/luno/front.svg",
  17549. extra: 1535 / 1487,
  17550. bottom: 0.03
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Micro",
  17557. height: math.unit(3, "inches")
  17558. },
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(4 + 11 / 12, "feet"),
  17562. default: true
  17563. },
  17564. {
  17565. name: "Macro",
  17566. height: math.unit(300, "feet")
  17567. },
  17568. {
  17569. name: "Megamacro",
  17570. height: math.unit(700, "miles")
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17576. {
  17577. front: {
  17578. height: math.unit(6 + 2 / 12, "feet"),
  17579. weight: math.unit(170, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/jamesy/front.svg",
  17583. extra: 440 / 382,
  17584. bottom: 0.005
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Micro",
  17591. height: math.unit(3, "inches")
  17592. },
  17593. {
  17594. name: "Normal",
  17595. height: math.unit(6 + 2 / 12, "feet"),
  17596. default: true
  17597. },
  17598. {
  17599. name: "Macro",
  17600. height: math.unit(300, "feet")
  17601. },
  17602. {
  17603. name: "Megamacro",
  17604. height: math.unit(700, "miles")
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17610. {
  17611. front: {
  17612. height: math.unit(6, "feet"),
  17613. weight: math.unit(160, "lb"),
  17614. name: "Front",
  17615. image: {
  17616. source: "./media/characters/mark/front.svg",
  17617. extra: 3300 / 3100,
  17618. bottom: 136.42 / 3440.47
  17619. }
  17620. },
  17621. },
  17622. [
  17623. {
  17624. name: "Macro",
  17625. height: math.unit(120, "meters")
  17626. },
  17627. {
  17628. name: "Bigger Macro",
  17629. height: math.unit(350, "meters")
  17630. },
  17631. {
  17632. name: "Megamacro",
  17633. height: math.unit(8, "km"),
  17634. default: true
  17635. },
  17636. {
  17637. name: "Continental",
  17638. height: math.unit(4550, "km")
  17639. },
  17640. {
  17641. name: "Planetary",
  17642. height: math.unit(65000, "km")
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17648. {
  17649. front: {
  17650. height: math.unit(6, "feet"),
  17651. weight: math.unit(400, "lb"),
  17652. name: "Front",
  17653. image: {
  17654. source: "./media/characters/mac/front.svg",
  17655. extra: 1048 / 987.7,
  17656. bottom: 60 / 1107.6,
  17657. }
  17658. },
  17659. },
  17660. [
  17661. {
  17662. name: "Macro",
  17663. height: math.unit(500, "feet"),
  17664. default: true
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17670. {
  17671. front: {
  17672. height: math.unit(5 + 2 / 12, "feet"),
  17673. weight: math.unit(190, "lb"),
  17674. name: "Front",
  17675. image: {
  17676. source: "./media/characters/bari/front.svg",
  17677. extra: 3156 / 2880,
  17678. bottom: 0.03
  17679. }
  17680. },
  17681. back: {
  17682. height: math.unit(5 + 2 / 12, "feet"),
  17683. weight: math.unit(190, "lb"),
  17684. name: "Back",
  17685. image: {
  17686. source: "./media/characters/bari/back.svg",
  17687. extra: 3260 / 2834,
  17688. bottom: 0.025
  17689. }
  17690. },
  17691. frontPlush: {
  17692. height: math.unit(5 + 2 / 12, "feet"),
  17693. weight: math.unit(190, "lb"),
  17694. name: "Front (Plush)",
  17695. image: {
  17696. source: "./media/characters/bari/front-plush.svg",
  17697. extra: 1112 / 1061,
  17698. bottom: 0.002
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Micro",
  17705. height: math.unit(3, "inches")
  17706. },
  17707. {
  17708. name: "Normal",
  17709. height: math.unit(5 + 2 / 12, "feet"),
  17710. default: true
  17711. },
  17712. {
  17713. name: "Macro",
  17714. height: math.unit(20, "feet")
  17715. },
  17716. ]
  17717. ))
  17718. characterMakers.push(() => makeCharacter(
  17719. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17720. {
  17721. front: {
  17722. height: math.unit(6 + 1 / 12, "feet"),
  17723. weight: math.unit(275, "lb"),
  17724. name: "Front",
  17725. image: {
  17726. source: "./media/characters/hunter-misha-raven/front.svg"
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Mortal",
  17733. height: math.unit(6 + 1 / 12, "feet")
  17734. },
  17735. {
  17736. name: "Divine",
  17737. height: math.unit(1.12134e34, "parsecs"),
  17738. default: true
  17739. },
  17740. ]
  17741. ))
  17742. characterMakers.push(() => makeCharacter(
  17743. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17744. {
  17745. front: {
  17746. height: math.unit(6 + 3 / 12, "feet"),
  17747. weight: math.unit(220, "lb"),
  17748. name: "Front",
  17749. image: {
  17750. source: "./media/characters/max-calore/front.svg",
  17751. extra: 1700 / 1648,
  17752. bottom: 0.01
  17753. }
  17754. },
  17755. back: {
  17756. height: math.unit(6 + 3 / 12, "feet"),
  17757. weight: math.unit(220, "lb"),
  17758. name: "Back",
  17759. image: {
  17760. source: "./media/characters/max-calore/back.svg",
  17761. extra: 1700 / 1648,
  17762. bottom: 0.01
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(6 + 3 / 12, "feet"),
  17770. default: true
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17776. {
  17777. side: {
  17778. height: math.unit(2 + 8 / 12, "feet"),
  17779. weight: math.unit(99, "lb"),
  17780. name: "Side",
  17781. image: {
  17782. source: "./media/characters/aspen/side.svg",
  17783. extra: 152 / 138,
  17784. bottom: 0.032
  17785. }
  17786. },
  17787. },
  17788. [
  17789. {
  17790. name: "Normal",
  17791. height: math.unit(2 + 8 / 12, "feet"),
  17792. default: true
  17793. },
  17794. ]
  17795. ))
  17796. characterMakers.push(() => makeCharacter(
  17797. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17798. {
  17799. side: {
  17800. height: math.unit(3 + 2 / 12, "feet"),
  17801. weight: math.unit(224, "lb"),
  17802. name: "Side",
  17803. image: {
  17804. source: "./media/characters/sheila-feral-wolf/side.svg",
  17805. extra: 179 / 166,
  17806. bottom: 0.03
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(3 + 2 / 12, "feet"),
  17814. default: true
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17820. {
  17821. side: {
  17822. height: math.unit(1 + 9 / 12, "feet"),
  17823. weight: math.unit(38, "lb"),
  17824. name: "Side",
  17825. image: {
  17826. source: "./media/characters/michelle/side.svg",
  17827. extra: 147 / 136.7,
  17828. bottom: 0.03
  17829. }
  17830. },
  17831. },
  17832. [
  17833. {
  17834. name: "Normal",
  17835. height: math.unit(1 + 9 / 12, "feet"),
  17836. default: true
  17837. },
  17838. ]
  17839. ))
  17840. characterMakers.push(() => makeCharacter(
  17841. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17842. {
  17843. front: {
  17844. height: math.unit(1.54, "feet"),
  17845. weight: math.unit(50, "lb"),
  17846. name: "Front",
  17847. image: {
  17848. source: "./media/characters/nino/front.svg"
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(1.54, "feet"),
  17856. default: true
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17862. {
  17863. front: {
  17864. height: math.unit(1.49, "feet"),
  17865. weight: math.unit(45, "lb"),
  17866. name: "Front",
  17867. image: {
  17868. source: "./media/characters/viola/front.svg"
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(1.49, "feet"),
  17876. default: true
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17882. {
  17883. front: {
  17884. height: math.unit(6 + 5 / 12, "feet"),
  17885. weight: math.unit(580, "lb"),
  17886. name: "Front",
  17887. image: {
  17888. source: "./media/characters/atlas/front.svg",
  17889. extra: 298.5 / 290,
  17890. bottom: 0.015
  17891. }
  17892. },
  17893. },
  17894. [
  17895. {
  17896. name: "Normal",
  17897. height: math.unit(6 + 5 / 12, "feet"),
  17898. default: true
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17904. {
  17905. side: {
  17906. height: math.unit(15.6, "inches"),
  17907. weight: math.unit(10, "lb"),
  17908. name: "Side",
  17909. image: {
  17910. source: "./media/characters/davy/side.svg",
  17911. extra: 200 / 170,
  17912. bottom: 0.01
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(15.6, "inches"),
  17920. default: true
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17926. {
  17927. side: {
  17928. height: math.unit(4 + 8 / 12, "feet"),
  17929. weight: math.unit(166, "lb"),
  17930. name: "Side",
  17931. image: {
  17932. source: "./media/characters/fiona/side.svg",
  17933. extra: 232 / 220,
  17934. bottom: 0.03
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(4 + 8 / 12, "feet"),
  17942. default: true
  17943. },
  17944. ]
  17945. ))
  17946. characterMakers.push(() => makeCharacter(
  17947. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17948. {
  17949. front: {
  17950. height: math.unit(26, "inches"),
  17951. weight: math.unit(35, "lb"),
  17952. name: "Front",
  17953. image: {
  17954. source: "./media/characters/lyla/front.svg",
  17955. bottom: 0.1
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Normal",
  17962. height: math.unit(3, "feet"),
  17963. default: true
  17964. },
  17965. ]
  17966. ))
  17967. characterMakers.push(() => makeCharacter(
  17968. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17969. {
  17970. side: {
  17971. height: math.unit(1.8, "feet"),
  17972. weight: math.unit(44, "lb"),
  17973. name: "Side",
  17974. image: {
  17975. source: "./media/characters/perseus/side.svg",
  17976. bottom: 0.21
  17977. }
  17978. },
  17979. },
  17980. [
  17981. {
  17982. name: "Normal",
  17983. height: math.unit(1.8, "feet"),
  17984. default: true
  17985. },
  17986. ]
  17987. ))
  17988. characterMakers.push(() => makeCharacter(
  17989. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17990. {
  17991. side: {
  17992. height: math.unit(4 + 2 / 12, "feet"),
  17993. weight: math.unit(20, "lb"),
  17994. name: "Side",
  17995. image: {
  17996. source: "./media/characters/remus/side.svg"
  17997. }
  17998. },
  17999. },
  18000. [
  18001. {
  18002. name: "Normal",
  18003. height: math.unit(4 + 2 / 12, "feet"),
  18004. default: true
  18005. },
  18006. ]
  18007. ))
  18008. characterMakers.push(() => makeCharacter(
  18009. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18010. {
  18011. front: {
  18012. height: math.unit(4 + 11 / 12, "feet"),
  18013. weight: math.unit(114, "lb"),
  18014. name: "Front",
  18015. image: {
  18016. source: "./media/characters/raf/front.svg",
  18017. extra: 1504/1339,
  18018. bottom: 26/1530
  18019. }
  18020. },
  18021. side: {
  18022. height: math.unit(4 + 11 / 12, "feet"),
  18023. weight: math.unit(114, "lb"),
  18024. name: "Side",
  18025. image: {
  18026. source: "./media/characters/raf/side.svg",
  18027. extra: 1466/1316,
  18028. bottom: 29/1495
  18029. }
  18030. },
  18031. paw: {
  18032. height: math.unit(1.45, "feet"),
  18033. name: "Paw",
  18034. image: {
  18035. source: "./media/characters/raf/paw.svg"
  18036. },
  18037. extraAttributes: {
  18038. "toeSize": {
  18039. name: "Toe Size",
  18040. power: 2,
  18041. type: "area",
  18042. base: math.unit(0.004, "m^2")
  18043. },
  18044. "padSize": {
  18045. name: "Pad Size",
  18046. power: 2,
  18047. type: "area",
  18048. base: math.unit(0.04, "m^2")
  18049. },
  18050. "footSize": {
  18051. name: "Foot Size",
  18052. power: 2,
  18053. type: "area",
  18054. base: math.unit(0.08, "m^2")
  18055. },
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Micro",
  18062. height: math.unit(2, "inches")
  18063. },
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(4 + 11 / 12, "feet"),
  18067. default: true
  18068. },
  18069. {
  18070. name: "Macro",
  18071. height: math.unit(70, "feet")
  18072. },
  18073. ]
  18074. ))
  18075. characterMakers.push(() => makeCharacter(
  18076. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18077. {
  18078. front: {
  18079. height: math.unit(1.5, "meters"),
  18080. weight: math.unit(68, "kg"),
  18081. name: "Front",
  18082. image: {
  18083. source: "./media/characters/liam-einarr/front.svg",
  18084. extra: 2822 / 2666
  18085. }
  18086. },
  18087. back: {
  18088. height: math.unit(1.5, "meters"),
  18089. weight: math.unit(68, "kg"),
  18090. name: "Back",
  18091. image: {
  18092. source: "./media/characters/liam-einarr/back.svg",
  18093. extra: 2822 / 2666,
  18094. bottom: 0.015
  18095. }
  18096. },
  18097. },
  18098. [
  18099. {
  18100. name: "Normal",
  18101. height: math.unit(1.5, "meters"),
  18102. default: true
  18103. },
  18104. {
  18105. name: "Macro",
  18106. height: math.unit(150, "meters")
  18107. },
  18108. {
  18109. name: "Megamacro",
  18110. height: math.unit(35, "km")
  18111. },
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18116. {
  18117. front: {
  18118. height: math.unit(6, "feet"),
  18119. weight: math.unit(75, "kg"),
  18120. name: "Front",
  18121. image: {
  18122. source: "./media/characters/linda/front.svg",
  18123. extra: 930 / 874,
  18124. bottom: 0.004
  18125. }
  18126. },
  18127. },
  18128. [
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(6, "feet"),
  18132. default: true
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(6 + 8 / 12, "feet"),
  18141. weight: math.unit(220, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/caylex/front.svg",
  18145. extra: 821 / 772,
  18146. bottom: 0.07
  18147. }
  18148. },
  18149. back: {
  18150. height: math.unit(6 + 8 / 12, "feet"),
  18151. weight: math.unit(220, "lb"),
  18152. name: "Back",
  18153. image: {
  18154. source: "./media/characters/caylex/back.svg",
  18155. extra: 821 / 772,
  18156. bottom: 0.022
  18157. }
  18158. },
  18159. hand: {
  18160. height: math.unit(1.25, "feet"),
  18161. name: "Hand",
  18162. image: {
  18163. source: "./media/characters/caylex/hand.svg"
  18164. }
  18165. },
  18166. foot: {
  18167. height: math.unit(1.6, "feet"),
  18168. name: "Foot",
  18169. image: {
  18170. source: "./media/characters/caylex/foot.svg"
  18171. }
  18172. },
  18173. armored: {
  18174. height: math.unit(6 + 8 / 12, "feet"),
  18175. weight: math.unit(250, "lb"),
  18176. name: "Armored",
  18177. image: {
  18178. source: "./media/characters/caylex/armored.svg",
  18179. extra: 1420 / 1310,
  18180. bottom: 0.045
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(6 + 8 / 12, "feet"),
  18188. default: true
  18189. },
  18190. {
  18191. name: "Normal+",
  18192. height: math.unit(12, "feet")
  18193. },
  18194. ]
  18195. ))
  18196. characterMakers.push(() => makeCharacter(
  18197. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18198. {
  18199. front: {
  18200. height: math.unit(7 + 6 / 12, "feet"),
  18201. weight: math.unit(288, "lb"),
  18202. name: "Front",
  18203. image: {
  18204. source: "./media/characters/alana/front.svg",
  18205. extra: 679 / 653,
  18206. bottom: 22.5 / 701
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Normal",
  18213. height: math.unit(7 + 6 / 12, "feet")
  18214. },
  18215. {
  18216. name: "Large",
  18217. height: math.unit(50, "feet")
  18218. },
  18219. {
  18220. name: "Macro",
  18221. height: math.unit(100, "feet"),
  18222. default: true
  18223. },
  18224. {
  18225. name: "Macro+",
  18226. height: math.unit(200, "feet")
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(6 + 1 / 12, "feet"),
  18235. weight: math.unit(210, "lb"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/hasani/front.svg",
  18239. extra: 244 / 232,
  18240. bottom: 0.01
  18241. }
  18242. },
  18243. back: {
  18244. height: math.unit(6 + 1 / 12, "feet"),
  18245. weight: math.unit(210, "lb"),
  18246. name: "Back",
  18247. image: {
  18248. source: "./media/characters/hasani/back.svg",
  18249. extra: 244 / 232,
  18250. bottom: 0.01
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Normal",
  18257. height: math.unit(6 + 1 / 12, "feet")
  18258. },
  18259. {
  18260. name: "Macro",
  18261. height: math.unit(175, "feet"),
  18262. default: true
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18268. {
  18269. front: {
  18270. height: math.unit(1.82, "meters"),
  18271. weight: math.unit(140, "lb"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/nita/front.svg",
  18275. extra: 2473 / 2363,
  18276. bottom: 0.01
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(1.82, "m")
  18284. },
  18285. {
  18286. name: "Macro",
  18287. height: math.unit(300, "m")
  18288. },
  18289. {
  18290. name: "Mistake Canon",
  18291. height: math.unit(0.5, "miles"),
  18292. default: true
  18293. },
  18294. {
  18295. name: "Big Mistake",
  18296. height: math.unit(13, "miles")
  18297. },
  18298. {
  18299. name: "Playing God",
  18300. height: math.unit(2450, "miles")
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(4, "feet"),
  18309. weight: math.unit(120, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/shiriko/front.svg",
  18313. extra: 970/934,
  18314. bottom: 5/975
  18315. }
  18316. },
  18317. },
  18318. [
  18319. {
  18320. name: "Normal",
  18321. height: math.unit(4, "feet"),
  18322. default: true
  18323. },
  18324. ]
  18325. ))
  18326. characterMakers.push(() => makeCharacter(
  18327. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18328. {
  18329. front: {
  18330. height: math.unit(6, "feet"),
  18331. name: "front",
  18332. image: {
  18333. source: "./media/characters/deja/front.svg",
  18334. extra: 926 / 840,
  18335. bottom: 0.07
  18336. }
  18337. },
  18338. },
  18339. [
  18340. {
  18341. name: "Planck Length",
  18342. height: math.unit(1.6e-35, "meters")
  18343. },
  18344. {
  18345. name: "Normal",
  18346. height: math.unit(30.48, "meters"),
  18347. default: true
  18348. },
  18349. {
  18350. name: "Universal",
  18351. height: math.unit(8.8e26, "meters")
  18352. },
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18357. {
  18358. side: {
  18359. height: math.unit(8, "feet"),
  18360. weight: math.unit(6300, "lb"),
  18361. name: "Side",
  18362. image: {
  18363. source: "./media/characters/anima/side.svg",
  18364. bottom: 0.035
  18365. }
  18366. },
  18367. },
  18368. [
  18369. {
  18370. name: "Normal",
  18371. height: math.unit(8, "feet"),
  18372. default: true
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18378. {
  18379. front: {
  18380. height: math.unit(8, "feet"),
  18381. weight: math.unit(350, "lb"),
  18382. name: "Front",
  18383. image: {
  18384. source: "./media/characters/bianca/front.svg",
  18385. extra: 234 / 225,
  18386. bottom: 0.03
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(8, "feet"),
  18394. default: true
  18395. },
  18396. ]
  18397. ))
  18398. characterMakers.push(() => makeCharacter(
  18399. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18400. {
  18401. front: {
  18402. height: math.unit(11 + 5/12, "feet"),
  18403. weight: math.unit(1200, "lb"),
  18404. name: "Front",
  18405. image: {
  18406. source: "./media/characters/adinia/front.svg",
  18407. extra: 1767/1641,
  18408. bottom: 44/1811
  18409. },
  18410. extraAttributes: {
  18411. "energyIntake": {
  18412. name: "Energy Intake",
  18413. power: 3,
  18414. type: "energy",
  18415. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18416. },
  18417. }
  18418. },
  18419. back: {
  18420. height: math.unit(11 + 5/12, "feet"),
  18421. weight: math.unit(1200, "lb"),
  18422. name: "Back",
  18423. image: {
  18424. source: "./media/characters/adinia/back.svg",
  18425. extra: 1834/1684,
  18426. bottom: 14/1848
  18427. },
  18428. extraAttributes: {
  18429. "energyIntake": {
  18430. name: "Energy Intake",
  18431. power: 3,
  18432. type: "energy",
  18433. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18434. },
  18435. }
  18436. },
  18437. maw: {
  18438. height: math.unit(3.79, "feet"),
  18439. name: "Maw",
  18440. image: {
  18441. source: "./media/characters/adinia/maw.svg"
  18442. }
  18443. },
  18444. rump: {
  18445. height: math.unit(4.6, "feet"),
  18446. name: "Rump",
  18447. image: {
  18448. source: "./media/characters/adinia/rump.svg"
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(11 + 5 / 12, "feet"),
  18456. default: true
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18462. {
  18463. front: {
  18464. height: math.unit(3, "meters"),
  18465. weight: math.unit(200, "kg"),
  18466. name: "Front",
  18467. image: {
  18468. source: "./media/characters/lykasa/front.svg",
  18469. extra: 1076 / 976,
  18470. bottom: 0.06
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Normal",
  18477. height: math.unit(3, "meters")
  18478. },
  18479. {
  18480. name: "Kaiju",
  18481. height: math.unit(120, "meters"),
  18482. default: true
  18483. },
  18484. {
  18485. name: "Mega Kaiju",
  18486. height: math.unit(240, "km")
  18487. },
  18488. {
  18489. name: "Giga Kaiju",
  18490. height: math.unit(400, "megameters")
  18491. },
  18492. {
  18493. name: "Tera Kaiju",
  18494. height: math.unit(800, "gigameters")
  18495. },
  18496. {
  18497. name: "Kaiju Dragon Goddess",
  18498. height: math.unit(26, "zettaparsecs")
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18504. {
  18505. side: {
  18506. height: math.unit(283 / 124 * 6, "feet"),
  18507. weight: math.unit(35000, "lb"),
  18508. name: "Side",
  18509. image: {
  18510. source: "./media/characters/malfaren/side.svg",
  18511. extra: 1310/529,
  18512. bottom: 24/1334
  18513. }
  18514. },
  18515. front: {
  18516. height: math.unit(22.36, "feet"),
  18517. weight: math.unit(35000, "lb"),
  18518. name: "Front",
  18519. image: {
  18520. source: "./media/characters/malfaren/front.svg",
  18521. extra: 1237/1115,
  18522. bottom: 32/1269
  18523. }
  18524. },
  18525. maw: {
  18526. height: math.unit(6.9, "feet"),
  18527. name: "Maw",
  18528. image: {
  18529. source: "./media/characters/malfaren/maw.svg"
  18530. }
  18531. },
  18532. dick: {
  18533. height: math.unit(6.19, "feet"),
  18534. name: "Dick",
  18535. image: {
  18536. source: "./media/characters/malfaren/dick.svg"
  18537. }
  18538. },
  18539. eye: {
  18540. height: math.unit(0.69, "feet"),
  18541. name: "Eye",
  18542. image: {
  18543. source: "./media/characters/malfaren/eye.svg"
  18544. }
  18545. },
  18546. },
  18547. [
  18548. {
  18549. name: "Big",
  18550. height: math.unit(283 / 162 * 6, "feet"),
  18551. },
  18552. {
  18553. name: "Bigger",
  18554. height: math.unit(283 / 124 * 6, "feet")
  18555. },
  18556. {
  18557. name: "Massive",
  18558. height: math.unit(283 / 92 * 6, "feet"),
  18559. default: true
  18560. },
  18561. {
  18562. name: "👀💦",
  18563. height: math.unit(283 / 73 * 6, "feet"),
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18569. {
  18570. front: {
  18571. height: math.unit(1.7, "m"),
  18572. weight: math.unit(70, "kg"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/kernel/front.svg",
  18576. extra: 222 / 210,
  18577. bottom: 0.007
  18578. }
  18579. },
  18580. },
  18581. [
  18582. {
  18583. name: "Nano",
  18584. height: math.unit(17, "micrometers")
  18585. },
  18586. {
  18587. name: "Micro",
  18588. height: math.unit(1.7, "mm")
  18589. },
  18590. {
  18591. name: "Small",
  18592. height: math.unit(1.7, "cm")
  18593. },
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(1.7, "m"),
  18597. default: true
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18603. {
  18604. front: {
  18605. height: math.unit(1.75, "meters"),
  18606. weight: math.unit(65, "kg"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/jayne-folest/front.svg",
  18610. extra: 2115 / 2007,
  18611. bottom: 0.02
  18612. }
  18613. },
  18614. back: {
  18615. height: math.unit(1.75, "meters"),
  18616. weight: math.unit(65, "kg"),
  18617. name: "Back",
  18618. image: {
  18619. source: "./media/characters/jayne-folest/back.svg",
  18620. extra: 2115 / 2007,
  18621. bottom: 0.005
  18622. }
  18623. },
  18624. frontClothed: {
  18625. height: math.unit(1.75, "meters"),
  18626. weight: math.unit(65, "kg"),
  18627. name: "Front (Clothed)",
  18628. image: {
  18629. source: "./media/characters/jayne-folest/front-clothed.svg",
  18630. extra: 2115 / 2007,
  18631. bottom: 0.035
  18632. }
  18633. },
  18634. hand: {
  18635. height: math.unit(1 / 1.260, "feet"),
  18636. name: "Hand",
  18637. image: {
  18638. source: "./media/characters/jayne-folest/hand.svg"
  18639. }
  18640. },
  18641. foot: {
  18642. height: math.unit(1 / 0.918, "feet"),
  18643. name: "Foot",
  18644. image: {
  18645. source: "./media/characters/jayne-folest/foot.svg"
  18646. }
  18647. },
  18648. },
  18649. [
  18650. {
  18651. name: "Micro",
  18652. height: math.unit(4, "cm")
  18653. },
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(1.75, "meters")
  18657. },
  18658. {
  18659. name: "Macro",
  18660. height: math.unit(47.5, "meters"),
  18661. default: true
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18667. {
  18668. front: {
  18669. height: math.unit(180, "cm"),
  18670. weight: math.unit(70, "kg"),
  18671. name: "Front",
  18672. image: {
  18673. source: "./media/characters/algier/front.svg",
  18674. extra: 596 / 572,
  18675. bottom: 0.04
  18676. }
  18677. },
  18678. back: {
  18679. height: math.unit(180, "cm"),
  18680. weight: math.unit(70, "kg"),
  18681. name: "Back",
  18682. image: {
  18683. source: "./media/characters/algier/back.svg",
  18684. extra: 596 / 572,
  18685. bottom: 0.025
  18686. }
  18687. },
  18688. frontdressed: {
  18689. height: math.unit(180, "cm"),
  18690. weight: math.unit(150, "kg"),
  18691. name: "Front-dressed",
  18692. image: {
  18693. source: "./media/characters/algier/front-dressed.svg",
  18694. extra: 596 / 572,
  18695. bottom: 0.038
  18696. }
  18697. },
  18698. },
  18699. [
  18700. {
  18701. name: "Micro",
  18702. height: math.unit(5, "cm")
  18703. },
  18704. {
  18705. name: "Normal",
  18706. height: math.unit(180, "cm"),
  18707. default: true
  18708. },
  18709. {
  18710. name: "Macro",
  18711. height: math.unit(64, "m")
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18717. {
  18718. upright: {
  18719. height: math.unit(7, "feet"),
  18720. weight: math.unit(300, "lb"),
  18721. name: "Upright",
  18722. image: {
  18723. source: "./media/characters/pretzel/upright.svg",
  18724. extra: 534 / 522,
  18725. bottom: 0.065
  18726. }
  18727. },
  18728. sprawling: {
  18729. height: math.unit(3.75, "feet"),
  18730. weight: math.unit(300, "lb"),
  18731. name: "Sprawling",
  18732. image: {
  18733. source: "./media/characters/pretzel/sprawling.svg",
  18734. extra: 314 / 281,
  18735. bottom: 0.1
  18736. }
  18737. },
  18738. tongue: {
  18739. height: math.unit(2, "feet"),
  18740. name: "Tongue",
  18741. image: {
  18742. source: "./media/characters/pretzel/tongue.svg"
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Normal",
  18749. height: math.unit(7, "feet"),
  18750. default: true
  18751. },
  18752. {
  18753. name: "Oversized",
  18754. height: math.unit(15, "feet")
  18755. },
  18756. {
  18757. name: "Huge",
  18758. height: math.unit(30, "feet")
  18759. },
  18760. {
  18761. name: "Macro",
  18762. height: math.unit(250, "feet")
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18768. {
  18769. sideFront: {
  18770. height: math.unit(5 + 2 / 12, "feet"),
  18771. weight: math.unit(120, "lb"),
  18772. name: "Front Side",
  18773. image: {
  18774. source: "./media/characters/roxi/side-front.svg",
  18775. extra: 2924 / 2717,
  18776. bottom: 0.08
  18777. }
  18778. },
  18779. sideBack: {
  18780. height: math.unit(5 + 2 / 12, "feet"),
  18781. weight: math.unit(120, "lb"),
  18782. name: "Back Side",
  18783. image: {
  18784. source: "./media/characters/roxi/side-back.svg",
  18785. extra: 2904 / 2693,
  18786. bottom: 0.06
  18787. }
  18788. },
  18789. front: {
  18790. height: math.unit(5 + 2 / 12, "feet"),
  18791. weight: math.unit(120, "lb"),
  18792. name: "Front",
  18793. image: {
  18794. source: "./media/characters/roxi/front.svg",
  18795. extra: 2028 / 1907,
  18796. bottom: 0.01
  18797. }
  18798. },
  18799. frontAlt: {
  18800. height: math.unit(5 + 2 / 12, "feet"),
  18801. weight: math.unit(120, "lb"),
  18802. name: "Front (Alt)",
  18803. image: {
  18804. source: "./media/characters/roxi/front-alt.svg",
  18805. extra: 1828 / 1798,
  18806. bottom: 0.01
  18807. }
  18808. },
  18809. sitting: {
  18810. height: math.unit(2.8, "feet"),
  18811. weight: math.unit(120, "lb"),
  18812. name: "Sitting",
  18813. image: {
  18814. source: "./media/characters/roxi/sitting.svg",
  18815. extra: 2660 / 2462,
  18816. bottom: 0.1
  18817. }
  18818. },
  18819. },
  18820. [
  18821. {
  18822. name: "Normal",
  18823. height: math.unit(5 + 2 / 12, "feet"),
  18824. default: true
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18830. {
  18831. side: {
  18832. height: math.unit(55, "feet"),
  18833. weight: math.unit(153, "tons"),
  18834. name: "Side",
  18835. image: {
  18836. source: "./media/characters/shadow/side.svg",
  18837. extra: 701 / 628,
  18838. bottom: 0.02
  18839. }
  18840. },
  18841. flying: {
  18842. height: math.unit(145, "feet"),
  18843. weight: math.unit(153, "tons"),
  18844. name: "Flying",
  18845. image: {
  18846. source: "./media/characters/shadow/flying.svg"
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Normal",
  18853. height: math.unit(55, "feet"),
  18854. default: true
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(6, "feet"),
  18863. weight: math.unit(200, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/marcie/front.svg",
  18867. extra: 960 / 876,
  18868. bottom: 58 / 1017.87
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Macro",
  18875. height: math.unit(1, "mile"),
  18876. default: true
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(7, "feet"),
  18885. weight: math.unit(200, "lb"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/kachina/front.svg",
  18889. extra: 1290.68 / 1119,
  18890. bottom: 36.5 / 1327.18
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Normal",
  18897. height: math.unit(7, "feet"),
  18898. default: true
  18899. },
  18900. ]
  18901. ))
  18902. characterMakers.push(() => makeCharacter(
  18903. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18904. {
  18905. looking: {
  18906. height: math.unit(2, "meters"),
  18907. weight: math.unit(300, "kg"),
  18908. name: "Looking",
  18909. image: {
  18910. source: "./media/characters/kash/looking.svg",
  18911. extra: 474 / 344,
  18912. bottom: 0.03
  18913. }
  18914. },
  18915. side: {
  18916. height: math.unit(2, "meters"),
  18917. weight: math.unit(300, "kg"),
  18918. name: "Side",
  18919. image: {
  18920. source: "./media/characters/kash/side.svg",
  18921. extra: 302 / 251,
  18922. bottom: 0.03
  18923. }
  18924. },
  18925. front: {
  18926. height: math.unit(2, "meters"),
  18927. weight: math.unit(300, "kg"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/kash/front.svg",
  18931. extra: 495 / 360,
  18932. bottom: 0.015
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(2, "meters"),
  18940. default: true
  18941. },
  18942. {
  18943. name: "Big",
  18944. height: math.unit(3, "meters")
  18945. },
  18946. {
  18947. name: "Large",
  18948. height: math.unit(5, "meters")
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18954. {
  18955. feeding: {
  18956. height: math.unit(6.7, "feet"),
  18957. weight: math.unit(350, "lb"),
  18958. name: "Feeding",
  18959. image: {
  18960. source: "./media/characters/lalim/feeding.svg",
  18961. }
  18962. },
  18963. },
  18964. [
  18965. {
  18966. name: "Normal",
  18967. height: math.unit(6.7, "feet"),
  18968. default: true
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(9.5, "feet"),
  18977. weight: math.unit(600, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/de'vout/front.svg",
  18981. extra: 1443 / 1328,
  18982. bottom: 0.025
  18983. }
  18984. },
  18985. back: {
  18986. height: math.unit(9.5, "feet"),
  18987. weight: math.unit(600, "lb"),
  18988. name: "Back",
  18989. image: {
  18990. source: "./media/characters/de'vout/back.svg",
  18991. extra: 1443 / 1328
  18992. }
  18993. },
  18994. frontDressed: {
  18995. height: math.unit(9.5, "feet"),
  18996. weight: math.unit(600, "lb"),
  18997. name: "Front (Dressed",
  18998. image: {
  18999. source: "./media/characters/de'vout/front-dressed.svg",
  19000. extra: 1443 / 1328,
  19001. bottom: 0.025
  19002. }
  19003. },
  19004. backDressed: {
  19005. height: math.unit(9.5, "feet"),
  19006. weight: math.unit(600, "lb"),
  19007. name: "Back (Dressed",
  19008. image: {
  19009. source: "./media/characters/de'vout/back-dressed.svg",
  19010. extra: 1443 / 1328
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(9.5, "feet"),
  19018. default: true
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19024. {
  19025. front: {
  19026. height: math.unit(8, "feet"),
  19027. weight: math.unit(225, "lb"),
  19028. name: "Front",
  19029. image: {
  19030. source: "./media/characters/talana/front.svg",
  19031. extra: 1410 / 1300,
  19032. bottom: 0.015
  19033. }
  19034. },
  19035. frontDressed: {
  19036. height: math.unit(8, "feet"),
  19037. weight: math.unit(225, "lb"),
  19038. name: "Front (Dressed",
  19039. image: {
  19040. source: "./media/characters/talana/front-dressed.svg",
  19041. extra: 1410 / 1300,
  19042. bottom: 0.015
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(8, "feet"),
  19050. default: true
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19056. {
  19057. side: {
  19058. height: math.unit(7.2, "feet"),
  19059. weight: math.unit(150, "lb"),
  19060. name: "Side",
  19061. image: {
  19062. source: "./media/characters/xeauvok/side.svg",
  19063. extra: 1975 / 1523,
  19064. bottom: 0.07
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(7.2, "feet"),
  19072. default: true
  19073. },
  19074. ]
  19075. ))
  19076. characterMakers.push(() => makeCharacter(
  19077. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19078. {
  19079. side: {
  19080. height: math.unit(4, "meters"),
  19081. weight: math.unit(2200, "kg"),
  19082. name: "Side",
  19083. image: {
  19084. source: "./media/characters/zara/side.svg",
  19085. extra: 765/744,
  19086. bottom: 156/921
  19087. }
  19088. },
  19089. },
  19090. [
  19091. {
  19092. name: "Normal",
  19093. height: math.unit(4, "meters"),
  19094. default: true
  19095. },
  19096. ]
  19097. ))
  19098. characterMakers.push(() => makeCharacter(
  19099. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19100. {
  19101. side: {
  19102. height: math.unit(6, "feet"),
  19103. weight: math.unit(150, "lb"),
  19104. name: "Side",
  19105. image: {
  19106. source: "./media/characters/richard-dragon/side.svg",
  19107. extra: 845 / 340,
  19108. bottom: 0.017
  19109. }
  19110. },
  19111. maw: {
  19112. height: math.unit(2.97, "feet"),
  19113. name: "Maw",
  19114. image: {
  19115. source: "./media/characters/richard-dragon/maw.svg"
  19116. }
  19117. },
  19118. },
  19119. [
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19124. {
  19125. front: {
  19126. height: math.unit(4, "feet"),
  19127. weight: math.unit(100, "lb"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/richard-smeargle/front.svg",
  19131. extra: 2952 / 2820,
  19132. bottom: 0.028
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(4, "feet"),
  19140. default: true
  19141. },
  19142. {
  19143. name: "Dynamax",
  19144. height: math.unit(20, "meters")
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19150. {
  19151. front: {
  19152. height: math.unit(6, "feet"),
  19153. weight: math.unit(110, "lb"),
  19154. name: "Front",
  19155. image: {
  19156. source: "./media/characters/klay/front.svg",
  19157. extra: 962 / 883,
  19158. bottom: 0.04
  19159. }
  19160. },
  19161. back: {
  19162. height: math.unit(6, "feet"),
  19163. weight: math.unit(110, "lb"),
  19164. name: "Back",
  19165. image: {
  19166. source: "./media/characters/klay/back.svg",
  19167. extra: 962 / 883
  19168. }
  19169. },
  19170. beans: {
  19171. height: math.unit(1.15, "feet"),
  19172. name: "Beans",
  19173. image: {
  19174. source: "./media/characters/klay/beans.svg"
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Micro",
  19181. height: math.unit(6, "inches")
  19182. },
  19183. {
  19184. name: "Mini",
  19185. height: math.unit(3, "feet")
  19186. },
  19187. {
  19188. name: "Normal",
  19189. height: math.unit(6, "feet"),
  19190. default: true
  19191. },
  19192. {
  19193. name: "Big",
  19194. height: math.unit(25, "feet")
  19195. },
  19196. {
  19197. name: "Macro",
  19198. height: math.unit(100, "feet")
  19199. },
  19200. {
  19201. name: "Megamacro",
  19202. height: math.unit(400, "feet")
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19208. {
  19209. front: {
  19210. height: math.unit(6, "feet"),
  19211. weight: math.unit(160, "lb"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/marcus/front.svg",
  19215. extra: 734 / 676,
  19216. bottom: 0.03
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Little",
  19223. height: math.unit(6, "feet")
  19224. },
  19225. {
  19226. name: "Normal",
  19227. height: math.unit(110, "feet"),
  19228. default: true
  19229. },
  19230. {
  19231. name: "Macro",
  19232. height: math.unit(250, "feet")
  19233. },
  19234. {
  19235. name: "Megamacro",
  19236. height: math.unit(1000, "feet")
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(7, "feet"),
  19245. weight: math.unit(275, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/claude-delroute/front.svg",
  19249. extra: 902/827,
  19250. bottom: 26/928
  19251. }
  19252. },
  19253. side: {
  19254. height: math.unit(7, "feet"),
  19255. weight: math.unit(275, "lb"),
  19256. name: "Side",
  19257. image: {
  19258. source: "./media/characters/claude-delroute/side.svg",
  19259. extra: 908/853,
  19260. bottom: 16/924
  19261. }
  19262. },
  19263. back: {
  19264. height: math.unit(7, "feet"),
  19265. weight: math.unit(275, "lb"),
  19266. name: "Back",
  19267. image: {
  19268. source: "./media/characters/claude-delroute/back.svg",
  19269. extra: 911/829,
  19270. bottom: 18/929
  19271. }
  19272. },
  19273. maw: {
  19274. height: math.unit(0.6407, "meters"),
  19275. name: "Maw",
  19276. image: {
  19277. source: "./media/characters/claude-delroute/maw.svg"
  19278. }
  19279. },
  19280. },
  19281. [
  19282. {
  19283. name: "Normal",
  19284. height: math.unit(7, "feet"),
  19285. default: true
  19286. },
  19287. {
  19288. name: "Lorge",
  19289. height: math.unit(20, "feet")
  19290. },
  19291. ]
  19292. ))
  19293. characterMakers.push(() => makeCharacter(
  19294. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19295. {
  19296. front: {
  19297. height: math.unit(8 + 4 / 12, "feet"),
  19298. weight: math.unit(600, "lb"),
  19299. name: "Front",
  19300. image: {
  19301. source: "./media/characters/dragonien/front.svg",
  19302. extra: 100 / 94,
  19303. bottom: 3.3 / 103.3445
  19304. }
  19305. },
  19306. back: {
  19307. height: math.unit(8 + 4 / 12, "feet"),
  19308. weight: math.unit(600, "lb"),
  19309. name: "Back",
  19310. image: {
  19311. source: "./media/characters/dragonien/back.svg",
  19312. extra: 776 / 746,
  19313. bottom: 6.4 / 782.0616
  19314. }
  19315. },
  19316. foot: {
  19317. height: math.unit(1.54, "feet"),
  19318. name: "Foot",
  19319. image: {
  19320. source: "./media/characters/dragonien/foot.svg",
  19321. }
  19322. },
  19323. },
  19324. [
  19325. {
  19326. name: "Normal",
  19327. height: math.unit(8 + 4 / 12, "feet"),
  19328. default: true
  19329. },
  19330. {
  19331. name: "Macro",
  19332. height: math.unit(200, "feet")
  19333. },
  19334. {
  19335. name: "Megamacro",
  19336. height: math.unit(1, "mile")
  19337. },
  19338. {
  19339. name: "Gigamacro",
  19340. height: math.unit(1000, "miles")
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19346. {
  19347. front: {
  19348. height: math.unit(5 + 2 / 12, "feet"),
  19349. weight: math.unit(110, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/desta/front.svg",
  19353. extra: 767 / 726,
  19354. bottom: 11.7 / 779
  19355. }
  19356. },
  19357. back: {
  19358. height: math.unit(5 + 2 / 12, "feet"),
  19359. weight: math.unit(110, "lb"),
  19360. name: "Back",
  19361. image: {
  19362. source: "./media/characters/desta/back.svg",
  19363. extra: 777 / 728,
  19364. bottom: 6 / 784
  19365. }
  19366. },
  19367. frontAlt: {
  19368. height: math.unit(5 + 2 / 12, "feet"),
  19369. weight: math.unit(110, "lb"),
  19370. name: "Front",
  19371. image: {
  19372. source: "./media/characters/desta/front-alt.svg",
  19373. extra: 1482 / 1417
  19374. }
  19375. },
  19376. side: {
  19377. height: math.unit(5 + 2 / 12, "feet"),
  19378. weight: math.unit(110, "lb"),
  19379. name: "Side",
  19380. image: {
  19381. source: "./media/characters/desta/side.svg",
  19382. extra: 2579 / 2491,
  19383. bottom: 0.053
  19384. }
  19385. },
  19386. },
  19387. [
  19388. {
  19389. name: "Micro",
  19390. height: math.unit(6, "inches")
  19391. },
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(5 + 2 / 12, "feet"),
  19395. default: true
  19396. },
  19397. {
  19398. name: "Macro",
  19399. height: math.unit(62, "feet")
  19400. },
  19401. {
  19402. name: "Megamacro",
  19403. height: math.unit(1800, "feet")
  19404. },
  19405. ]
  19406. ))
  19407. characterMakers.push(() => makeCharacter(
  19408. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19409. {
  19410. front: {
  19411. height: math.unit(10, "feet"),
  19412. weight: math.unit(700, "lb"),
  19413. name: "Front",
  19414. image: {
  19415. source: "./media/characters/storm-alystar/front.svg",
  19416. extra: 2112 / 1898,
  19417. bottom: 0.034
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Micro",
  19424. height: math.unit(3.5, "inches")
  19425. },
  19426. {
  19427. name: "Normal",
  19428. height: math.unit(10, "feet"),
  19429. default: true
  19430. },
  19431. {
  19432. name: "Macro",
  19433. height: math.unit(400, "feet")
  19434. },
  19435. {
  19436. name: "Deific",
  19437. height: math.unit(60, "miles")
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19443. {
  19444. front: {
  19445. height: math.unit(2.35, "meters"),
  19446. weight: math.unit(119, "kg"),
  19447. name: "Front",
  19448. image: {
  19449. source: "./media/characters/ilia/front.svg",
  19450. extra: 1285 / 1255,
  19451. bottom: 0.06
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(2.35, "meters")
  19459. },
  19460. {
  19461. name: "Macro",
  19462. height: math.unit(140, "meters"),
  19463. default: true
  19464. },
  19465. {
  19466. name: "Megamacro",
  19467. height: math.unit(100, "miles")
  19468. },
  19469. ]
  19470. ))
  19471. characterMakers.push(() => makeCharacter(
  19472. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19473. {
  19474. front: {
  19475. height: math.unit(6 + 5 / 12, "feet"),
  19476. weight: math.unit(190, "lb"),
  19477. name: "Front",
  19478. image: {
  19479. source: "./media/characters/kingdead/front.svg",
  19480. extra: 1228 / 1177
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Micro",
  19487. height: math.unit(7, "inches")
  19488. },
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(6 + 5 / 12, "feet")
  19492. },
  19493. {
  19494. name: "Macro",
  19495. height: math.unit(150, "feet"),
  19496. default: true
  19497. },
  19498. {
  19499. name: "Megamacro",
  19500. height: math.unit(200, "miles")
  19501. },
  19502. ]
  19503. ))
  19504. characterMakers.push(() => makeCharacter(
  19505. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19506. {
  19507. front: {
  19508. height: math.unit(8, "feet"),
  19509. weight: math.unit(600, "lb"),
  19510. name: "Front",
  19511. image: {
  19512. source: "./media/characters/kyrehx/front.svg",
  19513. extra: 1195 / 1095,
  19514. bottom: 0.034
  19515. }
  19516. },
  19517. },
  19518. [
  19519. {
  19520. name: "Micro",
  19521. height: math.unit(2, "inches")
  19522. },
  19523. {
  19524. name: "Normal",
  19525. height: math.unit(8, "feet"),
  19526. default: true
  19527. },
  19528. {
  19529. name: "Macro",
  19530. height: math.unit(255, "feet")
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19536. {
  19537. front: {
  19538. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19539. weight: math.unit(184, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/xang/front.svg",
  19543. extra: 845 / 755
  19544. }
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19551. default: true
  19552. },
  19553. {
  19554. name: "Macro",
  19555. height: math.unit(0.935 * 146, "feet")
  19556. },
  19557. {
  19558. name: "Megamacro",
  19559. height: math.unit(0.935 * 3, "miles")
  19560. },
  19561. ]
  19562. ))
  19563. characterMakers.push(() => makeCharacter(
  19564. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19565. {
  19566. frontDressed: {
  19567. height: math.unit(5 + 7 / 12, "feet"),
  19568. weight: math.unit(140, "lb"),
  19569. name: "Front (Dressed)",
  19570. image: {
  19571. source: "./media/characters/doc-weardno/front-dressed.svg",
  19572. extra: 263 / 234
  19573. }
  19574. },
  19575. backDressed: {
  19576. height: math.unit(5 + 7 / 12, "feet"),
  19577. weight: math.unit(140, "lb"),
  19578. name: "Back (Dressed)",
  19579. image: {
  19580. source: "./media/characters/doc-weardno/back-dressed.svg",
  19581. extra: 266 / 238
  19582. }
  19583. },
  19584. front: {
  19585. height: math.unit(5 + 7 / 12, "feet"),
  19586. weight: math.unit(140, "lb"),
  19587. name: "Front",
  19588. image: {
  19589. source: "./media/characters/doc-weardno/front.svg",
  19590. extra: 254 / 233
  19591. }
  19592. },
  19593. },
  19594. [
  19595. {
  19596. name: "Micro",
  19597. height: math.unit(3, "inches")
  19598. },
  19599. {
  19600. name: "Normal",
  19601. height: math.unit(5 + 7 / 12, "feet"),
  19602. default: true
  19603. },
  19604. {
  19605. name: "Macro",
  19606. height: math.unit(25, "feet")
  19607. },
  19608. {
  19609. name: "Megamacro",
  19610. height: math.unit(2, "miles")
  19611. },
  19612. ]
  19613. ))
  19614. characterMakers.push(() => makeCharacter(
  19615. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19616. {
  19617. front: {
  19618. height: math.unit(6 + 2 / 12, "feet"),
  19619. weight: math.unit(153, "lb"),
  19620. name: "Front",
  19621. image: {
  19622. source: "./media/characters/seth-whilst/front.svg",
  19623. bottom: 0.07
  19624. }
  19625. },
  19626. },
  19627. [
  19628. {
  19629. name: "Micro",
  19630. height: math.unit(5, "inches")
  19631. },
  19632. {
  19633. name: "Normal",
  19634. height: math.unit(6 + 2 / 12, "feet"),
  19635. default: true
  19636. },
  19637. ]
  19638. ))
  19639. characterMakers.push(() => makeCharacter(
  19640. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19641. {
  19642. front: {
  19643. height: math.unit(3, "inches"),
  19644. weight: math.unit(8, "grams"),
  19645. name: "Front",
  19646. image: {
  19647. source: "./media/characters/pocket-jabari/front.svg",
  19648. extra: 1024 / 974,
  19649. bottom: 0.039
  19650. }
  19651. },
  19652. },
  19653. [
  19654. {
  19655. name: "Minimicro",
  19656. height: math.unit(8, "mm")
  19657. },
  19658. {
  19659. name: "Micro",
  19660. height: math.unit(3, "inches"),
  19661. default: true
  19662. },
  19663. {
  19664. name: "Normal",
  19665. height: math.unit(3, "feet")
  19666. },
  19667. ]
  19668. ))
  19669. characterMakers.push(() => makeCharacter(
  19670. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19671. {
  19672. frontDressed: {
  19673. height: math.unit(15, "feet"),
  19674. weight: math.unit(3280, "lb"),
  19675. name: "Front (Dressed)",
  19676. image: {
  19677. source: "./media/characters/sapphy/front-dressed.svg",
  19678. extra: 1951/1654,
  19679. bottom: 194/2145
  19680. },
  19681. form: "anthro",
  19682. default: true
  19683. },
  19684. backDressed: {
  19685. height: math.unit(15, "feet"),
  19686. weight: math.unit(3280, "lb"),
  19687. name: "Back (Dressed)",
  19688. image: {
  19689. source: "./media/characters/sapphy/back-dressed.svg",
  19690. extra: 2058/1918,
  19691. bottom: 125/2183
  19692. },
  19693. form: "anthro"
  19694. },
  19695. frontNude: {
  19696. height: math.unit(15, "feet"),
  19697. weight: math.unit(3280, "lb"),
  19698. name: "Front (Nude)",
  19699. image: {
  19700. source: "./media/characters/sapphy/front-nude.svg",
  19701. extra: 1951/1654,
  19702. bottom: 194/2145
  19703. },
  19704. form: "anthro"
  19705. },
  19706. backNude: {
  19707. height: math.unit(15, "feet"),
  19708. weight: math.unit(3280, "lb"),
  19709. name: "Back (Nude)",
  19710. image: {
  19711. source: "./media/characters/sapphy/back-nude.svg",
  19712. extra: 2058/1918,
  19713. bottom: 125/2183
  19714. },
  19715. form: "anthro"
  19716. },
  19717. full: {
  19718. height: math.unit(15, "feet"),
  19719. weight: math.unit(3280, "lb"),
  19720. name: "Full",
  19721. image: {
  19722. source: "./media/characters/sapphy/full.svg",
  19723. extra: 1396/1317,
  19724. bottom: 44/1440
  19725. },
  19726. form: "anthro"
  19727. },
  19728. dick: {
  19729. height: math.unit(3.8, "feet"),
  19730. name: "Dick",
  19731. image: {
  19732. source: "./media/characters/sapphy/dick.svg"
  19733. },
  19734. form: "anthro"
  19735. },
  19736. feral: {
  19737. height: math.unit(35, "feet"),
  19738. weight: math.unit(160, "tons"),
  19739. name: "Feral",
  19740. image: {
  19741. source: "./media/characters/sapphy/feral.svg",
  19742. extra: 1050/573,
  19743. bottom: 60/1110
  19744. },
  19745. form: "feral",
  19746. default: true
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Normal",
  19752. height: math.unit(15, "feet"),
  19753. form: "anthro"
  19754. },
  19755. {
  19756. name: "Casual Macro",
  19757. height: math.unit(120, "feet"),
  19758. form: "anthro"
  19759. },
  19760. {
  19761. name: "Macro",
  19762. height: math.unit(2150, "feet"),
  19763. default: true,
  19764. form: "anthro"
  19765. },
  19766. {
  19767. name: "Megamacro",
  19768. height: math.unit(8, "miles"),
  19769. form: "anthro"
  19770. },
  19771. {
  19772. name: "Galaxy Mom",
  19773. height: math.unit(6, "megalightyears"),
  19774. form: "anthro"
  19775. },
  19776. {
  19777. name: "Normal",
  19778. height: math.unit(35, "feet"),
  19779. form: "feral",
  19780. default: true
  19781. },
  19782. {
  19783. name: "Macro",
  19784. height: math.unit(300, "feet"),
  19785. form: "feral"
  19786. },
  19787. {
  19788. name: "Galaxy Mom",
  19789. height: math.unit(10, "megalightyears"),
  19790. form: "feral"
  19791. },
  19792. ],
  19793. {
  19794. "anthro": {
  19795. name: "Anthro",
  19796. default: true
  19797. },
  19798. "feral": {
  19799. name: "Feral"
  19800. }
  19801. }
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19805. {
  19806. front: {
  19807. height: math.unit(6, "feet"),
  19808. weight: math.unit(170, "lb"),
  19809. name: "Front",
  19810. image: {
  19811. source: "./media/characters/kiro/front.svg",
  19812. extra: 1064 / 1012,
  19813. bottom: 0.052
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Micro",
  19820. height: math.unit(6, "inches")
  19821. },
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(6, "feet"),
  19825. default: true
  19826. },
  19827. {
  19828. name: "Macro",
  19829. height: math.unit(72, "feet")
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19835. {
  19836. front: {
  19837. height: math.unit(5 + 9 / 12, "feet"),
  19838. weight: math.unit(175, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/irishfox/front.svg",
  19842. extra: 1912 / 1680,
  19843. bottom: 0.02
  19844. }
  19845. },
  19846. },
  19847. [
  19848. {
  19849. name: "Nano",
  19850. height: math.unit(1, "mm")
  19851. },
  19852. {
  19853. name: "Micro",
  19854. height: math.unit(2, "inches")
  19855. },
  19856. {
  19857. name: "Normal",
  19858. height: math.unit(5 + 9 / 12, "feet"),
  19859. default: true
  19860. },
  19861. {
  19862. name: "Macro",
  19863. height: math.unit(45, "feet")
  19864. },
  19865. ]
  19866. ))
  19867. characterMakers.push(() => makeCharacter(
  19868. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19869. {
  19870. front: {
  19871. height: math.unit(6 + 1 / 12, "feet"),
  19872. weight: math.unit(75, "lb"),
  19873. name: "Front",
  19874. image: {
  19875. source: "./media/characters/aronai-sieyes/front.svg",
  19876. extra: 1532/1450,
  19877. bottom: 42/1574
  19878. }
  19879. },
  19880. side: {
  19881. height: math.unit(6 + 1 / 12, "feet"),
  19882. weight: math.unit(75, "lb"),
  19883. name: "Side",
  19884. image: {
  19885. source: "./media/characters/aronai-sieyes/side.svg",
  19886. extra: 1422/1365,
  19887. bottom: 148/1570
  19888. }
  19889. },
  19890. back: {
  19891. height: math.unit(6 + 1 / 12, "feet"),
  19892. weight: math.unit(75, "lb"),
  19893. name: "Back",
  19894. image: {
  19895. source: "./media/characters/aronai-sieyes/back.svg",
  19896. extra: 1526/1464,
  19897. bottom: 51/1577
  19898. }
  19899. },
  19900. dressed: {
  19901. height: math.unit(6 + 1 / 12, "feet"),
  19902. weight: math.unit(75, "lb"),
  19903. name: "Dressed",
  19904. image: {
  19905. source: "./media/characters/aronai-sieyes/dressed.svg",
  19906. extra: 1559/1483,
  19907. bottom: 39/1598
  19908. }
  19909. },
  19910. slit: {
  19911. height: math.unit(1.3, "feet"),
  19912. name: "Slit",
  19913. image: {
  19914. source: "./media/characters/aronai-sieyes/slit.svg"
  19915. }
  19916. },
  19917. slitSpread: {
  19918. height: math.unit(0.9, "feet"),
  19919. name: "Slit (Spread)",
  19920. image: {
  19921. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19922. }
  19923. },
  19924. rump: {
  19925. height: math.unit(1.3, "feet"),
  19926. name: "Rump",
  19927. image: {
  19928. source: "./media/characters/aronai-sieyes/rump.svg"
  19929. }
  19930. },
  19931. maw: {
  19932. height: math.unit(1.25, "feet"),
  19933. name: "Maw",
  19934. image: {
  19935. source: "./media/characters/aronai-sieyes/maw.svg"
  19936. }
  19937. },
  19938. feral: {
  19939. height: math.unit(18, "feet"),
  19940. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19941. name: "Feral",
  19942. image: {
  19943. source: "./media/characters/aronai-sieyes/feral.svg",
  19944. extra: 1530 / 1240,
  19945. bottom: 0.035
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Micro",
  19952. height: math.unit(2, "inches")
  19953. },
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(6 + 1 / 12, "feet"),
  19957. default: true
  19958. }
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(12, "feet"),
  19966. weight: math.unit(410, "kg"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/xuna/front.svg",
  19970. extra: 2184 / 1980
  19971. }
  19972. },
  19973. side: {
  19974. height: math.unit(12, "feet"),
  19975. weight: math.unit(410, "kg"),
  19976. name: "Side",
  19977. image: {
  19978. source: "./media/characters/xuna/side.svg",
  19979. extra: 2184 / 1980
  19980. }
  19981. },
  19982. back: {
  19983. height: math.unit(12, "feet"),
  19984. weight: math.unit(410, "kg"),
  19985. name: "Back",
  19986. image: {
  19987. source: "./media/characters/xuna/back.svg",
  19988. extra: 2184 / 1980
  19989. }
  19990. },
  19991. },
  19992. [
  19993. {
  19994. name: "Nano glow",
  19995. height: math.unit(10, "nm")
  19996. },
  19997. {
  19998. name: "Micro floof",
  19999. height: math.unit(0.3, "m")
  20000. },
  20001. {
  20002. name: "Huggable softy boi",
  20003. height: math.unit(3.6576, "m"),
  20004. default: true
  20005. },
  20006. {
  20007. name: "Admirable floof",
  20008. height: math.unit(80, "meters")
  20009. },
  20010. {
  20011. name: "Gentle macro",
  20012. height: math.unit(300, "meters")
  20013. },
  20014. {
  20015. name: "Very careful floof",
  20016. height: math.unit(3200, "meters")
  20017. },
  20018. {
  20019. name: "The mega floof",
  20020. height: math.unit(36000, "meters")
  20021. },
  20022. {
  20023. name: "Giga-fur-Wicker",
  20024. height: math.unit(4800000, "meters")
  20025. },
  20026. {
  20027. name: "Licky world",
  20028. height: math.unit(20000000, "meters")
  20029. },
  20030. {
  20031. name: "Floofy cyan sun",
  20032. height: math.unit(1500000000, "meters")
  20033. },
  20034. {
  20035. name: "Milky Wicker",
  20036. height: math.unit(1000000000000000000000, "meters")
  20037. },
  20038. {
  20039. name: "The observing Wicker",
  20040. height: math.unit(999999999999999999999999999, "meters")
  20041. },
  20042. ]
  20043. ))
  20044. characterMakers.push(() => makeCharacter(
  20045. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20046. {
  20047. front: {
  20048. height: math.unit(5 + 9 / 12, "feet"),
  20049. weight: math.unit(150, "lb"),
  20050. name: "Front",
  20051. image: {
  20052. source: "./media/characters/arokha-sieyes/front.svg",
  20053. extra: 1425 / 1284,
  20054. bottom: 0.05
  20055. }
  20056. },
  20057. },
  20058. [
  20059. {
  20060. name: "Normal",
  20061. height: math.unit(5 + 9 / 12, "feet")
  20062. },
  20063. {
  20064. name: "Macro",
  20065. height: math.unit(30, "meters"),
  20066. default: true
  20067. },
  20068. ]
  20069. ))
  20070. characterMakers.push(() => makeCharacter(
  20071. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20072. {
  20073. front: {
  20074. height: math.unit(6, "feet"),
  20075. weight: math.unit(180, "lb"),
  20076. name: "Front",
  20077. image: {
  20078. source: "./media/characters/arokh-sieyes/front.svg",
  20079. extra: 1830 / 1769,
  20080. bottom: 0.01
  20081. }
  20082. },
  20083. },
  20084. [
  20085. {
  20086. name: "Normal",
  20087. height: math.unit(6, "feet")
  20088. },
  20089. {
  20090. name: "Macro",
  20091. height: math.unit(30, "meters"),
  20092. default: true
  20093. },
  20094. ]
  20095. ))
  20096. characterMakers.push(() => makeCharacter(
  20097. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20098. {
  20099. side: {
  20100. height: math.unit(13 + 1 / 12, "feet"),
  20101. weight: math.unit(8.5, "tonnes"),
  20102. name: "Side",
  20103. image: {
  20104. source: "./media/characters/goldeneye/side.svg",
  20105. extra: 1182 / 778,
  20106. bottom: 0.067
  20107. }
  20108. },
  20109. paw: {
  20110. height: math.unit(3.4, "feet"),
  20111. name: "Paw",
  20112. image: {
  20113. source: "./media/characters/goldeneye/paw.svg"
  20114. }
  20115. },
  20116. },
  20117. [
  20118. {
  20119. name: "Normal",
  20120. height: math.unit(13 + 1 / 12, "feet"),
  20121. default: true
  20122. },
  20123. ]
  20124. ))
  20125. characterMakers.push(() => makeCharacter(
  20126. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20127. {
  20128. front: {
  20129. height: math.unit(6 + 1 / 12, "feet"),
  20130. weight: math.unit(210, "lb"),
  20131. name: "Front",
  20132. image: {
  20133. source: "./media/characters/leonardo-lycheborne/front.svg",
  20134. extra: 776/723,
  20135. bottom: 34/810
  20136. }
  20137. },
  20138. side: {
  20139. height: math.unit(6 + 1 / 12, "feet"),
  20140. weight: math.unit(210, "lb"),
  20141. name: "Side",
  20142. image: {
  20143. source: "./media/characters/leonardo-lycheborne/side.svg",
  20144. extra: 780/728,
  20145. bottom: 12/792
  20146. }
  20147. },
  20148. back: {
  20149. height: math.unit(6 + 1 / 12, "feet"),
  20150. weight: math.unit(210, "lb"),
  20151. name: "Back",
  20152. image: {
  20153. source: "./media/characters/leonardo-lycheborne/back.svg",
  20154. extra: 775/721,
  20155. bottom: 17/792
  20156. }
  20157. },
  20158. hand: {
  20159. height: math.unit(1.08, "feet"),
  20160. name: "Hand",
  20161. image: {
  20162. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20163. }
  20164. },
  20165. foot: {
  20166. height: math.unit(1.32, "feet"),
  20167. name: "Foot",
  20168. image: {
  20169. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20170. }
  20171. },
  20172. maw: {
  20173. height: math.unit(1, "feet"),
  20174. name: "Maw",
  20175. image: {
  20176. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20177. }
  20178. },
  20179. were: {
  20180. height: math.unit(20, "feet"),
  20181. weight: math.unit(7800, "lb"),
  20182. name: "Were",
  20183. image: {
  20184. source: "./media/characters/leonardo-lycheborne/were.svg",
  20185. extra: 1224/1165,
  20186. bottom: 72/1296
  20187. }
  20188. },
  20189. feral: {
  20190. height: math.unit(7.5, "feet"),
  20191. weight: math.unit(600, "lb"),
  20192. name: "Feral",
  20193. image: {
  20194. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20195. extra: 797/702,
  20196. bottom: 139/936
  20197. }
  20198. },
  20199. taur: {
  20200. height: math.unit(11, "feet"),
  20201. weight: math.unit(3300, "lb"),
  20202. name: "Taur",
  20203. image: {
  20204. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20205. extra: 1271/1197,
  20206. bottom: 47/1318
  20207. }
  20208. },
  20209. barghest: {
  20210. height: math.unit(11, "feet"),
  20211. weight: math.unit(1300, "lb"),
  20212. name: "Barghest",
  20213. image: {
  20214. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20215. extra: 1291/1204,
  20216. bottom: 37/1328
  20217. }
  20218. },
  20219. dick: {
  20220. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20221. name: "Dick",
  20222. image: {
  20223. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20224. }
  20225. },
  20226. dickWere: {
  20227. height: math.unit((20) / 3.8, "feet"),
  20228. name: "Dick (Were)",
  20229. image: {
  20230. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20231. }
  20232. },
  20233. },
  20234. [
  20235. {
  20236. name: "Normal",
  20237. height: math.unit(6 + 1 / 12, "feet"),
  20238. default: true
  20239. },
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(10, "feet"),
  20247. weight: math.unit(350, "lb"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/jet/front.svg",
  20251. extra: 2050 / 1980,
  20252. bottom: 0.013
  20253. }
  20254. },
  20255. back: {
  20256. height: math.unit(10, "feet"),
  20257. weight: math.unit(350, "lb"),
  20258. name: "Back",
  20259. image: {
  20260. source: "./media/characters/jet/back.svg",
  20261. extra: 2050 / 1980,
  20262. bottom: 0.013
  20263. }
  20264. },
  20265. },
  20266. [
  20267. {
  20268. name: "Micro",
  20269. height: math.unit(6, "inches")
  20270. },
  20271. {
  20272. name: "Normal",
  20273. height: math.unit(10, "feet"),
  20274. default: true
  20275. },
  20276. {
  20277. name: "Macro",
  20278. height: math.unit(100, "feet")
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20284. {
  20285. front: {
  20286. height: math.unit(15, "feet"),
  20287. weight: math.unit(2800, "lb"),
  20288. name: "Front",
  20289. image: {
  20290. source: "./media/characters/tanarath/front.svg",
  20291. extra: 2392 / 2220,
  20292. bottom: 0.03
  20293. }
  20294. },
  20295. back: {
  20296. height: math.unit(15, "feet"),
  20297. weight: math.unit(2800, "lb"),
  20298. name: "Back",
  20299. image: {
  20300. source: "./media/characters/tanarath/back.svg",
  20301. extra: 2392 / 2220,
  20302. bottom: 0.03
  20303. }
  20304. },
  20305. },
  20306. [
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(15, "feet"),
  20310. default: true
  20311. },
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20316. {
  20317. front: {
  20318. height: math.unit(7 + 1 / 12, "feet"),
  20319. weight: math.unit(175, "lb"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/patty-cattybatty/front.svg",
  20323. extra: 908 / 874,
  20324. bottom: 0.025
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "Micro",
  20331. height: math.unit(1, "inch")
  20332. },
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(7 + 1 / 12, "feet")
  20336. },
  20337. {
  20338. name: "Mini Macro",
  20339. height: math.unit(155, "feet")
  20340. },
  20341. {
  20342. name: "Macro",
  20343. height: math.unit(1077, "feet")
  20344. },
  20345. {
  20346. name: "Mega Macro",
  20347. height: math.unit(47650, "feet"),
  20348. default: true
  20349. },
  20350. {
  20351. name: "Giga Macro",
  20352. height: math.unit(440, "miles")
  20353. },
  20354. {
  20355. name: "Tera Macro",
  20356. height: math.unit(8700, "miles")
  20357. },
  20358. {
  20359. name: "Planetary Macro",
  20360. height: math.unit(32700, "miles")
  20361. },
  20362. {
  20363. name: "Solar Macro",
  20364. height: math.unit(550000, "miles")
  20365. },
  20366. {
  20367. name: "Celestial Macro",
  20368. height: math.unit(2.5, "AU")
  20369. },
  20370. ]
  20371. ))
  20372. characterMakers.push(() => makeCharacter(
  20373. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20374. {
  20375. front: {
  20376. height: math.unit(4 + 5 / 12, "feet"),
  20377. weight: math.unit(90, "lb"),
  20378. name: "Front",
  20379. image: {
  20380. source: "./media/characters/cappu/front.svg",
  20381. extra: 1247 / 1152,
  20382. bottom: 0.012
  20383. }
  20384. },
  20385. },
  20386. [
  20387. {
  20388. name: "Normal",
  20389. height: math.unit(4 + 5 / 12, "feet"),
  20390. default: true
  20391. },
  20392. ]
  20393. ))
  20394. characterMakers.push(() => makeCharacter(
  20395. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20396. {
  20397. frontDressed: {
  20398. height: math.unit(70, "cm"),
  20399. weight: math.unit(6, "kg"),
  20400. name: "Front (Dressed)",
  20401. image: {
  20402. source: "./media/characters/sebi/front-dressed.svg",
  20403. extra: 713.5 / 686.5,
  20404. bottom: 0.003
  20405. }
  20406. },
  20407. front: {
  20408. height: math.unit(70, "cm"),
  20409. weight: math.unit(5, "kg"),
  20410. name: "Front",
  20411. image: {
  20412. source: "./media/characters/sebi/front.svg",
  20413. extra: 713.5 / 686.5,
  20414. bottom: 0.003
  20415. }
  20416. }
  20417. },
  20418. [
  20419. {
  20420. name: "Normal",
  20421. height: math.unit(70, "cm"),
  20422. default: true
  20423. },
  20424. {
  20425. name: "Macro",
  20426. height: math.unit(8, "meters")
  20427. },
  20428. ]
  20429. ))
  20430. characterMakers.push(() => makeCharacter(
  20431. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20432. {
  20433. front: {
  20434. height: math.unit(6, "feet"),
  20435. weight: math.unit(150, "lb"),
  20436. name: "Front",
  20437. image: {
  20438. source: "./media/characters/typhek/front.svg",
  20439. extra: 1948 / 1929,
  20440. bottom: 0.025
  20441. }
  20442. },
  20443. side: {
  20444. height: math.unit(6, "feet"),
  20445. weight: math.unit(150, "lb"),
  20446. name: "Side",
  20447. image: {
  20448. source: "./media/characters/typhek/side.svg",
  20449. extra: 2034 / 2010,
  20450. bottom: 0.003
  20451. }
  20452. },
  20453. back: {
  20454. height: math.unit(6, "feet"),
  20455. weight: math.unit(150, "lb"),
  20456. name: "Back",
  20457. image: {
  20458. source: "./media/characters/typhek/back.svg",
  20459. extra: 2005 / 1978,
  20460. bottom: 0.004
  20461. }
  20462. },
  20463. palm: {
  20464. height: math.unit(1.2, "feet"),
  20465. name: "Palm",
  20466. image: {
  20467. source: "./media/characters/typhek/palm.svg"
  20468. }
  20469. },
  20470. fist: {
  20471. height: math.unit(1.1, "feet"),
  20472. name: "Fist",
  20473. image: {
  20474. source: "./media/characters/typhek/fist.svg"
  20475. }
  20476. },
  20477. foot: {
  20478. height: math.unit(1.57, "feet"),
  20479. name: "Foot",
  20480. image: {
  20481. source: "./media/characters/typhek/foot.svg"
  20482. }
  20483. },
  20484. sole: {
  20485. height: math.unit(2.05, "feet"),
  20486. name: "Sole",
  20487. image: {
  20488. source: "./media/characters/typhek/sole.svg"
  20489. }
  20490. },
  20491. },
  20492. [
  20493. {
  20494. name: "Macro",
  20495. height: math.unit(40, "stories"),
  20496. default: true
  20497. },
  20498. {
  20499. name: "Megamacro",
  20500. height: math.unit(1, "mile")
  20501. },
  20502. {
  20503. name: "Gigamacro",
  20504. height: math.unit(4000, "solarradii")
  20505. },
  20506. {
  20507. name: "Universal",
  20508. height: math.unit(1.1, "universes")
  20509. }
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20514. {
  20515. side: {
  20516. height: math.unit(5 + 7 / 12, "feet"),
  20517. weight: math.unit(150, "lb"),
  20518. name: "Side",
  20519. image: {
  20520. source: "./media/characters/kassy/side.svg",
  20521. extra: 1280 / 1225,
  20522. bottom: 0.002
  20523. }
  20524. },
  20525. front: {
  20526. height: math.unit(5 + 7 / 12, "feet"),
  20527. weight: math.unit(150, "lb"),
  20528. name: "Front",
  20529. image: {
  20530. source: "./media/characters/kassy/front.svg",
  20531. extra: 1280 / 1225,
  20532. bottom: 0.025
  20533. }
  20534. },
  20535. back: {
  20536. height: math.unit(5 + 7 / 12, "feet"),
  20537. weight: math.unit(150, "lb"),
  20538. name: "Back",
  20539. image: {
  20540. source: "./media/characters/kassy/back.svg",
  20541. extra: 1280 / 1225,
  20542. bottom: 0.002
  20543. }
  20544. },
  20545. foot: {
  20546. height: math.unit(1.266, "feet"),
  20547. name: "Foot",
  20548. image: {
  20549. source: "./media/characters/kassy/foot.svg"
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Normal",
  20556. height: math.unit(5 + 7 / 12, "feet")
  20557. },
  20558. {
  20559. name: "Macro",
  20560. height: math.unit(137, "feet"),
  20561. default: true
  20562. },
  20563. {
  20564. name: "Megamacro",
  20565. height: math.unit(1, "mile")
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20571. {
  20572. front: {
  20573. height: math.unit(6 + 1 / 12, "feet"),
  20574. weight: math.unit(200, "lb"),
  20575. name: "Front",
  20576. image: {
  20577. source: "./media/characters/neil/front.svg",
  20578. extra: 1326 / 1250,
  20579. bottom: 0.023
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(6 + 1 / 12, "feet"),
  20587. default: true
  20588. },
  20589. {
  20590. name: "Macro",
  20591. height: math.unit(200, "feet")
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20597. {
  20598. front: {
  20599. height: math.unit(5 + 9 / 12, "feet"),
  20600. weight: math.unit(190, "lb"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/atticus/front.svg",
  20604. extra: 2934 / 2785,
  20605. bottom: 0.025
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(5 + 9 / 12, "feet"),
  20613. default: true
  20614. },
  20615. {
  20616. name: "Macro",
  20617. height: math.unit(180, "feet")
  20618. },
  20619. ]
  20620. ))
  20621. characterMakers.push(() => makeCharacter(
  20622. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20623. {
  20624. side: {
  20625. height: math.unit(9, "feet"),
  20626. weight: math.unit(650, "lb"),
  20627. name: "Side",
  20628. image: {
  20629. source: "./media/characters/milo/side.svg",
  20630. extra: 2644 / 2310,
  20631. bottom: 0.032
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Normal",
  20638. height: math.unit(9, "feet"),
  20639. default: true
  20640. },
  20641. {
  20642. name: "Macro",
  20643. height: math.unit(300, "feet")
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20649. {
  20650. side: {
  20651. height: math.unit(8, "meters"),
  20652. weight: math.unit(90000, "kg"),
  20653. name: "Side",
  20654. image: {
  20655. source: "./media/characters/ijzer/side.svg",
  20656. extra: 2756 / 1600,
  20657. bottom: 0.01
  20658. }
  20659. },
  20660. },
  20661. [
  20662. {
  20663. name: "Small",
  20664. height: math.unit(3, "meters")
  20665. },
  20666. {
  20667. name: "Normal",
  20668. height: math.unit(8, "meters"),
  20669. default: true
  20670. },
  20671. {
  20672. name: "Normal+",
  20673. height: math.unit(10, "meters")
  20674. },
  20675. {
  20676. name: "Bigger",
  20677. height: math.unit(24, "meters")
  20678. },
  20679. {
  20680. name: "Huge",
  20681. height: math.unit(80, "meters")
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20687. {
  20688. front: {
  20689. height: math.unit(6 + 2 / 12, "feet"),
  20690. weight: math.unit(153, "lb"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/luca-cervicum/front.svg",
  20694. extra: 370 / 327,
  20695. bottom: 0.015
  20696. }
  20697. },
  20698. back: {
  20699. height: math.unit(6 + 2 / 12, "feet"),
  20700. weight: math.unit(153, "lb"),
  20701. name: "Back",
  20702. image: {
  20703. source: "./media/characters/luca-cervicum/back.svg",
  20704. extra: 367 / 333,
  20705. bottom: 0.005
  20706. }
  20707. },
  20708. frontGear: {
  20709. height: math.unit(6 + 2 / 12, "feet"),
  20710. weight: math.unit(173, "lb"),
  20711. name: "Front (Gear)",
  20712. image: {
  20713. source: "./media/characters/luca-cervicum/front-gear.svg",
  20714. extra: 377 / 333,
  20715. bottom: 0.006
  20716. }
  20717. },
  20718. },
  20719. [
  20720. {
  20721. name: "Normal",
  20722. height: math.unit(6 + 2 / 12, "feet"),
  20723. default: true
  20724. },
  20725. ]
  20726. ))
  20727. characterMakers.push(() => makeCharacter(
  20728. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20729. {
  20730. front: {
  20731. height: math.unit(6 + 1 / 12, "feet"),
  20732. weight: math.unit(304, "lb"),
  20733. name: "Front",
  20734. image: {
  20735. source: "./media/characters/oliver/front.svg",
  20736. extra: 157 / 143,
  20737. bottom: 0.08
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(6 + 1 / 12, "feet"),
  20745. default: true
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20751. {
  20752. front: {
  20753. height: math.unit(5 + 7 / 12, "feet"),
  20754. weight: math.unit(140, "lb"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/shane/front.svg",
  20758. extra: 304 / 289,
  20759. bottom: 0.005
  20760. }
  20761. },
  20762. },
  20763. [
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(5 + 7 / 12, "feet"),
  20767. default: true
  20768. },
  20769. ]
  20770. ))
  20771. characterMakers.push(() => makeCharacter(
  20772. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20773. {
  20774. front: {
  20775. height: math.unit(5 + 9 / 12, "feet"),
  20776. weight: math.unit(178, "lb"),
  20777. name: "Front",
  20778. image: {
  20779. source: "./media/characters/shin/front.svg",
  20780. extra: 159 / 151,
  20781. bottom: 0.015
  20782. }
  20783. },
  20784. },
  20785. [
  20786. {
  20787. name: "Normal",
  20788. height: math.unit(5 + 9 / 12, "feet"),
  20789. default: true
  20790. },
  20791. ]
  20792. ))
  20793. characterMakers.push(() => makeCharacter(
  20794. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20795. {
  20796. front: {
  20797. height: math.unit(5 + 10 / 12, "feet"),
  20798. weight: math.unit(168, "lb"),
  20799. name: "Front",
  20800. image: {
  20801. source: "./media/characters/xerxes/front.svg",
  20802. extra: 282 / 260,
  20803. bottom: 0.045
  20804. }
  20805. },
  20806. },
  20807. [
  20808. {
  20809. name: "Normal",
  20810. height: math.unit(5 + 10 / 12, "feet"),
  20811. default: true
  20812. },
  20813. ]
  20814. ))
  20815. characterMakers.push(() => makeCharacter(
  20816. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20817. {
  20818. front: {
  20819. height: math.unit(6 + 7 / 12, "feet"),
  20820. weight: math.unit(208, "lb"),
  20821. name: "Front",
  20822. image: {
  20823. source: "./media/characters/chaska/front.svg",
  20824. extra: 332 / 319,
  20825. bottom: 0.015
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(6 + 7 / 12, "feet"),
  20833. default: true
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20839. {
  20840. front: {
  20841. height: math.unit(5 + 8 / 12, "feet"),
  20842. weight: math.unit(208, "lb"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/enuk/front.svg",
  20846. extra: 437 / 406,
  20847. bottom: 0.02
  20848. }
  20849. },
  20850. },
  20851. [
  20852. {
  20853. name: "Normal",
  20854. height: math.unit(5 + 8 / 12, "feet"),
  20855. default: true
  20856. },
  20857. ]
  20858. ))
  20859. characterMakers.push(() => makeCharacter(
  20860. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20861. {
  20862. front: {
  20863. height: math.unit(5 + 10 / 12, "feet"),
  20864. weight: math.unit(252, "lb"),
  20865. name: "Front",
  20866. image: {
  20867. source: "./media/characters/bruun/front.svg",
  20868. extra: 197 / 187,
  20869. bottom: 0.012
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(5 + 10 / 12, "feet"),
  20877. default: true
  20878. },
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20883. {
  20884. front: {
  20885. height: math.unit(6 + 10 / 12, "feet"),
  20886. weight: math.unit(255, "lb"),
  20887. name: "Front",
  20888. image: {
  20889. source: "./media/characters/alexeev/front.svg",
  20890. extra: 213 / 200,
  20891. bottom: 0.05
  20892. }
  20893. },
  20894. },
  20895. [
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(6 + 10 / 12, "feet"),
  20899. default: true
  20900. },
  20901. ]
  20902. ))
  20903. characterMakers.push(() => makeCharacter(
  20904. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20905. {
  20906. front: {
  20907. height: math.unit(2 + 8 / 12, "feet"),
  20908. weight: math.unit(22, "lb"),
  20909. name: "Front",
  20910. image: {
  20911. source: "./media/characters/evelyn/front.svg",
  20912. extra: 208 / 180
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Normal",
  20919. height: math.unit(2 + 8 / 12, "feet"),
  20920. default: true
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20926. {
  20927. front: {
  20928. height: math.unit(5 + 9 / 12, "feet"),
  20929. weight: math.unit(139, "lb"),
  20930. name: "Front",
  20931. image: {
  20932. source: "./media/characters/inca/front.svg",
  20933. extra: 294 / 291,
  20934. bottom: 0.03
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(5 + 9 / 12, "feet"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(6 + 3 / 12, "feet"),
  20951. weight: math.unit(185, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/mera/front.svg",
  20955. extra: 291 / 277,
  20956. bottom: 0.03
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(6 + 3 / 12, "feet"),
  20964. default: true
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20970. {
  20971. front: {
  20972. height: math.unit(6 + 7 / 12, "feet"),
  20973. weight: math.unit(160, "lb"),
  20974. name: "Front",
  20975. image: {
  20976. source: "./media/characters/ceres/front.svg",
  20977. extra: 1023 / 950,
  20978. bottom: 0.027
  20979. }
  20980. },
  20981. back: {
  20982. height: math.unit(6 + 7 / 12, "feet"),
  20983. weight: math.unit(160, "lb"),
  20984. name: "Back",
  20985. image: {
  20986. source: "./media/characters/ceres/back.svg",
  20987. extra: 1023 / 950
  20988. }
  20989. },
  20990. },
  20991. [
  20992. {
  20993. name: "Normal",
  20994. height: math.unit(6 + 7 / 12, "feet"),
  20995. default: true
  20996. },
  20997. ]
  20998. ))
  20999. characterMakers.push(() => makeCharacter(
  21000. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21001. {
  21002. front: {
  21003. height: math.unit(5 + 10 / 12, "feet"),
  21004. weight: math.unit(150, "lb"),
  21005. name: "Front",
  21006. image: {
  21007. source: "./media/characters/kris/front.svg",
  21008. extra: 885 / 803,
  21009. bottom: 0.03
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Normal",
  21016. height: math.unit(5 + 10 / 12, "feet"),
  21017. default: true
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21023. {
  21024. front: {
  21025. height: math.unit(7, "feet"),
  21026. weight: math.unit(120, "kg"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/taluthus/front.svg",
  21030. extra: 903 / 833,
  21031. bottom: 0.015
  21032. }
  21033. },
  21034. },
  21035. [
  21036. {
  21037. name: "Normal",
  21038. height: math.unit(7, "feet"),
  21039. default: true
  21040. },
  21041. {
  21042. name: "Macro",
  21043. height: math.unit(300, "feet")
  21044. },
  21045. ]
  21046. ))
  21047. characterMakers.push(() => makeCharacter(
  21048. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21049. {
  21050. front: {
  21051. height: math.unit(5 + 9 / 12, "feet"),
  21052. weight: math.unit(145, "lb"),
  21053. name: "Front",
  21054. image: {
  21055. source: "./media/characters/dawn/front.svg",
  21056. extra: 2094 / 2016,
  21057. bottom: 0.025
  21058. }
  21059. },
  21060. back: {
  21061. height: math.unit(5 + 9 / 12, "feet"),
  21062. weight: math.unit(160, "lb"),
  21063. name: "Back",
  21064. image: {
  21065. source: "./media/characters/dawn/back.svg",
  21066. extra: 2112 / 2080,
  21067. bottom: 0.005
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(6 + 7 / 12, "feet"),
  21075. default: true
  21076. },
  21077. ]
  21078. ))
  21079. characterMakers.push(() => makeCharacter(
  21080. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21081. {
  21082. anthro: {
  21083. height: math.unit(8 + 3 / 12, "feet"),
  21084. weight: math.unit(450, "lb"),
  21085. name: "Anthro",
  21086. image: {
  21087. source: "./media/characters/arador/anthro.svg",
  21088. extra: 1835 / 1718,
  21089. bottom: 0.025
  21090. }
  21091. },
  21092. feral: {
  21093. height: math.unit(4, "feet"),
  21094. weight: math.unit(200, "lb"),
  21095. name: "Feral",
  21096. image: {
  21097. source: "./media/characters/arador/feral.svg",
  21098. extra: 1683 / 1514,
  21099. bottom: 0.07
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Normal",
  21106. height: math.unit(8 + 3 / 12, "feet")
  21107. },
  21108. {
  21109. name: "Macro",
  21110. height: math.unit(82.5, "feet"),
  21111. default: true
  21112. },
  21113. ]
  21114. ))
  21115. characterMakers.push(() => makeCharacter(
  21116. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21117. {
  21118. front: {
  21119. height: math.unit(5 + 10 / 12, "feet"),
  21120. weight: math.unit(125, "lb"),
  21121. name: "Front",
  21122. image: {
  21123. source: "./media/characters/dharsi/front.svg",
  21124. extra: 716 / 630,
  21125. bottom: 0.035
  21126. }
  21127. },
  21128. },
  21129. [
  21130. {
  21131. name: "Nano",
  21132. height: math.unit(100, "nm")
  21133. },
  21134. {
  21135. name: "Micro",
  21136. height: math.unit(2, "inches")
  21137. },
  21138. {
  21139. name: "Normal",
  21140. height: math.unit(5 + 10 / 12, "feet"),
  21141. default: true
  21142. },
  21143. {
  21144. name: "Macro",
  21145. height: math.unit(1000, "feet")
  21146. },
  21147. {
  21148. name: "Megamacro",
  21149. height: math.unit(10, "miles")
  21150. },
  21151. {
  21152. name: "Gigamacro",
  21153. height: math.unit(3000, "miles")
  21154. },
  21155. {
  21156. name: "Teramacro",
  21157. height: math.unit(500000, "miles")
  21158. },
  21159. {
  21160. name: "Teramacro+",
  21161. height: math.unit(30, "galaxies")
  21162. },
  21163. ]
  21164. ))
  21165. characterMakers.push(() => makeCharacter(
  21166. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21167. {
  21168. front: {
  21169. height: math.unit(6, "feet"),
  21170. weight: math.unit(150, "lb"),
  21171. name: "Front",
  21172. image: {
  21173. source: "./media/characters/deathy/front.svg",
  21174. extra: 1552 / 1463,
  21175. bottom: 0.025
  21176. }
  21177. },
  21178. side: {
  21179. height: math.unit(6, "feet"),
  21180. weight: math.unit(150, "lb"),
  21181. name: "Side",
  21182. image: {
  21183. source: "./media/characters/deathy/side.svg",
  21184. extra: 1604 / 1455,
  21185. bottom: 0.025
  21186. }
  21187. },
  21188. back: {
  21189. height: math.unit(6, "feet"),
  21190. weight: math.unit(150, "lb"),
  21191. name: "Back",
  21192. image: {
  21193. source: "./media/characters/deathy/back.svg",
  21194. extra: 1580 / 1463,
  21195. bottom: 0.005
  21196. }
  21197. },
  21198. },
  21199. [
  21200. {
  21201. name: "Micro",
  21202. height: math.unit(5, "millimeters")
  21203. },
  21204. {
  21205. name: "Normal",
  21206. height: math.unit(6 + 5 / 12, "feet"),
  21207. default: true
  21208. },
  21209. ]
  21210. ))
  21211. characterMakers.push(() => makeCharacter(
  21212. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21213. {
  21214. front: {
  21215. height: math.unit(16, "feet"),
  21216. weight: math.unit(4000, "lb"),
  21217. name: "Front",
  21218. image: {
  21219. source: "./media/characters/juniper/front.svg",
  21220. bottom: 0.04
  21221. }
  21222. },
  21223. },
  21224. [
  21225. {
  21226. name: "Normal",
  21227. height: math.unit(16, "feet"),
  21228. default: true
  21229. },
  21230. ]
  21231. ))
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21234. {
  21235. front: {
  21236. height: math.unit(6, "feet"),
  21237. weight: math.unit(150, "lb"),
  21238. name: "Front",
  21239. image: {
  21240. source: "./media/characters/hipster/front.svg",
  21241. extra: 1312 / 1209,
  21242. bottom: 0.025
  21243. }
  21244. },
  21245. back: {
  21246. height: math.unit(6, "feet"),
  21247. weight: math.unit(150, "lb"),
  21248. name: "Back",
  21249. image: {
  21250. source: "./media/characters/hipster/back.svg",
  21251. extra: 1281 / 1196,
  21252. bottom: 0.01
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Micro",
  21259. height: math.unit(1, "mm")
  21260. },
  21261. {
  21262. name: "Normal",
  21263. height: math.unit(4, "inches"),
  21264. default: true
  21265. },
  21266. {
  21267. name: "Macro",
  21268. height: math.unit(500, "feet")
  21269. },
  21270. {
  21271. name: "Megamacro",
  21272. height: math.unit(1000, "miles")
  21273. },
  21274. ]
  21275. ))
  21276. characterMakers.push(() => makeCharacter(
  21277. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21278. {
  21279. front: {
  21280. height: math.unit(6, "feet"),
  21281. weight: math.unit(150, "lb"),
  21282. name: "Front",
  21283. image: {
  21284. source: "./media/characters/tendirmuldr/front.svg",
  21285. extra: 1878 / 1772,
  21286. bottom: 0.015
  21287. }
  21288. },
  21289. },
  21290. [
  21291. {
  21292. name: "Megamacro",
  21293. height: math.unit(1500, "miles"),
  21294. default: true
  21295. },
  21296. ]
  21297. ))
  21298. characterMakers.push(() => makeCharacter(
  21299. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21300. {
  21301. front: {
  21302. height: math.unit(14, "feet"),
  21303. weight: math.unit(12000, "lb"),
  21304. name: "Front",
  21305. image: {
  21306. source: "./media/characters/mort/front.svg",
  21307. extra: 365 / 318,
  21308. bottom: 0.01
  21309. }
  21310. },
  21311. side: {
  21312. height: math.unit(14, "feet"),
  21313. weight: math.unit(12000, "lb"),
  21314. name: "Side",
  21315. image: {
  21316. source: "./media/characters/mort/side.svg",
  21317. extra: 365 / 318,
  21318. bottom: 0.052
  21319. },
  21320. default: true
  21321. },
  21322. back: {
  21323. height: math.unit(14, "feet"),
  21324. weight: math.unit(12000, "lb"),
  21325. name: "Back",
  21326. image: {
  21327. source: "./media/characters/mort/back.svg",
  21328. extra: 371 / 332,
  21329. bottom: 0.18
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(14, "feet"),
  21337. default: true
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21343. {
  21344. front: {
  21345. height: math.unit(8, "feet"),
  21346. weight: math.unit(1, "ton"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/lycoa/front.svg",
  21350. extra: 1836/1728,
  21351. bottom: 81/1917
  21352. }
  21353. },
  21354. back: {
  21355. height: math.unit(8, "feet"),
  21356. weight: math.unit(1, "ton"),
  21357. name: "Back",
  21358. image: {
  21359. source: "./media/characters/lycoa/back.svg",
  21360. extra: 1785/1720,
  21361. bottom: 91/1876
  21362. }
  21363. },
  21364. head: {
  21365. height: math.unit(1.6243, "feet"),
  21366. name: "Head",
  21367. image: {
  21368. source: "./media/characters/lycoa/head.svg",
  21369. extra: 1011/782,
  21370. bottom: 0/1011
  21371. }
  21372. },
  21373. tailmaw: {
  21374. height: math.unit(1.9, "feet"),
  21375. name: "Tailmaw",
  21376. image: {
  21377. source: "./media/characters/lycoa/tailmaw.svg"
  21378. }
  21379. },
  21380. tentacles: {
  21381. height: math.unit(2.1, "feet"),
  21382. name: "Tentacles",
  21383. image: {
  21384. source: "./media/characters/lycoa/tentacles.svg"
  21385. }
  21386. },
  21387. dick: {
  21388. height: math.unit(1.73, "feet"),
  21389. name: "Dick",
  21390. image: {
  21391. source: "./media/characters/lycoa/dick.svg"
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(8, "feet"),
  21399. default: true
  21400. },
  21401. {
  21402. name: "Macro",
  21403. height: math.unit(30, "feet")
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21409. {
  21410. front: {
  21411. height: math.unit(4 + 2 / 12, "feet"),
  21412. weight: math.unit(70, "lb"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/naldara/front.svg",
  21416. extra: 1664/1387,
  21417. bottom: 81/1745
  21418. },
  21419. form: "anthro",
  21420. default: true
  21421. },
  21422. naga: {
  21423. height: math.unit(20, "feet"),
  21424. weight: math.unit(15000, "kg"),
  21425. name: "Front",
  21426. image: {
  21427. source: "./media/characters/naldara/naga.svg",
  21428. extra: 1590/1396,
  21429. bottom: 285/1875
  21430. },
  21431. form: "naga",
  21432. default: true
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(4 + 2 / 12, "feet"),
  21439. form: "anthro",
  21440. default: true
  21441. },
  21442. {
  21443. name: "Normal",
  21444. height: math.unit(20, "feet"),
  21445. form: "naga",
  21446. default: true
  21447. },
  21448. ],
  21449. {
  21450. "anthro": {
  21451. name: "Anthro",
  21452. default: true
  21453. },
  21454. "naga": {
  21455. name: "Naga"
  21456. }
  21457. }
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21461. {
  21462. front: {
  21463. height: math.unit(13 + 7 / 12, "feet"),
  21464. weight: math.unit(1500, "lb"),
  21465. name: "Front",
  21466. image: {
  21467. source: "./media/characters/briar/front.svg",
  21468. extra: 1223/1157,
  21469. bottom: 123/1346
  21470. }
  21471. },
  21472. },
  21473. [
  21474. {
  21475. name: "Normal",
  21476. height: math.unit(13 + 7 / 12, "feet"),
  21477. default: true
  21478. },
  21479. ]
  21480. ))
  21481. characterMakers.push(() => makeCharacter(
  21482. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21483. {
  21484. side: {
  21485. height: math.unit(16, "feet"),
  21486. weight: math.unit(500, "lb"),
  21487. name: "Side",
  21488. image: {
  21489. source: "./media/characters/vanguard/side.svg",
  21490. extra: 1022/914,
  21491. bottom: 30/1052
  21492. }
  21493. },
  21494. sideAlt: {
  21495. height: math.unit(10, "feet"),
  21496. weight: math.unit(500, "lb"),
  21497. name: "Side (Alt)",
  21498. image: {
  21499. source: "./media/characters/vanguard/side-alt.svg",
  21500. extra: 502 / 425,
  21501. bottom: 0.087
  21502. }
  21503. },
  21504. },
  21505. [
  21506. {
  21507. name: "Normal",
  21508. height: math.unit(17.71, "feet"),
  21509. default: true
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(7.5, "feet"),
  21518. weight: math.unit(2, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/artemis/work-safe-front.svg",
  21522. extra: 1192 / 1075,
  21523. bottom: 0.07
  21524. },
  21525. form: "work-safe",
  21526. default: true
  21527. },
  21528. frontNsfw: {
  21529. height: math.unit(7.5, "feet"),
  21530. weight: math.unit(2, "lb"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/artemis/calibrating-front.svg",
  21534. extra: 1192 / 1075,
  21535. bottom: 0.07
  21536. },
  21537. form: "calibrating",
  21538. default: true
  21539. },
  21540. frontNsfwer: {
  21541. height: math.unit(7.5, "feet"),
  21542. weight: math.unit(2, "lb"),
  21543. name: "Front",
  21544. image: {
  21545. source: "./media/characters/artemis/oversize-load-front.svg",
  21546. extra: 1192 / 1075,
  21547. bottom: 0.07
  21548. },
  21549. form: "oversize-load",
  21550. default: true
  21551. },
  21552. side: {
  21553. height: math.unit(7.5, "feet"),
  21554. weight: math.unit(2, "lb"),
  21555. name: "Side",
  21556. image: {
  21557. source: "./media/characters/artemis/work-safe-side.svg",
  21558. extra: 1192 / 1075,
  21559. bottom: 0.07
  21560. },
  21561. form: "work-safe"
  21562. },
  21563. sideNsfw: {
  21564. height: math.unit(7.5, "feet"),
  21565. weight: math.unit(2, "lb"),
  21566. name: "Side",
  21567. image: {
  21568. source: "./media/characters/artemis/calibrating-side.svg",
  21569. extra: 1192 / 1075,
  21570. bottom: 0.07
  21571. },
  21572. form: "calibrating"
  21573. },
  21574. sideNsfwer: {
  21575. height: math.unit(7.5, "feet"),
  21576. weight: math.unit(2, "lb"),
  21577. name: "Side",
  21578. image: {
  21579. source: "./media/characters/artemis/oversize-load-side.svg",
  21580. extra: 1192 / 1075,
  21581. bottom: 0.07
  21582. },
  21583. form: "oversize-load"
  21584. },
  21585. maw: {
  21586. height: math.unit(1.1, "feet"),
  21587. name: "Maw",
  21588. image: {
  21589. source: "./media/characters/artemis/maw.svg"
  21590. },
  21591. form: "work-safe"
  21592. },
  21593. stomach: {
  21594. height: math.unit(0.95, "feet"),
  21595. name: "Stomach",
  21596. image: {
  21597. source: "./media/characters/artemis/stomach.svg"
  21598. },
  21599. form: "work-safe"
  21600. },
  21601. dickCanine: {
  21602. height: math.unit(1, "feet"),
  21603. name: "Dick (Canine)",
  21604. image: {
  21605. source: "./media/characters/artemis/dick-canine.svg"
  21606. },
  21607. form: "calibrating"
  21608. },
  21609. dickEquine: {
  21610. height: math.unit(0.85, "feet"),
  21611. name: "Dick (Equine)",
  21612. image: {
  21613. source: "./media/characters/artemis/dick-equine.svg"
  21614. },
  21615. form: "calibrating"
  21616. },
  21617. dickExotic: {
  21618. height: math.unit(0.85, "feet"),
  21619. name: "Dick (Exotic)",
  21620. image: {
  21621. source: "./media/characters/artemis/dick-exotic.svg"
  21622. },
  21623. form: "calibrating"
  21624. },
  21625. dickCanineBigger: {
  21626. height: math.unit(1 * 1.33, "feet"),
  21627. name: "Dick (Canine)",
  21628. image: {
  21629. source: "./media/characters/artemis/dick-canine.svg"
  21630. },
  21631. form: "oversize-load"
  21632. },
  21633. dickEquineBigger: {
  21634. height: math.unit(0.85 * 1.33, "feet"),
  21635. name: "Dick (Equine)",
  21636. image: {
  21637. source: "./media/characters/artemis/dick-equine.svg"
  21638. },
  21639. form: "oversize-load"
  21640. },
  21641. dickExoticBigger: {
  21642. height: math.unit(0.85 * 1.33, "feet"),
  21643. name: "Dick (Exotic)",
  21644. image: {
  21645. source: "./media/characters/artemis/dick-exotic.svg"
  21646. },
  21647. form: "oversize-load"
  21648. },
  21649. },
  21650. [
  21651. {
  21652. name: "Normal",
  21653. height: math.unit(7.5, "feet"),
  21654. form: "work-safe",
  21655. default: true
  21656. },
  21657. {
  21658. name: "Normal",
  21659. height: math.unit(7.5, "feet"),
  21660. form: "calibrating",
  21661. default: true
  21662. },
  21663. {
  21664. name: "Normal",
  21665. height: math.unit(7.5, "feet"),
  21666. form: "oversize-load",
  21667. default: true
  21668. },
  21669. {
  21670. name: "Enlarged",
  21671. height: math.unit(12, "feet"),
  21672. form: "work-safe",
  21673. },
  21674. {
  21675. name: "Enlarged",
  21676. height: math.unit(12, "feet"),
  21677. form: "calibrating",
  21678. },
  21679. {
  21680. name: "Enlarged",
  21681. height: math.unit(12, "feet"),
  21682. form: "oversize-load",
  21683. },
  21684. ],
  21685. {
  21686. "work-safe": {
  21687. name: "Work-Safe",
  21688. default: true
  21689. },
  21690. "calibrating": {
  21691. name: "Calibrating"
  21692. },
  21693. "oversize-load": {
  21694. name: "Oversize Load"
  21695. }
  21696. }
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21700. {
  21701. front: {
  21702. height: math.unit(5 + 3 / 12, "feet"),
  21703. weight: math.unit(160, "lb"),
  21704. name: "Front",
  21705. image: {
  21706. source: "./media/characters/kira/front.svg",
  21707. extra: 906 / 786,
  21708. bottom: 0.01
  21709. }
  21710. },
  21711. back: {
  21712. height: math.unit(5 + 3 / 12, "feet"),
  21713. weight: math.unit(160, "lb"),
  21714. name: "Back",
  21715. image: {
  21716. source: "./media/characters/kira/back.svg",
  21717. extra: 882 / 757,
  21718. bottom: 0.005
  21719. }
  21720. },
  21721. frontDressed: {
  21722. height: math.unit(5 + 3 / 12, "feet"),
  21723. weight: math.unit(160, "lb"),
  21724. name: "Front (Dressed)",
  21725. image: {
  21726. source: "./media/characters/kira/front-dressed.svg",
  21727. extra: 906 / 786,
  21728. bottom: 0.01
  21729. }
  21730. },
  21731. beans: {
  21732. height: math.unit(0.92, "feet"),
  21733. name: "Beans",
  21734. image: {
  21735. source: "./media/characters/kira/beans.svg"
  21736. }
  21737. },
  21738. },
  21739. [
  21740. {
  21741. name: "Normal",
  21742. height: math.unit(5 + 3 / 12, "feet"),
  21743. default: true
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21749. {
  21750. front: {
  21751. height: math.unit(5 + 4 / 12, "feet"),
  21752. weight: math.unit(145, "lb"),
  21753. name: "Front",
  21754. image: {
  21755. source: "./media/characters/scramble/front.svg",
  21756. extra: 763 / 727,
  21757. bottom: 0.05
  21758. }
  21759. },
  21760. back: {
  21761. height: math.unit(5 + 4 / 12, "feet"),
  21762. weight: math.unit(145, "lb"),
  21763. name: "Back",
  21764. image: {
  21765. source: "./media/characters/scramble/back.svg",
  21766. extra: 826 / 737,
  21767. bottom: 0.002
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Normal",
  21774. height: math.unit(5 + 4 / 12, "feet"),
  21775. default: true
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21781. {
  21782. side: {
  21783. height: math.unit(6 + 2 / 12, "feet"),
  21784. weight: math.unit(190, "lb"),
  21785. name: "Side",
  21786. image: {
  21787. source: "./media/characters/biscuit/side.svg",
  21788. extra: 858 / 791,
  21789. bottom: 0.044
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(6 + 2 / 12, "feet"),
  21797. default: true
  21798. },
  21799. ]
  21800. ))
  21801. characterMakers.push(() => makeCharacter(
  21802. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21803. {
  21804. front: {
  21805. height: math.unit(5 + 2 / 12, "feet"),
  21806. weight: math.unit(120, "lb"),
  21807. name: "Front",
  21808. image: {
  21809. source: "./media/characters/poffin/front.svg",
  21810. extra: 786 / 680,
  21811. bottom: 0.005
  21812. }
  21813. },
  21814. },
  21815. [
  21816. {
  21817. name: "Normal",
  21818. height: math.unit(5 + 2 / 12, "feet"),
  21819. default: true
  21820. },
  21821. ]
  21822. ))
  21823. characterMakers.push(() => makeCharacter(
  21824. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21825. {
  21826. front: {
  21827. height: math.unit(6 + 3 / 12, "feet"),
  21828. weight: math.unit(519, "lb"),
  21829. name: "Front",
  21830. image: {
  21831. source: "./media/characters/dhari/front.svg",
  21832. extra: 1048 / 946,
  21833. bottom: 0.015
  21834. }
  21835. },
  21836. back: {
  21837. height: math.unit(6 + 3 / 12, "feet"),
  21838. weight: math.unit(519, "lb"),
  21839. name: "Back",
  21840. image: {
  21841. source: "./media/characters/dhari/back.svg",
  21842. extra: 1048 / 931,
  21843. bottom: 0.005
  21844. }
  21845. },
  21846. frontDressed: {
  21847. height: math.unit(6 + 3 / 12, "feet"),
  21848. weight: math.unit(519, "lb"),
  21849. name: "Front (Dressed)",
  21850. image: {
  21851. source: "./media/characters/dhari/front-dressed.svg",
  21852. extra: 1713 / 1546,
  21853. bottom: 0.02
  21854. }
  21855. },
  21856. backDressed: {
  21857. height: math.unit(6 + 3 / 12, "feet"),
  21858. weight: math.unit(519, "lb"),
  21859. name: "Back (Dressed)",
  21860. image: {
  21861. source: "./media/characters/dhari/back-dressed.svg",
  21862. extra: 1699 / 1537,
  21863. bottom: 0.01
  21864. }
  21865. },
  21866. maw: {
  21867. height: math.unit(0.95, "feet"),
  21868. name: "Maw",
  21869. image: {
  21870. source: "./media/characters/dhari/maw.svg"
  21871. }
  21872. },
  21873. wereFront: {
  21874. height: math.unit(12 + 8 / 12, "feet"),
  21875. weight: math.unit(4000, "lb"),
  21876. name: "Front (Were)",
  21877. image: {
  21878. source: "./media/characters/dhari/were-front.svg",
  21879. extra: 1065 / 969,
  21880. bottom: 0.015
  21881. }
  21882. },
  21883. wereBack: {
  21884. height: math.unit(12 + 8 / 12, "feet"),
  21885. weight: math.unit(4000, "lb"),
  21886. name: "Back (Were)",
  21887. image: {
  21888. source: "./media/characters/dhari/were-back.svg",
  21889. extra: 1065 / 969,
  21890. bottom: 0.012
  21891. }
  21892. },
  21893. wereMaw: {
  21894. height: math.unit(0.625, "meters"),
  21895. name: "Maw (Were)",
  21896. image: {
  21897. source: "./media/characters/dhari/were-maw.svg"
  21898. }
  21899. },
  21900. },
  21901. [
  21902. {
  21903. name: "Normal",
  21904. height: math.unit(6 + 3 / 12, "feet"),
  21905. default: true
  21906. },
  21907. ]
  21908. ))
  21909. characterMakers.push(() => makeCharacter(
  21910. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21911. {
  21912. anthro: {
  21913. height: math.unit(5 + 7 / 12, "feet"),
  21914. weight: math.unit(175, "lb"),
  21915. name: "Anthro",
  21916. image: {
  21917. source: "./media/characters/rena-dyne/anthro.svg",
  21918. extra: 1849 / 1785,
  21919. bottom: 0.005
  21920. }
  21921. },
  21922. taur: {
  21923. height: math.unit(15 + 6 / 12, "feet"),
  21924. weight: math.unit(8000, "lb"),
  21925. name: "Taur",
  21926. image: {
  21927. source: "./media/characters/rena-dyne/taur.svg",
  21928. extra: 2315 / 2234,
  21929. bottom: 0.033
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Normal",
  21936. height: math.unit(5 + 7 / 12, "feet"),
  21937. default: true
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21943. {
  21944. front: {
  21945. height: math.unit(8, "feet"),
  21946. weight: math.unit(600, "lb"),
  21947. name: "Front",
  21948. image: {
  21949. source: "./media/characters/weremeep/front.svg",
  21950. extra: 970/849,
  21951. bottom: 7/977
  21952. }
  21953. },
  21954. },
  21955. [
  21956. {
  21957. name: "Normal",
  21958. height: math.unit(8, "feet"),
  21959. default: true
  21960. },
  21961. {
  21962. name: "Lorg",
  21963. height: math.unit(12, "feet")
  21964. },
  21965. {
  21966. name: "Oh Lawd She Comin'",
  21967. height: math.unit(20, "feet")
  21968. },
  21969. ]
  21970. ))
  21971. characterMakers.push(() => makeCharacter(
  21972. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21973. {
  21974. front: {
  21975. height: math.unit(4, "feet"),
  21976. weight: math.unit(90, "lb"),
  21977. name: "Front",
  21978. image: {
  21979. source: "./media/characters/reza/front.svg",
  21980. extra: 1183 / 1111,
  21981. bottom: 0.017
  21982. }
  21983. },
  21984. back: {
  21985. height: math.unit(4, "feet"),
  21986. weight: math.unit(90, "lb"),
  21987. name: "Back",
  21988. image: {
  21989. source: "./media/characters/reza/back.svg",
  21990. extra: 1183 / 1111,
  21991. bottom: 0.01
  21992. }
  21993. },
  21994. drake: {
  21995. height: math.unit(30, "feet"),
  21996. weight: math.unit(246960, "lb"),
  21997. name: "Drake",
  21998. image: {
  21999. source: "./media/characters/reza/drake.svg",
  22000. extra: 2350 / 2024,
  22001. bottom: 60.7 / 2403
  22002. }
  22003. },
  22004. },
  22005. [
  22006. {
  22007. name: "Normal",
  22008. height: math.unit(4, "feet"),
  22009. default: true
  22010. },
  22011. ]
  22012. ))
  22013. characterMakers.push(() => makeCharacter(
  22014. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22015. {
  22016. side: {
  22017. height: math.unit(15, "feet"),
  22018. weight: math.unit(14, "tons"),
  22019. name: "Side",
  22020. image: {
  22021. source: "./media/characters/athea/side.svg",
  22022. extra: 960 / 540,
  22023. bottom: 0.003
  22024. }
  22025. },
  22026. sitting: {
  22027. height: math.unit(6 * 2.85, "feet"),
  22028. weight: math.unit(14, "tons"),
  22029. name: "Sitting",
  22030. image: {
  22031. source: "./media/characters/athea/sitting.svg",
  22032. extra: 621 / 581,
  22033. bottom: 0.075
  22034. }
  22035. },
  22036. maw: {
  22037. height: math.unit(7.59498031496063, "feet"),
  22038. name: "Maw",
  22039. image: {
  22040. source: "./media/characters/athea/maw.svg"
  22041. }
  22042. },
  22043. },
  22044. [
  22045. {
  22046. name: "Lap Cat",
  22047. height: math.unit(2.5, "feet")
  22048. },
  22049. {
  22050. name: "Minimacro",
  22051. height: math.unit(15, "feet"),
  22052. default: true
  22053. },
  22054. {
  22055. name: "Macro",
  22056. height: math.unit(120, "feet")
  22057. },
  22058. {
  22059. name: "Macro+",
  22060. height: math.unit(640, "feet")
  22061. },
  22062. {
  22063. name: "Colossus",
  22064. height: math.unit(2.2, "miles")
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22070. {
  22071. front: {
  22072. height: math.unit(8 + 8 / 12, "feet"),
  22073. weight: math.unit(130, "kg"),
  22074. name: "Front",
  22075. image: {
  22076. source: "./media/characters/seroko/front.svg",
  22077. extra: 1385 / 1280,
  22078. bottom: 0.025
  22079. }
  22080. },
  22081. back: {
  22082. height: math.unit(8 + 8 / 12, "feet"),
  22083. weight: math.unit(130, "kg"),
  22084. name: "Back",
  22085. image: {
  22086. source: "./media/characters/seroko/back.svg",
  22087. extra: 1369 / 1238,
  22088. bottom: 0.018
  22089. }
  22090. },
  22091. frontDressed: {
  22092. height: math.unit(8 + 8 / 12, "feet"),
  22093. weight: math.unit(130, "kg"),
  22094. name: "Front (Dressed)",
  22095. image: {
  22096. source: "./media/characters/seroko/front-dressed.svg",
  22097. extra: 1366 / 1275,
  22098. bottom: 0.03
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Normal",
  22105. height: math.unit(8 + 8 / 12, "feet"),
  22106. default: true
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22112. {
  22113. front: {
  22114. height: math.unit(5.5, "feet"),
  22115. weight: math.unit(160, "lb"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/quatzi/front.svg",
  22119. extra: 2346 / 2242,
  22120. bottom: 0.015
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(5.5, "feet"),
  22128. default: true
  22129. },
  22130. {
  22131. name: "Big",
  22132. height: math.unit(7.7, "feet")
  22133. },
  22134. ]
  22135. ))
  22136. characterMakers.push(() => makeCharacter(
  22137. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22138. {
  22139. front: {
  22140. height: math.unit(5 + 11 / 12, "feet"),
  22141. weight: math.unit(180, "lb"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/sen/front.svg",
  22145. extra: 1321 / 1254,
  22146. bottom: 0.015
  22147. }
  22148. },
  22149. side: {
  22150. height: math.unit(5 + 11 / 12, "feet"),
  22151. weight: math.unit(180, "lb"),
  22152. name: "Side",
  22153. image: {
  22154. source: "./media/characters/sen/side.svg",
  22155. extra: 1321 / 1254,
  22156. bottom: 0.007
  22157. }
  22158. },
  22159. back: {
  22160. height: math.unit(5 + 11 / 12, "feet"),
  22161. weight: math.unit(180, "lb"),
  22162. name: "Back",
  22163. image: {
  22164. source: "./media/characters/sen/back.svg",
  22165. extra: 1321 / 1254
  22166. }
  22167. },
  22168. },
  22169. [
  22170. {
  22171. name: "Normal",
  22172. height: math.unit(5 + 11 / 12, "feet"),
  22173. default: true
  22174. },
  22175. ]
  22176. ))
  22177. characterMakers.push(() => makeCharacter(
  22178. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22179. {
  22180. front: {
  22181. height: math.unit(166.6, "cm"),
  22182. weight: math.unit(66.6, "kg"),
  22183. name: "Front",
  22184. image: {
  22185. source: "./media/characters/fruity/front.svg",
  22186. extra: 1510 / 1386,
  22187. bottom: 0.04
  22188. }
  22189. },
  22190. back: {
  22191. height: math.unit(166.6, "cm"),
  22192. weight: math.unit(66.6, "lb"),
  22193. name: "Back",
  22194. image: {
  22195. source: "./media/characters/fruity/back.svg",
  22196. extra: 1563 / 1435,
  22197. bottom: 0.005
  22198. }
  22199. },
  22200. },
  22201. [
  22202. {
  22203. name: "Normal",
  22204. height: math.unit(166.6, "cm"),
  22205. default: true
  22206. },
  22207. {
  22208. name: "Demonic",
  22209. height: math.unit(166.6, "feet")
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22215. {
  22216. side: {
  22217. height: math.unit(10, "feet"),
  22218. weight: math.unit(500, "lb"),
  22219. name: "Side",
  22220. image: {
  22221. source: "./media/characters/zost/side.svg",
  22222. extra: 2870/2533,
  22223. bottom: 252/3122
  22224. }
  22225. },
  22226. mawFront: {
  22227. height: math.unit(1.08, "meters"),
  22228. name: "Maw (Front)",
  22229. image: {
  22230. source: "./media/characters/zost/maw-front.svg"
  22231. }
  22232. },
  22233. mawSide: {
  22234. height: math.unit(2.66, "feet"),
  22235. name: "Maw (Side)",
  22236. image: {
  22237. source: "./media/characters/zost/maw-side.svg"
  22238. }
  22239. },
  22240. wingspan: {
  22241. height: math.unit(7.4, "feet"),
  22242. name: "Wingspan",
  22243. image: {
  22244. source: "./media/characters/zost/wingspan.svg"
  22245. }
  22246. },
  22247. },
  22248. [
  22249. {
  22250. name: "Normal",
  22251. height: math.unit(10, "feet"),
  22252. default: true
  22253. },
  22254. ]
  22255. ))
  22256. characterMakers.push(() => makeCharacter(
  22257. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22258. {
  22259. front: {
  22260. height: math.unit(5 + 4 / 12, "feet"),
  22261. weight: math.unit(120, "lb"),
  22262. name: "Front",
  22263. image: {
  22264. source: "./media/characters/luci/front.svg",
  22265. extra: 1985 / 1884,
  22266. bottom: 0.04
  22267. }
  22268. },
  22269. back: {
  22270. height: math.unit(5 + 4 / 12, "feet"),
  22271. weight: math.unit(120, "lb"),
  22272. name: "Back",
  22273. image: {
  22274. source: "./media/characters/luci/back.svg",
  22275. extra: 1892 / 1791,
  22276. bottom: 0.002
  22277. }
  22278. },
  22279. },
  22280. [
  22281. {
  22282. name: "Normal",
  22283. height: math.unit(5 + 4 / 12, "feet"),
  22284. default: true
  22285. },
  22286. ]
  22287. ))
  22288. characterMakers.push(() => makeCharacter(
  22289. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22290. {
  22291. front: {
  22292. height: math.unit(1500, "feet"),
  22293. weight: math.unit(3.8e6, "tons"),
  22294. name: "Front",
  22295. image: {
  22296. source: "./media/characters/2th/front.svg",
  22297. extra: 3489 / 3350,
  22298. bottom: 0.1
  22299. }
  22300. },
  22301. foot: {
  22302. height: math.unit(461, "feet"),
  22303. name: "Foot",
  22304. image: {
  22305. source: "./media/characters/2th/foot.svg"
  22306. }
  22307. },
  22308. },
  22309. [
  22310. {
  22311. name: "\"Micro\"",
  22312. height: math.unit(15 + 7 / 12, "feet")
  22313. },
  22314. {
  22315. name: "Normal",
  22316. height: math.unit(1500, "feet"),
  22317. default: true
  22318. },
  22319. {
  22320. name: "Macro",
  22321. height: math.unit(5000, "feet")
  22322. },
  22323. {
  22324. name: "Megamacro",
  22325. height: math.unit(15, "miles")
  22326. },
  22327. {
  22328. name: "Gigamacro",
  22329. height: math.unit(4000, "miles")
  22330. },
  22331. {
  22332. name: "Galactic",
  22333. height: math.unit(50, "AU")
  22334. },
  22335. ]
  22336. ))
  22337. characterMakers.push(() => makeCharacter(
  22338. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22339. {
  22340. front: {
  22341. height: math.unit(5 + 6 / 12, "feet"),
  22342. weight: math.unit(220, "lb"),
  22343. name: "Front",
  22344. image: {
  22345. source: "./media/characters/amethyst/front.svg",
  22346. extra: 2078 / 2040,
  22347. bottom: 0.045
  22348. }
  22349. },
  22350. back: {
  22351. height: math.unit(5 + 6 / 12, "feet"),
  22352. weight: math.unit(220, "lb"),
  22353. name: "Back",
  22354. image: {
  22355. source: "./media/characters/amethyst/back.svg",
  22356. extra: 2021 / 1989,
  22357. bottom: 0.02
  22358. }
  22359. },
  22360. },
  22361. [
  22362. {
  22363. name: "Normal",
  22364. height: math.unit(5 + 6 / 12, "feet"),
  22365. default: true
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22371. {
  22372. front: {
  22373. height: math.unit(4 + 11 / 12, "feet"),
  22374. weight: math.unit(120, "lb"),
  22375. name: "Front",
  22376. image: {
  22377. source: "./media/characters/yumi-akiyama/front.svg",
  22378. extra: 1327 / 1235,
  22379. bottom: 0.02
  22380. }
  22381. },
  22382. back: {
  22383. height: math.unit(4 + 11 / 12, "feet"),
  22384. weight: math.unit(120, "lb"),
  22385. name: "Back",
  22386. image: {
  22387. source: "./media/characters/yumi-akiyama/back.svg",
  22388. extra: 1287 / 1245,
  22389. bottom: 0.002
  22390. }
  22391. },
  22392. },
  22393. [
  22394. {
  22395. name: "Galactic",
  22396. height: math.unit(50, "galaxies"),
  22397. default: true
  22398. },
  22399. {
  22400. name: "Universal",
  22401. height: math.unit(100, "universes")
  22402. },
  22403. ]
  22404. ))
  22405. characterMakers.push(() => makeCharacter(
  22406. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22407. {
  22408. front: {
  22409. height: math.unit(8, "feet"),
  22410. weight: math.unit(500, "lb"),
  22411. name: "Front",
  22412. image: {
  22413. source: "./media/characters/rifter-yrmori/front.svg",
  22414. extra: 1180 / 1125,
  22415. bottom: 0.02
  22416. }
  22417. },
  22418. back: {
  22419. height: math.unit(8, "feet"),
  22420. weight: math.unit(500, "lb"),
  22421. name: "Back",
  22422. image: {
  22423. source: "./media/characters/rifter-yrmori/back.svg",
  22424. extra: 1190 / 1145,
  22425. bottom: 0.001
  22426. }
  22427. },
  22428. wings: {
  22429. height: math.unit(7.75, "feet"),
  22430. weight: math.unit(500, "lb"),
  22431. name: "Wings",
  22432. image: {
  22433. source: "./media/characters/rifter-yrmori/wings.svg",
  22434. extra: 1357 / 1285
  22435. }
  22436. },
  22437. maw: {
  22438. height: math.unit(0.8, "feet"),
  22439. name: "Maw",
  22440. image: {
  22441. source: "./media/characters/rifter-yrmori/maw.svg"
  22442. }
  22443. },
  22444. mawfront: {
  22445. height: math.unit(1.45, "feet"),
  22446. name: "Maw (Front)",
  22447. image: {
  22448. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "Normal",
  22455. height: math.unit(8, "feet"),
  22456. default: true
  22457. },
  22458. {
  22459. name: "Macro",
  22460. height: math.unit(42, "meters")
  22461. },
  22462. ]
  22463. ))
  22464. characterMakers.push(() => makeCharacter(
  22465. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22466. {
  22467. were: {
  22468. height: math.unit(25 + 6 / 12, "feet"),
  22469. weight: math.unit(10000, "lb"),
  22470. name: "Were",
  22471. image: {
  22472. source: "./media/characters/tahajin/were.svg",
  22473. extra: 801 / 770,
  22474. bottom: 0.042
  22475. }
  22476. },
  22477. aquatic: {
  22478. height: math.unit(6 + 4 / 12, "feet"),
  22479. weight: math.unit(160, "lb"),
  22480. name: "Aquatic",
  22481. image: {
  22482. source: "./media/characters/tahajin/aquatic.svg",
  22483. extra: 572 / 542,
  22484. bottom: 0.04
  22485. }
  22486. },
  22487. chow: {
  22488. height: math.unit(8 + 11 / 12, "feet"),
  22489. weight: math.unit(450, "lb"),
  22490. name: "Chow",
  22491. image: {
  22492. source: "./media/characters/tahajin/chow.svg",
  22493. extra: 660 / 640,
  22494. bottom: 0.015
  22495. }
  22496. },
  22497. demiNaga: {
  22498. height: math.unit(6 + 8 / 12, "feet"),
  22499. weight: math.unit(300, "lb"),
  22500. name: "Demi Naga",
  22501. image: {
  22502. source: "./media/characters/tahajin/demi-naga.svg",
  22503. extra: 643 / 615,
  22504. bottom: 0.1
  22505. }
  22506. },
  22507. data: {
  22508. height: math.unit(5, "inches"),
  22509. weight: math.unit(0.1, "lb"),
  22510. name: "Data",
  22511. image: {
  22512. source: "./media/characters/tahajin/data.svg"
  22513. }
  22514. },
  22515. fluu: {
  22516. height: math.unit(5 + 7 / 12, "feet"),
  22517. weight: math.unit(140, "lb"),
  22518. name: "Fluu",
  22519. image: {
  22520. source: "./media/characters/tahajin/fluu.svg",
  22521. extra: 628 / 592,
  22522. bottom: 0.02
  22523. }
  22524. },
  22525. starWarrior: {
  22526. height: math.unit(4 + 5 / 12, "feet"),
  22527. weight: math.unit(50, "lb"),
  22528. name: "Star Warrior",
  22529. image: {
  22530. source: "./media/characters/tahajin/star-warrior.svg"
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Normal",
  22537. height: math.unit(25 + 6 / 12, "feet"),
  22538. default: true
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22544. {
  22545. front: {
  22546. height: math.unit(8, "feet"),
  22547. weight: math.unit(350, "lb"),
  22548. name: "Front",
  22549. image: {
  22550. source: "./media/characters/gabira/front.svg",
  22551. extra: 1261/1154,
  22552. bottom: 51/1312
  22553. }
  22554. },
  22555. back: {
  22556. height: math.unit(8, "feet"),
  22557. weight: math.unit(350, "lb"),
  22558. name: "Back",
  22559. image: {
  22560. source: "./media/characters/gabira/back.svg",
  22561. extra: 1265/1163,
  22562. bottom: 46/1311
  22563. }
  22564. },
  22565. head: {
  22566. height: math.unit(2.85, "feet"),
  22567. name: "Head",
  22568. image: {
  22569. source: "./media/characters/gabira/head.svg"
  22570. }
  22571. },
  22572. },
  22573. [
  22574. {
  22575. name: "Normal",
  22576. height: math.unit(8, "feet"),
  22577. default: true
  22578. },
  22579. ]
  22580. ))
  22581. characterMakers.push(() => makeCharacter(
  22582. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22583. {
  22584. front: {
  22585. height: math.unit(5 + 3 / 12, "feet"),
  22586. weight: math.unit(137, "lb"),
  22587. name: "Front",
  22588. image: {
  22589. source: "./media/characters/sasha-katraine/front.svg",
  22590. extra: 1745/1694,
  22591. bottom: 37/1782
  22592. }
  22593. },
  22594. back: {
  22595. height: math.unit(5 + 3 / 12, "feet"),
  22596. weight: math.unit(137, "lb"),
  22597. name: "Back",
  22598. image: {
  22599. source: "./media/characters/sasha-katraine/back.svg",
  22600. extra: 1776/1699,
  22601. bottom: 26/1802
  22602. }
  22603. },
  22604. },
  22605. [
  22606. {
  22607. name: "Micro",
  22608. height: math.unit(5, "inches")
  22609. },
  22610. {
  22611. name: "Normal",
  22612. height: math.unit(5 + 3 / 12, "feet"),
  22613. default: true
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22619. {
  22620. side: {
  22621. height: math.unit(4, "inches"),
  22622. weight: math.unit(200, "grams"),
  22623. name: "Side",
  22624. image: {
  22625. source: "./media/characters/der/side.svg",
  22626. extra: 719 / 400,
  22627. bottom: 30.6 / 749.9187
  22628. }
  22629. },
  22630. },
  22631. [
  22632. {
  22633. name: "Micro",
  22634. height: math.unit(4, "inches"),
  22635. default: true
  22636. },
  22637. ]
  22638. ))
  22639. characterMakers.push(() => makeCharacter(
  22640. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22641. {
  22642. side: {
  22643. height: math.unit(30, "meters"),
  22644. weight: math.unit(700, "tonnes"),
  22645. name: "Side",
  22646. image: {
  22647. source: "./media/characters/fixerdragon/side.svg",
  22648. extra: (1293.0514 - 116.03) / 1106.86,
  22649. bottom: 116.03 / 1293.0514
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Planck",
  22656. height: math.unit(1.6e-35, "meters")
  22657. },
  22658. {
  22659. name: "Micro",
  22660. height: math.unit(0.4, "meters")
  22661. },
  22662. {
  22663. name: "Normal",
  22664. height: math.unit(30, "meters"),
  22665. default: true
  22666. },
  22667. {
  22668. name: "Megamacro",
  22669. height: math.unit(1.2, "megameters")
  22670. },
  22671. {
  22672. name: "Teramacro",
  22673. height: math.unit(130, "terameters")
  22674. },
  22675. {
  22676. name: "Yottamacro",
  22677. height: math.unit(6200, "yottameters")
  22678. },
  22679. ]
  22680. ));
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22683. {
  22684. front: {
  22685. height: math.unit(8, "feet"),
  22686. weight: math.unit(250, "lb"),
  22687. name: "Front",
  22688. image: {
  22689. source: "./media/characters/kite/front.svg",
  22690. extra: 2796 / 2659,
  22691. bottom: 0.002
  22692. }
  22693. },
  22694. },
  22695. [
  22696. {
  22697. name: "Normal",
  22698. height: math.unit(8, "feet"),
  22699. default: true
  22700. },
  22701. {
  22702. name: "Macro",
  22703. height: math.unit(360, "feet")
  22704. },
  22705. {
  22706. name: "Megamacro",
  22707. height: math.unit(1500, "feet")
  22708. },
  22709. ]
  22710. ))
  22711. characterMakers.push(() => makeCharacter(
  22712. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22713. {
  22714. front: {
  22715. height: math.unit(5 + 11/12, "feet"),
  22716. weight: math.unit(170, "lb"),
  22717. name: "Front",
  22718. image: {
  22719. source: "./media/characters/poojawa-vynar/front.svg",
  22720. extra: 1735/1585,
  22721. bottom: 96/1831
  22722. }
  22723. },
  22724. back: {
  22725. height: math.unit(5 + 11/12, "feet"),
  22726. weight: math.unit(170, "lb"),
  22727. name: "Back",
  22728. image: {
  22729. source: "./media/characters/poojawa-vynar/back.svg",
  22730. extra: 1749/1607,
  22731. bottom: 28/1777
  22732. }
  22733. },
  22734. male: {
  22735. height: math.unit(5 + 11/12, "feet"),
  22736. weight: math.unit(170, "lb"),
  22737. name: "Male",
  22738. image: {
  22739. source: "./media/characters/poojawa-vynar/male.svg",
  22740. extra: 1855/1713,
  22741. bottom: 63/1918
  22742. }
  22743. },
  22744. taur: {
  22745. height: math.unit(5 + 11/12, "feet"),
  22746. weight: math.unit(170, "lb"),
  22747. name: "Taur",
  22748. image: {
  22749. source: "./media/characters/poojawa-vynar/taur.svg",
  22750. extra: 1151/1059,
  22751. bottom: 356/1507
  22752. }
  22753. },
  22754. frontDressed: {
  22755. height: math.unit(5 + 11/12, "feet"),
  22756. weight: math.unit(170, "lb"),
  22757. name: "Front (Dressed)",
  22758. image: {
  22759. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22760. extra: 1735/1585,
  22761. bottom: 96/1831
  22762. }
  22763. },
  22764. backDressed: {
  22765. height: math.unit(5 + 11/12, "feet"),
  22766. weight: math.unit(170, "lb"),
  22767. name: "Back (Dressed)",
  22768. image: {
  22769. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22770. extra: 1749/1607,
  22771. bottom: 28/1777
  22772. }
  22773. },
  22774. maleDressed: {
  22775. height: math.unit(5 + 11/12, "feet"),
  22776. weight: math.unit(170, "lb"),
  22777. name: "Male (Dressed)",
  22778. image: {
  22779. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22780. extra: 1855/1713,
  22781. bottom: 63/1918
  22782. }
  22783. },
  22784. taurDressed: {
  22785. height: math.unit(5 + 11/12, "feet"),
  22786. weight: math.unit(170, "lb"),
  22787. name: "Taur (Dressed)",
  22788. image: {
  22789. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22790. extra: 1151/1059,
  22791. bottom: 356/1507
  22792. }
  22793. },
  22794. maw: {
  22795. height: math.unit(1.46, "feet"),
  22796. name: "Maw",
  22797. image: {
  22798. source: "./media/characters/poojawa-vynar/maw.svg"
  22799. }
  22800. },
  22801. head: {
  22802. height: math.unit(2.34, "feet"),
  22803. name: "Head",
  22804. image: {
  22805. source: "./media/characters/poojawa-vynar/head.svg"
  22806. }
  22807. },
  22808. paw: {
  22809. height: math.unit(1.61, "feet"),
  22810. name: "Paw",
  22811. image: {
  22812. source: "./media/characters/poojawa-vynar/paw.svg"
  22813. }
  22814. },
  22815. pawToering: {
  22816. height: math.unit(1.72, "feet"),
  22817. name: "Paw (Toering)",
  22818. image: {
  22819. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22820. }
  22821. },
  22822. toering: {
  22823. height: math.unit(2.9, "inches"),
  22824. name: "Toering",
  22825. image: {
  22826. source: "./media/characters/poojawa-vynar/toering.svg"
  22827. }
  22828. },
  22829. shaft: {
  22830. height: math.unit(0.625, "feet"),
  22831. name: "Shaft",
  22832. image: {
  22833. source: "./media/characters/poojawa-vynar/shaft.svg"
  22834. }
  22835. },
  22836. spade: {
  22837. height: math.unit(0.42, "feet"),
  22838. name: "Spade",
  22839. image: {
  22840. source: "./media/characters/poojawa-vynar/spade.svg"
  22841. }
  22842. },
  22843. },
  22844. [
  22845. {
  22846. name: "Shortstack",
  22847. height: math.unit(4, "feet")
  22848. },
  22849. {
  22850. name: "Normal",
  22851. height: math.unit(5 + 11 / 12, "feet"),
  22852. default: true
  22853. },
  22854. {
  22855. name: "Tauric",
  22856. height: math.unit(4, "meters")
  22857. },
  22858. ]
  22859. ))
  22860. characterMakers.push(() => makeCharacter(
  22861. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22862. {
  22863. front: {
  22864. height: math.unit(293, "meters"),
  22865. weight: math.unit(70400, "tons"),
  22866. name: "Front",
  22867. image: {
  22868. source: "./media/characters/violette/front.svg",
  22869. extra: 1227 / 1180,
  22870. bottom: 0.005
  22871. }
  22872. },
  22873. back: {
  22874. height: math.unit(293, "meters"),
  22875. weight: math.unit(70400, "tons"),
  22876. name: "Back",
  22877. image: {
  22878. source: "./media/characters/violette/back.svg",
  22879. extra: 1227 / 1180,
  22880. bottom: 0.005
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Macro",
  22887. height: math.unit(293, "meters"),
  22888. default: true
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22894. {
  22895. front: {
  22896. height: math.unit(1050, "feet"),
  22897. weight: math.unit(200000, "tons"),
  22898. name: "Front",
  22899. image: {
  22900. source: "./media/characters/alessandra/front.svg",
  22901. extra: 960 / 912,
  22902. bottom: 0.06
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Macro",
  22909. height: math.unit(1050, "feet")
  22910. },
  22911. {
  22912. name: "Macro+",
  22913. height: math.unit(900, "meters"),
  22914. default: true
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(5, "feet"),
  22923. weight: math.unit(187, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/person/front.svg",
  22927. extra: 3087 / 2945,
  22928. bottom: 91 / 3181
  22929. }
  22930. },
  22931. },
  22932. [
  22933. {
  22934. name: "Micro",
  22935. height: math.unit(3, "inches")
  22936. },
  22937. {
  22938. name: "Normal",
  22939. height: math.unit(5, "feet"),
  22940. default: true
  22941. },
  22942. {
  22943. name: "Macro",
  22944. height: math.unit(90, "feet")
  22945. },
  22946. {
  22947. name: "Max Size",
  22948. height: math.unit(280, "feet")
  22949. },
  22950. ]
  22951. ))
  22952. characterMakers.push(() => makeCharacter(
  22953. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22954. {
  22955. front: {
  22956. height: math.unit(4.5, "meters"),
  22957. weight: math.unit(3200, "lb"),
  22958. name: "Front",
  22959. image: {
  22960. source: "./media/characters/ty/front.svg",
  22961. extra: 1038 / 960,
  22962. bottom: 31.156 / 1068
  22963. }
  22964. },
  22965. back: {
  22966. height: math.unit(4.5, "meters"),
  22967. weight: math.unit(3200, "lb"),
  22968. name: "Back",
  22969. image: {
  22970. source: "./media/characters/ty/back.svg",
  22971. extra: 1044 / 966,
  22972. bottom: 7.48 / 1049
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Normal",
  22979. height: math.unit(4.5, "meters"),
  22980. default: true
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22986. {
  22987. front: {
  22988. height: math.unit(5 + 4 / 12, "feet"),
  22989. weight: math.unit(115, "lb"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/rocky/front.svg",
  22993. extra: 1012 / 975,
  22994. bottom: 54 / 1066
  22995. }
  22996. },
  22997. },
  22998. [
  22999. {
  23000. name: "Normal",
  23001. height: math.unit(5 + 4 / 12, "feet"),
  23002. default: true
  23003. },
  23004. ]
  23005. ))
  23006. characterMakers.push(() => makeCharacter(
  23007. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23008. {
  23009. upright: {
  23010. height: math.unit(6, "meters"),
  23011. weight: math.unit(4000, "kg"),
  23012. name: "Upright",
  23013. image: {
  23014. source: "./media/characters/ruin/upright.svg",
  23015. extra: 668 / 661,
  23016. bottom: 42 / 799.8396
  23017. }
  23018. },
  23019. },
  23020. [
  23021. {
  23022. name: "Normal",
  23023. height: math.unit(6, "meters"),
  23024. default: true
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23030. {
  23031. front: {
  23032. height: math.unit(5, "feet"),
  23033. weight: math.unit(106, "lb"),
  23034. name: "Front",
  23035. image: {
  23036. source: "./media/characters/robin/front.svg",
  23037. extra: 862 / 799,
  23038. bottom: 42.4 / 914.8856
  23039. }
  23040. },
  23041. },
  23042. [
  23043. {
  23044. name: "Normal",
  23045. height: math.unit(5, "feet"),
  23046. default: true
  23047. },
  23048. ]
  23049. ))
  23050. characterMakers.push(() => makeCharacter(
  23051. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23052. {
  23053. side: {
  23054. height: math.unit(3, "feet"),
  23055. weight: math.unit(225, "lb"),
  23056. name: "Side",
  23057. image: {
  23058. source: "./media/characters/saian/side.svg",
  23059. extra: 566 / 356,
  23060. bottom: 79.7 / 643
  23061. }
  23062. },
  23063. maw: {
  23064. height: math.unit(2.85, "feet"),
  23065. name: "Maw",
  23066. image: {
  23067. source: "./media/characters/saian/maw.svg"
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(3, "feet"),
  23075. default: true
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23081. {
  23082. side: {
  23083. height: math.unit(8, "feet"),
  23084. weight: math.unit(300, "lb"),
  23085. name: "Side",
  23086. image: {
  23087. source: "./media/characters/equus-silvermane/side.svg",
  23088. extra: 2176 / 2050,
  23089. bottom: 65.7 / 2245
  23090. }
  23091. },
  23092. front: {
  23093. height: math.unit(8, "feet"),
  23094. weight: math.unit(300, "lb"),
  23095. name: "Front",
  23096. image: {
  23097. source: "./media/characters/equus-silvermane/front.svg",
  23098. extra: 4633 / 4400,
  23099. bottom: 71.3 / 4706.915
  23100. }
  23101. },
  23102. sideStepping: {
  23103. height: math.unit(8, "feet"),
  23104. weight: math.unit(300, "lb"),
  23105. name: "Side (Stepping)",
  23106. image: {
  23107. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23108. extra: 1968 / 1860,
  23109. bottom: 16.4 / 1989
  23110. }
  23111. },
  23112. },
  23113. [
  23114. {
  23115. name: "Normal",
  23116. height: math.unit(8, "feet")
  23117. },
  23118. {
  23119. name: "Minimacro",
  23120. height: math.unit(75, "feet"),
  23121. default: true
  23122. },
  23123. {
  23124. name: "Macro",
  23125. height: math.unit(150, "feet")
  23126. },
  23127. {
  23128. name: "Macro+",
  23129. height: math.unit(1000, "feet")
  23130. },
  23131. {
  23132. name: "Megamacro",
  23133. height: math.unit(1, "mile")
  23134. },
  23135. ]
  23136. ))
  23137. characterMakers.push(() => makeCharacter(
  23138. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23139. {
  23140. side: {
  23141. height: math.unit(20, "feet"),
  23142. weight: math.unit(30000, "kg"),
  23143. name: "Side",
  23144. image: {
  23145. source: "./media/characters/windar/side.svg",
  23146. extra: 1491 / 1248,
  23147. bottom: 82.56 / 1568
  23148. }
  23149. },
  23150. },
  23151. [
  23152. {
  23153. name: "Normal",
  23154. height: math.unit(20, "feet"),
  23155. default: true
  23156. },
  23157. ]
  23158. ))
  23159. characterMakers.push(() => makeCharacter(
  23160. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23161. {
  23162. side: {
  23163. height: math.unit(15.66, "feet"),
  23164. weight: math.unit(150, "lb"),
  23165. name: "Side",
  23166. image: {
  23167. source: "./media/characters/melody/side.svg",
  23168. extra: 1097 / 944,
  23169. bottom: 11.8 / 1109
  23170. }
  23171. },
  23172. sideOutfit: {
  23173. height: math.unit(15.66, "feet"),
  23174. weight: math.unit(150, "lb"),
  23175. name: "Side (Outfit)",
  23176. image: {
  23177. source: "./media/characters/melody/side-outfit.svg",
  23178. extra: 1097 / 944,
  23179. bottom: 11.8 / 1109
  23180. }
  23181. },
  23182. },
  23183. [
  23184. {
  23185. name: "Normal",
  23186. height: math.unit(15.66, "feet"),
  23187. default: true
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23193. {
  23194. armoredFront: {
  23195. height: math.unit(8, "feet"),
  23196. weight: math.unit(325, "lb"),
  23197. name: "Front",
  23198. image: {
  23199. source: "./media/characters/windera/armored-front.svg",
  23200. extra: 1830/1598,
  23201. bottom: 151/1981
  23202. },
  23203. form: "armored",
  23204. default: true
  23205. },
  23206. macroFront: {
  23207. height: math.unit(70, "feet"),
  23208. weight: math.unit(315453, "lb"),
  23209. name: "Front",
  23210. image: {
  23211. source: "./media/characters/windera/macro-front.svg",
  23212. extra: 963/883,
  23213. bottom: 23/986
  23214. },
  23215. form: "macro",
  23216. default: true
  23217. },
  23218. },
  23219. [
  23220. {
  23221. name: "Normal",
  23222. height: math.unit(8, "feet"),
  23223. default: true,
  23224. form: "armored"
  23225. },
  23226. {
  23227. name: "Normal",
  23228. height: math.unit(70, "feet"),
  23229. default: true,
  23230. form: "macro"
  23231. },
  23232. ],
  23233. {
  23234. "armored": {
  23235. name: "Armored",
  23236. default: true
  23237. },
  23238. "macro": {
  23239. name: "Macro",
  23240. },
  23241. }
  23242. ))
  23243. characterMakers.push(() => makeCharacter(
  23244. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23245. {
  23246. front: {
  23247. height: math.unit(28.75, "feet"),
  23248. weight: math.unit(2000, "kg"),
  23249. name: "Front",
  23250. image: {
  23251. source: "./media/characters/sonear/front.svg",
  23252. extra: 1041.1 / 964.9,
  23253. bottom: 53.7 / 1096.6
  23254. }
  23255. },
  23256. },
  23257. [
  23258. {
  23259. name: "Normal",
  23260. height: math.unit(28.75, "feet"),
  23261. default: true
  23262. },
  23263. ]
  23264. ))
  23265. characterMakers.push(() => makeCharacter(
  23266. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23267. {
  23268. side: {
  23269. height: math.unit(25.5, "feet"),
  23270. weight: math.unit(23000, "kg"),
  23271. name: "Side",
  23272. image: {
  23273. source: "./media/characters/kanara/side.svg"
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Normal",
  23280. height: math.unit(25.5, "feet"),
  23281. default: true
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23287. {
  23288. side: {
  23289. height: math.unit(10, "feet"),
  23290. weight: math.unit(1000, "kg"),
  23291. name: "Side",
  23292. image: {
  23293. source: "./media/characters/ereus/side.svg",
  23294. extra: 1157 / 959,
  23295. bottom: 153 / 1312.5
  23296. }
  23297. },
  23298. },
  23299. [
  23300. {
  23301. name: "Normal",
  23302. height: math.unit(10, "feet"),
  23303. default: true
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23309. {
  23310. side: {
  23311. height: math.unit(4.5, "feet"),
  23312. weight: math.unit(500, "lb"),
  23313. name: "Side",
  23314. image: {
  23315. source: "./media/characters/e-ter/side.svg",
  23316. extra: 1550 / 1248,
  23317. bottom: 146 / 1694
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Normal",
  23324. height: math.unit(4.5, "feet"),
  23325. default: true
  23326. },
  23327. ]
  23328. ))
  23329. characterMakers.push(() => makeCharacter(
  23330. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23331. {
  23332. side: {
  23333. height: math.unit(9.7, "feet"),
  23334. weight: math.unit(4000, "kg"),
  23335. name: "Side",
  23336. image: {
  23337. source: "./media/characters/yamie/side.svg"
  23338. }
  23339. },
  23340. },
  23341. [
  23342. {
  23343. name: "Normal",
  23344. height: math.unit(9.7, "feet"),
  23345. default: true
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23351. {
  23352. front: {
  23353. height: math.unit(50, "feet"),
  23354. weight: math.unit(50000, "kg"),
  23355. name: "Front",
  23356. image: {
  23357. source: "./media/characters/anders/front.svg",
  23358. extra: 570 / 539,
  23359. bottom: 14.7 / 586.7
  23360. }
  23361. },
  23362. },
  23363. [
  23364. {
  23365. name: "Large",
  23366. height: math.unit(50, "feet")
  23367. },
  23368. {
  23369. name: "Macro",
  23370. height: math.unit(2000, "feet"),
  23371. default: true
  23372. },
  23373. {
  23374. name: "Megamacro",
  23375. height: math.unit(12, "miles")
  23376. },
  23377. ]
  23378. ))
  23379. characterMakers.push(() => makeCharacter(
  23380. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23381. {
  23382. front: {
  23383. height: math.unit(7 + 2 / 12, "feet"),
  23384. weight: math.unit(300, "lb"),
  23385. name: "Front",
  23386. image: {
  23387. source: "./media/characters/reban/front.svg",
  23388. extra: 1287/1212,
  23389. bottom: 148/1435
  23390. }
  23391. },
  23392. head: {
  23393. height: math.unit(1.95, "feet"),
  23394. name: "Head",
  23395. image: {
  23396. source: "./media/characters/reban/head.svg"
  23397. }
  23398. },
  23399. maw: {
  23400. height: math.unit(0.95, "feet"),
  23401. name: "Maw",
  23402. image: {
  23403. source: "./media/characters/reban/maw.svg"
  23404. }
  23405. },
  23406. foot: {
  23407. height: math.unit(1.65, "feet"),
  23408. name: "Foot",
  23409. image: {
  23410. source: "./media/characters/reban/foot.svg"
  23411. }
  23412. },
  23413. dick: {
  23414. height: math.unit(7 / 5, "feet"),
  23415. name: "Dick",
  23416. image: {
  23417. source: "./media/characters/reban/dick.svg"
  23418. }
  23419. },
  23420. },
  23421. [
  23422. {
  23423. name: "Natural Height",
  23424. height: math.unit(7 + 2 / 12, "feet")
  23425. },
  23426. {
  23427. name: "Macro",
  23428. height: math.unit(500, "feet"),
  23429. default: true
  23430. },
  23431. {
  23432. name: "Canon Height",
  23433. height: math.unit(50, "AU")
  23434. },
  23435. ]
  23436. ))
  23437. characterMakers.push(() => makeCharacter(
  23438. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23439. {
  23440. front: {
  23441. height: math.unit(6, "feet"),
  23442. weight: math.unit(150, "lb"),
  23443. name: "Front",
  23444. image: {
  23445. source: "./media/characters/terrance-keayes/front.svg",
  23446. extra: 1.005,
  23447. bottom: 151 / 1615
  23448. }
  23449. },
  23450. side: {
  23451. height: math.unit(6, "feet"),
  23452. weight: math.unit(150, "lb"),
  23453. name: "Side",
  23454. image: {
  23455. source: "./media/characters/terrance-keayes/side.svg",
  23456. extra: 1.005,
  23457. bottom: 129.4 / 1544
  23458. }
  23459. },
  23460. back: {
  23461. height: math.unit(6, "feet"),
  23462. weight: math.unit(150, "lb"),
  23463. name: "Back",
  23464. image: {
  23465. source: "./media/characters/terrance-keayes/back.svg",
  23466. extra: 1.005,
  23467. bottom: 58.4 / 1557.3
  23468. }
  23469. },
  23470. dick: {
  23471. height: math.unit(6 * 0.208, "feet"),
  23472. name: "Dick",
  23473. image: {
  23474. source: "./media/characters/terrance-keayes/dick.svg"
  23475. }
  23476. },
  23477. },
  23478. [
  23479. {
  23480. name: "Canon Height",
  23481. height: math.unit(35, "miles"),
  23482. default: true
  23483. },
  23484. ]
  23485. ))
  23486. characterMakers.push(() => makeCharacter(
  23487. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23488. {
  23489. front: {
  23490. height: math.unit(6, "feet"),
  23491. weight: math.unit(150, "lb"),
  23492. name: "Front",
  23493. image: {
  23494. source: "./media/characters/ofelia/front.svg",
  23495. extra: 1130/1117,
  23496. bottom: 91/1221
  23497. }
  23498. },
  23499. back: {
  23500. height: math.unit(6, "feet"),
  23501. weight: math.unit(150, "lb"),
  23502. name: "Back",
  23503. image: {
  23504. source: "./media/characters/ofelia/back.svg",
  23505. extra: 1172/1159,
  23506. bottom: 28/1200
  23507. }
  23508. },
  23509. maw: {
  23510. height: math.unit(1, "feet"),
  23511. name: "Maw",
  23512. image: {
  23513. source: "./media/characters/ofelia/maw.svg"
  23514. }
  23515. },
  23516. foot: {
  23517. height: math.unit(1.949, "feet"),
  23518. name: "Foot",
  23519. image: {
  23520. source: "./media/characters/ofelia/foot.svg"
  23521. }
  23522. },
  23523. },
  23524. [
  23525. {
  23526. name: "Canon Height",
  23527. height: math.unit(2000, "miles"),
  23528. default: true
  23529. },
  23530. ]
  23531. ))
  23532. characterMakers.push(() => makeCharacter(
  23533. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23534. {
  23535. front: {
  23536. height: math.unit(6, "feet"),
  23537. weight: math.unit(150, "lb"),
  23538. name: "Front",
  23539. image: {
  23540. source: "./media/characters/samuel/front.svg",
  23541. extra: 265 / 258,
  23542. bottom: 2 / 266.1566
  23543. }
  23544. },
  23545. },
  23546. [
  23547. {
  23548. name: "Macro",
  23549. height: math.unit(100, "feet"),
  23550. default: true
  23551. },
  23552. {
  23553. name: "Full Size",
  23554. height: math.unit(1000, "miles")
  23555. },
  23556. ]
  23557. ))
  23558. characterMakers.push(() => makeCharacter(
  23559. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23560. {
  23561. front: {
  23562. height: math.unit(6, "feet"),
  23563. weight: math.unit(300, "lb"),
  23564. name: "Front",
  23565. image: {
  23566. source: "./media/characters/beishir-kiel/front.svg",
  23567. extra: 569 / 547,
  23568. bottom: 41.9 / 609
  23569. }
  23570. },
  23571. maw: {
  23572. height: math.unit(6 * 0.202, "feet"),
  23573. name: "Maw",
  23574. image: {
  23575. source: "./media/characters/beishir-kiel/maw.svg"
  23576. }
  23577. },
  23578. },
  23579. [
  23580. {
  23581. name: "Macro",
  23582. height: math.unit(300, "feet"),
  23583. default: true
  23584. },
  23585. ]
  23586. ))
  23587. characterMakers.push(() => makeCharacter(
  23588. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23589. {
  23590. front: {
  23591. height: math.unit(5 + 7/12, "feet"),
  23592. weight: math.unit(120, "lb"),
  23593. name: "Front",
  23594. image: {
  23595. source: "./media/characters/logan-grey/front.svg",
  23596. extra: 1836/1738,
  23597. bottom: 108/1944
  23598. }
  23599. },
  23600. back: {
  23601. height: math.unit(5 + 7/12, "feet"),
  23602. weight: math.unit(120, "lb"),
  23603. name: "Back",
  23604. image: {
  23605. source: "./media/characters/logan-grey/back.svg",
  23606. extra: 1880/1794,
  23607. bottom: 24/1904
  23608. }
  23609. },
  23610. frontSfw: {
  23611. height: math.unit(5 + 7/12, "feet"),
  23612. weight: math.unit(120, "lb"),
  23613. name: "Front (SFW)",
  23614. image: {
  23615. source: "./media/characters/logan-grey/front-sfw.svg",
  23616. extra: 1836/1738,
  23617. bottom: 108/1944
  23618. }
  23619. },
  23620. backSfw: {
  23621. height: math.unit(5 + 7/12, "feet"),
  23622. weight: math.unit(120, "lb"),
  23623. name: "Back (SFW)",
  23624. image: {
  23625. source: "./media/characters/logan-grey/back-sfw.svg",
  23626. extra: 1880/1794,
  23627. bottom: 24/1904
  23628. }
  23629. },
  23630. hands: {
  23631. height: math.unit(0.84, "feet"),
  23632. name: "Hands",
  23633. image: {
  23634. source: "./media/characters/logan-grey/hands.svg"
  23635. }
  23636. },
  23637. paws: {
  23638. height: math.unit(0.72, "feet"),
  23639. name: "Paws",
  23640. image: {
  23641. source: "./media/characters/logan-grey/paws.svg"
  23642. }
  23643. },
  23644. cock: {
  23645. height: math.unit(1.45, "feet"),
  23646. name: "Cock",
  23647. image: {
  23648. source: "./media/characters/logan-grey/cock.svg"
  23649. }
  23650. },
  23651. cockAlt: {
  23652. height: math.unit(1.437, "feet"),
  23653. name: "Cock (alt)",
  23654. image: {
  23655. source: "./media/characters/logan-grey/cock-alt.svg"
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Normal",
  23662. height: math.unit(5 + 8 / 12, "feet")
  23663. },
  23664. {
  23665. name: "The 500 Foot Femboy",
  23666. height: math.unit(500, "feet"),
  23667. default: true
  23668. },
  23669. {
  23670. name: "Megmacro",
  23671. height: math.unit(20, "miles")
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(8 + 2 / 12, "feet"),
  23680. weight: math.unit(275, "lb"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/draganta/front.svg",
  23684. extra: 1177 / 1135,
  23685. bottom: 33.46 / 1212.1
  23686. }
  23687. },
  23688. },
  23689. [
  23690. {
  23691. name: "Normal",
  23692. height: math.unit(8 + 6 / 12, "feet"),
  23693. default: true
  23694. },
  23695. {
  23696. name: "Macro",
  23697. height: math.unit(150, "feet")
  23698. },
  23699. {
  23700. name: "Megamacro",
  23701. height: math.unit(1000, "miles")
  23702. },
  23703. ]
  23704. ))
  23705. characterMakers.push(() => makeCharacter(
  23706. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23707. {
  23708. front: {
  23709. height: math.unit(1.72, "m"),
  23710. weight: math.unit(80, "lb"),
  23711. name: "Front",
  23712. image: {
  23713. source: "./media/characters/voski/front.svg",
  23714. extra: 2076.22 / 2022.4,
  23715. bottom: 102.7 / 2177.3866
  23716. }
  23717. },
  23718. frontFlaccid: {
  23719. height: math.unit(1.72, "m"),
  23720. weight: math.unit(80, "lb"),
  23721. name: "Front (Flaccid)",
  23722. image: {
  23723. source: "./media/characters/voski/front-flaccid.svg",
  23724. extra: 2076.22 / 2022.4,
  23725. bottom: 102.7 / 2177.3866
  23726. }
  23727. },
  23728. frontErect: {
  23729. height: math.unit(1.72, "m"),
  23730. weight: math.unit(80, "lb"),
  23731. name: "Front (Erect)",
  23732. image: {
  23733. source: "./media/characters/voski/front-erect.svg",
  23734. extra: 2076.22 / 2022.4,
  23735. bottom: 102.7 / 2177.3866
  23736. }
  23737. },
  23738. back: {
  23739. height: math.unit(1.72, "m"),
  23740. weight: math.unit(80, "lb"),
  23741. name: "Back",
  23742. image: {
  23743. source: "./media/characters/voski/back.svg",
  23744. extra: 2104 / 2051,
  23745. bottom: 10.45 / 2113.63
  23746. }
  23747. },
  23748. },
  23749. [
  23750. {
  23751. name: "Normal",
  23752. height: math.unit(1.72, "m")
  23753. },
  23754. {
  23755. name: "Macro",
  23756. height: math.unit(55, "m"),
  23757. default: true
  23758. },
  23759. {
  23760. name: "Macro+",
  23761. height: math.unit(300, "m")
  23762. },
  23763. {
  23764. name: "Macro++",
  23765. height: math.unit(700, "m")
  23766. },
  23767. {
  23768. name: "Macro+++",
  23769. height: math.unit(4500, "m")
  23770. },
  23771. {
  23772. name: "Macro++++",
  23773. height: math.unit(45, "km")
  23774. },
  23775. {
  23776. name: "Macro+++++",
  23777. height: math.unit(1220, "km")
  23778. },
  23779. ]
  23780. ))
  23781. characterMakers.push(() => makeCharacter(
  23782. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23783. {
  23784. front: {
  23785. height: math.unit(2.3, "m"),
  23786. weight: math.unit(304, "kg"),
  23787. name: "Front",
  23788. image: {
  23789. source: "./media/characters/icowom-lee/front.svg",
  23790. extra: 985 / 955,
  23791. bottom: 25.4 / 1012
  23792. }
  23793. },
  23794. fronttentacles: {
  23795. height: math.unit(2.3, "m"),
  23796. weight: math.unit(304, "kg"),
  23797. name: "Front-tentacles",
  23798. image: {
  23799. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23800. extra: 985 / 955,
  23801. bottom: 25.4 / 1012
  23802. }
  23803. },
  23804. back: {
  23805. height: math.unit(2.3, "m"),
  23806. weight: math.unit(304, "kg"),
  23807. name: "Back",
  23808. image: {
  23809. source: "./media/characters/icowom-lee/back.svg",
  23810. extra: 975 / 954,
  23811. bottom: 9.5 / 985
  23812. }
  23813. },
  23814. backtentacles: {
  23815. height: math.unit(2.3, "m"),
  23816. weight: math.unit(304, "kg"),
  23817. name: "Back-tentacles",
  23818. image: {
  23819. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23820. extra: 975 / 954,
  23821. bottom: 9.5 / 985
  23822. }
  23823. },
  23824. frontDressed: {
  23825. height: math.unit(2.3, "m"),
  23826. weight: math.unit(304, "kg"),
  23827. name: "Front (Dressed)",
  23828. image: {
  23829. source: "./media/characters/icowom-lee/front-dressed.svg",
  23830. extra: 3076 / 2933,
  23831. bottom: 51.4 / 3125.1889
  23832. }
  23833. },
  23834. rump: {
  23835. height: math.unit(0.776, "meters"),
  23836. name: "Rump",
  23837. image: {
  23838. source: "./media/characters/icowom-lee/rump.svg"
  23839. }
  23840. },
  23841. genitals: {
  23842. height: math.unit(0.78, "meters"),
  23843. name: "Genitals",
  23844. image: {
  23845. source: "./media/characters/icowom-lee/genitals.svg"
  23846. }
  23847. },
  23848. },
  23849. [
  23850. {
  23851. name: "Normal",
  23852. height: math.unit(2.3, "meters"),
  23853. default: true
  23854. },
  23855. {
  23856. name: "Macro",
  23857. height: math.unit(94, "meters"),
  23858. default: true
  23859. },
  23860. ]
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23864. {
  23865. front: {
  23866. height: math.unit(22, "meters"),
  23867. weight: math.unit(21000, "kg"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/shock-diamond/front.svg",
  23871. extra: 2204 / 2053,
  23872. bottom: 65 / 2239.47
  23873. }
  23874. },
  23875. frontNude: {
  23876. height: math.unit(22, "meters"),
  23877. weight: math.unit(21000, "kg"),
  23878. name: "Front (Nude)",
  23879. image: {
  23880. source: "./media/characters/shock-diamond/front-nude.svg",
  23881. extra: 2514 / 2285,
  23882. bottom: 13 / 2527.56
  23883. }
  23884. },
  23885. },
  23886. [
  23887. {
  23888. name: "Normal",
  23889. height: math.unit(3, "meters")
  23890. },
  23891. {
  23892. name: "Macro",
  23893. height: math.unit(22, "meters"),
  23894. default: true
  23895. },
  23896. ]
  23897. ))
  23898. characterMakers.push(() => makeCharacter(
  23899. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23900. {
  23901. front: {
  23902. height: math.unit(5 + 4 / 12, "feet"),
  23903. weight: math.unit(120, "lb"),
  23904. name: "Front",
  23905. image: {
  23906. source: "./media/characters/rory/front.svg",
  23907. extra: 1318/1241,
  23908. bottom: 42/1360
  23909. }
  23910. },
  23911. back: {
  23912. height: math.unit(5 + 4 / 12, "feet"),
  23913. weight: math.unit(120, "lb"),
  23914. name: "Back",
  23915. image: {
  23916. source: "./media/characters/rory/back.svg",
  23917. extra: 1318/1241,
  23918. bottom: 42/1360
  23919. }
  23920. },
  23921. butt: {
  23922. height: math.unit(1.74, "feet"),
  23923. name: "Butt",
  23924. image: {
  23925. source: "./media/characters/rory/butt.svg"
  23926. }
  23927. },
  23928. dick: {
  23929. height: math.unit(1.02, "feet"),
  23930. name: "Dick",
  23931. image: {
  23932. source: "./media/characters/rory/dick.svg"
  23933. }
  23934. },
  23935. paws: {
  23936. height: math.unit(1, "feet"),
  23937. name: "Paws",
  23938. image: {
  23939. source: "./media/characters/rory/paws.svg"
  23940. }
  23941. },
  23942. frontAlt: {
  23943. height: math.unit(5 + 4 / 12, "feet"),
  23944. weight: math.unit(120, "lb"),
  23945. name: "Front (Alt)",
  23946. image: {
  23947. source: "./media/characters/rory/front-alt.svg",
  23948. extra: 589 / 556,
  23949. bottom: 45.7 / 635.76
  23950. }
  23951. },
  23952. frontAltNude: {
  23953. height: math.unit(5 + 4 / 12, "feet"),
  23954. weight: math.unit(120, "lb"),
  23955. name: "Front (Alt, Nude)",
  23956. image: {
  23957. source: "./media/characters/rory/front-alt-nude.svg",
  23958. extra: 589 / 556,
  23959. bottom: 45.7 / 635.76
  23960. }
  23961. },
  23962. side: {
  23963. height: math.unit(5 + 4 / 12, "feet"),
  23964. weight: math.unit(120, "lb"),
  23965. name: "Side",
  23966. image: {
  23967. source: "./media/characters/rory/side.svg",
  23968. extra: 597 / 564,
  23969. bottom: 55 / 653
  23970. }
  23971. },
  23972. backAlt: {
  23973. height: math.unit(5 + 4 / 12, "feet"),
  23974. weight: math.unit(120, "lb"),
  23975. name: "Back (Alt)",
  23976. image: {
  23977. source: "./media/characters/rory/back-alt.svg",
  23978. extra: 620 / 585,
  23979. bottom: 8.86 / 630.43
  23980. }
  23981. },
  23982. dickAlt: {
  23983. height: math.unit(0.86, "feet"),
  23984. name: "Dick (Alt)",
  23985. image: {
  23986. source: "./media/characters/rory/dick-alt.svg"
  23987. }
  23988. },
  23989. },
  23990. [
  23991. {
  23992. name: "Normal",
  23993. height: math.unit(5 + 4 / 12, "feet"),
  23994. default: true
  23995. },
  23996. {
  23997. name: "Macro",
  23998. height: math.unit(100, "feet")
  23999. },
  24000. {
  24001. name: "Macro+",
  24002. height: math.unit(140, "feet")
  24003. },
  24004. {
  24005. name: "Macro++",
  24006. height: math.unit(300, "feet")
  24007. },
  24008. ]
  24009. ))
  24010. characterMakers.push(() => makeCharacter(
  24011. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24012. {
  24013. front: {
  24014. height: math.unit(5 + 9 / 12, "feet"),
  24015. weight: math.unit(190, "lb"),
  24016. name: "Front",
  24017. image: {
  24018. source: "./media/characters/sprisk/front.svg",
  24019. extra: 1225 / 1180,
  24020. bottom: 42.7 / 1266.4
  24021. }
  24022. },
  24023. frontNsfw: {
  24024. height: math.unit(5 + 9 / 12, "feet"),
  24025. weight: math.unit(190, "lb"),
  24026. name: "Front (NSFW)",
  24027. image: {
  24028. source: "./media/characters/sprisk/front-nsfw.svg",
  24029. extra: 1225 / 1180,
  24030. bottom: 42.7 / 1266.4
  24031. }
  24032. },
  24033. back: {
  24034. height: math.unit(5 + 9 / 12, "feet"),
  24035. weight: math.unit(190, "lb"),
  24036. name: "Back",
  24037. image: {
  24038. source: "./media/characters/sprisk/back.svg",
  24039. extra: 1247 / 1200,
  24040. bottom: 5.6 / 1253.04
  24041. }
  24042. },
  24043. },
  24044. [
  24045. {
  24046. name: "Tiny",
  24047. height: math.unit(2, "inches")
  24048. },
  24049. {
  24050. name: "Normal",
  24051. height: math.unit(5 + 9 / 12, "feet"),
  24052. default: true
  24053. },
  24054. {
  24055. name: "Mini Macro",
  24056. height: math.unit(18, "feet")
  24057. },
  24058. {
  24059. name: "Macro",
  24060. height: math.unit(100, "feet")
  24061. },
  24062. {
  24063. name: "MACRO",
  24064. height: math.unit(50, "miles")
  24065. },
  24066. {
  24067. name: "M A C R O",
  24068. height: math.unit(300, "miles")
  24069. },
  24070. ]
  24071. ))
  24072. characterMakers.push(() => makeCharacter(
  24073. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24074. {
  24075. side: {
  24076. height: math.unit(15.6, "meters"),
  24077. weight: math.unit(700000, "kg"),
  24078. name: "Side",
  24079. image: {
  24080. source: "./media/characters/bunsen/side.svg",
  24081. extra: 1644 / 358
  24082. }
  24083. },
  24084. foot: {
  24085. height: math.unit(1.611 * 1644 / 358, "meter"),
  24086. name: "Foot",
  24087. image: {
  24088. source: "./media/characters/bunsen/foot.svg"
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Small",
  24095. height: math.unit(10, "feet")
  24096. },
  24097. {
  24098. name: "Normal",
  24099. height: math.unit(15.6, "meters"),
  24100. default: true
  24101. },
  24102. ]
  24103. ))
  24104. characterMakers.push(() => makeCharacter(
  24105. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24106. {
  24107. front: {
  24108. height: math.unit(4 + 11 / 12, "feet"),
  24109. weight: math.unit(140, "lb"),
  24110. name: "Front",
  24111. image: {
  24112. source: "./media/characters/sesh/front.svg",
  24113. extra: 3420 / 3231,
  24114. bottom: 72 / 3949.5
  24115. }
  24116. },
  24117. },
  24118. [
  24119. {
  24120. name: "Normal",
  24121. height: math.unit(4 + 11 / 12, "feet")
  24122. },
  24123. {
  24124. name: "Grown",
  24125. height: math.unit(15, "feet"),
  24126. default: true
  24127. },
  24128. {
  24129. name: "Macro",
  24130. height: math.unit(1500, "feet")
  24131. },
  24132. {
  24133. name: "Megamacro",
  24134. height: math.unit(30, "miles")
  24135. },
  24136. {
  24137. name: "Continental",
  24138. height: math.unit(3000, "miles")
  24139. },
  24140. {
  24141. name: "Gravity Mass",
  24142. height: math.unit(300000, "miles")
  24143. },
  24144. {
  24145. name: "Planet Buster",
  24146. height: math.unit(30000000, "miles")
  24147. },
  24148. {
  24149. name: "Big",
  24150. height: math.unit(3000000000, "miles")
  24151. },
  24152. ]
  24153. ))
  24154. characterMakers.push(() => makeCharacter(
  24155. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24156. {
  24157. front: {
  24158. height: math.unit(9, "feet"),
  24159. weight: math.unit(350, "lb"),
  24160. name: "Front",
  24161. image: {
  24162. source: "./media/characters/pepper/front.svg",
  24163. extra: 1448 / 1312,
  24164. bottom: 9.4 / 1457.88
  24165. }
  24166. },
  24167. back: {
  24168. height: math.unit(9, "feet"),
  24169. weight: math.unit(350, "lb"),
  24170. name: "Back",
  24171. image: {
  24172. source: "./media/characters/pepper/back.svg",
  24173. extra: 1423 / 1300,
  24174. bottom: 4.6 / 1429
  24175. }
  24176. },
  24177. maw: {
  24178. height: math.unit(0.932, "feet"),
  24179. name: "Maw",
  24180. image: {
  24181. source: "./media/characters/pepper/maw.svg"
  24182. }
  24183. },
  24184. },
  24185. [
  24186. {
  24187. name: "Normal",
  24188. height: math.unit(9, "feet"),
  24189. default: true
  24190. },
  24191. ]
  24192. ))
  24193. characterMakers.push(() => makeCharacter(
  24194. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24195. {
  24196. front: {
  24197. height: math.unit(6, "feet"),
  24198. weight: math.unit(150, "lb"),
  24199. name: "Front",
  24200. image: {
  24201. source: "./media/characters/maelstrom/front.svg",
  24202. extra: 2100 / 1883,
  24203. bottom: 94 / 2196.7
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Less Kaiju",
  24210. height: math.unit(200, "feet")
  24211. },
  24212. {
  24213. name: "Kaiju",
  24214. height: math.unit(400, "feet"),
  24215. default: true
  24216. },
  24217. {
  24218. name: "Kaiju-er",
  24219. height: math.unit(600, "feet")
  24220. },
  24221. ]
  24222. ))
  24223. characterMakers.push(() => makeCharacter(
  24224. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24225. {
  24226. front: {
  24227. height: math.unit(6 + 5 / 12, "feet"),
  24228. weight: math.unit(180, "lb"),
  24229. name: "Front",
  24230. image: {
  24231. source: "./media/characters/lexir/front.svg",
  24232. extra: 180 / 172,
  24233. bottom: 12 / 192
  24234. }
  24235. },
  24236. back: {
  24237. height: math.unit(6 + 5 / 12, "feet"),
  24238. weight: math.unit(180, "lb"),
  24239. name: "Back",
  24240. image: {
  24241. source: "./media/characters/lexir/back.svg",
  24242. extra: 1273/1201,
  24243. bottom: 39/1312
  24244. }
  24245. },
  24246. },
  24247. [
  24248. {
  24249. name: "Very Smal",
  24250. height: math.unit(1, "nm")
  24251. },
  24252. {
  24253. name: "Normal",
  24254. height: math.unit(6 + 5 / 12, "feet"),
  24255. default: true
  24256. },
  24257. {
  24258. name: "Macro",
  24259. height: math.unit(1, "mile")
  24260. },
  24261. {
  24262. name: "Megamacro",
  24263. height: math.unit(50, "miles")
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24269. {
  24270. front: {
  24271. height: math.unit(1.5, "meters"),
  24272. weight: math.unit(100, "lb"),
  24273. name: "Front",
  24274. image: {
  24275. source: "./media/characters/maksio/front.svg",
  24276. extra: 1549 / 1531,
  24277. bottom: 123.7 / 1674.5429
  24278. }
  24279. },
  24280. back: {
  24281. height: math.unit(1.5, "meters"),
  24282. weight: math.unit(100, "lb"),
  24283. name: "Back",
  24284. image: {
  24285. source: "./media/characters/maksio/back.svg",
  24286. extra: 1541 / 1509,
  24287. bottom: 97 / 1639
  24288. }
  24289. },
  24290. hand: {
  24291. height: math.unit(0.621, "feet"),
  24292. name: "Hand",
  24293. image: {
  24294. source: "./media/characters/maksio/hand.svg"
  24295. }
  24296. },
  24297. foot: {
  24298. height: math.unit(1.611, "feet"),
  24299. name: "Foot",
  24300. image: {
  24301. source: "./media/characters/maksio/foot.svg"
  24302. }
  24303. },
  24304. },
  24305. [
  24306. {
  24307. name: "Shrunken",
  24308. height: math.unit(10, "cm")
  24309. },
  24310. {
  24311. name: "Normal",
  24312. height: math.unit(150, "cm"),
  24313. default: true
  24314. },
  24315. ]
  24316. ))
  24317. characterMakers.push(() => makeCharacter(
  24318. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24319. {
  24320. front: {
  24321. height: math.unit(100, "feet"),
  24322. name: "Front",
  24323. image: {
  24324. source: "./media/characters/erza-bear/front.svg",
  24325. extra: 2449 / 2390,
  24326. bottom: 46 / 2494
  24327. }
  24328. },
  24329. back: {
  24330. height: math.unit(100, "feet"),
  24331. name: "Back",
  24332. image: {
  24333. source: "./media/characters/erza-bear/back.svg",
  24334. extra: 2489 / 2430,
  24335. bottom: 85.4 / 2480
  24336. }
  24337. },
  24338. tail: {
  24339. height: math.unit(42, "feet"),
  24340. name: "Tail",
  24341. image: {
  24342. source: "./media/characters/erza-bear/tail.svg"
  24343. }
  24344. },
  24345. tongue: {
  24346. height: math.unit(8, "feet"),
  24347. name: "Tongue",
  24348. image: {
  24349. source: "./media/characters/erza-bear/tongue.svg"
  24350. }
  24351. },
  24352. dick: {
  24353. height: math.unit(10.5, "feet"),
  24354. name: "Dick",
  24355. image: {
  24356. source: "./media/characters/erza-bear/dick.svg"
  24357. }
  24358. },
  24359. dickVertical: {
  24360. height: math.unit(16.9, "feet"),
  24361. name: "Dick (Vertical)",
  24362. image: {
  24363. source: "./media/characters/erza-bear/dick-vertical.svg"
  24364. }
  24365. },
  24366. },
  24367. [
  24368. {
  24369. name: "Macro",
  24370. height: math.unit(100, "feet"),
  24371. default: true
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24377. {
  24378. front: {
  24379. height: math.unit(172, "cm"),
  24380. weight: math.unit(73, "kg"),
  24381. name: "Front",
  24382. image: {
  24383. source: "./media/characters/violet-flor/front.svg",
  24384. extra: 1530 / 1442,
  24385. bottom: 61.9 / 1588.8
  24386. }
  24387. },
  24388. back: {
  24389. height: math.unit(180, "cm"),
  24390. weight: math.unit(73, "kg"),
  24391. name: "Back",
  24392. image: {
  24393. source: "./media/characters/violet-flor/back.svg",
  24394. extra: 1692 / 1630,
  24395. bottom: 20 / 1712
  24396. }
  24397. },
  24398. },
  24399. [
  24400. {
  24401. name: "Normal",
  24402. height: math.unit(172, "cm"),
  24403. default: true
  24404. },
  24405. ]
  24406. ))
  24407. characterMakers.push(() => makeCharacter(
  24408. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24409. {
  24410. front: {
  24411. height: math.unit(6, "feet"),
  24412. weight: math.unit(220, "lb"),
  24413. name: "Front",
  24414. image: {
  24415. source: "./media/characters/lynn-rhea/front.svg",
  24416. extra: 310 / 273
  24417. }
  24418. },
  24419. back: {
  24420. height: math.unit(6, "feet"),
  24421. weight: math.unit(220, "lb"),
  24422. name: "Back",
  24423. image: {
  24424. source: "./media/characters/lynn-rhea/back.svg",
  24425. extra: 310 / 273
  24426. }
  24427. },
  24428. dicks: {
  24429. height: math.unit(0.9, "feet"),
  24430. name: "Dicks",
  24431. image: {
  24432. source: "./media/characters/lynn-rhea/dicks.svg"
  24433. }
  24434. },
  24435. slit: {
  24436. height: math.unit(0.4, "feet"),
  24437. name: "Slit",
  24438. image: {
  24439. source: "./media/characters/lynn-rhea/slit.svg"
  24440. }
  24441. },
  24442. },
  24443. [
  24444. {
  24445. name: "Micro",
  24446. height: math.unit(1, "inch")
  24447. },
  24448. {
  24449. name: "Macro",
  24450. height: math.unit(60, "feet"),
  24451. default: true
  24452. },
  24453. {
  24454. name: "Megamacro",
  24455. height: math.unit(2, "miles")
  24456. },
  24457. {
  24458. name: "Gigamacro",
  24459. height: math.unit(3, "earths")
  24460. },
  24461. {
  24462. name: "Galactic",
  24463. height: math.unit(0.8, "galaxies")
  24464. },
  24465. ]
  24466. ))
  24467. characterMakers.push(() => makeCharacter(
  24468. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24469. {
  24470. front: {
  24471. height: math.unit(1600, "feet"),
  24472. weight: math.unit(85758785169, "kg"),
  24473. name: "Front",
  24474. image: {
  24475. source: "./media/characters/valathos/front.svg",
  24476. extra: 1451 / 1339
  24477. }
  24478. },
  24479. },
  24480. [
  24481. {
  24482. name: "Macro",
  24483. height: math.unit(1600, "feet"),
  24484. default: true
  24485. },
  24486. ]
  24487. ))
  24488. characterMakers.push(() => makeCharacter(
  24489. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24490. {
  24491. front: {
  24492. height: math.unit(7 + 5 / 12, "feet"),
  24493. weight: math.unit(300, "lb"),
  24494. name: "Front",
  24495. image: {
  24496. source: "./media/characters/azula/front.svg",
  24497. extra: 3208 / 2880,
  24498. bottom: 80.2 / 3277
  24499. }
  24500. },
  24501. back: {
  24502. height: math.unit(7 + 5 / 12, "feet"),
  24503. weight: math.unit(300, "lb"),
  24504. name: "Back",
  24505. image: {
  24506. source: "./media/characters/azula/back.svg",
  24507. extra: 3169 / 2822,
  24508. bottom: 150.6 / 3321
  24509. }
  24510. },
  24511. },
  24512. [
  24513. {
  24514. name: "Normal",
  24515. height: math.unit(7 + 5 / 12, "feet"),
  24516. default: true
  24517. },
  24518. {
  24519. name: "Big",
  24520. height: math.unit(20, "feet")
  24521. },
  24522. ]
  24523. ))
  24524. characterMakers.push(() => makeCharacter(
  24525. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24526. {
  24527. front: {
  24528. height: math.unit(5 + 1 / 12, "feet"),
  24529. weight: math.unit(110, "lb"),
  24530. name: "Front",
  24531. image: {
  24532. source: "./media/characters/rupert/front.svg",
  24533. extra: 1549 / 1495,
  24534. bottom: 54.2 / 1604.4
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Normal",
  24541. height: math.unit(5 + 1 / 12, "feet"),
  24542. default: true
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24548. {
  24549. front: {
  24550. height: math.unit(8 + 4 / 12, "feet"),
  24551. weight: math.unit(350, "lb"),
  24552. name: "Front",
  24553. image: {
  24554. source: "./media/characters/sheera-castellar/front.svg",
  24555. extra: 1957 / 1894,
  24556. bottom: 26.97 / 1975.017
  24557. }
  24558. },
  24559. side: {
  24560. height: math.unit(8 + 4 / 12, "feet"),
  24561. weight: math.unit(350, "lb"),
  24562. name: "Side",
  24563. image: {
  24564. source: "./media/characters/sheera-castellar/side.svg",
  24565. extra: 1957 / 1894
  24566. }
  24567. },
  24568. back: {
  24569. height: math.unit(8 + 4 / 12, "feet"),
  24570. weight: math.unit(350, "lb"),
  24571. name: "Back",
  24572. image: {
  24573. source: "./media/characters/sheera-castellar/back.svg",
  24574. extra: 1957 / 1894
  24575. }
  24576. },
  24577. angled: {
  24578. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24579. weight: math.unit(350, "lb"),
  24580. name: "Angled",
  24581. image: {
  24582. source: "./media/characters/sheera-castellar/angled.svg",
  24583. extra: 1807 / 1707,
  24584. bottom: 68 / 1875
  24585. }
  24586. },
  24587. genitals: {
  24588. height: math.unit(2.2, "feet"),
  24589. name: "Genitals",
  24590. image: {
  24591. source: "./media/characters/sheera-castellar/genitals.svg"
  24592. }
  24593. },
  24594. taur: {
  24595. height: math.unit(10 + 6/12, "feet"),
  24596. name: "Taur",
  24597. image: {
  24598. source: "./media/characters/sheera-castellar/taur.svg",
  24599. extra: 2017/1909,
  24600. bottom: 185/2202
  24601. }
  24602. },
  24603. },
  24604. [
  24605. {
  24606. name: "Normal",
  24607. height: math.unit(8 + 4 / 12, "feet")
  24608. },
  24609. {
  24610. name: "Macro",
  24611. height: math.unit(150, "feet"),
  24612. default: true
  24613. },
  24614. {
  24615. name: "Macro+",
  24616. height: math.unit(800, "feet")
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24622. {
  24623. front: {
  24624. height: math.unit(6, "feet"),
  24625. weight: math.unit(150, "lb"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/jaipur/front.svg",
  24629. extra: 3860 / 3731,
  24630. bottom: 287 / 4140
  24631. }
  24632. },
  24633. back: {
  24634. height: math.unit(6, "feet"),
  24635. weight: math.unit(150, "lb"),
  24636. name: "Back",
  24637. image: {
  24638. source: "./media/characters/jaipur/back.svg",
  24639. extra: 1637/1561,
  24640. bottom: 154/1791
  24641. }
  24642. },
  24643. },
  24644. [
  24645. {
  24646. name: "Normal",
  24647. height: math.unit(1.85, "meters"),
  24648. default: true
  24649. },
  24650. {
  24651. name: "Macro",
  24652. height: math.unit(150, "meters")
  24653. },
  24654. {
  24655. name: "Macro+",
  24656. height: math.unit(0.5, "miles")
  24657. },
  24658. {
  24659. name: "Macro++",
  24660. height: math.unit(2.5, "miles")
  24661. },
  24662. {
  24663. name: "Macro+++",
  24664. height: math.unit(12, "miles")
  24665. },
  24666. {
  24667. name: "Macro++++",
  24668. height: math.unit(120, "miles")
  24669. },
  24670. {
  24671. name: "Macro+++++",
  24672. height: math.unit(1200, "miles")
  24673. },
  24674. ]
  24675. ))
  24676. characterMakers.push(() => makeCharacter(
  24677. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24678. {
  24679. front: {
  24680. height: math.unit(6, "feet"),
  24681. weight: math.unit(150, "lb"),
  24682. name: "Front",
  24683. image: {
  24684. source: "./media/characters/sheila-wolf/front.svg",
  24685. extra: 1931 / 1808,
  24686. bottom: 29.5 / 1960
  24687. }
  24688. },
  24689. dick: {
  24690. height: math.unit(1.464, "feet"),
  24691. name: "Dick",
  24692. image: {
  24693. source: "./media/characters/sheila-wolf/dick.svg"
  24694. }
  24695. },
  24696. muzzle: {
  24697. height: math.unit(0.513, "feet"),
  24698. name: "Muzzle",
  24699. image: {
  24700. source: "./media/characters/sheila-wolf/muzzle.svg"
  24701. }
  24702. },
  24703. },
  24704. [
  24705. {
  24706. name: "Macro",
  24707. height: math.unit(70, "feet"),
  24708. default: true
  24709. },
  24710. ]
  24711. ))
  24712. characterMakers.push(() => makeCharacter(
  24713. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24714. {
  24715. front: {
  24716. height: math.unit(32, "meters"),
  24717. weight: math.unit(300000, "kg"),
  24718. name: "Front",
  24719. image: {
  24720. source: "./media/characters/almor/front.svg",
  24721. extra: 1408 / 1322,
  24722. bottom: 94.6 / 1506.5
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Macro",
  24729. height: math.unit(32, "meters"),
  24730. default: true
  24731. },
  24732. ]
  24733. ))
  24734. characterMakers.push(() => makeCharacter(
  24735. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24736. {
  24737. front: {
  24738. height: math.unit(7, "feet"),
  24739. weight: math.unit(200, "lb"),
  24740. name: "Front",
  24741. image: {
  24742. source: "./media/characters/silver/front.svg",
  24743. extra: 472.1 / 450.5,
  24744. bottom: 26.5 / 499.424
  24745. }
  24746. },
  24747. },
  24748. [
  24749. {
  24750. name: "Normal",
  24751. height: math.unit(7, "feet"),
  24752. default: true
  24753. },
  24754. {
  24755. name: "Macro",
  24756. height: math.unit(800, "feet")
  24757. },
  24758. {
  24759. name: "Megamacro",
  24760. height: math.unit(250, "miles")
  24761. },
  24762. ]
  24763. ))
  24764. characterMakers.push(() => makeCharacter(
  24765. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24766. {
  24767. front: {
  24768. height: math.unit(6, "feet"),
  24769. weight: math.unit(150, "lb"),
  24770. name: "Front",
  24771. image: {
  24772. source: "./media/characters/pliskin/front.svg",
  24773. extra: 1469 / 1359,
  24774. bottom: 70 / 1540
  24775. }
  24776. },
  24777. },
  24778. [
  24779. {
  24780. name: "Micro",
  24781. height: math.unit(3, "inches")
  24782. },
  24783. {
  24784. name: "Normal",
  24785. height: math.unit(5 + 11 / 12, "feet"),
  24786. default: true
  24787. },
  24788. {
  24789. name: "Macro",
  24790. height: math.unit(120, "feet")
  24791. },
  24792. ]
  24793. ))
  24794. characterMakers.push(() => makeCharacter(
  24795. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24796. {
  24797. front: {
  24798. height: math.unit(6, "feet"),
  24799. weight: math.unit(150, "lb"),
  24800. name: "Front",
  24801. image: {
  24802. source: "./media/characters/sammy/front.svg",
  24803. extra: 1193 / 1089,
  24804. bottom: 30.5 / 1226
  24805. }
  24806. },
  24807. },
  24808. [
  24809. {
  24810. name: "Macro",
  24811. height: math.unit(1700, "feet"),
  24812. default: true
  24813. },
  24814. {
  24815. name: "Examacro",
  24816. height: math.unit(2.5e9, "lightyears")
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24822. {
  24823. front: {
  24824. height: math.unit(21, "meters"),
  24825. weight: math.unit(12, "tonnes"),
  24826. name: "Front",
  24827. image: {
  24828. source: "./media/characters/kuru/front.svg",
  24829. extra: 4301 / 3785,
  24830. bottom: 371.3 / 4691
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Macro",
  24837. height: math.unit(21, "meters"),
  24838. default: true
  24839. },
  24840. ]
  24841. ))
  24842. characterMakers.push(() => makeCharacter(
  24843. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24844. {
  24845. front: {
  24846. height: math.unit(23, "meters"),
  24847. weight: math.unit(12.2, "tonnes"),
  24848. name: "Front",
  24849. image: {
  24850. source: "./media/characters/rakka/front.svg",
  24851. extra: 4670 / 4169,
  24852. bottom: 301 / 4968.7
  24853. }
  24854. },
  24855. },
  24856. [
  24857. {
  24858. name: "Macro",
  24859. height: math.unit(23, "meters"),
  24860. default: true
  24861. },
  24862. ]
  24863. ))
  24864. characterMakers.push(() => makeCharacter(
  24865. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24866. {
  24867. front: {
  24868. height: math.unit(6, "feet"),
  24869. weight: math.unit(150, "lb"),
  24870. name: "Front",
  24871. image: {
  24872. source: "./media/characters/rhys-feline/front.svg",
  24873. extra: 2488 / 2308,
  24874. bottom: 35.67 / 2519.19
  24875. }
  24876. },
  24877. },
  24878. [
  24879. {
  24880. name: "Really Small",
  24881. height: math.unit(1, "nm")
  24882. },
  24883. {
  24884. name: "Micro",
  24885. height: math.unit(4, "inches")
  24886. },
  24887. {
  24888. name: "Normal",
  24889. height: math.unit(4 + 10 / 12, "feet"),
  24890. default: true
  24891. },
  24892. {
  24893. name: "Macro",
  24894. height: math.unit(100, "feet")
  24895. },
  24896. {
  24897. name: "Megamacto",
  24898. height: math.unit(50, "miles")
  24899. },
  24900. ]
  24901. ))
  24902. characterMakers.push(() => makeCharacter(
  24903. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24904. {
  24905. side: {
  24906. height: math.unit(30, "feet"),
  24907. weight: math.unit(35000, "kg"),
  24908. name: "Side",
  24909. image: {
  24910. source: "./media/characters/alydar/side.svg",
  24911. extra: 234 / 222,
  24912. bottom: 6.5 / 241
  24913. }
  24914. },
  24915. front: {
  24916. height: math.unit(30, "feet"),
  24917. weight: math.unit(35000, "kg"),
  24918. name: "Front",
  24919. image: {
  24920. source: "./media/characters/alydar/front.svg",
  24921. extra: 223.37 / 210.2,
  24922. bottom: 22.3 / 246.76
  24923. }
  24924. },
  24925. top: {
  24926. height: math.unit(64.54, "feet"),
  24927. weight: math.unit(35000, "kg"),
  24928. name: "Top",
  24929. image: {
  24930. source: "./media/characters/alydar/top.svg"
  24931. }
  24932. },
  24933. anthro: {
  24934. height: math.unit(30, "feet"),
  24935. weight: math.unit(9000, "kg"),
  24936. name: "Anthro",
  24937. image: {
  24938. source: "./media/characters/alydar/anthro.svg",
  24939. extra: 432 / 421,
  24940. bottom: 7.18 / 440
  24941. }
  24942. },
  24943. maw: {
  24944. height: math.unit(11.693, "feet"),
  24945. name: "Maw",
  24946. image: {
  24947. source: "./media/characters/alydar/maw.svg"
  24948. }
  24949. },
  24950. head: {
  24951. height: math.unit(11.693, "feet"),
  24952. name: "Head",
  24953. image: {
  24954. source: "./media/characters/alydar/head.svg"
  24955. }
  24956. },
  24957. headAlt: {
  24958. height: math.unit(12.861, "feet"),
  24959. name: "Head (Alt)",
  24960. image: {
  24961. source: "./media/characters/alydar/head-alt.svg"
  24962. }
  24963. },
  24964. wing: {
  24965. height: math.unit(20.712, "feet"),
  24966. name: "Wing",
  24967. image: {
  24968. source: "./media/characters/alydar/wing.svg"
  24969. }
  24970. },
  24971. wingFeather: {
  24972. height: math.unit(9.662, "feet"),
  24973. name: "Wing Feather",
  24974. image: {
  24975. source: "./media/characters/alydar/wing-feather.svg"
  24976. }
  24977. },
  24978. countourFeather: {
  24979. height: math.unit(4.154, "feet"),
  24980. name: "Contour Feather",
  24981. image: {
  24982. source: "./media/characters/alydar/contour-feather.svg"
  24983. }
  24984. },
  24985. },
  24986. [
  24987. {
  24988. name: "Diplomatic",
  24989. height: math.unit(13, "feet"),
  24990. default: true
  24991. },
  24992. {
  24993. name: "Small",
  24994. height: math.unit(30, "feet")
  24995. },
  24996. {
  24997. name: "Normal",
  24998. height: math.unit(95, "feet"),
  24999. default: true
  25000. },
  25001. {
  25002. name: "Large",
  25003. height: math.unit(285, "feet")
  25004. },
  25005. {
  25006. name: "Incomprehensible",
  25007. height: math.unit(450, "megameters")
  25008. },
  25009. ]
  25010. ))
  25011. characterMakers.push(() => makeCharacter(
  25012. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25013. {
  25014. side: {
  25015. height: math.unit(11, "feet"),
  25016. weight: math.unit(1750, "kg"),
  25017. name: "Side",
  25018. image: {
  25019. source: "./media/characters/selicia/side.svg",
  25020. extra: 440 / 396,
  25021. bottom: 24.8 / 465.979
  25022. }
  25023. },
  25024. maw: {
  25025. height: math.unit(4.665, "feet"),
  25026. name: "Maw",
  25027. image: {
  25028. source: "./media/characters/selicia/maw.svg"
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Normal",
  25035. height: math.unit(11, "feet"),
  25036. default: true
  25037. },
  25038. ]
  25039. ))
  25040. characterMakers.push(() => makeCharacter(
  25041. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25042. {
  25043. side: {
  25044. height: math.unit(2 + 6 / 12, "feet"),
  25045. weight: math.unit(30, "lb"),
  25046. name: "Side",
  25047. image: {
  25048. source: "./media/characters/layla/side.svg",
  25049. extra: 244 / 188,
  25050. bottom: 18.2 / 262.1
  25051. }
  25052. },
  25053. back: {
  25054. height: math.unit(2 + 6 / 12, "feet"),
  25055. weight: math.unit(30, "lb"),
  25056. name: "Back",
  25057. image: {
  25058. source: "./media/characters/layla/back.svg",
  25059. extra: 308 / 241.5,
  25060. bottom: 8.9 / 316.8
  25061. }
  25062. },
  25063. cumming: {
  25064. height: math.unit(2 + 6 / 12, "feet"),
  25065. weight: math.unit(30, "lb"),
  25066. name: "Cumming",
  25067. image: {
  25068. source: "./media/characters/layla/cumming.svg",
  25069. extra: 342 / 279,
  25070. bottom: 595 / 938
  25071. }
  25072. },
  25073. dickFlaccid: {
  25074. height: math.unit(2.595, "feet"),
  25075. name: "Flaccid Genitals",
  25076. image: {
  25077. source: "./media/characters/layla/dick-flaccid.svg"
  25078. }
  25079. },
  25080. dickErect: {
  25081. height: math.unit(2.359, "feet"),
  25082. name: "Erect Genitals",
  25083. image: {
  25084. source: "./media/characters/layla/dick-erect.svg"
  25085. }
  25086. },
  25087. dragon: {
  25088. height: math.unit(40, "feet"),
  25089. name: "Dragon",
  25090. image: {
  25091. source: "./media/characters/layla/dragon.svg",
  25092. extra: 610/535,
  25093. bottom: 367/977
  25094. }
  25095. },
  25096. taur: {
  25097. height: math.unit(30, "feet"),
  25098. name: "Taur",
  25099. image: {
  25100. source: "./media/characters/layla/taur.svg",
  25101. extra: 1268/1199,
  25102. bottom: 112/1380
  25103. }
  25104. },
  25105. },
  25106. [
  25107. {
  25108. name: "Micro",
  25109. height: math.unit(1, "inch")
  25110. },
  25111. {
  25112. name: "Small",
  25113. height: math.unit(1, "foot")
  25114. },
  25115. {
  25116. name: "Normal",
  25117. height: math.unit(2 + 6 / 12, "feet"),
  25118. default: true
  25119. },
  25120. {
  25121. name: "Macro",
  25122. height: math.unit(200, "feet")
  25123. },
  25124. {
  25125. name: "Megamacro",
  25126. height: math.unit(1000, "miles")
  25127. },
  25128. {
  25129. name: "Planetary",
  25130. height: math.unit(8000, "miles")
  25131. },
  25132. {
  25133. name: "True Layla",
  25134. height: math.unit(200000 * 7, "multiverses")
  25135. },
  25136. ]
  25137. ))
  25138. characterMakers.push(() => makeCharacter(
  25139. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25140. {
  25141. back: {
  25142. height: math.unit(10.5, "feet"),
  25143. weight: math.unit(800, "lb"),
  25144. name: "Back",
  25145. image: {
  25146. source: "./media/characters/knox/back.svg",
  25147. extra: 1486 / 1089,
  25148. bottom: 107 / 1601.4
  25149. }
  25150. },
  25151. side: {
  25152. height: math.unit(10.5, "feet"),
  25153. weight: math.unit(800, "lb"),
  25154. name: "Side",
  25155. image: {
  25156. source: "./media/characters/knox/side.svg",
  25157. extra: 244 / 218,
  25158. bottom: 14 / 260
  25159. }
  25160. },
  25161. },
  25162. [
  25163. {
  25164. name: "Compact",
  25165. height: math.unit(10.5, "feet"),
  25166. default: true
  25167. },
  25168. {
  25169. name: "Dynamax",
  25170. height: math.unit(210, "feet")
  25171. },
  25172. {
  25173. name: "Full Macro",
  25174. height: math.unit(850, "feet")
  25175. },
  25176. ]
  25177. ))
  25178. characterMakers.push(() => makeCharacter(
  25179. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25180. {
  25181. front: {
  25182. height: math.unit(28, "feet"),
  25183. weight: math.unit(10500, "lb"),
  25184. name: "Front",
  25185. image: {
  25186. source: "./media/characters/kayda/front.svg",
  25187. extra: 1536 / 1428,
  25188. bottom: 68.7 / 1603
  25189. }
  25190. },
  25191. back: {
  25192. height: math.unit(28, "feet"),
  25193. weight: math.unit(10500, "lb"),
  25194. name: "Back",
  25195. image: {
  25196. source: "./media/characters/kayda/back.svg",
  25197. extra: 1557 / 1464,
  25198. bottom: 39.5 / 1597.49
  25199. }
  25200. },
  25201. dick: {
  25202. height: math.unit(3.858, "feet"),
  25203. name: "Dick",
  25204. image: {
  25205. source: "./media/characters/kayda/dick.svg"
  25206. }
  25207. },
  25208. },
  25209. [
  25210. {
  25211. name: "Macro",
  25212. height: math.unit(28, "feet"),
  25213. default: true
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25219. {
  25220. front: {
  25221. height: math.unit(10 + 11 / 12, "feet"),
  25222. weight: math.unit(1400, "lb"),
  25223. name: "Front",
  25224. image: {
  25225. source: "./media/characters/brian/front.svg",
  25226. extra: 737 / 692,
  25227. bottom: 55.4 / 785
  25228. }
  25229. },
  25230. },
  25231. [
  25232. {
  25233. name: "Normal",
  25234. height: math.unit(10 + 11 / 12, "feet"),
  25235. default: true
  25236. },
  25237. ]
  25238. ))
  25239. characterMakers.push(() => makeCharacter(
  25240. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25241. {
  25242. front: {
  25243. height: math.unit(5 + 8 / 12, "feet"),
  25244. weight: math.unit(140, "lb"),
  25245. name: "Front",
  25246. image: {
  25247. source: "./media/characters/khemri/front.svg",
  25248. extra: 4780 / 4059,
  25249. bottom: 80.1 / 4859.25
  25250. }
  25251. },
  25252. },
  25253. [
  25254. {
  25255. name: "Micro",
  25256. height: math.unit(6, "inches")
  25257. },
  25258. {
  25259. name: "Normal",
  25260. height: math.unit(5 + 8 / 12, "feet"),
  25261. default: true
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25267. {
  25268. front: {
  25269. height: math.unit(13, "feet"),
  25270. weight: math.unit(1700, "lb"),
  25271. name: "Front",
  25272. image: {
  25273. source: "./media/characters/felix-braveheart/front.svg",
  25274. extra: 1222 / 1157,
  25275. bottom: 53.2 / 1280
  25276. }
  25277. },
  25278. back: {
  25279. height: math.unit(13, "feet"),
  25280. weight: math.unit(1700, "lb"),
  25281. name: "Back",
  25282. image: {
  25283. source: "./media/characters/felix-braveheart/back.svg",
  25284. extra: 1277 / 1203,
  25285. bottom: 50.2 / 1327
  25286. }
  25287. },
  25288. feral: {
  25289. height: math.unit(6, "feet"),
  25290. weight: math.unit(400, "lb"),
  25291. name: "Feral",
  25292. image: {
  25293. source: "./media/characters/felix-braveheart/feral.svg",
  25294. extra: 682 / 625,
  25295. bottom: 6.9 / 688
  25296. }
  25297. },
  25298. },
  25299. [
  25300. {
  25301. name: "Normal",
  25302. height: math.unit(13, "feet"),
  25303. default: true
  25304. },
  25305. ]
  25306. ))
  25307. characterMakers.push(() => makeCharacter(
  25308. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25309. {
  25310. side: {
  25311. height: math.unit(5 + 11 / 12, "feet"),
  25312. weight: math.unit(1400, "lb"),
  25313. name: "Side",
  25314. image: {
  25315. source: "./media/characters/shadow-blade/side.svg",
  25316. extra: 1726 / 1267,
  25317. bottom: 58.4 / 1785
  25318. }
  25319. },
  25320. },
  25321. [
  25322. {
  25323. name: "Normal",
  25324. height: math.unit(5 + 11 / 12, "feet"),
  25325. default: true
  25326. },
  25327. ]
  25328. ))
  25329. characterMakers.push(() => makeCharacter(
  25330. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25331. {
  25332. front: {
  25333. height: math.unit(1 + 6 / 12, "feet"),
  25334. weight: math.unit(25, "lb"),
  25335. name: "Front",
  25336. image: {
  25337. source: "./media/characters/karla-halldor/front.svg",
  25338. extra: 1459 / 1383,
  25339. bottom: 12 / 1472
  25340. }
  25341. },
  25342. },
  25343. [
  25344. {
  25345. name: "Normal",
  25346. height: math.unit(1 + 6 / 12, "feet"),
  25347. default: true
  25348. },
  25349. ]
  25350. ))
  25351. characterMakers.push(() => makeCharacter(
  25352. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25353. {
  25354. front: {
  25355. height: math.unit(6 + 2 / 12, "feet"),
  25356. weight: math.unit(160, "lb"),
  25357. name: "Front",
  25358. image: {
  25359. source: "./media/characters/ariam/front.svg",
  25360. extra: 1073/976,
  25361. bottom: 52/1125
  25362. }
  25363. },
  25364. back: {
  25365. height: math.unit(6 + 2/12, "feet"),
  25366. weight: math.unit(160, "lb"),
  25367. name: "Back",
  25368. image: {
  25369. source: "./media/characters/ariam/back.svg",
  25370. extra: 1103/1023,
  25371. bottom: 9/1112
  25372. }
  25373. },
  25374. dressed: {
  25375. height: math.unit(6 + 2/12, "feet"),
  25376. weight: math.unit(160, "lb"),
  25377. name: "Dressed",
  25378. image: {
  25379. source: "./media/characters/ariam/dressed.svg",
  25380. extra: 1099/1009,
  25381. bottom: 25/1124
  25382. }
  25383. },
  25384. squatting: {
  25385. height: math.unit(4.1, "feet"),
  25386. weight: math.unit(160, "lb"),
  25387. name: "Squatting",
  25388. image: {
  25389. source: "./media/characters/ariam/squatting.svg",
  25390. extra: 2617 / 2112,
  25391. bottom: 61.2 / 2681,
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Normal",
  25398. height: math.unit(6 + 2 / 12, "feet"),
  25399. default: true
  25400. },
  25401. {
  25402. name: "Normal+",
  25403. height: math.unit(4, "meters")
  25404. },
  25405. {
  25406. name: "Macro",
  25407. height: math.unit(50, "meters")
  25408. },
  25409. {
  25410. name: "Macro+",
  25411. height: math.unit(100, "meters")
  25412. },
  25413. {
  25414. name: "Megamacro",
  25415. height: math.unit(20, "km")
  25416. },
  25417. {
  25418. name: "Caretaker",
  25419. height: math.unit(444, "megameters")
  25420. },
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25425. {
  25426. front: {
  25427. height: math.unit(1.67, "meters"),
  25428. weight: math.unit(140, "lb"),
  25429. name: "Front",
  25430. image: {
  25431. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25432. extra: 438 / 410,
  25433. bottom: 0.75 / 439
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Shrunken",
  25440. height: math.unit(7.6, "cm")
  25441. },
  25442. {
  25443. name: "Human Scale",
  25444. height: math.unit(1.67, "meters")
  25445. },
  25446. {
  25447. name: "Wolxi Scale",
  25448. height: math.unit(36.7, "meters"),
  25449. default: true
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(1.73, "meters"),
  25458. weight: math.unit(240, "lb"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/izue-two-mothers/front.svg",
  25462. extra: 469 / 437,
  25463. bottom: 1.24 / 470.6
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Shrunken",
  25470. height: math.unit(7.86, "cm")
  25471. },
  25472. {
  25473. name: "Human Scale",
  25474. height: math.unit(1.73, "meters")
  25475. },
  25476. {
  25477. name: "Wolxi Scale",
  25478. height: math.unit(38, "meters"),
  25479. default: true
  25480. },
  25481. ]
  25482. ))
  25483. characterMakers.push(() => makeCharacter(
  25484. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25485. {
  25486. front: {
  25487. height: math.unit(1.55, "meters"),
  25488. weight: math.unit(120, "lb"),
  25489. name: "Front",
  25490. image: {
  25491. source: "./media/characters/teeku-love-shack/front.svg",
  25492. extra: 387 / 362,
  25493. bottom: 1.51 / 388
  25494. }
  25495. },
  25496. },
  25497. [
  25498. {
  25499. name: "Shrunken",
  25500. height: math.unit(7, "cm")
  25501. },
  25502. {
  25503. name: "Human Scale",
  25504. height: math.unit(1.55, "meters")
  25505. },
  25506. {
  25507. name: "Wolxi Scale",
  25508. height: math.unit(34.1, "meters"),
  25509. default: true
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25515. {
  25516. front: {
  25517. height: math.unit(1.83, "meters"),
  25518. weight: math.unit(135, "lb"),
  25519. name: "Front",
  25520. image: {
  25521. source: "./media/characters/dejma-the-red/front.svg",
  25522. extra: 480 / 458,
  25523. bottom: 1.8 / 482
  25524. }
  25525. },
  25526. },
  25527. [
  25528. {
  25529. name: "Shrunken",
  25530. height: math.unit(8.3, "cm")
  25531. },
  25532. {
  25533. name: "Human Scale",
  25534. height: math.unit(1.83, "meters")
  25535. },
  25536. {
  25537. name: "Wolxi Scale",
  25538. height: math.unit(40, "meters"),
  25539. default: true
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25545. {
  25546. front: {
  25547. height: math.unit(1.78, "meters"),
  25548. weight: math.unit(65, "kg"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/aki/front.svg",
  25552. extra: 452 / 415
  25553. }
  25554. },
  25555. frontNsfw: {
  25556. height: math.unit(1.78, "meters"),
  25557. weight: math.unit(65, "kg"),
  25558. name: "Front (NSFW)",
  25559. image: {
  25560. source: "./media/characters/aki/front-nsfw.svg",
  25561. extra: 452 / 415
  25562. }
  25563. },
  25564. back: {
  25565. height: math.unit(1.78, "meters"),
  25566. weight: math.unit(65, "kg"),
  25567. name: "Back",
  25568. image: {
  25569. source: "./media/characters/aki/back.svg",
  25570. extra: 452 / 415
  25571. }
  25572. },
  25573. rump: {
  25574. height: math.unit(2.05, "feet"),
  25575. name: "Rump",
  25576. image: {
  25577. source: "./media/characters/aki/rump.svg"
  25578. }
  25579. },
  25580. dick: {
  25581. height: math.unit(0.95, "feet"),
  25582. name: "Dick",
  25583. image: {
  25584. source: "./media/characters/aki/dick.svg"
  25585. }
  25586. },
  25587. },
  25588. [
  25589. {
  25590. name: "Micro",
  25591. height: math.unit(15, "cm")
  25592. },
  25593. {
  25594. name: "Normal",
  25595. height: math.unit(178, "cm"),
  25596. default: true
  25597. },
  25598. {
  25599. name: "Macro",
  25600. height: math.unit(214, "m")
  25601. },
  25602. {
  25603. name: "Macro+",
  25604. height: math.unit(534, "m")
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25610. {
  25611. front: {
  25612. height: math.unit(5 + 5 / 12, "feet"),
  25613. weight: math.unit(120, "lb"),
  25614. name: "Front",
  25615. image: {
  25616. source: "./media/characters/ari/front.svg",
  25617. extra: 1550/1471,
  25618. bottom: 39/1589
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(5 + 5 / 12, "feet")
  25626. },
  25627. {
  25628. name: "Macro",
  25629. height: math.unit(100, "feet"),
  25630. default: true
  25631. },
  25632. {
  25633. name: "Megamacro",
  25634. height: math.unit(100, "miles")
  25635. },
  25636. {
  25637. name: "Gigamacro",
  25638. height: math.unit(80000, "miles")
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25644. {
  25645. side: {
  25646. height: math.unit(9, "feet"),
  25647. weight: math.unit(400, "kg"),
  25648. name: "Side",
  25649. image: {
  25650. source: "./media/characters/bolt/side.svg",
  25651. extra: 1126 / 896,
  25652. bottom: 60 / 1187.3,
  25653. }
  25654. },
  25655. },
  25656. [
  25657. {
  25658. name: "Micro",
  25659. height: math.unit(5, "inches")
  25660. },
  25661. {
  25662. name: "Normal",
  25663. height: math.unit(9, "feet"),
  25664. default: true
  25665. },
  25666. {
  25667. name: "Macro",
  25668. height: math.unit(700, "feet")
  25669. },
  25670. {
  25671. name: "Max Size",
  25672. height: math.unit(1.52e22, "yottameters")
  25673. },
  25674. ]
  25675. ))
  25676. characterMakers.push(() => makeCharacter(
  25677. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25678. {
  25679. front: {
  25680. height: math.unit(4.3, "meters"),
  25681. weight: math.unit(3, "tons"),
  25682. name: "Front",
  25683. image: {
  25684. source: "./media/characters/draekon-sylviar/front.svg",
  25685. extra: 2072/1512,
  25686. bottom: 74/2146
  25687. }
  25688. },
  25689. back: {
  25690. height: math.unit(4.3, "meters"),
  25691. weight: math.unit(3, "tons"),
  25692. name: "Back",
  25693. image: {
  25694. source: "./media/characters/draekon-sylviar/back.svg",
  25695. extra: 1639/1483,
  25696. bottom: 41/1680
  25697. }
  25698. },
  25699. feral: {
  25700. height: math.unit(1.15, "meters"),
  25701. weight: math.unit(3, "tons"),
  25702. name: "Feral",
  25703. image: {
  25704. source: "./media/characters/draekon-sylviar/feral.svg",
  25705. extra: 1033/395,
  25706. bottom: 130/1163
  25707. }
  25708. },
  25709. maw: {
  25710. height: math.unit(1.3, "meters"),
  25711. name: "Maw",
  25712. image: {
  25713. source: "./media/characters/draekon-sylviar/maw.svg"
  25714. }
  25715. },
  25716. mawSeparated: {
  25717. height: math.unit(1.53, "meters"),
  25718. name: "Separated Maw",
  25719. image: {
  25720. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25721. }
  25722. },
  25723. tail: {
  25724. height: math.unit(1.15, "meters"),
  25725. name: "Tail",
  25726. image: {
  25727. source: "./media/characters/draekon-sylviar/tail.svg"
  25728. }
  25729. },
  25730. tailDick: {
  25731. height: math.unit(1.15, "meters"),
  25732. name: "Tail (Dick)",
  25733. image: {
  25734. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25735. }
  25736. },
  25737. tailDickSeparated: {
  25738. height: math.unit(1.19, "meters"),
  25739. name: "Tail (Separated Dick)",
  25740. image: {
  25741. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25742. }
  25743. },
  25744. slit: {
  25745. height: math.unit(1, "meters"),
  25746. name: "Slit",
  25747. image: {
  25748. source: "./media/characters/draekon-sylviar/slit.svg"
  25749. }
  25750. },
  25751. dick: {
  25752. height: math.unit(1.15, "meters"),
  25753. name: "Dick",
  25754. image: {
  25755. source: "./media/characters/draekon-sylviar/dick.svg"
  25756. }
  25757. },
  25758. dickSeparated: {
  25759. height: math.unit(1.1, "meters"),
  25760. name: "Separated Dick",
  25761. image: {
  25762. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25763. }
  25764. },
  25765. sheath: {
  25766. height: math.unit(1.15, "meters"),
  25767. name: "Sheath",
  25768. image: {
  25769. source: "./media/characters/draekon-sylviar/sheath.svg"
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Small",
  25776. height: math.unit(4.53 / 2, "meters"),
  25777. default: true
  25778. },
  25779. {
  25780. name: "Normal",
  25781. height: math.unit(4.53, "meters"),
  25782. default: true
  25783. },
  25784. {
  25785. name: "Large",
  25786. height: math.unit(4.53 * 2, "meters"),
  25787. },
  25788. ]
  25789. ))
  25790. characterMakers.push(() => makeCharacter(
  25791. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25792. {
  25793. front: {
  25794. height: math.unit(6 + 2 / 12, "feet"),
  25795. weight: math.unit(180, "lb"),
  25796. name: "Front",
  25797. image: {
  25798. source: "./media/characters/brawler/front.svg",
  25799. extra: 3301 / 3027,
  25800. bottom: 138 / 3439
  25801. }
  25802. },
  25803. },
  25804. [
  25805. {
  25806. name: "Normal",
  25807. height: math.unit(6 + 2 / 12, "feet"),
  25808. default: true
  25809. },
  25810. ]
  25811. ))
  25812. characterMakers.push(() => makeCharacter(
  25813. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25814. {
  25815. front: {
  25816. height: math.unit(11, "feet"),
  25817. weight: math.unit(1000, "lb"),
  25818. name: "Front",
  25819. image: {
  25820. source: "./media/characters/alex/front.svg",
  25821. bottom: 44.5 / 620
  25822. }
  25823. },
  25824. },
  25825. [
  25826. {
  25827. name: "Micro",
  25828. height: math.unit(5, "inches")
  25829. },
  25830. {
  25831. name: "Normal",
  25832. height: math.unit(11, "feet"),
  25833. default: true
  25834. },
  25835. {
  25836. name: "Macro",
  25837. height: math.unit(9.5e9, "feet")
  25838. },
  25839. {
  25840. name: "Max Size",
  25841. height: math.unit(1.4e283, "yottameters")
  25842. },
  25843. ]
  25844. ))
  25845. characterMakers.push(() => makeCharacter(
  25846. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25847. {
  25848. female: {
  25849. height: math.unit(29.9, "m"),
  25850. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25851. name: "Female",
  25852. image: {
  25853. source: "./media/characters/zenari/female.svg",
  25854. extra: 3281.6 / 3217,
  25855. bottom: 72.2 / 3353
  25856. }
  25857. },
  25858. male: {
  25859. height: math.unit(27.7, "m"),
  25860. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25861. name: "Male",
  25862. image: {
  25863. source: "./media/characters/zenari/male.svg",
  25864. extra: 3008 / 2991,
  25865. bottom: 54.6 / 3069
  25866. }
  25867. },
  25868. },
  25869. [
  25870. {
  25871. name: "Macro",
  25872. height: math.unit(29.7, "meters"),
  25873. default: true
  25874. },
  25875. ]
  25876. ))
  25877. characterMakers.push(() => makeCharacter(
  25878. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25879. {
  25880. female: {
  25881. height: math.unit(23.8, "m"),
  25882. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25883. name: "Female",
  25884. image: {
  25885. source: "./media/characters/mactarian/female.svg",
  25886. extra: 2662 / 2569,
  25887. bottom: 73 / 2736
  25888. }
  25889. },
  25890. male: {
  25891. height: math.unit(23.8, "m"),
  25892. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25893. name: "Male",
  25894. image: {
  25895. source: "./media/characters/mactarian/male.svg",
  25896. extra: 2673 / 2600,
  25897. bottom: 76 / 2750
  25898. }
  25899. },
  25900. },
  25901. [
  25902. {
  25903. name: "Macro",
  25904. height: math.unit(23.8, "meters"),
  25905. default: true
  25906. },
  25907. ]
  25908. ))
  25909. characterMakers.push(() => makeCharacter(
  25910. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25911. {
  25912. female: {
  25913. height: math.unit(19.3, "m"),
  25914. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25915. name: "Female",
  25916. image: {
  25917. source: "./media/characters/umok/female.svg",
  25918. extra: 2186 / 2078,
  25919. bottom: 87 / 2277
  25920. }
  25921. },
  25922. male: {
  25923. height: math.unit(19.5, "m"),
  25924. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25925. name: "Male",
  25926. image: {
  25927. source: "./media/characters/umok/male.svg",
  25928. extra: 2233 / 2140,
  25929. bottom: 24.4 / 2258
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Macro",
  25936. height: math.unit(19.3, "meters"),
  25937. default: true
  25938. },
  25939. ]
  25940. ))
  25941. characterMakers.push(() => makeCharacter(
  25942. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25943. {
  25944. female: {
  25945. height: math.unit(26.15, "m"),
  25946. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25947. name: "Female",
  25948. image: {
  25949. source: "./media/characters/joraxian/female.svg",
  25950. extra: 2912 / 2824,
  25951. bottom: 36 / 2956
  25952. }
  25953. },
  25954. male: {
  25955. height: math.unit(25.4, "m"),
  25956. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25957. name: "Male",
  25958. image: {
  25959. source: "./media/characters/joraxian/male.svg",
  25960. extra: 2877 / 2721,
  25961. bottom: 82 / 2967
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Macro",
  25968. height: math.unit(26.15, "meters"),
  25969. default: true
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25975. {
  25976. female: {
  25977. height: math.unit(21.6, "m"),
  25978. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25979. name: "Female",
  25980. image: {
  25981. source: "./media/characters/sthara/female.svg",
  25982. extra: 2516 / 2347,
  25983. bottom: 21.5 / 2537
  25984. }
  25985. },
  25986. male: {
  25987. height: math.unit(24, "m"),
  25988. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25989. name: "Male",
  25990. image: {
  25991. source: "./media/characters/sthara/male.svg",
  25992. extra: 2732 / 2607,
  25993. bottom: 23 / 2732
  25994. }
  25995. },
  25996. },
  25997. [
  25998. {
  25999. name: "Macro",
  26000. height: math.unit(21.6, "meters"),
  26001. default: true
  26002. },
  26003. ]
  26004. ))
  26005. characterMakers.push(() => makeCharacter(
  26006. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26007. {
  26008. front: {
  26009. height: math.unit(6 + 4 / 12, "feet"),
  26010. weight: math.unit(175, "lb"),
  26011. name: "Front",
  26012. image: {
  26013. source: "./media/characters/luka-bryzant/front.svg",
  26014. extra: 311 / 289,
  26015. bottom: 4 / 315
  26016. }
  26017. },
  26018. back: {
  26019. height: math.unit(6 + 4 / 12, "feet"),
  26020. weight: math.unit(175, "lb"),
  26021. name: "Back",
  26022. image: {
  26023. source: "./media/characters/luka-bryzant/back.svg",
  26024. extra: 311 / 289,
  26025. bottom: 3.8 / 313.7
  26026. }
  26027. },
  26028. },
  26029. [
  26030. {
  26031. name: "Micro",
  26032. height: math.unit(10, "inches")
  26033. },
  26034. {
  26035. name: "Normal",
  26036. height: math.unit(6 + 4 / 12, "feet"),
  26037. default: true
  26038. },
  26039. {
  26040. name: "Large",
  26041. height: math.unit(12, "feet")
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26047. {
  26048. front: {
  26049. height: math.unit(5 + 7 / 12, "feet"),
  26050. weight: math.unit(185, "lb"),
  26051. name: "Front",
  26052. image: {
  26053. source: "./media/characters/aman-aquila/front.svg",
  26054. extra: 1013 / 976,
  26055. bottom: 45.6 / 1057
  26056. }
  26057. },
  26058. side: {
  26059. height: math.unit(5 + 7 / 12, "feet"),
  26060. weight: math.unit(185, "lb"),
  26061. name: "Side",
  26062. image: {
  26063. source: "./media/characters/aman-aquila/side.svg",
  26064. extra: 1054 / 1011,
  26065. bottom: 15 / 1070
  26066. }
  26067. },
  26068. back: {
  26069. height: math.unit(5 + 7 / 12, "feet"),
  26070. weight: math.unit(185, "lb"),
  26071. name: "Back",
  26072. image: {
  26073. source: "./media/characters/aman-aquila/back.svg",
  26074. extra: 1026 / 970,
  26075. bottom: 12 / 1039
  26076. }
  26077. },
  26078. head: {
  26079. height: math.unit(1.211, "feet"),
  26080. name: "Head",
  26081. image: {
  26082. source: "./media/characters/aman-aquila/head.svg",
  26083. }
  26084. },
  26085. },
  26086. [
  26087. {
  26088. name: "Minimicro",
  26089. height: math.unit(0.057, "inches")
  26090. },
  26091. {
  26092. name: "Micro",
  26093. height: math.unit(7, "inches")
  26094. },
  26095. {
  26096. name: "Mini",
  26097. height: math.unit(3 + 7 / 12, "feet")
  26098. },
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(5 + 7 / 12, "feet"),
  26102. default: true
  26103. },
  26104. {
  26105. name: "Macro",
  26106. height: math.unit(157 + 7 / 12, "feet")
  26107. },
  26108. {
  26109. name: "Megamacro",
  26110. height: math.unit(1557 + 7 / 12, "feet")
  26111. },
  26112. {
  26113. name: "Gigamacro",
  26114. height: math.unit(15557 + 7 / 12, "feet")
  26115. },
  26116. ]
  26117. ))
  26118. characterMakers.push(() => makeCharacter(
  26119. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26120. {
  26121. front: {
  26122. height: math.unit(3 + 2 / 12, "inches"),
  26123. weight: math.unit(0.3, "ounces"),
  26124. name: "Front",
  26125. image: {
  26126. source: "./media/characters/hiphae/front.svg",
  26127. extra: 1931 / 1683,
  26128. bottom: 24 / 1955
  26129. }
  26130. },
  26131. },
  26132. [
  26133. {
  26134. name: "Normal",
  26135. height: math.unit(3 + 1 / 2, "inches"),
  26136. default: true
  26137. },
  26138. ]
  26139. ))
  26140. characterMakers.push(() => makeCharacter(
  26141. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26142. {
  26143. front: {
  26144. height: math.unit(5 + 10 / 12, "feet"),
  26145. weight: math.unit(165, "lb"),
  26146. name: "Front",
  26147. image: {
  26148. source: "./media/characters/nicky/front.svg",
  26149. extra: 3144 / 2886,
  26150. bottom: 45.6 / 3192
  26151. }
  26152. },
  26153. back: {
  26154. height: math.unit(5 + 10 / 12, "feet"),
  26155. weight: math.unit(165, "lb"),
  26156. name: "Back",
  26157. image: {
  26158. source: "./media/characters/nicky/back.svg",
  26159. extra: 3055 / 2804,
  26160. bottom: 28.4 / 3087
  26161. }
  26162. },
  26163. frontclothed: {
  26164. height: math.unit(5 + 10 / 12, "feet"),
  26165. weight: math.unit(165, "lb"),
  26166. name: "Front-clothed",
  26167. image: {
  26168. source: "./media/characters/nicky/front-clothed.svg",
  26169. extra: 3184.9 / 2926.9,
  26170. bottom: 86.5 / 3239.9
  26171. }
  26172. },
  26173. foot: {
  26174. height: math.unit(1.16, "feet"),
  26175. name: "Foot",
  26176. image: {
  26177. source: "./media/characters/nicky/foot.svg"
  26178. }
  26179. },
  26180. feet: {
  26181. height: math.unit(1.34, "feet"),
  26182. name: "Feet",
  26183. image: {
  26184. source: "./media/characters/nicky/feet.svg"
  26185. }
  26186. },
  26187. maw: {
  26188. height: math.unit(0.9, "feet"),
  26189. name: "Maw",
  26190. image: {
  26191. source: "./media/characters/nicky/maw.svg"
  26192. }
  26193. },
  26194. },
  26195. [
  26196. {
  26197. name: "Normal",
  26198. height: math.unit(5 + 10 / 12, "feet"),
  26199. default: true
  26200. },
  26201. {
  26202. name: "Macro",
  26203. height: math.unit(60, "feet")
  26204. },
  26205. {
  26206. name: "Megamacro",
  26207. height: math.unit(1, "mile")
  26208. },
  26209. ]
  26210. ))
  26211. characterMakers.push(() => makeCharacter(
  26212. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26213. {
  26214. side: {
  26215. height: math.unit(10, "feet"),
  26216. weight: math.unit(600, "lb"),
  26217. name: "Side",
  26218. image: {
  26219. source: "./media/characters/blair/side.svg",
  26220. bottom: 16.6 / 475,
  26221. extra: 458 / 431
  26222. }
  26223. },
  26224. },
  26225. [
  26226. {
  26227. name: "Micro",
  26228. height: math.unit(8, "inches")
  26229. },
  26230. {
  26231. name: "Normal",
  26232. height: math.unit(10, "feet"),
  26233. default: true
  26234. },
  26235. {
  26236. name: "Macro",
  26237. height: math.unit(180, "feet")
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(5 + 4 / 12, "feet"),
  26246. weight: math.unit(125, "lb"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/fisher/front.svg",
  26250. extra: 444 / 390,
  26251. bottom: 2 / 444.8
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Micro",
  26258. height: math.unit(4, "inches")
  26259. },
  26260. {
  26261. name: "Normal",
  26262. height: math.unit(5 + 4 / 12, "feet"),
  26263. default: true
  26264. },
  26265. {
  26266. name: "Macro",
  26267. height: math.unit(100, "feet")
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26273. {
  26274. front: {
  26275. height: math.unit(6.71, "feet"),
  26276. weight: math.unit(200, "lb"),
  26277. preyCapacity: math.unit(1000000, "people"),
  26278. name: "Front",
  26279. image: {
  26280. source: "./media/characters/gliss/front.svg",
  26281. extra: 2347 / 2231,
  26282. bottom: 113 / 2462
  26283. }
  26284. },
  26285. hammerspaceSize: {
  26286. height: math.unit(6.71 * 717, "feet"),
  26287. weight: math.unit(200, "lb"),
  26288. preyCapacity: math.unit(1000000, "people"),
  26289. name: "Hammerspace Size",
  26290. image: {
  26291. source: "./media/characters/gliss/front.svg",
  26292. extra: 2347 / 2231,
  26293. bottom: 113 / 2462
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(6.71, "feet"),
  26301. default: true
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26307. {
  26308. side: {
  26309. height: math.unit(1.44, "m"),
  26310. weight: math.unit(80, "kg"),
  26311. name: "Side",
  26312. image: {
  26313. source: "./media/characters/dune-anderson/side.svg",
  26314. bottom: 49 / 1426
  26315. }
  26316. },
  26317. },
  26318. [
  26319. {
  26320. name: "Wolf-sized",
  26321. height: math.unit(1.44, "meters")
  26322. },
  26323. {
  26324. name: "Normal",
  26325. height: math.unit(5.05, "meters"),
  26326. default: true
  26327. },
  26328. {
  26329. name: "Big",
  26330. height: math.unit(14.4, "meters")
  26331. },
  26332. {
  26333. name: "Huge",
  26334. height: math.unit(144, "meters")
  26335. },
  26336. ]
  26337. ))
  26338. characterMakers.push(() => makeCharacter(
  26339. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26340. {
  26341. front: {
  26342. height: math.unit(7, "feet"),
  26343. weight: math.unit(425, "lb"),
  26344. name: "Front",
  26345. image: {
  26346. source: "./media/characters/hind/front.svg",
  26347. extra: 2091 / 1860,
  26348. bottom: 129 / 2220
  26349. }
  26350. },
  26351. back: {
  26352. height: math.unit(7, "feet"),
  26353. weight: math.unit(425, "lb"),
  26354. name: "Back",
  26355. image: {
  26356. source: "./media/characters/hind/back.svg",
  26357. extra: 2091 / 1860,
  26358. bottom: 24.6 / 2309
  26359. }
  26360. },
  26361. tail: {
  26362. height: math.unit(2.8, "feet"),
  26363. name: "Tail",
  26364. image: {
  26365. source: "./media/characters/hind/tail.svg"
  26366. }
  26367. },
  26368. head: {
  26369. height: math.unit(2.55, "feet"),
  26370. name: "Head",
  26371. image: {
  26372. source: "./media/characters/hind/head.svg"
  26373. }
  26374. },
  26375. },
  26376. [
  26377. {
  26378. name: "XS",
  26379. height: math.unit(0.7, "feet")
  26380. },
  26381. {
  26382. name: "Normal",
  26383. height: math.unit(7, "feet"),
  26384. default: true
  26385. },
  26386. {
  26387. name: "XL",
  26388. height: math.unit(70, "feet")
  26389. },
  26390. ]
  26391. ))
  26392. characterMakers.push(() => makeCharacter(
  26393. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26394. {
  26395. front: {
  26396. height: math.unit(2.1, "meters"),
  26397. weight: math.unit(150, "lb"),
  26398. name: "Front",
  26399. image: {
  26400. source: "./media/characters/tharquench-sizestealer/front.svg",
  26401. extra: 1605/1470,
  26402. bottom: 36/1641
  26403. }
  26404. },
  26405. frontAlt: {
  26406. height: math.unit(2.1, "meters"),
  26407. weight: math.unit(150, "lb"),
  26408. name: "Front (Alt)",
  26409. image: {
  26410. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26411. extra: 2318 / 2063,
  26412. bottom: 93.4 / 2410
  26413. }
  26414. },
  26415. },
  26416. [
  26417. {
  26418. name: "Nano",
  26419. height: math.unit(1, "mm")
  26420. },
  26421. {
  26422. name: "Micro",
  26423. height: math.unit(1, "cm")
  26424. },
  26425. {
  26426. name: "Normal",
  26427. height: math.unit(2.1, "meters"),
  26428. default: true
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26434. {
  26435. front: {
  26436. height: math.unit(7 + 5 / 12, "feet"),
  26437. weight: math.unit(357, "lb"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/solex-draconov/front.svg",
  26441. extra: 1993 / 1865,
  26442. bottom: 117 / 2111
  26443. }
  26444. },
  26445. },
  26446. [
  26447. {
  26448. name: "Natural Height",
  26449. height: math.unit(7 + 5 / 12, "feet"),
  26450. default: true
  26451. },
  26452. {
  26453. name: "Macro",
  26454. height: math.unit(350, "feet")
  26455. },
  26456. {
  26457. name: "Macro+",
  26458. height: math.unit(1000, "feet")
  26459. },
  26460. {
  26461. name: "Megamacro",
  26462. height: math.unit(20, "km")
  26463. },
  26464. {
  26465. name: "Megamacro+",
  26466. height: math.unit(1000, "km")
  26467. },
  26468. {
  26469. name: "Gigamacro",
  26470. height: math.unit(2.5, "Gm")
  26471. },
  26472. {
  26473. name: "Teramacro",
  26474. height: math.unit(15, "Tm")
  26475. },
  26476. {
  26477. name: "Galactic",
  26478. height: math.unit(30, "Zm")
  26479. },
  26480. {
  26481. name: "Universal",
  26482. height: math.unit(21000, "Ym")
  26483. },
  26484. {
  26485. name: "Omniversal",
  26486. height: math.unit(9.861e50, "Ym")
  26487. },
  26488. {
  26489. name: "Existential",
  26490. height: math.unit(1e300, "meters")
  26491. },
  26492. ]
  26493. ))
  26494. characterMakers.push(() => makeCharacter(
  26495. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26496. {
  26497. side: {
  26498. height: math.unit(25, "feet"),
  26499. weight: math.unit(90000, "lb"),
  26500. name: "Side",
  26501. image: {
  26502. source: "./media/characters/mandarax/side.svg",
  26503. extra: 614 / 332,
  26504. bottom: 55 / 630
  26505. }
  26506. },
  26507. lounging: {
  26508. height: math.unit(15.4, "feet"),
  26509. weight: math.unit(90000, "lb"),
  26510. name: "Lounging",
  26511. image: {
  26512. source: "./media/characters/mandarax/lounging.svg",
  26513. extra: 817/609,
  26514. bottom: 685/1502
  26515. }
  26516. },
  26517. head: {
  26518. height: math.unit(11.4, "feet"),
  26519. name: "Head",
  26520. image: {
  26521. source: "./media/characters/mandarax/head.svg"
  26522. }
  26523. },
  26524. belly: {
  26525. height: math.unit(33, "feet"),
  26526. name: "Belly",
  26527. preyCapacity: math.unit(500, "people"),
  26528. image: {
  26529. source: "./media/characters/mandarax/belly.svg"
  26530. }
  26531. },
  26532. dick: {
  26533. height: math.unit(8.46, "feet"),
  26534. name: "Dick",
  26535. image: {
  26536. source: "./media/characters/mandarax/dick.svg"
  26537. }
  26538. },
  26539. top: {
  26540. height: math.unit(28, "meters"),
  26541. name: "Top",
  26542. image: {
  26543. source: "./media/characters/mandarax/top.svg"
  26544. }
  26545. },
  26546. },
  26547. [
  26548. {
  26549. name: "Normal",
  26550. height: math.unit(25, "feet"),
  26551. default: true
  26552. },
  26553. ]
  26554. ))
  26555. characterMakers.push(() => makeCharacter(
  26556. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26557. {
  26558. front: {
  26559. height: math.unit(5, "feet"),
  26560. weight: math.unit(90, "lb"),
  26561. name: "Front",
  26562. image: {
  26563. source: "./media/characters/pixil/front.svg",
  26564. extra: 2000 / 1618,
  26565. bottom: 12.3 / 2011
  26566. }
  26567. },
  26568. },
  26569. [
  26570. {
  26571. name: "Normal",
  26572. height: math.unit(5, "feet"),
  26573. default: true
  26574. },
  26575. {
  26576. name: "Megamacro",
  26577. height: math.unit(10, "miles"),
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26583. {
  26584. front: {
  26585. height: math.unit(7 + 2 / 12, "feet"),
  26586. weight: math.unit(200, "lb"),
  26587. name: "Front",
  26588. image: {
  26589. source: "./media/characters/angel/front.svg",
  26590. extra: 1830 / 1737,
  26591. bottom: 22.6 / 1854,
  26592. }
  26593. },
  26594. },
  26595. [
  26596. {
  26597. name: "Normal",
  26598. height: math.unit(7 + 2 / 12, "feet"),
  26599. default: true
  26600. },
  26601. {
  26602. name: "Macro",
  26603. height: math.unit(1000, "feet")
  26604. },
  26605. {
  26606. name: "Megamacro",
  26607. height: math.unit(2, "miles")
  26608. },
  26609. {
  26610. name: "Gigamacro",
  26611. height: math.unit(20, "earths")
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26617. {
  26618. front: {
  26619. height: math.unit(5, "feet"),
  26620. weight: math.unit(180, "lb"),
  26621. name: "Front",
  26622. image: {
  26623. source: "./media/characters/mekana/front.svg",
  26624. extra: 1671 / 1605,
  26625. bottom: 3.5 / 1691
  26626. }
  26627. },
  26628. side: {
  26629. height: math.unit(5, "feet"),
  26630. weight: math.unit(180, "lb"),
  26631. name: "Side",
  26632. image: {
  26633. source: "./media/characters/mekana/side.svg",
  26634. extra: 1671 / 1605,
  26635. bottom: 3.5 / 1691
  26636. }
  26637. },
  26638. back: {
  26639. height: math.unit(5, "feet"),
  26640. weight: math.unit(180, "lb"),
  26641. name: "Back",
  26642. image: {
  26643. source: "./media/characters/mekana/back.svg",
  26644. extra: 1671 / 1605,
  26645. bottom: 3.5 / 1691
  26646. }
  26647. },
  26648. },
  26649. [
  26650. {
  26651. name: "Normal",
  26652. height: math.unit(5, "feet"),
  26653. default: true
  26654. },
  26655. ]
  26656. ))
  26657. characterMakers.push(() => makeCharacter(
  26658. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26659. {
  26660. front: {
  26661. height: math.unit(4 + 6 / 12, "feet"),
  26662. weight: math.unit(80, "lb"),
  26663. name: "Front",
  26664. image: {
  26665. source: "./media/characters/pixie/front.svg",
  26666. extra: 1924 / 1825,
  26667. bottom: 22.4 / 1946
  26668. }
  26669. },
  26670. },
  26671. [
  26672. {
  26673. name: "Normal",
  26674. height: math.unit(4 + 6 / 12, "feet"),
  26675. default: true
  26676. },
  26677. {
  26678. name: "Macro",
  26679. height: math.unit(40, "feet")
  26680. },
  26681. ]
  26682. ))
  26683. characterMakers.push(() => makeCharacter(
  26684. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26685. {
  26686. front: {
  26687. height: math.unit(2.1, "meters"),
  26688. weight: math.unit(200, "lb"),
  26689. name: "Front",
  26690. image: {
  26691. source: "./media/characters/the-lascivious/front.svg",
  26692. extra: 1 / 0.893,
  26693. bottom: 3.5 / 573.7
  26694. }
  26695. },
  26696. },
  26697. [
  26698. {
  26699. name: "Human Scale",
  26700. height: math.unit(2.1, "meters")
  26701. },
  26702. {
  26703. name: "Wolxi Scale",
  26704. height: math.unit(46.2, "m"),
  26705. default: true
  26706. },
  26707. {
  26708. name: "Boinker of Buildings",
  26709. height: math.unit(10, "km")
  26710. },
  26711. {
  26712. name: "Shagger of Skyscrapers",
  26713. height: math.unit(40, "km")
  26714. },
  26715. {
  26716. name: "Banger of Boroughs",
  26717. height: math.unit(4000, "km")
  26718. },
  26719. {
  26720. name: "Screwer of States",
  26721. height: math.unit(100000, "km")
  26722. },
  26723. {
  26724. name: "Pounder of Planets",
  26725. height: math.unit(2000000, "km")
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(6, "feet"),
  26734. weight: math.unit(150, "lb"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/aj/front.svg",
  26738. extra: 2039 / 1562,
  26739. bottom: 40 / 2079
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(11 + 6 / 12, "feet"),
  26747. default: true
  26748. },
  26749. {
  26750. name: "Megamacro",
  26751. height: math.unit(60, "megameters")
  26752. },
  26753. ]
  26754. ))
  26755. characterMakers.push(() => makeCharacter(
  26756. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26757. {
  26758. side: {
  26759. height: math.unit(31 + 8 / 12, "feet"),
  26760. weight: math.unit(75000, "kg"),
  26761. name: "Side",
  26762. image: {
  26763. source: "./media/characters/koros/side.svg",
  26764. extra: 1442 / 1297,
  26765. bottom: 122.7 / 1562
  26766. }
  26767. },
  26768. dicksKingsCrown: {
  26769. height: math.unit(6, "feet"),
  26770. name: "Dicks (King's Crown)",
  26771. image: {
  26772. source: "./media/characters/koros/dicks-kings-crown.svg"
  26773. }
  26774. },
  26775. dicksTailSet: {
  26776. height: math.unit(3, "feet"),
  26777. name: "Dicks (Tail Set)",
  26778. image: {
  26779. source: "./media/characters/koros/dicks-tail-set.svg"
  26780. }
  26781. },
  26782. dickCumming: {
  26783. height: math.unit(7.98, "feet"),
  26784. name: "Dick (Cumming)",
  26785. image: {
  26786. source: "./media/characters/koros/dick-cumming.svg"
  26787. }
  26788. },
  26789. dicksBack: {
  26790. height: math.unit(5.9, "feet"),
  26791. name: "Dicks (Back)",
  26792. image: {
  26793. source: "./media/characters/koros/dicks-back.svg"
  26794. }
  26795. },
  26796. dicksFront: {
  26797. height: math.unit(3.72, "feet"),
  26798. name: "Dicks (Front)",
  26799. image: {
  26800. source: "./media/characters/koros/dicks-front.svg"
  26801. }
  26802. },
  26803. dicksPeeking: {
  26804. height: math.unit(3.0, "feet"),
  26805. name: "Dicks (Peeking)",
  26806. image: {
  26807. source: "./media/characters/koros/dicks-peeking.svg"
  26808. }
  26809. },
  26810. eye: {
  26811. height: math.unit(1.7, "feet"),
  26812. name: "Eye",
  26813. image: {
  26814. source: "./media/characters/koros/eye.svg"
  26815. }
  26816. },
  26817. headFront: {
  26818. height: math.unit(11.69, "feet"),
  26819. name: "Head (Front)",
  26820. image: {
  26821. source: "./media/characters/koros/head-front.svg"
  26822. }
  26823. },
  26824. headSide: {
  26825. height: math.unit(14, "feet"),
  26826. name: "Head (Side)",
  26827. image: {
  26828. source: "./media/characters/koros/head-side.svg"
  26829. }
  26830. },
  26831. leg: {
  26832. height: math.unit(17, "feet"),
  26833. name: "Leg",
  26834. image: {
  26835. source: "./media/characters/koros/leg.svg"
  26836. }
  26837. },
  26838. mawSide: {
  26839. height: math.unit(12.8, "feet"),
  26840. name: "Maw (Side)",
  26841. image: {
  26842. source: "./media/characters/koros/maw-side.svg"
  26843. }
  26844. },
  26845. mawSpitting: {
  26846. height: math.unit(17, "feet"),
  26847. name: "Maw (Spitting)",
  26848. image: {
  26849. source: "./media/characters/koros/maw-spitting.svg"
  26850. }
  26851. },
  26852. slit: {
  26853. height: math.unit(2.8, "feet"),
  26854. name: "Slit",
  26855. image: {
  26856. source: "./media/characters/koros/slit.svg"
  26857. }
  26858. },
  26859. stomach: {
  26860. height: math.unit(6.8, "feet"),
  26861. preyCapacity: math.unit(20, "people"),
  26862. name: "Stomach",
  26863. image: {
  26864. source: "./media/characters/koros/stomach.svg"
  26865. }
  26866. },
  26867. wingspanBottom: {
  26868. height: math.unit(114, "feet"),
  26869. name: "Wingspan (Bottom)",
  26870. image: {
  26871. source: "./media/characters/koros/wingspan-bottom.svg"
  26872. }
  26873. },
  26874. wingspanTop: {
  26875. height: math.unit(104, "feet"),
  26876. name: "Wingspan (Top)",
  26877. image: {
  26878. source: "./media/characters/koros/wingspan-top.svg"
  26879. }
  26880. },
  26881. },
  26882. [
  26883. {
  26884. name: "Normal",
  26885. height: math.unit(31 + 8 / 12, "feet"),
  26886. default: true
  26887. },
  26888. ]
  26889. ))
  26890. characterMakers.push(() => makeCharacter(
  26891. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26892. {
  26893. front: {
  26894. height: math.unit(18 + 5 / 12, "feet"),
  26895. weight: math.unit(3750, "kg"),
  26896. name: "Front",
  26897. image: {
  26898. source: "./media/characters/vexx/front.svg",
  26899. extra: 426 / 396,
  26900. bottom: 31.5 / 458
  26901. }
  26902. },
  26903. maw: {
  26904. height: math.unit(6, "feet"),
  26905. name: "Maw",
  26906. image: {
  26907. source: "./media/characters/vexx/maw.svg"
  26908. }
  26909. },
  26910. },
  26911. [
  26912. {
  26913. name: "Normal",
  26914. height: math.unit(18 + 5 / 12, "feet"),
  26915. default: true
  26916. },
  26917. ]
  26918. ))
  26919. characterMakers.push(() => makeCharacter(
  26920. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26921. {
  26922. front: {
  26923. height: math.unit(17 + 6 / 12, "feet"),
  26924. weight: math.unit(150, "lb"),
  26925. name: "Front",
  26926. image: {
  26927. source: "./media/characters/baadra/front.svg",
  26928. extra: 1694/1553,
  26929. bottom: 179/1873
  26930. }
  26931. },
  26932. frontAlt: {
  26933. height: math.unit(17 + 6 / 12, "feet"),
  26934. weight: math.unit(150, "lb"),
  26935. name: "Front (Alt)",
  26936. image: {
  26937. source: "./media/characters/baadra/front-alt.svg",
  26938. extra: 3137 / 2890,
  26939. bottom: 168.4 / 3305
  26940. }
  26941. },
  26942. back: {
  26943. height: math.unit(17 + 6 / 12, "feet"),
  26944. weight: math.unit(150, "lb"),
  26945. name: "Back",
  26946. image: {
  26947. source: "./media/characters/baadra/back.svg",
  26948. extra: 3142 / 2890,
  26949. bottom: 220 / 3371
  26950. }
  26951. },
  26952. head: {
  26953. height: math.unit(5.45, "feet"),
  26954. name: "Head",
  26955. image: {
  26956. source: "./media/characters/baadra/head.svg"
  26957. }
  26958. },
  26959. headAngry: {
  26960. height: math.unit(4.95, "feet"),
  26961. name: "Head (Angry)",
  26962. image: {
  26963. source: "./media/characters/baadra/head-angry.svg"
  26964. }
  26965. },
  26966. headOpen: {
  26967. height: math.unit(6, "feet"),
  26968. name: "Head (Open)",
  26969. image: {
  26970. source: "./media/characters/baadra/head-open.svg"
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(17 + 6 / 12, "feet"),
  26978. default: true
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(7 + 3 / 12, "feet"),
  26987. weight: math.unit(180, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/juri/front.svg",
  26991. extra: 1401 / 1237,
  26992. bottom: 18.5 / 1418
  26993. }
  26994. },
  26995. side: {
  26996. height: math.unit(7 + 3 / 12, "feet"),
  26997. weight: math.unit(180, "lb"),
  26998. name: "Side",
  26999. image: {
  27000. source: "./media/characters/juri/side.svg",
  27001. extra: 1424 / 1242,
  27002. bottom: 18.5 / 1447
  27003. }
  27004. },
  27005. sitting: {
  27006. height: math.unit(6, "feet"),
  27007. weight: math.unit(180, "lb"),
  27008. name: "Sitting",
  27009. image: {
  27010. source: "./media/characters/juri/sitting.svg",
  27011. extra: 1270 / 1143,
  27012. bottom: 100 / 1343
  27013. }
  27014. },
  27015. back: {
  27016. height: math.unit(7 + 3 / 12, "feet"),
  27017. weight: math.unit(180, "lb"),
  27018. name: "Back",
  27019. image: {
  27020. source: "./media/characters/juri/back.svg",
  27021. extra: 1377 / 1240,
  27022. bottom: 23.7 / 1405
  27023. }
  27024. },
  27025. maw: {
  27026. height: math.unit(2.8, "feet"),
  27027. name: "Maw",
  27028. image: {
  27029. source: "./media/characters/juri/maw.svg"
  27030. }
  27031. },
  27032. stomach: {
  27033. height: math.unit(0.89, "feet"),
  27034. preyCapacity: math.unit(4, "liters"),
  27035. name: "Stomach",
  27036. image: {
  27037. source: "./media/characters/juri/stomach.svg"
  27038. }
  27039. },
  27040. },
  27041. [
  27042. {
  27043. name: "Normal",
  27044. height: math.unit(7 + 3 / 12, "feet"),
  27045. default: true
  27046. },
  27047. ]
  27048. ))
  27049. characterMakers.push(() => makeCharacter(
  27050. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27051. {
  27052. fox: {
  27053. height: math.unit(5 + 6 / 12, "feet"),
  27054. weight: math.unit(140, "lb"),
  27055. name: "Fox",
  27056. image: {
  27057. source: "./media/characters/maxene-sita/fox.svg",
  27058. extra: 146 / 138,
  27059. bottom: 2.1 / 148.19
  27060. }
  27061. },
  27062. foxLaying: {
  27063. height: math.unit(1.70, "feet"),
  27064. weight: math.unit(140, "lb"),
  27065. name: "Fox (Laying)",
  27066. image: {
  27067. source: "./media/characters/maxene-sita/fox-laying.svg",
  27068. extra: 910 / 572,
  27069. bottom: 71 / 981
  27070. }
  27071. },
  27072. kitsune: {
  27073. height: math.unit(10, "feet"),
  27074. weight: math.unit(800, "lb"),
  27075. name: "Kitsune",
  27076. image: {
  27077. source: "./media/characters/maxene-sita/kitsune.svg",
  27078. extra: 185 / 176,
  27079. bottom: 4.7 / 189.9
  27080. }
  27081. },
  27082. hellhound: {
  27083. height: math.unit(10, "feet"),
  27084. weight: math.unit(700, "lb"),
  27085. name: "Hellhound",
  27086. image: {
  27087. source: "./media/characters/maxene-sita/hellhound.svg",
  27088. extra: 1600 / 1545,
  27089. bottom: 81 / 1681
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Normal",
  27096. height: math.unit(5 + 6 / 12, "feet"),
  27097. default: true
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27103. {
  27104. front: {
  27105. height: math.unit(3 + 4 / 12, "feet"),
  27106. weight: math.unit(70, "lb"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/maia/front.svg",
  27110. extra: 227 / 219.5,
  27111. bottom: 40 / 267
  27112. }
  27113. },
  27114. back: {
  27115. height: math.unit(3 + 4 / 12, "feet"),
  27116. weight: math.unit(70, "lb"),
  27117. name: "Back",
  27118. image: {
  27119. source: "./media/characters/maia/back.svg",
  27120. extra: 237 / 225
  27121. }
  27122. },
  27123. },
  27124. [
  27125. {
  27126. name: "Normal",
  27127. height: math.unit(3 + 4 / 12, "feet"),
  27128. default: true
  27129. },
  27130. ]
  27131. ))
  27132. characterMakers.push(() => makeCharacter(
  27133. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27134. {
  27135. front: {
  27136. height: math.unit(5 + 10 / 12, "feet"),
  27137. weight: math.unit(197, "lb"),
  27138. name: "Front",
  27139. image: {
  27140. source: "./media/characters/jabaro/front.svg",
  27141. extra: 225 / 216,
  27142. bottom: 5.06 / 230
  27143. }
  27144. },
  27145. back: {
  27146. height: math.unit(5 + 10 / 12, "feet"),
  27147. weight: math.unit(197, "lb"),
  27148. name: "Back",
  27149. image: {
  27150. source: "./media/characters/jabaro/back.svg",
  27151. extra: 225 / 219,
  27152. bottom: 1.9 / 227
  27153. }
  27154. },
  27155. },
  27156. [
  27157. {
  27158. name: "Normal",
  27159. height: math.unit(5 + 10 / 12, "feet"),
  27160. default: true
  27161. },
  27162. ]
  27163. ))
  27164. characterMakers.push(() => makeCharacter(
  27165. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27166. {
  27167. front: {
  27168. height: math.unit(5 + 8 / 12, "feet"),
  27169. weight: math.unit(139, "lb"),
  27170. name: "Front",
  27171. image: {
  27172. source: "./media/characters/risa/front.svg",
  27173. extra: 270 / 260,
  27174. bottom: 11.2 / 282
  27175. }
  27176. },
  27177. back: {
  27178. height: math.unit(5 + 8 / 12, "feet"),
  27179. weight: math.unit(139, "lb"),
  27180. name: "Back",
  27181. image: {
  27182. source: "./media/characters/risa/back.svg",
  27183. extra: 264 / 255,
  27184. bottom: 4 / 268
  27185. }
  27186. },
  27187. },
  27188. [
  27189. {
  27190. name: "Normal",
  27191. height: math.unit(5 + 8 / 12, "feet"),
  27192. default: true
  27193. },
  27194. ]
  27195. ))
  27196. characterMakers.push(() => makeCharacter(
  27197. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27198. {
  27199. front: {
  27200. height: math.unit(2 + 11 / 12, "feet"),
  27201. weight: math.unit(30, "lb"),
  27202. name: "Front",
  27203. image: {
  27204. source: "./media/characters/weatley/front.svg",
  27205. bottom: 10.7 / 414,
  27206. extra: 403.5 / 362
  27207. }
  27208. },
  27209. back: {
  27210. height: math.unit(2 + 11 / 12, "feet"),
  27211. weight: math.unit(30, "lb"),
  27212. name: "Back",
  27213. image: {
  27214. source: "./media/characters/weatley/back.svg",
  27215. bottom: 10.7 / 414,
  27216. extra: 403.5 / 362
  27217. }
  27218. },
  27219. },
  27220. [
  27221. {
  27222. name: "Normal",
  27223. height: math.unit(2 + 11 / 12, "feet"),
  27224. default: true
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27230. {
  27231. front: {
  27232. height: math.unit(5 + 2 / 12, "feet"),
  27233. weight: math.unit(50, "kg"),
  27234. name: "Front",
  27235. image: {
  27236. source: "./media/characters/mercury-crescent/front.svg",
  27237. extra: 1088 / 1033,
  27238. bottom: 18.9 / 1109
  27239. }
  27240. },
  27241. },
  27242. [
  27243. {
  27244. name: "Normal",
  27245. height: math.unit(5 + 2 / 12, "feet"),
  27246. default: true
  27247. },
  27248. ]
  27249. ))
  27250. characterMakers.push(() => makeCharacter(
  27251. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27252. {
  27253. front: {
  27254. height: math.unit(2, "feet"),
  27255. weight: math.unit(15, "kg"),
  27256. name: "Front",
  27257. image: {
  27258. source: "./media/characters/diamond-jones/front.svg",
  27259. extra: 727/723,
  27260. bottom: 46/773
  27261. }
  27262. },
  27263. },
  27264. [
  27265. {
  27266. name: "Normal",
  27267. height: math.unit(2, "feet"),
  27268. default: true
  27269. },
  27270. ]
  27271. ))
  27272. characterMakers.push(() => makeCharacter(
  27273. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27274. {
  27275. front: {
  27276. height: math.unit(3, "feet"),
  27277. weight: math.unit(30, "kg"),
  27278. name: "Front",
  27279. image: {
  27280. source: "./media/characters/sweet-bit/front.svg",
  27281. extra: 675 / 567,
  27282. bottom: 27.7 / 703
  27283. }
  27284. },
  27285. },
  27286. [
  27287. {
  27288. name: "Normal",
  27289. height: math.unit(3, "feet"),
  27290. default: true
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27296. {
  27297. side: {
  27298. height: math.unit(9.178, "feet"),
  27299. weight: math.unit(500, "lb"),
  27300. name: "Side",
  27301. image: {
  27302. source: "./media/characters/umbrazen/side.svg",
  27303. extra: 1730 / 1473,
  27304. bottom: 34.6 / 1765
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Normal",
  27311. height: math.unit(9.178, "feet"),
  27312. default: true
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27318. {
  27319. front: {
  27320. height: math.unit(10, "feet"),
  27321. weight: math.unit(750, "lb"),
  27322. name: "Front",
  27323. image: {
  27324. source: "./media/characters/arlist/front.svg",
  27325. extra: 961 / 778,
  27326. bottom: 6.2 / 986
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Normal",
  27333. height: math.unit(10, "feet"),
  27334. default: true
  27335. },
  27336. ]
  27337. ))
  27338. characterMakers.push(() => makeCharacter(
  27339. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27340. {
  27341. front: {
  27342. height: math.unit(5 + 1 / 12, "feet"),
  27343. weight: math.unit(110, "lb"),
  27344. name: "Front",
  27345. image: {
  27346. source: "./media/characters/aradel/front.svg",
  27347. extra: 324 / 303,
  27348. bottom: 3.6 / 329.4
  27349. }
  27350. },
  27351. },
  27352. [
  27353. {
  27354. name: "Normal",
  27355. height: math.unit(5 + 1 / 12, "feet"),
  27356. default: true
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27362. {
  27363. dressed: {
  27364. height: math.unit(3 + 8 / 12, "feet"),
  27365. weight: math.unit(50, "lb"),
  27366. name: "Dressed",
  27367. image: {
  27368. source: "./media/characters/serryn/dressed.svg",
  27369. extra: 1792 / 1656,
  27370. bottom: 43.5 / 1840
  27371. }
  27372. },
  27373. nude: {
  27374. height: math.unit(3 + 8 / 12, "feet"),
  27375. weight: math.unit(50, "lb"),
  27376. name: "Nude",
  27377. image: {
  27378. source: "./media/characters/serryn/nude.svg",
  27379. extra: 1792 / 1656,
  27380. bottom: 43.5 / 1840
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Normal",
  27387. height: math.unit(3 + 8 / 12, "feet"),
  27388. default: true
  27389. },
  27390. ]
  27391. ))
  27392. characterMakers.push(() => makeCharacter(
  27393. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27394. {
  27395. front: {
  27396. height: math.unit(7 + 10 / 12, "feet"),
  27397. weight: math.unit(255, "lb"),
  27398. name: "Front",
  27399. image: {
  27400. source: "./media/characters/xavier-thyme/front.svg",
  27401. extra: 3733 / 3642,
  27402. bottom: 131 / 3869
  27403. }
  27404. },
  27405. frontRaven: {
  27406. height: math.unit(7 + 10 / 12, "feet"),
  27407. weight: math.unit(255, "lb"),
  27408. name: "Front (Raven)",
  27409. image: {
  27410. source: "./media/characters/xavier-thyme/front-raven.svg",
  27411. extra: 4385 / 3642,
  27412. bottom: 131 / 4517
  27413. }
  27414. },
  27415. },
  27416. [
  27417. {
  27418. name: "Normal",
  27419. height: math.unit(7 + 10 / 12, "feet"),
  27420. default: true
  27421. },
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27426. {
  27427. front: {
  27428. height: math.unit(1.6, "m"),
  27429. weight: math.unit(50, "kg"),
  27430. name: "Front",
  27431. image: {
  27432. source: "./media/characters/kiki/front.svg",
  27433. extra: 4682 / 3610,
  27434. bottom: 115 / 4777
  27435. }
  27436. },
  27437. },
  27438. [
  27439. {
  27440. name: "Normal",
  27441. height: math.unit(1.6, "meters"),
  27442. default: true
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27448. {
  27449. front: {
  27450. height: math.unit(50, "m"),
  27451. weight: math.unit(500, "tonnes"),
  27452. name: "Front",
  27453. image: {
  27454. source: "./media/characters/ryoko/front.svg",
  27455. extra: 4632 / 3926,
  27456. bottom: 193 / 4823
  27457. }
  27458. },
  27459. },
  27460. [
  27461. {
  27462. name: "Normal",
  27463. height: math.unit(50, "meters"),
  27464. default: true
  27465. },
  27466. ]
  27467. ))
  27468. characterMakers.push(() => makeCharacter(
  27469. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27470. {
  27471. front: {
  27472. height: math.unit(30, "m"),
  27473. weight: math.unit(22, "tonnes"),
  27474. name: "Front",
  27475. image: {
  27476. source: "./media/characters/elio/front.svg",
  27477. extra: 4582 / 3720,
  27478. bottom: 236 / 4828
  27479. }
  27480. },
  27481. },
  27482. [
  27483. {
  27484. name: "Normal",
  27485. height: math.unit(30, "meters"),
  27486. default: true
  27487. },
  27488. ]
  27489. ))
  27490. characterMakers.push(() => makeCharacter(
  27491. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27492. {
  27493. front: {
  27494. height: math.unit(6 + 3 / 12, "feet"),
  27495. weight: math.unit(120, "lb"),
  27496. name: "Front",
  27497. image: {
  27498. source: "./media/characters/azura/front.svg",
  27499. extra: 1149 / 1135,
  27500. bottom: 45 / 1194
  27501. }
  27502. },
  27503. frontClothed: {
  27504. height: math.unit(6 + 3 / 12, "feet"),
  27505. weight: math.unit(120, "lb"),
  27506. name: "Front (Clothed)",
  27507. image: {
  27508. source: "./media/characters/azura/front-clothed.svg",
  27509. extra: 1149 / 1135,
  27510. bottom: 45 / 1194
  27511. }
  27512. },
  27513. },
  27514. [
  27515. {
  27516. name: "Normal",
  27517. height: math.unit(6 + 3 / 12, "feet"),
  27518. default: true
  27519. },
  27520. {
  27521. name: "Macro",
  27522. height: math.unit(20 + 6 / 12, "feet")
  27523. },
  27524. {
  27525. name: "Megamacro",
  27526. height: math.unit(12, "miles")
  27527. },
  27528. {
  27529. name: "Gigamacro",
  27530. height: math.unit(10000, "miles")
  27531. },
  27532. {
  27533. name: "Teramacro",
  27534. height: math.unit(900000, "miles")
  27535. },
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27540. {
  27541. front: {
  27542. height: math.unit(12, "feet"),
  27543. weight: math.unit(1, "ton"),
  27544. capacity: math.unit(660000, "gallons"),
  27545. name: "Front",
  27546. image: {
  27547. source: "./media/characters/zeus/front.svg",
  27548. extra: 5005 / 4717,
  27549. bottom: 363 / 5388
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(12, "feet")
  27557. },
  27558. {
  27559. name: "Preferred Size",
  27560. height: math.unit(0.5, "miles"),
  27561. default: true
  27562. },
  27563. {
  27564. name: "Giga Horse",
  27565. height: math.unit(300, "miles")
  27566. },
  27567. {
  27568. name: "Riding Planets",
  27569. height: math.unit(30, "megameters")
  27570. },
  27571. {
  27572. name: "Cosmic Giant",
  27573. height: math.unit(3, "zettameters")
  27574. },
  27575. {
  27576. name: "Breeding God",
  27577. height: math.unit(9.92e22, "yottameters")
  27578. },
  27579. ]
  27580. ))
  27581. characterMakers.push(() => makeCharacter(
  27582. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27583. {
  27584. side: {
  27585. height: math.unit(9, "feet"),
  27586. weight: math.unit(1500, "kg"),
  27587. name: "Side",
  27588. image: {
  27589. source: "./media/characters/fang/side.svg",
  27590. extra: 924 / 866,
  27591. bottom: 47.5 / 972.3
  27592. }
  27593. },
  27594. },
  27595. [
  27596. {
  27597. name: "Normal",
  27598. height: math.unit(9, "feet"),
  27599. default: true
  27600. },
  27601. {
  27602. name: "Macro",
  27603. height: math.unit(75 + 6 / 12, "feet")
  27604. },
  27605. {
  27606. name: "Teramacro",
  27607. height: math.unit(50000, "miles")
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27613. {
  27614. front: {
  27615. height: math.unit(10, "feet"),
  27616. weight: math.unit(2, "tons"),
  27617. name: "Front",
  27618. image: {
  27619. source: "./media/characters/rekhit/front.svg",
  27620. extra: 2796 / 2590,
  27621. bottom: 225 / 3022
  27622. }
  27623. },
  27624. },
  27625. [
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(10, "feet"),
  27629. default: true
  27630. },
  27631. {
  27632. name: "Macro",
  27633. height: math.unit(500, "feet")
  27634. },
  27635. ]
  27636. ))
  27637. characterMakers.push(() => makeCharacter(
  27638. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27639. {
  27640. front: {
  27641. height: math.unit(7 + 6.451 / 12, "feet"),
  27642. weight: math.unit(310, "lb"),
  27643. name: "Front",
  27644. image: {
  27645. source: "./media/characters/dahlia-verrick/front.svg",
  27646. extra: 1488 / 1365,
  27647. bottom: 6.2 / 1495
  27648. }
  27649. },
  27650. back: {
  27651. height: math.unit(7 + 6.451 / 12, "feet"),
  27652. weight: math.unit(310, "lb"),
  27653. name: "Back",
  27654. image: {
  27655. source: "./media/characters/dahlia-verrick/back.svg",
  27656. extra: 1472 / 1351,
  27657. bottom: 5.28 / 1477
  27658. }
  27659. },
  27660. frontBusiness: {
  27661. height: math.unit(7 + 6.451 / 12, "feet"),
  27662. weight: math.unit(200, "lb"),
  27663. name: "Front (Business)",
  27664. image: {
  27665. source: "./media/characters/dahlia-verrick/front-business.svg",
  27666. extra: 1478 / 1381,
  27667. bottom: 5.5 / 1484
  27668. }
  27669. },
  27670. frontCasual: {
  27671. height: math.unit(7 + 6.451 / 12, "feet"),
  27672. weight: math.unit(200, "lb"),
  27673. name: "Front (Casual)",
  27674. image: {
  27675. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27676. extra: 1478 / 1381,
  27677. bottom: 5.5 / 1484
  27678. }
  27679. },
  27680. },
  27681. [
  27682. {
  27683. name: "Travel-Sized",
  27684. height: math.unit(7.45, "inches")
  27685. },
  27686. {
  27687. name: "Normal",
  27688. height: math.unit(7 + 6.451 / 12, "feet"),
  27689. default: true
  27690. },
  27691. {
  27692. name: "Hitting the Town",
  27693. height: math.unit(37 + 8 / 12, "feet")
  27694. },
  27695. {
  27696. name: "Stomp in the Suburbs",
  27697. height: math.unit(964 + 9.728 / 12, "feet")
  27698. },
  27699. {
  27700. name: "Sit on the City",
  27701. height: math.unit(61747 + 10.592 / 12, "feet")
  27702. },
  27703. {
  27704. name: "Glomp the Globe",
  27705. height: math.unit(252919327 + 4.832 / 12, "feet")
  27706. },
  27707. ]
  27708. ))
  27709. characterMakers.push(() => makeCharacter(
  27710. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27711. {
  27712. front: {
  27713. height: math.unit(6 + 4 / 12, "feet"),
  27714. weight: math.unit(320, "lb"),
  27715. name: "Front",
  27716. image: {
  27717. source: "./media/characters/balina-mahigan/front.svg",
  27718. extra: 447 / 428,
  27719. bottom: 18 / 466
  27720. }
  27721. },
  27722. back: {
  27723. height: math.unit(6 + 4 / 12, "feet"),
  27724. weight: math.unit(320, "lb"),
  27725. name: "Back",
  27726. image: {
  27727. source: "./media/characters/balina-mahigan/back.svg",
  27728. extra: 445 / 428,
  27729. bottom: 4.07 / 448
  27730. }
  27731. },
  27732. arm: {
  27733. height: math.unit(1.88, "feet"),
  27734. name: "Arm",
  27735. image: {
  27736. source: "./media/characters/balina-mahigan/arm.svg"
  27737. }
  27738. },
  27739. backPort: {
  27740. height: math.unit(0.685, "feet"),
  27741. name: "Back Port",
  27742. image: {
  27743. source: "./media/characters/balina-mahigan/back-port.svg"
  27744. }
  27745. },
  27746. hoofpaw: {
  27747. height: math.unit(1.41, "feet"),
  27748. name: "Hoofpaw",
  27749. image: {
  27750. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27751. }
  27752. },
  27753. leftHandBack: {
  27754. height: math.unit(0.938, "feet"),
  27755. name: "Left Hand (Back)",
  27756. image: {
  27757. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27758. }
  27759. },
  27760. leftHandFront: {
  27761. height: math.unit(0.938, "feet"),
  27762. name: "Left Hand (Front)",
  27763. image: {
  27764. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27765. }
  27766. },
  27767. rightHandBack: {
  27768. height: math.unit(0.95, "feet"),
  27769. name: "Right Hand (Back)",
  27770. image: {
  27771. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27772. }
  27773. },
  27774. rightHandFront: {
  27775. height: math.unit(0.95, "feet"),
  27776. name: "Right Hand (Front)",
  27777. image: {
  27778. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27779. }
  27780. },
  27781. },
  27782. [
  27783. {
  27784. name: "Normal",
  27785. height: math.unit(6 + 4 / 12, "feet"),
  27786. default: true
  27787. },
  27788. ]
  27789. ))
  27790. characterMakers.push(() => makeCharacter(
  27791. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27792. {
  27793. front: {
  27794. height: math.unit(6, "feet"),
  27795. weight: math.unit(320, "lb"),
  27796. name: "Front",
  27797. image: {
  27798. source: "./media/characters/balina-mejeri/front.svg",
  27799. extra: 517 / 488,
  27800. bottom: 44.2 / 561
  27801. }
  27802. },
  27803. },
  27804. [
  27805. {
  27806. name: "Normal",
  27807. height: math.unit(6 + 4 / 12, "feet")
  27808. },
  27809. {
  27810. name: "Business",
  27811. height: math.unit(155, "feet"),
  27812. default: true
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27818. {
  27819. kneeling: {
  27820. height: math.unit(6 + 4 / 12, "feet"),
  27821. weight: math.unit(300 * 20, "lb"),
  27822. name: "Kneeling",
  27823. image: {
  27824. source: "./media/characters/balbarian/kneeling.svg",
  27825. extra: 922 / 862,
  27826. bottom: 42.4 / 965
  27827. }
  27828. },
  27829. },
  27830. [
  27831. {
  27832. name: "Normal",
  27833. height: math.unit(6 + 4 / 12, "feet")
  27834. },
  27835. {
  27836. name: "Treasured",
  27837. height: math.unit(18 + 9 / 12, "feet"),
  27838. default: true
  27839. },
  27840. {
  27841. name: "Macro",
  27842. height: math.unit(900, "feet")
  27843. },
  27844. ]
  27845. ))
  27846. characterMakers.push(() => makeCharacter(
  27847. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27848. {
  27849. front: {
  27850. height: math.unit(6 + 4 / 12, "feet"),
  27851. weight: math.unit(325, "lb"),
  27852. name: "Front",
  27853. image: {
  27854. source: "./media/characters/balina-amarini/front.svg",
  27855. extra: 415 / 403,
  27856. bottom: 19 / 433.4
  27857. }
  27858. },
  27859. back: {
  27860. height: math.unit(6 + 4 / 12, "feet"),
  27861. weight: math.unit(325, "lb"),
  27862. name: "Back",
  27863. image: {
  27864. source: "./media/characters/balina-amarini/back.svg",
  27865. extra: 415 / 403,
  27866. bottom: 13.5 / 432
  27867. }
  27868. },
  27869. overdrive: {
  27870. height: math.unit(6 + 4 / 12, "feet"),
  27871. weight: math.unit(400, "lb"),
  27872. name: "Overdrive",
  27873. image: {
  27874. source: "./media/characters/balina-amarini/overdrive.svg",
  27875. extra: 269 / 259,
  27876. bottom: 12 / 282
  27877. }
  27878. },
  27879. },
  27880. [
  27881. {
  27882. name: "Boom",
  27883. height: math.unit(9 + 10 / 12, "feet"),
  27884. default: true
  27885. },
  27886. {
  27887. name: "Macro",
  27888. height: math.unit(280, "feet")
  27889. },
  27890. ]
  27891. ))
  27892. characterMakers.push(() => makeCharacter(
  27893. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27894. {
  27895. goddess: {
  27896. height: math.unit(600, "feet"),
  27897. weight: math.unit(2000000, "tons"),
  27898. name: "Goddess",
  27899. image: {
  27900. source: "./media/characters/lady-kubwa/goddess.svg",
  27901. extra: 1240.5 / 1223,
  27902. bottom: 22 / 1263
  27903. }
  27904. },
  27905. goddesser: {
  27906. height: math.unit(900, "feet"),
  27907. weight: math.unit(20000000, "lb"),
  27908. name: "Goddess-er",
  27909. image: {
  27910. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27911. extra: 899 / 888,
  27912. bottom: 12.6 / 912
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Macro",
  27919. height: math.unit(600, "feet"),
  27920. default: true
  27921. },
  27922. {
  27923. name: "Megamacro",
  27924. height: math.unit(250, "miles")
  27925. },
  27926. ]
  27927. ))
  27928. characterMakers.push(() => makeCharacter(
  27929. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27930. {
  27931. front: {
  27932. height: math.unit(7 + 7 / 12, "feet"),
  27933. weight: math.unit(250, "lb"),
  27934. name: "Front",
  27935. image: {
  27936. source: "./media/characters/tala-grovehorn/front.svg",
  27937. extra: 2636 / 2525,
  27938. bottom: 147 / 2781
  27939. }
  27940. },
  27941. back: {
  27942. height: math.unit(7 + 7 / 12, "feet"),
  27943. weight: math.unit(250, "lb"),
  27944. name: "Back",
  27945. image: {
  27946. source: "./media/characters/tala-grovehorn/back.svg",
  27947. extra: 2635 / 2539,
  27948. bottom: 100 / 2732.8
  27949. }
  27950. },
  27951. mouth: {
  27952. height: math.unit(1.15, "feet"),
  27953. name: "Mouth",
  27954. image: {
  27955. source: "./media/characters/tala-grovehorn/mouth.svg"
  27956. }
  27957. },
  27958. dick: {
  27959. height: math.unit(2.36, "feet"),
  27960. name: "Dick",
  27961. image: {
  27962. source: "./media/characters/tala-grovehorn/dick.svg"
  27963. }
  27964. },
  27965. slit: {
  27966. height: math.unit(0.61, "feet"),
  27967. name: "Slit",
  27968. image: {
  27969. source: "./media/characters/tala-grovehorn/slit.svg"
  27970. }
  27971. },
  27972. },
  27973. [
  27974. ]
  27975. ))
  27976. characterMakers.push(() => makeCharacter(
  27977. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27978. {
  27979. front: {
  27980. height: math.unit(7 + 7 / 12, "feet"),
  27981. weight: math.unit(225, "lb"),
  27982. name: "Front",
  27983. image: {
  27984. source: "./media/characters/epona/front.svg",
  27985. extra: 2445 / 2290,
  27986. bottom: 251 / 2696
  27987. }
  27988. },
  27989. back: {
  27990. height: math.unit(7 + 7 / 12, "feet"),
  27991. weight: math.unit(225, "lb"),
  27992. name: "Back",
  27993. image: {
  27994. source: "./media/characters/epona/back.svg",
  27995. extra: 2546 / 2408,
  27996. bottom: 44 / 2589
  27997. }
  27998. },
  27999. genitals: {
  28000. height: math.unit(1.5, "feet"),
  28001. name: "Genitals",
  28002. image: {
  28003. source: "./media/characters/epona/genitals.svg"
  28004. }
  28005. },
  28006. },
  28007. [
  28008. {
  28009. name: "Normal",
  28010. height: math.unit(7 + 7 / 12, "feet"),
  28011. default: true
  28012. },
  28013. ]
  28014. ))
  28015. characterMakers.push(() => makeCharacter(
  28016. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28017. {
  28018. front: {
  28019. height: math.unit(7, "feet"),
  28020. weight: math.unit(518, "lb"),
  28021. name: "Front",
  28022. image: {
  28023. source: "./media/characters/avia-bloodbourn/front.svg",
  28024. extra: 1466 / 1350,
  28025. bottom: 65 / 1527
  28026. }
  28027. },
  28028. },
  28029. [
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28034. {
  28035. front: {
  28036. height: math.unit(9.35, "feet"),
  28037. weight: math.unit(600, "lb"),
  28038. name: "Front",
  28039. image: {
  28040. source: "./media/characters/amera/front.svg",
  28041. extra: 891 / 818,
  28042. bottom: 30 / 922.7
  28043. }
  28044. },
  28045. back: {
  28046. height: math.unit(9.35, "feet"),
  28047. weight: math.unit(600, "lb"),
  28048. name: "Back",
  28049. image: {
  28050. source: "./media/characters/amera/back.svg",
  28051. extra: 876 / 824,
  28052. bottom: 6.8 / 884
  28053. }
  28054. },
  28055. dick: {
  28056. height: math.unit(2.14, "feet"),
  28057. name: "Dick",
  28058. image: {
  28059. source: "./media/characters/amera/dick.svg"
  28060. }
  28061. },
  28062. },
  28063. [
  28064. {
  28065. name: "Normal",
  28066. height: math.unit(9.35, "feet"),
  28067. default: true
  28068. },
  28069. ]
  28070. ))
  28071. characterMakers.push(() => makeCharacter(
  28072. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28073. {
  28074. kneeling: {
  28075. height: math.unit(3 + 4 / 12, "feet"),
  28076. weight: math.unit(90, "lb"),
  28077. name: "Kneeling",
  28078. image: {
  28079. source: "./media/characters/rosewen/kneeling.svg",
  28080. extra: 1835 / 1571,
  28081. bottom: 27.7 / 1862
  28082. }
  28083. },
  28084. },
  28085. [
  28086. {
  28087. name: "Normal",
  28088. height: math.unit(3 + 4 / 12, "feet"),
  28089. default: true
  28090. },
  28091. ]
  28092. ))
  28093. characterMakers.push(() => makeCharacter(
  28094. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28095. {
  28096. front: {
  28097. height: math.unit(5 + 10 / 12, "feet"),
  28098. weight: math.unit(200, "lb"),
  28099. name: "Front",
  28100. image: {
  28101. source: "./media/characters/sabah/front.svg",
  28102. extra: 849 / 763,
  28103. bottom: 33.9 / 881
  28104. }
  28105. },
  28106. },
  28107. [
  28108. {
  28109. name: "Normal",
  28110. height: math.unit(5 + 10 / 12, "feet"),
  28111. default: true
  28112. },
  28113. ]
  28114. ))
  28115. characterMakers.push(() => makeCharacter(
  28116. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28117. {
  28118. front: {
  28119. height: math.unit(3 + 5 / 12, "feet"),
  28120. weight: math.unit(40, "kg"),
  28121. name: "Front",
  28122. image: {
  28123. source: "./media/characters/purple-flame/front.svg",
  28124. extra: 1577 / 1412,
  28125. bottom: 97 / 1694
  28126. }
  28127. },
  28128. frontDressed: {
  28129. height: math.unit(3 + 5 / 12, "feet"),
  28130. weight: math.unit(40, "kg"),
  28131. name: "Front (Dressed)",
  28132. image: {
  28133. source: "./media/characters/purple-flame/front-dressed.svg",
  28134. extra: 1577 / 1412,
  28135. bottom: 97 / 1694
  28136. }
  28137. },
  28138. headphones: {
  28139. height: math.unit(0.85, "feet"),
  28140. name: "Headphones",
  28141. image: {
  28142. source: "./media/characters/purple-flame/headphones.svg"
  28143. }
  28144. },
  28145. },
  28146. [
  28147. {
  28148. name: "Really Small",
  28149. height: math.unit(5, "cm")
  28150. },
  28151. {
  28152. name: "Micro",
  28153. height: math.unit(1 + 5 / 12, "feet")
  28154. },
  28155. {
  28156. name: "Normal",
  28157. height: math.unit(3 + 5 / 12, "feet"),
  28158. default: true
  28159. },
  28160. {
  28161. name: "Minimacro",
  28162. height: math.unit(125, "feet")
  28163. },
  28164. {
  28165. name: "Macro",
  28166. height: math.unit(0.5, "miles")
  28167. },
  28168. {
  28169. name: "Megamacro",
  28170. height: math.unit(50, "miles")
  28171. },
  28172. {
  28173. name: "Gigantic",
  28174. height: math.unit(750, "miles")
  28175. },
  28176. {
  28177. name: "Planetary",
  28178. height: math.unit(15000, "miles")
  28179. },
  28180. ]
  28181. ))
  28182. characterMakers.push(() => makeCharacter(
  28183. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28184. {
  28185. front: {
  28186. height: math.unit(14, "feet"),
  28187. weight: math.unit(959, "lb"),
  28188. name: "Front",
  28189. image: {
  28190. source: "./media/characters/arsenal/front.svg",
  28191. extra: 2357 / 2157,
  28192. bottom: 93 / 2458
  28193. }
  28194. },
  28195. },
  28196. [
  28197. {
  28198. name: "Normal",
  28199. height: math.unit(14, "feet"),
  28200. default: true
  28201. },
  28202. ]
  28203. ))
  28204. characterMakers.push(() => makeCharacter(
  28205. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28206. {
  28207. front: {
  28208. height: math.unit(6, "feet"),
  28209. weight: math.unit(150, "lb"),
  28210. name: "Front",
  28211. image: {
  28212. source: "./media/characters/adira/front.svg",
  28213. extra: 1078 / 1029,
  28214. bottom: 87 / 1166
  28215. }
  28216. },
  28217. },
  28218. [
  28219. {
  28220. name: "Micro",
  28221. height: math.unit(4, "inches"),
  28222. default: true
  28223. },
  28224. {
  28225. name: "Macro",
  28226. height: math.unit(50, "feet")
  28227. },
  28228. ]
  28229. ))
  28230. characterMakers.push(() => makeCharacter(
  28231. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28232. {
  28233. front: {
  28234. height: math.unit(16, "feet"),
  28235. weight: math.unit(1000, "lb"),
  28236. name: "Front",
  28237. image: {
  28238. source: "./media/characters/grim/front.svg",
  28239. extra: 622 / 614,
  28240. bottom: 18.1 / 642
  28241. }
  28242. },
  28243. back: {
  28244. height: math.unit(16, "feet"),
  28245. weight: math.unit(1000, "lb"),
  28246. name: "Back",
  28247. image: {
  28248. source: "./media/characters/grim/back.svg",
  28249. extra: 610.6 / 602,
  28250. bottom: 40.8 / 652
  28251. }
  28252. },
  28253. hunched: {
  28254. height: math.unit(9.75, "feet"),
  28255. weight: math.unit(1000, "lb"),
  28256. name: "Hunched",
  28257. image: {
  28258. source: "./media/characters/grim/hunched.svg",
  28259. extra: 304 / 297,
  28260. bottom: 35.4 / 394
  28261. }
  28262. },
  28263. },
  28264. [
  28265. {
  28266. name: "Normal",
  28267. height: math.unit(16, "feet"),
  28268. default: true
  28269. },
  28270. ]
  28271. ))
  28272. characterMakers.push(() => makeCharacter(
  28273. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28274. {
  28275. front: {
  28276. height: math.unit(2.3, "meters"),
  28277. weight: math.unit(300, "lb"),
  28278. name: "Front",
  28279. image: {
  28280. source: "./media/characters/sinja/front-sfw.svg",
  28281. extra: 1393 / 1294,
  28282. bottom: 70 / 1463
  28283. }
  28284. },
  28285. frontNsfw: {
  28286. height: math.unit(2.3, "meters"),
  28287. weight: math.unit(300, "lb"),
  28288. name: "Front (NSFW)",
  28289. image: {
  28290. source: "./media/characters/sinja/front-nsfw.svg",
  28291. extra: 1393 / 1294,
  28292. bottom: 70 / 1463
  28293. }
  28294. },
  28295. back: {
  28296. height: math.unit(2.3, "meters"),
  28297. weight: math.unit(300, "lb"),
  28298. name: "Back",
  28299. image: {
  28300. source: "./media/characters/sinja/back.svg",
  28301. extra: 1393 / 1294,
  28302. bottom: 70 / 1463
  28303. }
  28304. },
  28305. head: {
  28306. height: math.unit(1.771, "feet"),
  28307. name: "Head",
  28308. image: {
  28309. source: "./media/characters/sinja/head.svg"
  28310. }
  28311. },
  28312. slit: {
  28313. height: math.unit(0.8, "feet"),
  28314. name: "Slit",
  28315. image: {
  28316. source: "./media/characters/sinja/slit.svg"
  28317. }
  28318. },
  28319. },
  28320. [
  28321. {
  28322. name: "Normal",
  28323. height: math.unit(2.3, "meters")
  28324. },
  28325. {
  28326. name: "Macro",
  28327. height: math.unit(91, "meters"),
  28328. default: true
  28329. },
  28330. {
  28331. name: "Megamacro",
  28332. height: math.unit(91440, "meters")
  28333. },
  28334. {
  28335. name: "Gigamacro",
  28336. height: math.unit(60960000, "meters")
  28337. },
  28338. {
  28339. name: "Teramacro",
  28340. height: math.unit(9144000000, "meters")
  28341. },
  28342. ]
  28343. ))
  28344. characterMakers.push(() => makeCharacter(
  28345. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28346. {
  28347. front: {
  28348. height: math.unit(1.7, "meters"),
  28349. weight: math.unit(130, "lb"),
  28350. name: "Front",
  28351. image: {
  28352. source: "./media/characters/kyu/front.svg",
  28353. extra: 415 / 395,
  28354. bottom: 5 / 420
  28355. }
  28356. },
  28357. head: {
  28358. height: math.unit(1.75, "feet"),
  28359. name: "Head",
  28360. image: {
  28361. source: "./media/characters/kyu/head.svg"
  28362. }
  28363. },
  28364. foot: {
  28365. height: math.unit(0.81, "feet"),
  28366. name: "Foot",
  28367. image: {
  28368. source: "./media/characters/kyu/foot.svg"
  28369. }
  28370. },
  28371. },
  28372. [
  28373. {
  28374. name: "Normal",
  28375. height: math.unit(1.7, "meters")
  28376. },
  28377. {
  28378. name: "Macro",
  28379. height: math.unit(131, "feet"),
  28380. default: true
  28381. },
  28382. {
  28383. name: "Megamacro",
  28384. height: math.unit(91440, "meters")
  28385. },
  28386. {
  28387. name: "Gigamacro",
  28388. height: math.unit(60960000, "meters")
  28389. },
  28390. {
  28391. name: "Teramacro",
  28392. height: math.unit(9144000000, "meters")
  28393. },
  28394. ]
  28395. ))
  28396. characterMakers.push(() => makeCharacter(
  28397. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28398. {
  28399. front: {
  28400. height: math.unit(7 + 1 / 12, "feet"),
  28401. weight: math.unit(250, "lb"),
  28402. name: "Front",
  28403. image: {
  28404. source: "./media/characters/joey/front.svg",
  28405. extra: 1791 / 1537,
  28406. bottom: 28 / 1816
  28407. }
  28408. },
  28409. },
  28410. [
  28411. {
  28412. name: "Micro",
  28413. height: math.unit(3, "inches")
  28414. },
  28415. {
  28416. name: "Normal",
  28417. height: math.unit(7 + 1 / 12, "feet"),
  28418. default: true
  28419. },
  28420. ]
  28421. ))
  28422. characterMakers.push(() => makeCharacter(
  28423. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28424. {
  28425. front: {
  28426. height: math.unit(165, "cm"),
  28427. weight: math.unit(140, "lb"),
  28428. name: "Front",
  28429. image: {
  28430. source: "./media/characters/sam-evans/front.svg",
  28431. extra: 3417 / 3230,
  28432. bottom: 41.3 / 3417
  28433. }
  28434. },
  28435. frontSixTails: {
  28436. height: math.unit(165, "cm"),
  28437. weight: math.unit(140, "lb"),
  28438. name: "Front-six-tails",
  28439. image: {
  28440. source: "./media/characters/sam-evans/front-six-tails.svg",
  28441. extra: 3417 / 3230,
  28442. bottom: 41.3 / 3417
  28443. }
  28444. },
  28445. back: {
  28446. height: math.unit(165, "cm"),
  28447. weight: math.unit(140, "lb"),
  28448. name: "Back",
  28449. image: {
  28450. source: "./media/characters/sam-evans/back.svg",
  28451. extra: 3227 / 3032,
  28452. bottom: 6.8 / 3234
  28453. }
  28454. },
  28455. face: {
  28456. height: math.unit(0.68, "feet"),
  28457. name: "Face",
  28458. image: {
  28459. source: "./media/characters/sam-evans/face.svg"
  28460. }
  28461. },
  28462. },
  28463. [
  28464. {
  28465. name: "Normal",
  28466. height: math.unit(165, "cm"),
  28467. default: true
  28468. },
  28469. {
  28470. name: "Macro",
  28471. height: math.unit(100, "meters")
  28472. },
  28473. {
  28474. name: "Macro+",
  28475. height: math.unit(800, "meters")
  28476. },
  28477. {
  28478. name: "Macro++",
  28479. height: math.unit(3, "km")
  28480. },
  28481. {
  28482. name: "Macro+++",
  28483. height: math.unit(30, "km")
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28489. {
  28490. front: {
  28491. height: math.unit(10, "feet"),
  28492. weight: math.unit(750, "lb"),
  28493. name: "Front",
  28494. image: {
  28495. source: "./media/characters/juliet-a/front.svg",
  28496. extra: 1766 / 1720,
  28497. bottom: 43 / 1809
  28498. }
  28499. },
  28500. back: {
  28501. height: math.unit(10, "feet"),
  28502. weight: math.unit(750, "lb"),
  28503. name: "Back",
  28504. image: {
  28505. source: "./media/characters/juliet-a/back.svg",
  28506. extra: 1781 / 1734,
  28507. bottom: 35 / 1810,
  28508. }
  28509. },
  28510. },
  28511. [
  28512. {
  28513. name: "Normal",
  28514. height: math.unit(10, "feet"),
  28515. default: true
  28516. },
  28517. {
  28518. name: "Dragon Form",
  28519. height: math.unit(250, "feet")
  28520. },
  28521. {
  28522. name: "Macro",
  28523. height: math.unit(1000, "feet")
  28524. },
  28525. {
  28526. name: "Megamacro",
  28527. height: math.unit(10000, "feet")
  28528. }
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28533. {
  28534. regular: {
  28535. height: math.unit(7 + 3 / 12, "feet"),
  28536. weight: math.unit(260, "lb"),
  28537. name: "Regular",
  28538. image: {
  28539. source: "./media/characters/wild/regular.svg",
  28540. extra: 97.45 / 92,
  28541. bottom: 6.8 / 104.3
  28542. }
  28543. },
  28544. biggums: {
  28545. height: math.unit(8 + 6 / 12, "feet"),
  28546. weight: math.unit(425, "lb"),
  28547. name: "Biggums",
  28548. image: {
  28549. source: "./media/characters/wild/biggums.svg",
  28550. extra: 97.45 / 92,
  28551. bottom: 7.5 / 132.34
  28552. }
  28553. },
  28554. mawRegular: {
  28555. height: math.unit(1.24, "feet"),
  28556. name: "Maw (Regular)",
  28557. image: {
  28558. source: "./media/characters/wild/maw.svg"
  28559. }
  28560. },
  28561. mawBiggums: {
  28562. height: math.unit(1.47, "feet"),
  28563. name: "Maw (Biggums)",
  28564. image: {
  28565. source: "./media/characters/wild/maw.svg"
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Normal",
  28572. height: math.unit(7 + 3 / 12, "feet"),
  28573. default: true
  28574. },
  28575. ]
  28576. ))
  28577. characterMakers.push(() => makeCharacter(
  28578. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28579. {
  28580. front: {
  28581. height: math.unit(2.5, "meters"),
  28582. weight: math.unit(200, "kg"),
  28583. name: "Front",
  28584. image: {
  28585. source: "./media/characters/vidar/front.svg",
  28586. extra: 2994 / 2795,
  28587. bottom: 56 / 3061
  28588. }
  28589. },
  28590. back: {
  28591. height: math.unit(2.5, "meters"),
  28592. weight: math.unit(200, "kg"),
  28593. name: "Back",
  28594. image: {
  28595. source: "./media/characters/vidar/back.svg",
  28596. extra: 3131 / 2928,
  28597. bottom: 13.5 / 3141.5
  28598. }
  28599. },
  28600. feral: {
  28601. height: math.unit(2.5, "meters"),
  28602. weight: math.unit(2000, "kg"),
  28603. name: "Feral",
  28604. image: {
  28605. source: "./media/characters/vidar/feral.svg",
  28606. extra: 2790 / 1765,
  28607. bottom: 6 / 2796
  28608. }
  28609. },
  28610. },
  28611. [
  28612. {
  28613. name: "Normal",
  28614. height: math.unit(2.5, "meters"),
  28615. default: true
  28616. },
  28617. {
  28618. name: "Macro",
  28619. height: math.unit(100, "meters")
  28620. },
  28621. ]
  28622. ))
  28623. characterMakers.push(() => makeCharacter(
  28624. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28625. {
  28626. front: {
  28627. height: math.unit(5 + 9 / 12, "feet"),
  28628. weight: math.unit(120, "lb"),
  28629. name: "Front",
  28630. image: {
  28631. source: "./media/characters/ash/front.svg",
  28632. extra: 2189 / 1961,
  28633. bottom: 5.2 / 2194
  28634. }
  28635. },
  28636. },
  28637. [
  28638. {
  28639. name: "Normal",
  28640. height: math.unit(5 + 9 / 12, "feet"),
  28641. default: true
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(9, "feet"),
  28650. weight: math.unit(10000, "lb"),
  28651. name: "Front",
  28652. image: {
  28653. source: "./media/characters/gygabite/front.svg",
  28654. bottom: 31.7 / 537.8,
  28655. extra: 505 / 370
  28656. }
  28657. },
  28658. },
  28659. [
  28660. {
  28661. name: "Normal",
  28662. height: math.unit(9, "feet"),
  28663. default: true
  28664. },
  28665. ]
  28666. ))
  28667. characterMakers.push(() => makeCharacter(
  28668. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28669. {
  28670. front: {
  28671. height: math.unit(12, "feet"),
  28672. weight: math.unit(4000, "lb"),
  28673. name: "Front",
  28674. image: {
  28675. source: "./media/characters/p0tat0/front.svg",
  28676. extra: 1065 / 921,
  28677. bottom: 55.7 / 1121.25
  28678. }
  28679. },
  28680. },
  28681. [
  28682. {
  28683. name: "Normal",
  28684. height: math.unit(12, "feet"),
  28685. default: true
  28686. },
  28687. ]
  28688. ))
  28689. characterMakers.push(() => makeCharacter(
  28690. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28691. {
  28692. side: {
  28693. height: math.unit(6.5, "feet"),
  28694. weight: math.unit(800, "lb"),
  28695. name: "Side",
  28696. image: {
  28697. source: "./media/characters/dusk/side.svg",
  28698. extra: 615 / 373,
  28699. bottom: 53 / 664
  28700. }
  28701. },
  28702. sitting: {
  28703. height: math.unit(7, "feet"),
  28704. weight: math.unit(800, "lb"),
  28705. name: "Sitting",
  28706. image: {
  28707. source: "./media/characters/dusk/sitting.svg",
  28708. extra: 753 / 425,
  28709. bottom: 33 / 774
  28710. }
  28711. },
  28712. head: {
  28713. height: math.unit(6.1, "feet"),
  28714. name: "Head",
  28715. image: {
  28716. source: "./media/characters/dusk/head.svg"
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Normal",
  28723. height: math.unit(7, "feet"),
  28724. default: true
  28725. },
  28726. ]
  28727. ))
  28728. characterMakers.push(() => makeCharacter(
  28729. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28730. {
  28731. front: {
  28732. height: math.unit(15, "feet"),
  28733. weight: math.unit(7000, "lb"),
  28734. name: "Front",
  28735. image: {
  28736. source: "./media/characters/jay-direwolf/front.svg",
  28737. extra: 1810 / 1732,
  28738. bottom: 66 / 1892
  28739. }
  28740. },
  28741. },
  28742. [
  28743. {
  28744. name: "Normal",
  28745. height: math.unit(15, "feet"),
  28746. default: true
  28747. },
  28748. ]
  28749. ))
  28750. characterMakers.push(() => makeCharacter(
  28751. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28752. {
  28753. front: {
  28754. height: math.unit(4 + 9 / 12, "feet"),
  28755. weight: math.unit(130, "lb"),
  28756. name: "Front",
  28757. image: {
  28758. source: "./media/characters/anchovie/front.svg",
  28759. extra: 382 / 350,
  28760. bottom: 25 / 409
  28761. }
  28762. },
  28763. back: {
  28764. height: math.unit(4 + 9 / 12, "feet"),
  28765. weight: math.unit(130, "lb"),
  28766. name: "Back",
  28767. image: {
  28768. source: "./media/characters/anchovie/back.svg",
  28769. extra: 385 / 352,
  28770. bottom: 16.6 / 402
  28771. }
  28772. },
  28773. frontDressed: {
  28774. height: math.unit(4 + 9 / 12, "feet"),
  28775. weight: math.unit(130, "lb"),
  28776. name: "Front (Dressed)",
  28777. image: {
  28778. source: "./media/characters/anchovie/front-dressed.svg",
  28779. extra: 382 / 350,
  28780. bottom: 25 / 409
  28781. }
  28782. },
  28783. backDressed: {
  28784. height: math.unit(4 + 9 / 12, "feet"),
  28785. weight: math.unit(130, "lb"),
  28786. name: "Back (Dressed)",
  28787. image: {
  28788. source: "./media/characters/anchovie/back-dressed.svg",
  28789. extra: 385 / 352,
  28790. bottom: 16.6 / 402
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Micro",
  28797. height: math.unit(6.4, "inches")
  28798. },
  28799. {
  28800. name: "Normal",
  28801. height: math.unit(4 + 9 / 12, "feet"),
  28802. default: true
  28803. },
  28804. ]
  28805. ))
  28806. characterMakers.push(() => makeCharacter(
  28807. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28808. {
  28809. front: {
  28810. height: math.unit(2, "meters"),
  28811. weight: math.unit(180, "lb"),
  28812. name: "Front",
  28813. image: {
  28814. source: "./media/characters/acidrenamon/front.svg",
  28815. extra: 987 / 890,
  28816. bottom: 22.8 / 1009
  28817. }
  28818. },
  28819. back: {
  28820. height: math.unit(2, "meters"),
  28821. weight: math.unit(180, "lb"),
  28822. name: "Back",
  28823. image: {
  28824. source: "./media/characters/acidrenamon/back.svg",
  28825. extra: 983 / 891,
  28826. bottom: 8.4 / 992
  28827. }
  28828. },
  28829. head: {
  28830. height: math.unit(1.92, "feet"),
  28831. name: "Head",
  28832. image: {
  28833. source: "./media/characters/acidrenamon/head.svg"
  28834. }
  28835. },
  28836. rump: {
  28837. height: math.unit(1.72, "feet"),
  28838. name: "Rump",
  28839. image: {
  28840. source: "./media/characters/acidrenamon/rump.svg"
  28841. }
  28842. },
  28843. tail: {
  28844. height: math.unit(4.2, "feet"),
  28845. name: "Tail",
  28846. image: {
  28847. source: "./media/characters/acidrenamon/tail.svg"
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Normal",
  28854. height: math.unit(2, "meters"),
  28855. default: true
  28856. },
  28857. {
  28858. name: "Minimacro",
  28859. height: math.unit(7, "meters")
  28860. },
  28861. {
  28862. name: "Macro",
  28863. height: math.unit(200, "meters")
  28864. },
  28865. {
  28866. name: "Gigamacro",
  28867. height: math.unit(0.2, "earths")
  28868. },
  28869. ]
  28870. ))
  28871. characterMakers.push(() => makeCharacter(
  28872. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28873. {
  28874. front: {
  28875. height: math.unit(152, "feet"),
  28876. name: "Front",
  28877. image: {
  28878. source: "./media/characters/kenzie-lee/front.svg",
  28879. extra: 1869/1774,
  28880. bottom: 128/1997
  28881. }
  28882. },
  28883. side: {
  28884. height: math.unit(86, "feet"),
  28885. name: "Side",
  28886. image: {
  28887. source: "./media/characters/kenzie-lee/side.svg",
  28888. extra: 930/815,
  28889. bottom: 177/1107
  28890. }
  28891. },
  28892. paw: {
  28893. height: math.unit(15, "feet"),
  28894. name: "Paw",
  28895. image: {
  28896. source: "./media/characters/kenzie-lee/paw.svg"
  28897. }
  28898. },
  28899. },
  28900. [
  28901. {
  28902. name: "Kenzie Flea",
  28903. height: math.unit(2, "mm"),
  28904. default: true
  28905. },
  28906. {
  28907. name: "Micro",
  28908. height: math.unit(2, "inches")
  28909. },
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(152, "feet")
  28913. },
  28914. {
  28915. name: "Megamacro",
  28916. height: math.unit(7, "miles")
  28917. },
  28918. {
  28919. name: "Gigamacro",
  28920. height: math.unit(8000, "miles")
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28926. {
  28927. front: {
  28928. height: math.unit(6, "feet"),
  28929. name: "Front",
  28930. image: {
  28931. source: "./media/characters/withers/front.svg",
  28932. extra: 1935/1760,
  28933. bottom: 72/2007
  28934. }
  28935. },
  28936. back: {
  28937. height: math.unit(6, "feet"),
  28938. name: "Back",
  28939. image: {
  28940. source: "./media/characters/withers/back.svg",
  28941. extra: 1944/1792,
  28942. bottom: 12/1956
  28943. }
  28944. },
  28945. dressed: {
  28946. height: math.unit(6, "feet"),
  28947. name: "Dressed",
  28948. image: {
  28949. source: "./media/characters/withers/dressed.svg",
  28950. extra: 1937/1765,
  28951. bottom: 73/2010
  28952. }
  28953. },
  28954. phase1: {
  28955. height: math.unit(1.1, "feet"),
  28956. name: "Phase 1",
  28957. image: {
  28958. source: "./media/characters/withers/phase-1.svg",
  28959. extra: 1885/1232,
  28960. bottom: 0/1885
  28961. }
  28962. },
  28963. phase2: {
  28964. height: math.unit(1.05, "feet"),
  28965. name: "Phase 2",
  28966. image: {
  28967. source: "./media/characters/withers/phase-2.svg",
  28968. extra: 1792/1090,
  28969. bottom: 0/1792
  28970. }
  28971. },
  28972. partyWipe: {
  28973. height: math.unit(1.1, "feet"),
  28974. name: "Party Wipe",
  28975. image: {
  28976. source: "./media/characters/withers/party-wipe.svg",
  28977. extra: 1864/1207,
  28978. bottom: 0/1864
  28979. }
  28980. },
  28981. },
  28982. [
  28983. {
  28984. name: "Macro",
  28985. height: math.unit(167, "feet"),
  28986. default: true
  28987. },
  28988. {
  28989. name: "Megamacro",
  28990. height: math.unit(15, "miles")
  28991. }
  28992. ]
  28993. ))
  28994. characterMakers.push(() => makeCharacter(
  28995. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28996. {
  28997. front: {
  28998. height: math.unit(6 + 7 / 12, "feet"),
  28999. weight: math.unit(250, "lb"),
  29000. name: "Front",
  29001. image: {
  29002. source: "./media/characters/nemoskii/front.svg",
  29003. extra: 2270 / 1734,
  29004. bottom: 86 / 2354
  29005. }
  29006. },
  29007. back: {
  29008. height: math.unit(6 + 7 / 12, "feet"),
  29009. weight: math.unit(250, "lb"),
  29010. name: "Back",
  29011. image: {
  29012. source: "./media/characters/nemoskii/back.svg",
  29013. extra: 1845 / 1788,
  29014. bottom: 10.5 / 1852
  29015. }
  29016. },
  29017. head: {
  29018. height: math.unit(1.31, "feet"),
  29019. name: "Head",
  29020. image: {
  29021. source: "./media/characters/nemoskii/head.svg"
  29022. }
  29023. },
  29024. },
  29025. [
  29026. {
  29027. name: "Micro",
  29028. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29029. },
  29030. {
  29031. name: "Normal",
  29032. height: math.unit(6 + 7 / 12, "feet"),
  29033. default: true
  29034. },
  29035. {
  29036. name: "Macro",
  29037. height: math.unit((6 + 7 / 12) * 150, "feet")
  29038. },
  29039. {
  29040. name: "Macro+",
  29041. height: math.unit((6 + 7 / 12) * 500, "feet")
  29042. },
  29043. {
  29044. name: "Megamacro",
  29045. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29046. },
  29047. ]
  29048. ))
  29049. characterMakers.push(() => makeCharacter(
  29050. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29051. {
  29052. front: {
  29053. height: math.unit(1, "mile"),
  29054. weight: math.unit(265261.9, "lb"),
  29055. name: "Front",
  29056. image: {
  29057. source: "./media/characters/shui/front.svg",
  29058. extra: 1633 / 1564,
  29059. bottom: 91.5 / 1726
  29060. }
  29061. },
  29062. },
  29063. [
  29064. {
  29065. name: "Macro",
  29066. height: math.unit(1, "mile"),
  29067. default: true
  29068. },
  29069. ]
  29070. ))
  29071. characterMakers.push(() => makeCharacter(
  29072. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29073. {
  29074. front: {
  29075. height: math.unit(12 + 6 / 12, "feet"),
  29076. weight: math.unit(1342, "lb"),
  29077. name: "Front",
  29078. image: {
  29079. source: "./media/characters/arokh-takakura/front.svg",
  29080. extra: 1089 / 1043,
  29081. bottom: 77.4 / 1176.7
  29082. }
  29083. },
  29084. back: {
  29085. height: math.unit(12 + 6 / 12, "feet"),
  29086. weight: math.unit(1342, "lb"),
  29087. name: "Back",
  29088. image: {
  29089. source: "./media/characters/arokh-takakura/back.svg",
  29090. extra: 1046 / 1019,
  29091. bottom: 102 / 1150
  29092. }
  29093. },
  29094. },
  29095. [
  29096. {
  29097. name: "Big",
  29098. height: math.unit(12 + 6 / 12, "feet"),
  29099. default: true
  29100. },
  29101. ]
  29102. ))
  29103. characterMakers.push(() => makeCharacter(
  29104. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29105. {
  29106. front: {
  29107. height: math.unit(5 + 6 / 12, "feet"),
  29108. weight: math.unit(150, "lb"),
  29109. name: "Front",
  29110. image: {
  29111. source: "./media/characters/theo/front.svg",
  29112. extra: 1184 / 1131,
  29113. bottom: 7.4 / 1191
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Micro",
  29120. height: math.unit(5, "inches")
  29121. },
  29122. {
  29123. name: "Normal",
  29124. height: math.unit(5 + 6 / 12, "feet"),
  29125. default: true
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(5 + 9 / 12, "feet"),
  29134. weight: math.unit(130, "lb"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/cecelia-swift/front.svg",
  29138. extra: 502 / 484,
  29139. bottom: 23 / 523
  29140. }
  29141. },
  29142. back: {
  29143. height: math.unit(5 + 9 / 12, "feet"),
  29144. weight: math.unit(130, "lb"),
  29145. name: "Back",
  29146. image: {
  29147. source: "./media/characters/cecelia-swift/back.svg",
  29148. extra: 499 / 485,
  29149. bottom: 12 / 511
  29150. }
  29151. },
  29152. head: {
  29153. height: math.unit(0.90, "feet"),
  29154. name: "Head",
  29155. image: {
  29156. source: "./media/characters/cecelia-swift/head.svg"
  29157. }
  29158. },
  29159. rump: {
  29160. height: math.unit(1.75, "feet"),
  29161. name: "Rump",
  29162. image: {
  29163. source: "./media/characters/cecelia-swift/rump.svg"
  29164. }
  29165. },
  29166. },
  29167. [
  29168. {
  29169. name: "Normal",
  29170. height: math.unit(5 + 9 / 12, "feet"),
  29171. default: true
  29172. },
  29173. {
  29174. name: "Big",
  29175. height: math.unit(50, "feet")
  29176. },
  29177. {
  29178. name: "Macro",
  29179. height: math.unit(100, "feet")
  29180. },
  29181. {
  29182. name: "Macro+",
  29183. height: math.unit(500, "feet")
  29184. },
  29185. {
  29186. name: "Macro++",
  29187. height: math.unit(1000, "feet")
  29188. },
  29189. ]
  29190. ))
  29191. characterMakers.push(() => makeCharacter(
  29192. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29193. {
  29194. front: {
  29195. height: math.unit(6, "feet"),
  29196. weight: math.unit(150, "lb"),
  29197. name: "Front",
  29198. image: {
  29199. source: "./media/characters/kaunan/front.svg",
  29200. extra: 2890 / 2523,
  29201. bottom: 49 / 2939
  29202. }
  29203. },
  29204. },
  29205. [
  29206. {
  29207. name: "Macro",
  29208. height: math.unit(150, "feet"),
  29209. default: true
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29215. {
  29216. dressed: {
  29217. height: math.unit(175, "cm"),
  29218. weight: math.unit(60, "kg"),
  29219. name: "Dressed",
  29220. image: {
  29221. source: "./media/characters/fei/dressed.svg",
  29222. extra: 1402/1278,
  29223. bottom: 27/1429
  29224. }
  29225. },
  29226. nude: {
  29227. height: math.unit(175, "cm"),
  29228. weight: math.unit(60, "kg"),
  29229. name: "Nude",
  29230. image: {
  29231. source: "./media/characters/fei/nude.svg",
  29232. extra: 1402/1278,
  29233. bottom: 27/1429
  29234. }
  29235. },
  29236. heels: {
  29237. height: math.unit(0.466, "feet"),
  29238. name: "Heels",
  29239. image: {
  29240. source: "./media/characters/fei/heels.svg",
  29241. extra: 156/152,
  29242. bottom: 28/184
  29243. }
  29244. },
  29245. },
  29246. [
  29247. {
  29248. name: "Mortal",
  29249. height: math.unit(175, "cm")
  29250. },
  29251. {
  29252. name: "Normal",
  29253. height: math.unit(3500, "m")
  29254. },
  29255. {
  29256. name: "Stroll",
  29257. height: math.unit(18.4, "km"),
  29258. default: true
  29259. },
  29260. {
  29261. name: "Showoff",
  29262. height: math.unit(175, "km")
  29263. },
  29264. ]
  29265. ))
  29266. characterMakers.push(() => makeCharacter(
  29267. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29268. {
  29269. front: {
  29270. height: math.unit(7, "feet"),
  29271. weight: math.unit(1000, "kg"),
  29272. name: "Front",
  29273. image: {
  29274. source: "./media/characters/edrax/front.svg",
  29275. extra: 2838 / 2550,
  29276. bottom: 130 / 2968
  29277. }
  29278. },
  29279. },
  29280. [
  29281. {
  29282. name: "Small",
  29283. height: math.unit(7, "feet")
  29284. },
  29285. {
  29286. name: "Normal",
  29287. height: math.unit(1500, "meters")
  29288. },
  29289. {
  29290. name: "Mega",
  29291. height: math.unit(12000000, "km"),
  29292. default: true
  29293. },
  29294. {
  29295. name: "Megamacro",
  29296. height: math.unit(10600000, "lightyears")
  29297. },
  29298. {
  29299. name: "Hypermacro",
  29300. height: math.unit(256, "yottameters")
  29301. },
  29302. ]
  29303. ))
  29304. characterMakers.push(() => makeCharacter(
  29305. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29306. {
  29307. front: {
  29308. height: math.unit(10, "feet"),
  29309. weight: math.unit(750, "lb"),
  29310. name: "Front",
  29311. image: {
  29312. source: "./media/characters/clove/front.svg",
  29313. extra: 1918/1751,
  29314. bottom: 52/1970
  29315. }
  29316. },
  29317. back: {
  29318. height: math.unit(10, "feet"),
  29319. weight: math.unit(750, "lb"),
  29320. name: "Back",
  29321. image: {
  29322. source: "./media/characters/clove/back.svg",
  29323. extra: 1912/1747,
  29324. bottom: 50/1962
  29325. }
  29326. },
  29327. },
  29328. [
  29329. {
  29330. name: "Normal",
  29331. height: math.unit(10, "feet"),
  29332. default: true
  29333. },
  29334. ]
  29335. ))
  29336. characterMakers.push(() => makeCharacter(
  29337. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29338. {
  29339. front: {
  29340. height: math.unit(4, "feet"),
  29341. weight: math.unit(50, "lb"),
  29342. name: "Front",
  29343. image: {
  29344. source: "./media/characters/alex-rabbit/front.svg",
  29345. extra: 507 / 458,
  29346. bottom: 18.5 / 527
  29347. }
  29348. },
  29349. back: {
  29350. height: math.unit(4, "feet"),
  29351. weight: math.unit(50, "lb"),
  29352. name: "Back",
  29353. image: {
  29354. source: "./media/characters/alex-rabbit/back.svg",
  29355. extra: 502 / 460,
  29356. bottom: 18.9 / 521
  29357. }
  29358. },
  29359. },
  29360. [
  29361. {
  29362. name: "Normal",
  29363. height: math.unit(4, "feet"),
  29364. default: true
  29365. },
  29366. ]
  29367. ))
  29368. characterMakers.push(() => makeCharacter(
  29369. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29370. {
  29371. front: {
  29372. height: math.unit(1 + 3 / 12, "feet"),
  29373. weight: math.unit(80, "lb"),
  29374. name: "Front",
  29375. image: {
  29376. source: "./media/characters/zander-rose/front.svg",
  29377. extra: 916 / 797,
  29378. bottom: 17 / 933
  29379. }
  29380. },
  29381. back: {
  29382. height: math.unit(1 + 3 / 12, "feet"),
  29383. weight: math.unit(80, "lb"),
  29384. name: "Back",
  29385. image: {
  29386. source: "./media/characters/zander-rose/back.svg",
  29387. extra: 903 / 779,
  29388. bottom: 31 / 934
  29389. }
  29390. },
  29391. },
  29392. [
  29393. {
  29394. name: "Normal",
  29395. height: math.unit(1 + 3 / 12, "feet"),
  29396. default: true
  29397. },
  29398. ]
  29399. ))
  29400. characterMakers.push(() => makeCharacter(
  29401. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29402. {
  29403. anthro: {
  29404. height: math.unit(6, "feet"),
  29405. weight: math.unit(150, "lb"),
  29406. name: "Anthro",
  29407. image: {
  29408. source: "./media/characters/razz/anthro.svg",
  29409. extra: 1437 / 1343,
  29410. bottom: 48 / 1485
  29411. }
  29412. },
  29413. feral: {
  29414. height: math.unit(6, "feet"),
  29415. weight: math.unit(150, "lb"),
  29416. name: "Feral",
  29417. image: {
  29418. source: "./media/characters/razz/feral.svg",
  29419. extra: 2569 / 1385,
  29420. bottom: 95 / 2664
  29421. }
  29422. },
  29423. },
  29424. [
  29425. {
  29426. name: "Normal",
  29427. height: math.unit(6, "feet"),
  29428. default: true
  29429. },
  29430. ]
  29431. ))
  29432. characterMakers.push(() => makeCharacter(
  29433. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29434. {
  29435. front: {
  29436. height: math.unit(9 + 4 / 12, "feet"),
  29437. weight: math.unit(500, "lb"),
  29438. name: "Front",
  29439. image: {
  29440. source: "./media/characters/morrigan/front.svg",
  29441. extra: 2707 / 2579,
  29442. bottom: 156 / 2863
  29443. }
  29444. },
  29445. },
  29446. [
  29447. {
  29448. name: "Normal",
  29449. height: math.unit(9 + 4 / 12, "feet"),
  29450. default: true
  29451. },
  29452. ]
  29453. ))
  29454. characterMakers.push(() => makeCharacter(
  29455. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29456. {
  29457. front: {
  29458. height: math.unit(5, "stories"),
  29459. weight: math.unit(4000, "lb"),
  29460. name: "Front",
  29461. image: {
  29462. source: "./media/characters/jenene/front.svg",
  29463. extra: 1780 / 1710,
  29464. bottom: 57 / 1837
  29465. }
  29466. },
  29467. },
  29468. [
  29469. {
  29470. name: "Normal",
  29471. height: math.unit(5, "stories"),
  29472. default: true
  29473. },
  29474. ]
  29475. ))
  29476. characterMakers.push(() => makeCharacter(
  29477. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29478. {
  29479. taurSfw: {
  29480. height: math.unit(10, "meters"),
  29481. weight: math.unit(17500, "kg"),
  29482. name: "Taur",
  29483. image: {
  29484. source: "./media/characters/faey/taur-sfw.svg",
  29485. extra: 1200 / 968,
  29486. bottom: 41 / 1241
  29487. }
  29488. },
  29489. chestmaw: {
  29490. height: math.unit(2.01, "meters"),
  29491. name: "Chestmaw",
  29492. image: {
  29493. source: "./media/characters/faey/chestmaw.svg"
  29494. }
  29495. },
  29496. foot: {
  29497. height: math.unit(2.43, "meters"),
  29498. name: "Foot",
  29499. image: {
  29500. source: "./media/characters/faey/foot.svg"
  29501. }
  29502. },
  29503. jaws: {
  29504. height: math.unit(1.66, "meters"),
  29505. name: "Jaws",
  29506. image: {
  29507. source: "./media/characters/faey/jaws.svg"
  29508. }
  29509. },
  29510. tongues: {
  29511. height: math.unit(2.01, "meters"),
  29512. name: "Tongues",
  29513. image: {
  29514. source: "./media/characters/faey/tongues.svg"
  29515. }
  29516. },
  29517. },
  29518. [
  29519. {
  29520. name: "Small",
  29521. height: math.unit(10, "meters"),
  29522. default: true
  29523. },
  29524. {
  29525. name: "Big",
  29526. height: math.unit(500000, "km")
  29527. },
  29528. ]
  29529. ))
  29530. characterMakers.push(() => makeCharacter(
  29531. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29532. {
  29533. front: {
  29534. height: math.unit(7, "feet"),
  29535. weight: math.unit(275, "lb"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/roku/front.svg",
  29539. extra: 903 / 878,
  29540. bottom: 37 / 940
  29541. }
  29542. },
  29543. },
  29544. [
  29545. {
  29546. name: "Normal",
  29547. height: math.unit(7, "feet"),
  29548. default: true
  29549. },
  29550. {
  29551. name: "Macro",
  29552. height: math.unit(500, "feet")
  29553. },
  29554. {
  29555. name: "Megamacro",
  29556. height: math.unit(200, "miles")
  29557. },
  29558. ]
  29559. ))
  29560. characterMakers.push(() => makeCharacter(
  29561. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29562. {
  29563. front: {
  29564. height: math.unit(6 + 2 / 12, "feet"),
  29565. weight: math.unit(150, "lb"),
  29566. name: "Front",
  29567. image: {
  29568. source: "./media/characters/lira/front.svg",
  29569. extra: 1727 / 1605,
  29570. bottom: 26 / 1753
  29571. }
  29572. },
  29573. back: {
  29574. height: math.unit(6 + 2 / 12, "feet"),
  29575. weight: math.unit(150, "lb"),
  29576. name: "Back",
  29577. image: {
  29578. source: "./media/characters/lira/back.svg",
  29579. extra: 1713/1621,
  29580. bottom: 20/1733
  29581. }
  29582. },
  29583. hand: {
  29584. height: math.unit(0.75, "feet"),
  29585. name: "Hand",
  29586. image: {
  29587. source: "./media/characters/lira/hand.svg"
  29588. }
  29589. },
  29590. maw: {
  29591. height: math.unit(0.65, "feet"),
  29592. name: "Maw",
  29593. image: {
  29594. source: "./media/characters/lira/maw.svg"
  29595. }
  29596. },
  29597. pawDigi: {
  29598. height: math.unit(1.6, "feet"),
  29599. name: "Paw Digi",
  29600. image: {
  29601. source: "./media/characters/lira/paw-digi.svg"
  29602. }
  29603. },
  29604. pawPlanti: {
  29605. height: math.unit(1.4, "feet"),
  29606. name: "Paw Planti",
  29607. image: {
  29608. source: "./media/characters/lira/paw-planti.svg"
  29609. }
  29610. },
  29611. },
  29612. [
  29613. {
  29614. name: "Normal",
  29615. height: math.unit(6 + 2 / 12, "feet"),
  29616. default: true
  29617. },
  29618. {
  29619. name: "Macro",
  29620. height: math.unit(100, "feet")
  29621. },
  29622. {
  29623. name: "Macro²",
  29624. height: math.unit(1600, "feet")
  29625. },
  29626. {
  29627. name: "Planetary",
  29628. height: math.unit(20, "earths")
  29629. },
  29630. ]
  29631. ))
  29632. characterMakers.push(() => makeCharacter(
  29633. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29634. {
  29635. front: {
  29636. height: math.unit(6, "feet"),
  29637. weight: math.unit(150, "lb"),
  29638. name: "Front",
  29639. image: {
  29640. source: "./media/characters/hadjet/front.svg",
  29641. extra: 1480 / 1346,
  29642. bottom: 26 / 1506
  29643. }
  29644. },
  29645. frontNsfw: {
  29646. height: math.unit(6, "feet"),
  29647. weight: math.unit(150, "lb"),
  29648. name: "Front (NSFW)",
  29649. image: {
  29650. source: "./media/characters/hadjet/front-nsfw.svg",
  29651. extra: 1440 / 1358,
  29652. bottom: 52 / 1492
  29653. }
  29654. },
  29655. },
  29656. [
  29657. {
  29658. name: "Macro",
  29659. height: math.unit(10, "stories"),
  29660. default: true
  29661. },
  29662. {
  29663. name: "Megamacro",
  29664. height: math.unit(1.5, "miles")
  29665. },
  29666. {
  29667. name: "Megamacro+",
  29668. height: math.unit(5, "miles")
  29669. },
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29674. {
  29675. side: {
  29676. height: math.unit(106, "feet"),
  29677. weight: math.unit(500, "tonnes"),
  29678. name: "Side",
  29679. image: {
  29680. source: "./media/characters/kodran/side.svg",
  29681. extra: 553 / 480,
  29682. bottom: 33 / 586
  29683. }
  29684. },
  29685. front: {
  29686. height: math.unit(132, "feet"),
  29687. weight: math.unit(500, "tonnes"),
  29688. name: "Front",
  29689. image: {
  29690. source: "./media/characters/kodran/front.svg",
  29691. extra: 667 / 643,
  29692. bottom: 42 / 709
  29693. }
  29694. },
  29695. flying: {
  29696. height: math.unit(350, "feet"),
  29697. weight: math.unit(500, "tonnes"),
  29698. name: "Flying",
  29699. image: {
  29700. source: "./media/characters/kodran/flying.svg"
  29701. }
  29702. },
  29703. foot: {
  29704. height: math.unit(33, "feet"),
  29705. name: "Foot",
  29706. image: {
  29707. source: "./media/characters/kodran/foot.svg"
  29708. }
  29709. },
  29710. footFront: {
  29711. height: math.unit(19, "feet"),
  29712. name: "Foot (Front)",
  29713. image: {
  29714. source: "./media/characters/kodran/foot-front.svg",
  29715. extra: 261 / 261,
  29716. bottom: 91 / 352
  29717. }
  29718. },
  29719. headFront: {
  29720. height: math.unit(53, "feet"),
  29721. name: "Head (Front)",
  29722. image: {
  29723. source: "./media/characters/kodran/head-front.svg"
  29724. }
  29725. },
  29726. headSide: {
  29727. height: math.unit(65, "feet"),
  29728. name: "Head (Side)",
  29729. image: {
  29730. source: "./media/characters/kodran/head-side.svg"
  29731. }
  29732. },
  29733. throat: {
  29734. height: math.unit(79, "feet"),
  29735. name: "Throat",
  29736. image: {
  29737. source: "./media/characters/kodran/throat.svg"
  29738. }
  29739. },
  29740. },
  29741. [
  29742. {
  29743. name: "Large",
  29744. height: math.unit(106, "feet"),
  29745. default: true
  29746. },
  29747. ]
  29748. ))
  29749. characterMakers.push(() => makeCharacter(
  29750. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29751. {
  29752. side: {
  29753. height: math.unit(11, "feet"),
  29754. weight: math.unit(150, "lb"),
  29755. name: "Side",
  29756. image: {
  29757. source: "./media/characters/pyxaron/side.svg",
  29758. extra: 305 / 195,
  29759. bottom: 17 / 322
  29760. }
  29761. },
  29762. },
  29763. [
  29764. {
  29765. name: "Normal",
  29766. height: math.unit(11, "feet"),
  29767. default: true
  29768. },
  29769. ]
  29770. ))
  29771. characterMakers.push(() => makeCharacter(
  29772. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29773. {
  29774. front: {
  29775. height: math.unit(6, "feet"),
  29776. weight: math.unit(150, "lb"),
  29777. name: "Front",
  29778. image: {
  29779. source: "./media/characters/meep/front.svg",
  29780. extra: 88 / 80,
  29781. bottom: 6 / 94
  29782. }
  29783. },
  29784. },
  29785. [
  29786. {
  29787. name: "Fun Sized",
  29788. height: math.unit(2, "inches"),
  29789. default: true
  29790. },
  29791. {
  29792. name: "Friend Sized",
  29793. height: math.unit(8, "inches")
  29794. },
  29795. ]
  29796. ))
  29797. characterMakers.push(() => makeCharacter(
  29798. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29799. {
  29800. front: {
  29801. height: math.unit(15, "feet"),
  29802. weight: math.unit(2500, "lb"),
  29803. name: "Front",
  29804. image: {
  29805. source: "./media/characters/holly-rabbit/front.svg",
  29806. extra: 1433 / 1233,
  29807. bottom: 125 / 1558
  29808. }
  29809. },
  29810. dick: {
  29811. height: math.unit(4.6, "feet"),
  29812. name: "Dick",
  29813. image: {
  29814. source: "./media/characters/holly-rabbit/dick.svg"
  29815. }
  29816. },
  29817. },
  29818. [
  29819. {
  29820. name: "Normal",
  29821. height: math.unit(15, "feet"),
  29822. default: true
  29823. },
  29824. {
  29825. name: "Macro",
  29826. height: math.unit(250, "feet")
  29827. },
  29828. {
  29829. name: "Macro+",
  29830. height: math.unit(2500, "feet")
  29831. },
  29832. ]
  29833. ))
  29834. characterMakers.push(() => makeCharacter(
  29835. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29836. {
  29837. front: {
  29838. height: math.unit(3.02, "meters"),
  29839. weight: math.unit(500, "kg"),
  29840. name: "Front",
  29841. image: {
  29842. source: "./media/characters/drena/front.svg",
  29843. extra: 282 / 243,
  29844. bottom: 8 / 290
  29845. }
  29846. },
  29847. side: {
  29848. height: math.unit(3.02, "meters"),
  29849. weight: math.unit(500, "kg"),
  29850. name: "Side",
  29851. image: {
  29852. source: "./media/characters/drena/side.svg",
  29853. extra: 280 / 245,
  29854. bottom: 10 / 290
  29855. }
  29856. },
  29857. back: {
  29858. height: math.unit(3.02, "meters"),
  29859. weight: math.unit(500, "kg"),
  29860. name: "Back",
  29861. image: {
  29862. source: "./media/characters/drena/back.svg",
  29863. extra: 278 / 243,
  29864. bottom: 2 / 280
  29865. }
  29866. },
  29867. foot: {
  29868. height: math.unit(0.75, "meters"),
  29869. name: "Foot",
  29870. image: {
  29871. source: "./media/characters/drena/foot.svg"
  29872. }
  29873. },
  29874. maw: {
  29875. height: math.unit(0.82, "meters"),
  29876. name: "Maw",
  29877. image: {
  29878. source: "./media/characters/drena/maw.svg"
  29879. }
  29880. },
  29881. eating: {
  29882. height: math.unit(0.75, "meters"),
  29883. name: "Eating",
  29884. image: {
  29885. source: "./media/characters/drena/eating.svg"
  29886. }
  29887. },
  29888. rump: {
  29889. height: math.unit(0.93, "meters"),
  29890. name: "Rump",
  29891. image: {
  29892. source: "./media/characters/drena/rump.svg"
  29893. }
  29894. },
  29895. },
  29896. [
  29897. {
  29898. name: "Normal",
  29899. height: math.unit(3.02, "meters"),
  29900. default: true
  29901. },
  29902. ]
  29903. ))
  29904. characterMakers.push(() => makeCharacter(
  29905. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29906. {
  29907. front: {
  29908. height: math.unit(6 + 4 / 12, "feet"),
  29909. weight: math.unit(250, "lb"),
  29910. name: "Front",
  29911. image: {
  29912. source: "./media/characters/remmyzilla/front.svg",
  29913. extra: 4033 / 3588,
  29914. bottom: 123 / 4156
  29915. }
  29916. },
  29917. back: {
  29918. height: math.unit(6 + 4 / 12, "feet"),
  29919. weight: math.unit(250, "lb"),
  29920. name: "Back",
  29921. image: {
  29922. source: "./media/characters/remmyzilla/back.svg",
  29923. extra: 2687 / 2555,
  29924. bottom: 48 / 2735
  29925. }
  29926. },
  29927. paw: {
  29928. height: math.unit(1.73, "feet"),
  29929. name: "Paw",
  29930. image: {
  29931. source: "./media/characters/remmyzilla/paw.svg"
  29932. },
  29933. extraAttributes: {
  29934. "toeSize": {
  29935. name: "Toe Size",
  29936. power: 2,
  29937. type: "area",
  29938. base: math.unit(0.0035, "m^2")
  29939. },
  29940. "padSize": {
  29941. name: "Pad Size",
  29942. power: 2,
  29943. type: "area",
  29944. base: math.unit(0.015, "m^2")
  29945. },
  29946. "pawsize": {
  29947. name: "Paw Size",
  29948. power: 2,
  29949. type: "area",
  29950. base: math.unit(0.072, "m^2")
  29951. },
  29952. }
  29953. },
  29954. maw: {
  29955. height: math.unit(1.73, "feet"),
  29956. name: "Maw",
  29957. image: {
  29958. source: "./media/characters/remmyzilla/maw.svg"
  29959. }
  29960. },
  29961. },
  29962. [
  29963. {
  29964. name: "Normal",
  29965. height: math.unit(6 + 4 / 12, "feet")
  29966. },
  29967. {
  29968. name: "Minimacro",
  29969. height: math.unit(12 + 8 / 12, "feet")
  29970. },
  29971. {
  29972. name: "Normal",
  29973. height: math.unit(640, "feet"),
  29974. default: true
  29975. },
  29976. {
  29977. name: "Megamacro",
  29978. height: math.unit(6400, "feet")
  29979. },
  29980. {
  29981. name: "Gigamacro",
  29982. height: math.unit(64000, "miles")
  29983. },
  29984. ]
  29985. ))
  29986. characterMakers.push(() => makeCharacter(
  29987. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29988. {
  29989. front: {
  29990. height: math.unit(2.5, "meters"),
  29991. weight: math.unit(300, "lb"),
  29992. name: "Front",
  29993. image: {
  29994. source: "./media/characters/lawrence/front.svg",
  29995. extra: 357 / 335,
  29996. bottom: 30 / 387
  29997. }
  29998. },
  29999. back: {
  30000. height: math.unit(2.5, "meters"),
  30001. weight: math.unit(300, "lb"),
  30002. name: "Back",
  30003. image: {
  30004. source: "./media/characters/lawrence/back.svg",
  30005. extra: 357 / 338,
  30006. bottom: 16 / 373
  30007. }
  30008. },
  30009. head: {
  30010. height: math.unit(0.9, "meter"),
  30011. name: "Head",
  30012. image: {
  30013. source: "./media/characters/lawrence/head.svg"
  30014. }
  30015. },
  30016. maw: {
  30017. height: math.unit(0.7, "meter"),
  30018. name: "Maw",
  30019. image: {
  30020. source: "./media/characters/lawrence/maw.svg"
  30021. }
  30022. },
  30023. footBottom: {
  30024. height: math.unit(0.5, "meter"),
  30025. name: "Foot (Bottom)",
  30026. image: {
  30027. source: "./media/characters/lawrence/foot-bottom.svg"
  30028. }
  30029. },
  30030. footTop: {
  30031. height: math.unit(0.5, "meter"),
  30032. name: "Foot (Top)",
  30033. image: {
  30034. source: "./media/characters/lawrence/foot-top.svg"
  30035. }
  30036. },
  30037. },
  30038. [
  30039. {
  30040. name: "Normal",
  30041. height: math.unit(2.5, "meters"),
  30042. default: true
  30043. },
  30044. {
  30045. name: "Macro",
  30046. height: math.unit(95, "meters")
  30047. },
  30048. {
  30049. name: "Megamacro",
  30050. height: math.unit(150, "km")
  30051. },
  30052. ]
  30053. ))
  30054. characterMakers.push(() => makeCharacter(
  30055. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30056. {
  30057. front: {
  30058. height: math.unit(4.2, "meters"),
  30059. name: "Front",
  30060. image: {
  30061. source: "./media/characters/sydney/front.svg",
  30062. extra: 1323 / 1277,
  30063. bottom: 111 / 1434
  30064. }
  30065. },
  30066. },
  30067. [
  30068. {
  30069. name: "Normal",
  30070. height: math.unit(4.2, "meters"),
  30071. default: true
  30072. },
  30073. ]
  30074. ))
  30075. characterMakers.push(() => makeCharacter(
  30076. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30077. {
  30078. back: {
  30079. height: math.unit(201, "feet"),
  30080. name: "Back",
  30081. image: {
  30082. source: "./media/characters/jessica/back.svg",
  30083. extra: 273 / 259,
  30084. bottom: 7 / 280
  30085. }
  30086. },
  30087. },
  30088. [
  30089. {
  30090. name: "Normal",
  30091. height: math.unit(201, "feet"),
  30092. default: true
  30093. },
  30094. {
  30095. name: "Megamacro",
  30096. height: math.unit(8, "miles")
  30097. },
  30098. ]
  30099. ))
  30100. characterMakers.push(() => makeCharacter(
  30101. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30102. {
  30103. side: {
  30104. height: math.unit(5.6, "m"),
  30105. weight: math.unit(8000, "kg"),
  30106. name: "Side",
  30107. image: {
  30108. source: "./media/characters/victoria/side.svg",
  30109. extra: 1542/1229,
  30110. bottom: 124/1666
  30111. }
  30112. },
  30113. maw: {
  30114. height: math.unit(7.14, "feet"),
  30115. name: "Maw",
  30116. image: {
  30117. source: "./media/characters/victoria/maw.svg"
  30118. }
  30119. },
  30120. },
  30121. [
  30122. {
  30123. name: "Normal",
  30124. height: math.unit(5.6, "m"),
  30125. default: true
  30126. },
  30127. ]
  30128. ))
  30129. characterMakers.push(() => makeCharacter(
  30130. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30131. {
  30132. front: {
  30133. height: math.unit(5 + 6 / 12, "feet"),
  30134. name: "Front",
  30135. image: {
  30136. source: "./media/characters/cat/front.svg",
  30137. extra: 1449/1295,
  30138. bottom: 34/1483
  30139. },
  30140. form: "cat",
  30141. default: true
  30142. },
  30143. back: {
  30144. height: math.unit(5 + 6 / 12, "feet"),
  30145. name: "Back",
  30146. image: {
  30147. source: "./media/characters/cat/back.svg",
  30148. extra: 1466/1301,
  30149. bottom: 19/1485
  30150. },
  30151. form: "cat"
  30152. },
  30153. taur: {
  30154. height: math.unit(7, "feet"),
  30155. name: "Taur",
  30156. image: {
  30157. source: "./media/characters/cat/taur.svg",
  30158. extra: 1389/1233,
  30159. bottom: 83/1472
  30160. },
  30161. form: "taur",
  30162. default: true
  30163. },
  30164. lucarioFront: {
  30165. height: math.unit(4, "feet"),
  30166. name: "Lucario (Front)",
  30167. image: {
  30168. source: "./media/characters/cat/lucario-front.svg",
  30169. extra: 1149/1019,
  30170. bottom: 84/1233
  30171. },
  30172. form: "lucario",
  30173. default: true
  30174. },
  30175. lucarioBack: {
  30176. height: math.unit(4, "feet"),
  30177. name: "Lucario (Back)",
  30178. image: {
  30179. source: "./media/characters/cat/lucario-back.svg",
  30180. extra: 1190/1059,
  30181. bottom: 33/1223
  30182. },
  30183. form: "lucario"
  30184. },
  30185. megaLucario: {
  30186. height: math.unit(4, "feet"),
  30187. name: "Mega Lucario",
  30188. image: {
  30189. source: "./media/characters/cat/mega-lucario.svg",
  30190. extra: 1515 / 1319,
  30191. bottom: 63 / 1578
  30192. },
  30193. form: "lucario"
  30194. },
  30195. nickit: {
  30196. height: math.unit(2, "feet"),
  30197. name: "Nickit",
  30198. image: {
  30199. source: "./media/characters/cat/nickit.svg",
  30200. extra: 1980 / 1585,
  30201. bottom: 102 / 2082
  30202. },
  30203. form: "nickit",
  30204. default: true
  30205. },
  30206. lopunnyFront: {
  30207. height: math.unit(5, "feet"),
  30208. name: "Lopunny (Front)",
  30209. image: {
  30210. source: "./media/characters/cat/lopunny-front.svg",
  30211. extra: 1782 / 1469,
  30212. bottom: 38 / 1820
  30213. },
  30214. form: "lopunny",
  30215. default: true
  30216. },
  30217. lopunnyBack: {
  30218. height: math.unit(5, "feet"),
  30219. name: "Lopunny (Back)",
  30220. image: {
  30221. source: "./media/characters/cat/lopunny-back.svg",
  30222. extra: 1660 / 1490,
  30223. bottom: 25 / 1685
  30224. },
  30225. form: "lopunny"
  30226. },
  30227. },
  30228. [
  30229. {
  30230. name: "Really small",
  30231. height: math.unit(1, "nm")
  30232. },
  30233. {
  30234. name: "Micro",
  30235. height: math.unit(5, "inches")
  30236. },
  30237. {
  30238. name: "Normal",
  30239. height: math.unit(5 + 6 / 12, "feet"),
  30240. default: true
  30241. },
  30242. {
  30243. name: "Macro",
  30244. height: math.unit(50, "feet")
  30245. },
  30246. {
  30247. name: "Macro+",
  30248. height: math.unit(150, "feet")
  30249. },
  30250. {
  30251. name: "Megamacro",
  30252. height: math.unit(100, "miles")
  30253. },
  30254. ]
  30255. ))
  30256. characterMakers.push(() => makeCharacter(
  30257. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30258. {
  30259. front: {
  30260. height: math.unit(63.4, "meters"),
  30261. weight: math.unit(3.28349e+6, "kilograms"),
  30262. name: "Front",
  30263. image: {
  30264. source: "./media/characters/kirina-violet/front.svg",
  30265. extra: 2812 / 2725,
  30266. bottom: 0 / 2812
  30267. }
  30268. },
  30269. back: {
  30270. height: math.unit(63.4, "meters"),
  30271. weight: math.unit(3.28349e+6, "kilograms"),
  30272. name: "Back",
  30273. image: {
  30274. source: "./media/characters/kirina-violet/back.svg",
  30275. extra: 2812 / 2725,
  30276. bottom: 0 / 2812
  30277. }
  30278. },
  30279. mouth: {
  30280. height: math.unit(4.35, "meters"),
  30281. name: "Mouth",
  30282. image: {
  30283. source: "./media/characters/kirina-violet/mouth.svg"
  30284. }
  30285. },
  30286. paw: {
  30287. height: math.unit(5.6, "meters"),
  30288. name: "Paw",
  30289. image: {
  30290. source: "./media/characters/kirina-violet/paw.svg"
  30291. }
  30292. },
  30293. tail: {
  30294. height: math.unit(18, "meters"),
  30295. name: "Tail",
  30296. image: {
  30297. source: "./media/characters/kirina-violet/tail.svg"
  30298. }
  30299. },
  30300. },
  30301. [
  30302. {
  30303. name: "Macro",
  30304. height: math.unit(63.4, "meters"),
  30305. default: true
  30306. },
  30307. ]
  30308. ))
  30309. characterMakers.push(() => makeCharacter(
  30310. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30311. {
  30312. front: {
  30313. height: math.unit(75, "feet"),
  30314. name: "Front",
  30315. image: {
  30316. source: "./media/characters/cat-gigachu/front.svg",
  30317. extra: 1239/1027,
  30318. bottom: 32/1271
  30319. }
  30320. },
  30321. back: {
  30322. height: math.unit(75, "feet"),
  30323. name: "Back",
  30324. image: {
  30325. source: "./media/characters/cat-gigachu/back.svg",
  30326. extra: 1229/1030,
  30327. bottom: 9/1238
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "Dynamax",
  30334. height: math.unit(75, "feet"),
  30335. default: true
  30336. },
  30337. ]
  30338. ))
  30339. characterMakers.push(() => makeCharacter(
  30340. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30341. {
  30342. front: {
  30343. height: math.unit(6, "feet"),
  30344. weight: math.unit(150, "lb"),
  30345. name: "Front",
  30346. image: {
  30347. source: "./media/characters/sfaiyan/front.svg",
  30348. extra: 999 / 978,
  30349. bottom: 5 / 1004
  30350. }
  30351. },
  30352. },
  30353. [
  30354. {
  30355. name: "Normal",
  30356. height: math.unit(1.82, "meters")
  30357. },
  30358. {
  30359. name: "Giant",
  30360. height: math.unit(2.27, "km"),
  30361. default: true
  30362. },
  30363. ]
  30364. ))
  30365. characterMakers.push(() => makeCharacter(
  30366. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30367. {
  30368. front: {
  30369. height: math.unit(179, "cm"),
  30370. weight: math.unit(100, "kg"),
  30371. name: "Front",
  30372. image: {
  30373. source: "./media/characters/raunehkeli/front.svg",
  30374. extra: 1934 / 1926,
  30375. bottom: 0 / 1934
  30376. }
  30377. },
  30378. },
  30379. [
  30380. {
  30381. name: "Normal",
  30382. height: math.unit(179, "cm")
  30383. },
  30384. {
  30385. name: "Maximum",
  30386. height: math.unit(575, "meters"),
  30387. default: true
  30388. },
  30389. ]
  30390. ))
  30391. characterMakers.push(() => makeCharacter(
  30392. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30393. {
  30394. front: {
  30395. height: math.unit(6, "feet"),
  30396. weight: math.unit(150, "lb"),
  30397. name: "Front",
  30398. image: {
  30399. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30400. extra: 2625 / 2518,
  30401. bottom: 60 / 2685
  30402. }
  30403. },
  30404. },
  30405. [
  30406. {
  30407. name: "Normal",
  30408. height: math.unit(6 + 2 / 12, "feet")
  30409. },
  30410. {
  30411. name: "Macro",
  30412. height: math.unit(1180, "feet"),
  30413. default: true
  30414. },
  30415. ]
  30416. ))
  30417. characterMakers.push(() => makeCharacter(
  30418. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30419. {
  30420. front: {
  30421. height: math.unit(5 + 6 / 12, "feet"),
  30422. weight: math.unit(108, "lb"),
  30423. name: "Front",
  30424. image: {
  30425. source: "./media/characters/lilith-zott/front.svg",
  30426. extra: 2510 / 2238,
  30427. bottom: 100 / 2610
  30428. }
  30429. },
  30430. frontDressed: {
  30431. height: math.unit(5 + 6 / 12, "feet"),
  30432. weight: math.unit(108, "lb"),
  30433. name: "Front (Dressed)",
  30434. image: {
  30435. source: "./media/characters/lilith-zott/front-dressed.svg",
  30436. extra: 2510 / 2238,
  30437. bottom: 100 / 2610
  30438. }
  30439. },
  30440. },
  30441. [
  30442. {
  30443. name: "Normal",
  30444. height: math.unit(5 + 6 / 12, "feet")
  30445. },
  30446. {
  30447. name: "Macro",
  30448. height: math.unit(1030, "feet"),
  30449. default: true
  30450. },
  30451. ]
  30452. ))
  30453. characterMakers.push(() => makeCharacter(
  30454. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30455. {
  30456. front: {
  30457. height: math.unit(6, "feet"),
  30458. weight: math.unit(150, "lb"),
  30459. name: "Front",
  30460. image: {
  30461. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30462. extra: 2567 / 2435,
  30463. bottom: 39 / 2606
  30464. }
  30465. },
  30466. frontSuper: {
  30467. height: math.unit(6, "feet"),
  30468. name: "Front (Super)",
  30469. image: {
  30470. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30471. extra: 2567 / 2435,
  30472. bottom: 39 / 2606
  30473. }
  30474. },
  30475. },
  30476. [
  30477. {
  30478. name: "Normal",
  30479. height: math.unit(5 + 10 / 12, "feet")
  30480. },
  30481. {
  30482. name: "Macro",
  30483. height: math.unit(1100, "feet"),
  30484. default: true
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30490. {
  30491. front: {
  30492. height: math.unit(100, "miles"),
  30493. name: "Front",
  30494. image: {
  30495. source: "./media/characters/sona/front.svg",
  30496. extra: 2433 / 2201,
  30497. bottom: 53 / 2486
  30498. }
  30499. },
  30500. foot: {
  30501. height: math.unit(16.1, "miles"),
  30502. name: "Foot",
  30503. image: {
  30504. source: "./media/characters/sona/foot.svg"
  30505. }
  30506. },
  30507. },
  30508. [
  30509. {
  30510. name: "Macro",
  30511. height: math.unit(100, "miles"),
  30512. default: true
  30513. },
  30514. ]
  30515. ))
  30516. characterMakers.push(() => makeCharacter(
  30517. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30518. {
  30519. front: {
  30520. height: math.unit(6, "feet"),
  30521. weight: math.unit(150, "lb"),
  30522. name: "Front",
  30523. image: {
  30524. source: "./media/characters/bailey/front.svg",
  30525. extra: 1778 / 1724,
  30526. bottom: 30 / 1808
  30527. }
  30528. },
  30529. },
  30530. [
  30531. {
  30532. name: "Micro",
  30533. height: math.unit(4, "inches")
  30534. },
  30535. {
  30536. name: "Normal",
  30537. height: math.unit(5 + 5 / 12, "feet"),
  30538. default: true
  30539. },
  30540. {
  30541. name: "Macro",
  30542. height: math.unit(250, "feet")
  30543. },
  30544. {
  30545. name: "Megamacro",
  30546. height: math.unit(100, "miles")
  30547. },
  30548. ]
  30549. ))
  30550. characterMakers.push(() => makeCharacter(
  30551. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30552. {
  30553. front: {
  30554. height: math.unit(5 + 2 / 12, "feet"),
  30555. weight: math.unit(120, "lb"),
  30556. name: "Front",
  30557. image: {
  30558. source: "./media/characters/snaps/front.svg",
  30559. extra: 2370 / 2177,
  30560. bottom: 48 / 2418
  30561. }
  30562. },
  30563. back: {
  30564. height: math.unit(5 + 2 / 12, "feet"),
  30565. weight: math.unit(120, "lb"),
  30566. name: "Back",
  30567. image: {
  30568. source: "./media/characters/snaps/back.svg",
  30569. extra: 2408 / 2258,
  30570. bottom: 15 / 2423
  30571. }
  30572. },
  30573. },
  30574. [
  30575. {
  30576. name: "Micro",
  30577. height: math.unit(9, "inches")
  30578. },
  30579. {
  30580. name: "Normal",
  30581. height: math.unit(5 + 2 / 12, "feet"),
  30582. default: true
  30583. },
  30584. {
  30585. name: "Mini Macro",
  30586. height: math.unit(10, "feet")
  30587. },
  30588. ]
  30589. ))
  30590. characterMakers.push(() => makeCharacter(
  30591. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30592. {
  30593. front: {
  30594. height: math.unit(1.8, "meters"),
  30595. weight: math.unit(85, "kg"),
  30596. name: "Front",
  30597. image: {
  30598. source: "./media/characters/azteck/front.svg",
  30599. extra: 2815 / 2625,
  30600. bottom: 89 / 2904
  30601. }
  30602. },
  30603. back: {
  30604. height: math.unit(1.8, "meters"),
  30605. weight: math.unit(85, "kg"),
  30606. name: "Back",
  30607. image: {
  30608. source: "./media/characters/azteck/back.svg",
  30609. extra: 2856 / 2648,
  30610. bottom: 85 / 2941
  30611. }
  30612. },
  30613. frontDressed: {
  30614. height: math.unit(1.8, "meters"),
  30615. weight: math.unit(85, "kg"),
  30616. name: "Front (Dressed)",
  30617. image: {
  30618. source: "./media/characters/azteck/front-dressed.svg",
  30619. extra: 2147 / 2003,
  30620. bottom: 68 / 2215
  30621. }
  30622. },
  30623. head: {
  30624. height: math.unit(0.47, "meters"),
  30625. weight: math.unit(85, "kg"),
  30626. name: "Head",
  30627. image: {
  30628. source: "./media/characters/azteck/head.svg"
  30629. }
  30630. },
  30631. },
  30632. [
  30633. {
  30634. name: "Bite sized",
  30635. height: math.unit(16, "cm")
  30636. },
  30637. {
  30638. name: "Normal",
  30639. height: math.unit(1.8, "meters"),
  30640. default: true
  30641. },
  30642. ]
  30643. ))
  30644. characterMakers.push(() => makeCharacter(
  30645. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30646. {
  30647. front: {
  30648. height: math.unit(6, "feet"),
  30649. weight: math.unit(150, "lb"),
  30650. name: "Front",
  30651. image: {
  30652. source: "./media/characters/pidge/front.svg",
  30653. extra: 1936/1820,
  30654. bottom: 0/1936
  30655. }
  30656. },
  30657. back: {
  30658. height: math.unit(6, "feet"),
  30659. weight: math.unit(150, "lb"),
  30660. name: "Back",
  30661. image: {
  30662. source: "./media/characters/pidge/back.svg",
  30663. extra: 1938/1843,
  30664. bottom: 0/1938
  30665. }
  30666. },
  30667. casual: {
  30668. height: math.unit(6, "feet"),
  30669. weight: math.unit(150, "lb"),
  30670. name: "Casual",
  30671. image: {
  30672. source: "./media/characters/pidge/casual.svg",
  30673. extra: 1936/1820,
  30674. bottom: 0/1936
  30675. }
  30676. },
  30677. tech: {
  30678. height: math.unit(6, "feet"),
  30679. weight: math.unit(150, "lb"),
  30680. name: "Tech",
  30681. image: {
  30682. source: "./media/characters/pidge/tech.svg",
  30683. extra: 1802/1682,
  30684. bottom: 0/1802
  30685. }
  30686. },
  30687. head: {
  30688. height: math.unit(1.61, "feet"),
  30689. name: "Head",
  30690. image: {
  30691. source: "./media/characters/pidge/head.svg"
  30692. }
  30693. },
  30694. collar: {
  30695. height: math.unit(0.82, "feet"),
  30696. name: "Collar",
  30697. image: {
  30698. source: "./media/characters/pidge/collar.svg"
  30699. }
  30700. },
  30701. },
  30702. [
  30703. {
  30704. name: "Macro",
  30705. height: math.unit(2, "mile"),
  30706. default: true
  30707. },
  30708. {
  30709. name: "PUPPY",
  30710. height: math.unit(20, "miles")
  30711. },
  30712. ]
  30713. ))
  30714. characterMakers.push(() => makeCharacter(
  30715. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30716. {
  30717. front: {
  30718. height: math.unit(6, "feet"),
  30719. weight: math.unit(150, "lb"),
  30720. name: "Front",
  30721. image: {
  30722. source: "./media/characters/en/front.svg",
  30723. extra: 1697 / 1563,
  30724. bottom: 103 / 1800
  30725. }
  30726. },
  30727. back: {
  30728. height: math.unit(6, "feet"),
  30729. weight: math.unit(150, "lb"),
  30730. name: "Back",
  30731. image: {
  30732. source: "./media/characters/en/back.svg",
  30733. extra: 1700 / 1570,
  30734. bottom: 51 / 1751
  30735. }
  30736. },
  30737. frontDressed: {
  30738. height: math.unit(6, "feet"),
  30739. weight: math.unit(150, "lb"),
  30740. name: "Front (Dressed)",
  30741. image: {
  30742. source: "./media/characters/en/front-dressed.svg",
  30743. extra: 1697 / 1563,
  30744. bottom: 103 / 1800
  30745. }
  30746. },
  30747. backDressed: {
  30748. height: math.unit(6, "feet"),
  30749. weight: math.unit(150, "lb"),
  30750. name: "Back (Dressed)",
  30751. image: {
  30752. source: "./media/characters/en/back-dressed.svg",
  30753. extra: 1700 / 1570,
  30754. bottom: 51 / 1751
  30755. }
  30756. },
  30757. },
  30758. [
  30759. {
  30760. name: "Macro",
  30761. height: math.unit(210, "feet"),
  30762. default: true
  30763. },
  30764. ]
  30765. ))
  30766. characterMakers.push(() => makeCharacter(
  30767. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30768. {
  30769. front: {
  30770. height: math.unit(6, "feet"),
  30771. weight: math.unit(150, "lb"),
  30772. name: "Front",
  30773. image: {
  30774. source: "./media/characters/haze-orris/front.svg",
  30775. extra: 3975 / 3525,
  30776. bottom: 137 / 4112
  30777. }
  30778. },
  30779. },
  30780. [
  30781. {
  30782. name: "Micro",
  30783. height: math.unit(150, "mm"),
  30784. default: true
  30785. },
  30786. ]
  30787. ))
  30788. characterMakers.push(() => makeCharacter(
  30789. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30790. {
  30791. front: {
  30792. height: math.unit(6, "feet"),
  30793. weight: math.unit(150, "lb"),
  30794. name: "Front",
  30795. image: {
  30796. source: "./media/characters/casselene-yaro/front.svg",
  30797. extra: 4721 / 4541,
  30798. bottom: 82 / 4803
  30799. }
  30800. },
  30801. back: {
  30802. height: math.unit(6, "feet"),
  30803. weight: math.unit(150, "lb"),
  30804. name: "Back",
  30805. image: {
  30806. source: "./media/characters/casselene-yaro/back.svg",
  30807. extra: 4569 / 4377,
  30808. bottom: 69 / 4638
  30809. }
  30810. },
  30811. dressed: {
  30812. height: math.unit(6, "feet"),
  30813. weight: math.unit(150, "lb"),
  30814. name: "Dressed",
  30815. image: {
  30816. source: "./media/characters/casselene-yaro/dressed.svg",
  30817. extra: 4721 / 4541,
  30818. bottom: 82 / 4803
  30819. }
  30820. },
  30821. maw: {
  30822. height: math.unit(1, "feet"),
  30823. name: "Maw",
  30824. image: {
  30825. source: "./media/characters/casselene-yaro/maw.svg"
  30826. }
  30827. },
  30828. },
  30829. [
  30830. {
  30831. name: "Macro",
  30832. height: math.unit(190, "feet"),
  30833. default: true
  30834. },
  30835. ]
  30836. ))
  30837. characterMakers.push(() => makeCharacter(
  30838. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30839. {
  30840. front: {
  30841. height: math.unit(10, "feet"),
  30842. weight: math.unit(15015, "lb"),
  30843. name: "Front",
  30844. image: {
  30845. source: "./media/characters/platine/front.svg",
  30846. extra: 1741/1650,
  30847. bottom: 84/1825
  30848. }
  30849. },
  30850. side: {
  30851. height: math.unit(10, "feet"),
  30852. weight: math.unit(15015, "lb"),
  30853. name: "Side",
  30854. image: {
  30855. source: "./media/characters/platine/side.svg",
  30856. extra: 1790/1705,
  30857. bottom: 29/1819
  30858. }
  30859. },
  30860. },
  30861. [
  30862. {
  30863. name: "Normal",
  30864. height: math.unit(10, "feet"),
  30865. default: true
  30866. },
  30867. {
  30868. name: "Macro",
  30869. height: math.unit(100, "feet")
  30870. },
  30871. {
  30872. name: "Megamacro",
  30873. height: math.unit(1000, "feet")
  30874. },
  30875. ]
  30876. ))
  30877. characterMakers.push(() => makeCharacter(
  30878. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30879. {
  30880. front: {
  30881. height: math.unit(15 + 5 / 12, "feet"),
  30882. weight: math.unit(4600, "lb"),
  30883. name: "Front",
  30884. image: {
  30885. source: "./media/characters/neapolitan-ananassa/front.svg",
  30886. extra: 2903 / 2736,
  30887. bottom: 0 / 2903
  30888. }
  30889. },
  30890. side: {
  30891. height: math.unit(15 + 5 / 12, "feet"),
  30892. weight: math.unit(4600, "lb"),
  30893. name: "Side",
  30894. image: {
  30895. source: "./media/characters/neapolitan-ananassa/side.svg",
  30896. extra: 2925 / 2719,
  30897. bottom: 0 / 2925
  30898. }
  30899. },
  30900. back: {
  30901. height: math.unit(15 + 5 / 12, "feet"),
  30902. weight: math.unit(4600, "lb"),
  30903. name: "Back",
  30904. image: {
  30905. source: "./media/characters/neapolitan-ananassa/back.svg",
  30906. extra: 2903 / 2736,
  30907. bottom: 0 / 2903
  30908. }
  30909. },
  30910. },
  30911. [
  30912. {
  30913. name: "Normal",
  30914. height: math.unit(15 + 5 / 12, "feet"),
  30915. default: true
  30916. },
  30917. {
  30918. name: "Post-Millenium",
  30919. height: math.unit(35 + 5 / 12, "feet")
  30920. },
  30921. {
  30922. name: "Post-Era",
  30923. height: math.unit(450 + 5 / 12, "feet")
  30924. },
  30925. ]
  30926. ))
  30927. characterMakers.push(() => makeCharacter(
  30928. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30929. {
  30930. front: {
  30931. height: math.unit(300, "meters"),
  30932. weight: math.unit(125000, "tonnes"),
  30933. name: "Front",
  30934. image: {
  30935. source: "./media/characters/pazuzu/front.svg",
  30936. extra: 877 / 794,
  30937. bottom: 47 / 924
  30938. }
  30939. },
  30940. },
  30941. [
  30942. {
  30943. name: "Macro",
  30944. height: math.unit(300, "meters"),
  30945. default: true
  30946. },
  30947. ]
  30948. ))
  30949. characterMakers.push(() => makeCharacter(
  30950. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30951. {
  30952. side: {
  30953. height: math.unit(10 + 7 / 12, "feet"),
  30954. weight: math.unit(2.5, "tons"),
  30955. name: "Side",
  30956. image: {
  30957. source: "./media/characters/aasha/side.svg",
  30958. extra: 1345 / 1245,
  30959. bottom: 111 / 1456
  30960. }
  30961. },
  30962. back: {
  30963. height: math.unit(10 + 7 / 12, "feet"),
  30964. weight: math.unit(2.5, "tons"),
  30965. name: "Back",
  30966. image: {
  30967. source: "./media/characters/aasha/back.svg",
  30968. extra: 1133 / 1057,
  30969. bottom: 257 / 1390
  30970. }
  30971. },
  30972. },
  30973. [
  30974. {
  30975. name: "Normal",
  30976. height: math.unit(10 + 7 / 12, "feet"),
  30977. default: true
  30978. },
  30979. ]
  30980. ))
  30981. characterMakers.push(() => makeCharacter(
  30982. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30983. {
  30984. front: {
  30985. height: math.unit(6 + 3 / 12, "feet"),
  30986. name: "Front",
  30987. image: {
  30988. source: "./media/characters/nevan/front.svg",
  30989. extra: 704 / 704,
  30990. bottom: 28 / 732
  30991. }
  30992. },
  30993. back: {
  30994. height: math.unit(6 + 3 / 12, "feet"),
  30995. name: "Back",
  30996. image: {
  30997. source: "./media/characters/nevan/back.svg",
  30998. extra: 714 / 714,
  30999. bottom: 21 / 735
  31000. }
  31001. },
  31002. frontFlaccid: {
  31003. height: math.unit(6 + 3 / 12, "feet"),
  31004. name: "Front (Flaccid)",
  31005. image: {
  31006. source: "./media/characters/nevan/front-flaccid.svg",
  31007. extra: 704 / 704,
  31008. bottom: 28 / 732
  31009. }
  31010. },
  31011. frontErect: {
  31012. height: math.unit(6 + 3 / 12, "feet"),
  31013. name: "Front (Erect)",
  31014. image: {
  31015. source: "./media/characters/nevan/front-erect.svg",
  31016. extra: 704 / 704,
  31017. bottom: 28 / 732
  31018. }
  31019. },
  31020. backFlaccid: {
  31021. height: math.unit(6 + 3 / 12, "feet"),
  31022. name: "Back (Flaccid)",
  31023. image: {
  31024. source: "./media/characters/nevan/back-flaccid.svg",
  31025. extra: 714 / 714,
  31026. bottom: 21 / 735
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(6 + 3 / 12, "feet"),
  31034. default: true
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31040. {
  31041. front: {
  31042. height: math.unit(4, "feet"),
  31043. name: "Front",
  31044. image: {
  31045. source: "./media/characters/arhan/front.svg",
  31046. extra: 3368 / 3133,
  31047. bottom: 0 / 3368
  31048. }
  31049. },
  31050. side: {
  31051. height: math.unit(4, "feet"),
  31052. name: "Side",
  31053. image: {
  31054. source: "./media/characters/arhan/side.svg",
  31055. extra: 3347 / 3105,
  31056. bottom: 0 / 3347
  31057. }
  31058. },
  31059. tongue: {
  31060. height: math.unit(1.42, "feet"),
  31061. name: "Tongue",
  31062. image: {
  31063. source: "./media/characters/arhan/tongue.svg"
  31064. }
  31065. },
  31066. head: {
  31067. height: math.unit(0.85, "feet"),
  31068. name: "Head",
  31069. image: {
  31070. source: "./media/characters/arhan/head.svg"
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Normal",
  31077. height: math.unit(4, "feet"),
  31078. default: true
  31079. },
  31080. ]
  31081. ))
  31082. characterMakers.push(() => makeCharacter(
  31083. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31084. {
  31085. front: {
  31086. height: math.unit(5 + 7.5 / 12, "feet"),
  31087. weight: math.unit(120, "lb"),
  31088. name: "Front",
  31089. image: {
  31090. source: "./media/characters/digi-duncan/front.svg",
  31091. extra: 330 / 326,
  31092. bottom: 16 / 346
  31093. }
  31094. },
  31095. side: {
  31096. height: math.unit(5 + 7.5 / 12, "feet"),
  31097. weight: math.unit(120, "lb"),
  31098. name: "Side",
  31099. image: {
  31100. source: "./media/characters/digi-duncan/side.svg",
  31101. extra: 341 / 337,
  31102. bottom: 1 / 342
  31103. }
  31104. },
  31105. back: {
  31106. height: math.unit(5 + 7.5 / 12, "feet"),
  31107. weight: math.unit(120, "lb"),
  31108. name: "Back",
  31109. image: {
  31110. source: "./media/characters/digi-duncan/back.svg",
  31111. extra: 330 / 326,
  31112. bottom: 12 / 342
  31113. }
  31114. },
  31115. },
  31116. [
  31117. {
  31118. name: "Speck",
  31119. height: math.unit(0.25, "mm")
  31120. },
  31121. {
  31122. name: "Micro",
  31123. height: math.unit(5, "mm")
  31124. },
  31125. {
  31126. name: "Tiny",
  31127. height: math.unit(0.5, "inches"),
  31128. default: true
  31129. },
  31130. {
  31131. name: "Human",
  31132. height: math.unit(5 + 7.5 / 12, "feet")
  31133. },
  31134. {
  31135. name: "Minigiant",
  31136. height: math.unit(8 + 5.25, "feet")
  31137. },
  31138. {
  31139. name: "Giant",
  31140. height: math.unit(2000, "feet")
  31141. },
  31142. {
  31143. name: "Mega",
  31144. height: math.unit(371.1, "miles")
  31145. },
  31146. ]
  31147. ))
  31148. characterMakers.push(() => makeCharacter(
  31149. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31150. {
  31151. front: {
  31152. height: math.unit(2, "meters"),
  31153. weight: math.unit(350, "kg"),
  31154. name: "Front",
  31155. image: {
  31156. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31157. extra: 898 / 838,
  31158. bottom: 9 / 907
  31159. }
  31160. },
  31161. },
  31162. [
  31163. {
  31164. name: "Micro",
  31165. height: math.unit(8, "meters")
  31166. },
  31167. {
  31168. name: "Normal",
  31169. height: math.unit(50, "meters"),
  31170. default: true
  31171. },
  31172. {
  31173. name: "Macro",
  31174. height: math.unit(500, "meters")
  31175. },
  31176. ]
  31177. ))
  31178. characterMakers.push(() => makeCharacter(
  31179. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31180. {
  31181. front: {
  31182. height: math.unit(6 + 6 / 12, "feet"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/khardesh/front.svg",
  31186. extra: 1788/1596,
  31187. bottom: 66/1854
  31188. }
  31189. },
  31190. back: {
  31191. height: math.unit(6 + 6 / 12, "feet"),
  31192. name: "Back",
  31193. image: {
  31194. source: "./media/characters/khardesh/back.svg",
  31195. extra: 1781/1584,
  31196. bottom: 68/1849
  31197. }
  31198. },
  31199. },
  31200. [
  31201. {
  31202. name: "Normal",
  31203. height: math.unit(6 + 6 / 12, "feet"),
  31204. default: true
  31205. },
  31206. {
  31207. name: "Normal+",
  31208. height: math.unit(4, "meters")
  31209. },
  31210. {
  31211. name: "Macro",
  31212. height: math.unit(50, "meters")
  31213. },
  31214. {
  31215. name: "Macro+",
  31216. height: math.unit(100, "meters")
  31217. },
  31218. {
  31219. name: "Megamacro",
  31220. height: math.unit(20, "km")
  31221. },
  31222. ]
  31223. ))
  31224. characterMakers.push(() => makeCharacter(
  31225. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31226. {
  31227. front: {
  31228. height: math.unit(6, "feet"),
  31229. weight: math.unit(150, "lb"),
  31230. name: "Front",
  31231. image: {
  31232. source: "./media/characters/kosho/front.svg",
  31233. extra: 1847 / 1847,
  31234. bottom: 86 / 1933
  31235. }
  31236. },
  31237. },
  31238. [
  31239. {
  31240. name: "Second-stage micro",
  31241. height: math.unit(0.5, "inches")
  31242. },
  31243. {
  31244. name: "First-stage micro",
  31245. height: math.unit(6, "inches")
  31246. },
  31247. {
  31248. name: "Normal",
  31249. height: math.unit(6, "feet"),
  31250. default: true
  31251. },
  31252. {
  31253. name: "First-stage macro",
  31254. height: math.unit(72, "feet")
  31255. },
  31256. {
  31257. name: "Second-stage macro",
  31258. height: math.unit(864, "feet")
  31259. },
  31260. ]
  31261. ))
  31262. characterMakers.push(() => makeCharacter(
  31263. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31264. {
  31265. normal: {
  31266. height: math.unit(4 + 6 / 12, "feet"),
  31267. name: "Normal",
  31268. image: {
  31269. source: "./media/characters/hydra/normal.svg",
  31270. extra: 2833 / 2634,
  31271. bottom: 68 / 2901
  31272. }
  31273. },
  31274. smol: {
  31275. height: math.unit(0.705, "inches"),
  31276. name: "Smol",
  31277. image: {
  31278. source: "./media/characters/hydra/smol.svg",
  31279. extra: 2715 / 2540,
  31280. bottom: 0 / 2715
  31281. }
  31282. },
  31283. },
  31284. [
  31285. {
  31286. name: "Normal",
  31287. height: math.unit(4 + 6 / 12, "feet"),
  31288. default: true
  31289. }
  31290. ]
  31291. ))
  31292. characterMakers.push(() => makeCharacter(
  31293. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31294. {
  31295. front: {
  31296. height: math.unit(0.6, "cm"),
  31297. name: "Front",
  31298. image: {
  31299. source: "./media/characters/daz/front.svg",
  31300. extra: 1682 / 1164,
  31301. bottom: 42 / 1724
  31302. }
  31303. },
  31304. },
  31305. [
  31306. {
  31307. name: "Normal",
  31308. height: math.unit(0.6, "cm"),
  31309. default: true
  31310. },
  31311. ]
  31312. ))
  31313. characterMakers.push(() => makeCharacter(
  31314. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31315. {
  31316. front: {
  31317. height: math.unit(6, "feet"),
  31318. weight: math.unit(235, "lb"),
  31319. name: "Front",
  31320. image: {
  31321. source: "./media/characters/theo-pangolin/front.svg",
  31322. extra: 1996 / 1969,
  31323. bottom: 115 / 2111
  31324. }
  31325. },
  31326. back: {
  31327. height: math.unit(6, "feet"),
  31328. weight: math.unit(235, "lb"),
  31329. name: "Back",
  31330. image: {
  31331. source: "./media/characters/theo-pangolin/back.svg",
  31332. extra: 1979 / 1979,
  31333. bottom: 40 / 2019
  31334. }
  31335. },
  31336. feral: {
  31337. height: math.unit(2, "feet"),
  31338. weight: math.unit(30, "lb"),
  31339. name: "Feral",
  31340. image: {
  31341. source: "./media/characters/theo-pangolin/feral.svg",
  31342. extra: 803 / 791,
  31343. bottom: 181 / 984
  31344. }
  31345. },
  31346. footFive: {
  31347. height: math.unit(1.43, "feet"),
  31348. name: "Foot (Five Toes)",
  31349. image: {
  31350. source: "./media/characters/theo-pangolin/foot-five.svg"
  31351. }
  31352. },
  31353. footFour: {
  31354. height: math.unit(1.43, "feet"),
  31355. name: "Foot (Four Toes)",
  31356. image: {
  31357. source: "./media/characters/theo-pangolin/foot-four.svg"
  31358. }
  31359. },
  31360. handFour: {
  31361. height: math.unit(0.81, "feet"),
  31362. name: "Hand (Four Fingers)",
  31363. image: {
  31364. source: "./media/characters/theo-pangolin/hand-four.svg"
  31365. }
  31366. },
  31367. handThree: {
  31368. height: math.unit(0.81, "feet"),
  31369. name: "Hand (Three Fingers)",
  31370. image: {
  31371. source: "./media/characters/theo-pangolin/hand-three.svg"
  31372. }
  31373. },
  31374. headFront: {
  31375. height: math.unit(1.37, "feet"),
  31376. name: "Head (Front)",
  31377. image: {
  31378. source: "./media/characters/theo-pangolin/head-front.svg"
  31379. }
  31380. },
  31381. headSide: {
  31382. height: math.unit(1.43, "feet"),
  31383. name: "Head (Side)",
  31384. image: {
  31385. source: "./media/characters/theo-pangolin/head-side.svg"
  31386. }
  31387. },
  31388. tongue: {
  31389. height: math.unit(2.29, "feet"),
  31390. name: "Tongue",
  31391. image: {
  31392. source: "./media/characters/theo-pangolin/tongue.svg"
  31393. }
  31394. },
  31395. },
  31396. [
  31397. {
  31398. name: "Normal",
  31399. height: math.unit(6, "feet")
  31400. },
  31401. {
  31402. name: "Macro",
  31403. height: math.unit(400, "feet"),
  31404. default: true
  31405. },
  31406. ]
  31407. ))
  31408. characterMakers.push(() => makeCharacter(
  31409. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31410. {
  31411. front: {
  31412. height: math.unit(6, "inches"),
  31413. weight: math.unit(0.036, "kg"),
  31414. name: "Front",
  31415. image: {
  31416. source: "./media/characters/renée/front.svg",
  31417. extra: 900 / 886,
  31418. bottom: 8 / 908
  31419. }
  31420. },
  31421. },
  31422. [
  31423. {
  31424. name: "Nano",
  31425. height: math.unit(1, "nm")
  31426. },
  31427. {
  31428. name: "Micro",
  31429. height: math.unit(1, "mm")
  31430. },
  31431. {
  31432. name: "Normal",
  31433. height: math.unit(6, "inches")
  31434. },
  31435. {
  31436. name: "Macro",
  31437. height: math.unit(2000, "feet"),
  31438. default: true
  31439. },
  31440. {
  31441. name: "Megamacro",
  31442. height: math.unit(2, "km")
  31443. },
  31444. {
  31445. name: "Gigamacro",
  31446. height: math.unit(2000, "km")
  31447. },
  31448. {
  31449. name: "Teramacro",
  31450. height: math.unit(250000, "km")
  31451. },
  31452. ]
  31453. ))
  31454. characterMakers.push(() => makeCharacter(
  31455. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31456. {
  31457. front: {
  31458. height: math.unit(4, "meters"),
  31459. weight: math.unit(150, "kg"),
  31460. name: "Front",
  31461. image: {
  31462. source: "./media/characters/caledvwlch/front.svg",
  31463. extra: 1760 / 1551,
  31464. bottom: 28 / 1788
  31465. }
  31466. },
  31467. side: {
  31468. height: math.unit(4, "meters"),
  31469. weight: math.unit(150, "kg"),
  31470. name: "Side",
  31471. image: {
  31472. source: "./media/characters/caledvwlch/side.svg",
  31473. extra: 1605 / 1536,
  31474. bottom: 31 / 1636
  31475. }
  31476. },
  31477. back: {
  31478. height: math.unit(4, "meters"),
  31479. weight: math.unit(150, "kg"),
  31480. name: "Back",
  31481. image: {
  31482. source: "./media/characters/caledvwlch/back.svg",
  31483. extra: 1635 / 1565,
  31484. bottom: 27 / 1662
  31485. }
  31486. },
  31487. },
  31488. [
  31489. {
  31490. name: "\"Incognito\"",
  31491. height: math.unit(4, "meters")
  31492. },
  31493. {
  31494. name: "Small rampage",
  31495. height: math.unit(600, "meters")
  31496. },
  31497. {
  31498. name: "Mega",
  31499. height: math.unit(30, "km")
  31500. },
  31501. {
  31502. name: "Home-size",
  31503. height: math.unit(50, "km"),
  31504. default: true
  31505. },
  31506. {
  31507. name: "Giga",
  31508. height: math.unit(300, "km")
  31509. },
  31510. {
  31511. name: "Lounging",
  31512. height: math.unit(11000, "km")
  31513. },
  31514. {
  31515. name: "Planet snacking",
  31516. height: math.unit(2000000, "km")
  31517. },
  31518. ]
  31519. ))
  31520. characterMakers.push(() => makeCharacter(
  31521. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31522. {
  31523. front: {
  31524. height: math.unit(6, "feet"),
  31525. weight: math.unit(215, "lb"),
  31526. name: "Front",
  31527. image: {
  31528. source: "./media/characters/sapphire-svell/front.svg",
  31529. extra: 495 / 455,
  31530. bottom: 20 / 515
  31531. }
  31532. },
  31533. back: {
  31534. height: math.unit(6, "feet"),
  31535. weight: math.unit(216, "lb"),
  31536. name: "Back",
  31537. image: {
  31538. source: "./media/characters/sapphire-svell/back.svg",
  31539. extra: 497 / 477,
  31540. bottom: 7 / 504
  31541. }
  31542. },
  31543. maw: {
  31544. height: math.unit(1.57, "feet"),
  31545. name: "Maw",
  31546. image: {
  31547. source: "./media/characters/sapphire-svell/maw.svg"
  31548. }
  31549. },
  31550. foot: {
  31551. height: math.unit(1.07, "feet"),
  31552. name: "Foot",
  31553. image: {
  31554. source: "./media/characters/sapphire-svell/foot.svg"
  31555. }
  31556. },
  31557. toering: {
  31558. height: math.unit(1.7, "inch"),
  31559. name: "Toering",
  31560. image: {
  31561. source: "./media/characters/sapphire-svell/toering.svg"
  31562. }
  31563. },
  31564. },
  31565. [
  31566. {
  31567. name: "Normal",
  31568. height: math.unit(300, "feet"),
  31569. default: true
  31570. },
  31571. {
  31572. name: "Augmented",
  31573. height: math.unit(1250, "feet")
  31574. },
  31575. {
  31576. name: "Unleashed",
  31577. height: math.unit(3000, "feet")
  31578. },
  31579. ]
  31580. ))
  31581. characterMakers.push(() => makeCharacter(
  31582. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31583. {
  31584. side: {
  31585. height: math.unit(2 + 3 / 12, "feet"),
  31586. weight: math.unit(110, "lb"),
  31587. name: "Side",
  31588. image: {
  31589. source: "./media/characters/glitch-flux/side.svg",
  31590. extra: 997 / 805,
  31591. bottom: 20 / 1017
  31592. }
  31593. },
  31594. },
  31595. [
  31596. {
  31597. name: "Normal",
  31598. height: math.unit(2 + 3 / 12, "feet"),
  31599. default: true
  31600. },
  31601. ]
  31602. ))
  31603. characterMakers.push(() => makeCharacter(
  31604. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31605. {
  31606. front: {
  31607. height: math.unit(4, "meters"),
  31608. name: "Front",
  31609. image: {
  31610. source: "./media/characters/mid/front.svg",
  31611. extra: 507 / 476,
  31612. bottom: 17 / 524
  31613. }
  31614. },
  31615. back: {
  31616. height: math.unit(4, "meters"),
  31617. name: "Back",
  31618. image: {
  31619. source: "./media/characters/mid/back.svg",
  31620. extra: 519 / 487,
  31621. bottom: 7 / 526
  31622. }
  31623. },
  31624. stuck: {
  31625. height: math.unit(2.2, "meters"),
  31626. name: "Stuck",
  31627. image: {
  31628. source: "./media/characters/mid/stuck.svg",
  31629. extra: 1951 / 1869,
  31630. bottom: 88 / 2039
  31631. }
  31632. }
  31633. },
  31634. [
  31635. {
  31636. name: "Normal",
  31637. height: math.unit(4, "meters"),
  31638. default: true
  31639. },
  31640. {
  31641. name: "Big",
  31642. height: math.unit(10, "meters")
  31643. },
  31644. {
  31645. name: "Macro",
  31646. height: math.unit(800, "meters")
  31647. },
  31648. {
  31649. name: "Megamacro",
  31650. height: math.unit(100, "km")
  31651. },
  31652. {
  31653. name: "Overgrown",
  31654. height: math.unit(1, "parsec")
  31655. },
  31656. ]
  31657. ))
  31658. characterMakers.push(() => makeCharacter(
  31659. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31660. {
  31661. front: {
  31662. height: math.unit(2.5, "meters"),
  31663. weight: math.unit(225, "kg"),
  31664. name: "Front",
  31665. image: {
  31666. source: "./media/characters/iris/front.svg",
  31667. extra: 3348 / 3251,
  31668. bottom: 205 / 3553
  31669. }
  31670. },
  31671. maw: {
  31672. height: math.unit(0.56, "meter"),
  31673. name: "Maw",
  31674. image: {
  31675. source: "./media/characters/iris/maw.svg"
  31676. }
  31677. },
  31678. },
  31679. [
  31680. {
  31681. name: "Mewter cat",
  31682. height: math.unit(1.2, "meters")
  31683. },
  31684. {
  31685. name: "Normal",
  31686. height: math.unit(2.5, "meters"),
  31687. default: true
  31688. },
  31689. {
  31690. name: "Minimacro",
  31691. height: math.unit(18, "feet")
  31692. },
  31693. {
  31694. name: "Macro",
  31695. height: math.unit(140, "feet")
  31696. },
  31697. {
  31698. name: "Macro+",
  31699. height: math.unit(180, "meters")
  31700. },
  31701. {
  31702. name: "Megamacro",
  31703. height: math.unit(2746, "meters")
  31704. },
  31705. ]
  31706. ))
  31707. characterMakers.push(() => makeCharacter(
  31708. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31709. {
  31710. front: {
  31711. height: math.unit(6, "feet"),
  31712. weight: math.unit(135, "lb"),
  31713. name: "Front",
  31714. image: {
  31715. source: "./media/characters/axel/front.svg",
  31716. extra: 908 / 908,
  31717. bottom: 58 / 966
  31718. }
  31719. },
  31720. side: {
  31721. height: math.unit(6, "feet"),
  31722. weight: math.unit(135, "lb"),
  31723. name: "Side",
  31724. image: {
  31725. source: "./media/characters/axel/side.svg",
  31726. extra: 958 / 958,
  31727. bottom: 11 / 969
  31728. }
  31729. },
  31730. back: {
  31731. height: math.unit(6, "feet"),
  31732. weight: math.unit(135, "lb"),
  31733. name: "Back",
  31734. image: {
  31735. source: "./media/characters/axel/back.svg",
  31736. extra: 887 / 887,
  31737. bottom: 34 / 921
  31738. }
  31739. },
  31740. head: {
  31741. height: math.unit(1.07, "feet"),
  31742. name: "Head",
  31743. image: {
  31744. source: "./media/characters/axel/head.svg"
  31745. }
  31746. },
  31747. beak: {
  31748. height: math.unit(1.4, "feet"),
  31749. name: "Beak",
  31750. image: {
  31751. source: "./media/characters/axel/beak.svg"
  31752. }
  31753. },
  31754. beakSide: {
  31755. height: math.unit(1.4, "feet"),
  31756. name: "Beak Side",
  31757. image: {
  31758. source: "./media/characters/axel/beak-side.svg"
  31759. }
  31760. },
  31761. sheath: {
  31762. height: math.unit(0.5, "feet"),
  31763. name: "Sheath",
  31764. image: {
  31765. source: "./media/characters/axel/sheath.svg"
  31766. }
  31767. },
  31768. dick: {
  31769. height: math.unit(0.98, "feet"),
  31770. name: "Dick",
  31771. image: {
  31772. source: "./media/characters/axel/dick.svg"
  31773. }
  31774. },
  31775. },
  31776. [
  31777. {
  31778. name: "Macro",
  31779. height: math.unit(68, "meters"),
  31780. default: true
  31781. },
  31782. ]
  31783. ))
  31784. characterMakers.push(() => makeCharacter(
  31785. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31786. {
  31787. front: {
  31788. height: math.unit(3.5, "meters"),
  31789. weight: math.unit(1200, "kg"),
  31790. name: "Front",
  31791. image: {
  31792. source: "./media/characters/joanna/front.svg",
  31793. extra: 1596 / 1488,
  31794. bottom: 29 / 1625
  31795. }
  31796. },
  31797. back: {
  31798. height: math.unit(3.5, "meters"),
  31799. weight: math.unit(1200, "kg"),
  31800. name: "Back",
  31801. image: {
  31802. source: "./media/characters/joanna/back.svg",
  31803. extra: 1594 / 1495,
  31804. bottom: 26 / 1620
  31805. }
  31806. },
  31807. frontShorts: {
  31808. height: math.unit(3.5, "meters"),
  31809. weight: math.unit(1200, "kg"),
  31810. name: "Front (Shorts)",
  31811. image: {
  31812. source: "./media/characters/joanna/front-shorts.svg",
  31813. extra: 1596 / 1488,
  31814. bottom: 29 / 1625
  31815. }
  31816. },
  31817. frontBiker: {
  31818. height: math.unit(3.5, "meters"),
  31819. weight: math.unit(1200, "kg"),
  31820. name: "Front (Biker)",
  31821. image: {
  31822. source: "./media/characters/joanna/front-biker.svg",
  31823. extra: 1596 / 1488,
  31824. bottom: 29 / 1625
  31825. }
  31826. },
  31827. backBiker: {
  31828. height: math.unit(3.5, "meters"),
  31829. weight: math.unit(1200, "kg"),
  31830. name: "Back (Biker)",
  31831. image: {
  31832. source: "./media/characters/joanna/back-biker.svg",
  31833. extra: 1594 / 1495,
  31834. bottom: 88 / 1682
  31835. }
  31836. },
  31837. bikeLeft: {
  31838. height: math.unit(2.4, "meters"),
  31839. weight: math.unit(1600, "kg"),
  31840. name: "Bike (Left)",
  31841. image: {
  31842. source: "./media/characters/joanna/bike-left.svg",
  31843. extra: 720 / 720,
  31844. bottom: 8 / 728
  31845. }
  31846. },
  31847. bikeRight: {
  31848. height: math.unit(2.4, "meters"),
  31849. weight: math.unit(1600, "kg"),
  31850. name: "Bike (Right)",
  31851. image: {
  31852. source: "./media/characters/joanna/bike-right.svg",
  31853. extra: 720 / 720,
  31854. bottom: 8 / 728
  31855. }
  31856. },
  31857. },
  31858. [
  31859. {
  31860. name: "Incognito",
  31861. height: math.unit(3.5, "meters")
  31862. },
  31863. {
  31864. name: "Casual Big",
  31865. height: math.unit(200, "meters")
  31866. },
  31867. {
  31868. name: "Macro",
  31869. height: math.unit(600, "meters")
  31870. },
  31871. {
  31872. name: "Original",
  31873. height: math.unit(20, "km"),
  31874. default: true
  31875. },
  31876. {
  31877. name: "Giga",
  31878. height: math.unit(400, "km")
  31879. },
  31880. {
  31881. name: "Lounging",
  31882. height: math.unit(1500, "km")
  31883. },
  31884. {
  31885. name: "Planetary",
  31886. height: math.unit(200000, "km")
  31887. },
  31888. ]
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31892. {
  31893. front: {
  31894. height: math.unit(6, "feet"),
  31895. weight: math.unit(150, "lb"),
  31896. name: "Front",
  31897. image: {
  31898. source: "./media/characters/hugo-sigil/front.svg",
  31899. extra: 522 / 500,
  31900. bottom: 2 / 524
  31901. }
  31902. },
  31903. back: {
  31904. height: math.unit(6, "feet"),
  31905. weight: math.unit(150, "lb"),
  31906. name: "Back",
  31907. image: {
  31908. source: "./media/characters/hugo-sigil/back.svg",
  31909. extra: 519 / 495,
  31910. bottom: 5 / 524
  31911. }
  31912. },
  31913. maw: {
  31914. height: math.unit(1.4, "feet"),
  31915. weight: math.unit(150, "lb"),
  31916. name: "Maw",
  31917. image: {
  31918. source: "./media/characters/hugo-sigil/maw.svg"
  31919. }
  31920. },
  31921. feet: {
  31922. height: math.unit(1.56, "feet"),
  31923. weight: math.unit(150, "lb"),
  31924. name: "Feet",
  31925. image: {
  31926. source: "./media/characters/hugo-sigil/feet.svg",
  31927. extra: 177 / 177,
  31928. bottom: 12 / 189
  31929. }
  31930. },
  31931. },
  31932. [
  31933. {
  31934. name: "Normal",
  31935. height: math.unit(6, "feet")
  31936. },
  31937. {
  31938. name: "Macro",
  31939. height: math.unit(200, "feet"),
  31940. default: true
  31941. },
  31942. ]
  31943. ))
  31944. characterMakers.push(() => makeCharacter(
  31945. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31946. {
  31947. front: {
  31948. height: math.unit(6, "feet"),
  31949. weight: math.unit(150, "lb"),
  31950. name: "Front",
  31951. image: {
  31952. source: "./media/characters/peri/front.svg",
  31953. extra: 2354 / 2233,
  31954. bottom: 49 / 2403
  31955. }
  31956. },
  31957. },
  31958. [
  31959. {
  31960. name: "Really Small",
  31961. height: math.unit(1, "nm")
  31962. },
  31963. {
  31964. name: "Micro",
  31965. height: math.unit(4, "inches")
  31966. },
  31967. {
  31968. name: "Normal",
  31969. height: math.unit(7, "inches"),
  31970. default: true
  31971. },
  31972. {
  31973. name: "Macro",
  31974. height: math.unit(400, "feet")
  31975. },
  31976. {
  31977. name: "Megamacro",
  31978. height: math.unit(100, "miles")
  31979. },
  31980. ]
  31981. ))
  31982. characterMakers.push(() => makeCharacter(
  31983. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31984. {
  31985. frontSlim: {
  31986. height: math.unit(7, "feet"),
  31987. name: "Front (Slim)",
  31988. image: {
  31989. source: "./media/characters/issilora/front-slim.svg",
  31990. extra: 529 / 449,
  31991. bottom: 53 / 582
  31992. }
  31993. },
  31994. sideSlim: {
  31995. height: math.unit(7, "feet"),
  31996. name: "Side (Slim)",
  31997. image: {
  31998. source: "./media/characters/issilora/side-slim.svg",
  31999. extra: 570 / 480,
  32000. bottom: 30 / 600
  32001. }
  32002. },
  32003. backSlim: {
  32004. height: math.unit(7, "feet"),
  32005. name: "Back (Slim)",
  32006. image: {
  32007. source: "./media/characters/issilora/back-slim.svg",
  32008. extra: 537 / 455,
  32009. bottom: 46 / 583
  32010. }
  32011. },
  32012. frontBuff: {
  32013. height: math.unit(7, "feet"),
  32014. name: "Front (Buff)",
  32015. image: {
  32016. source: "./media/characters/issilora/front-buff.svg",
  32017. extra: 2310 / 2035,
  32018. bottom: 335 / 2645
  32019. }
  32020. },
  32021. head: {
  32022. height: math.unit(1.94, "feet"),
  32023. name: "Head",
  32024. image: {
  32025. source: "./media/characters/issilora/head.svg"
  32026. }
  32027. },
  32028. },
  32029. [
  32030. {
  32031. name: "Minimum",
  32032. height: math.unit(7, "feet")
  32033. },
  32034. {
  32035. name: "Comfortable",
  32036. height: math.unit(17, "feet")
  32037. },
  32038. {
  32039. name: "Fun Size",
  32040. height: math.unit(47, "feet")
  32041. },
  32042. {
  32043. name: "Natural Macro",
  32044. height: math.unit(137, "feet"),
  32045. default: true
  32046. },
  32047. {
  32048. name: "Maximum Kaiju",
  32049. height: math.unit(397, "feet")
  32050. },
  32051. ]
  32052. ))
  32053. characterMakers.push(() => makeCharacter(
  32054. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32055. {
  32056. front: {
  32057. height: math.unit(50 + 9/12, "feet"),
  32058. weight: math.unit(32.8, "tons"),
  32059. name: "Front",
  32060. image: {
  32061. source: "./media/characters/irb'iiritaahn/front.svg",
  32062. extra: 1878/1826,
  32063. bottom: 326/2204
  32064. }
  32065. },
  32066. back: {
  32067. height: math.unit(50 + 9/12, "feet"),
  32068. weight: math.unit(32.8, "tons"),
  32069. name: "Back",
  32070. image: {
  32071. source: "./media/characters/irb'iiritaahn/back.svg",
  32072. extra: 2052/2018,
  32073. bottom: 152/2204
  32074. }
  32075. },
  32076. head: {
  32077. height: math.unit(12.86, "feet"),
  32078. name: "Head",
  32079. image: {
  32080. source: "./media/characters/irb'iiritaahn/head.svg"
  32081. }
  32082. },
  32083. maw: {
  32084. height: math.unit(9.66, "feet"),
  32085. name: "Maw",
  32086. image: {
  32087. source: "./media/characters/irb'iiritaahn/maw.svg"
  32088. }
  32089. },
  32090. frontDick: {
  32091. height: math.unit(8.78461, "feet"),
  32092. name: "Front Dick",
  32093. image: {
  32094. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32095. }
  32096. },
  32097. rearDick: {
  32098. height: math.unit(8.78461, "feet"),
  32099. name: "Rear Dick",
  32100. image: {
  32101. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32102. }
  32103. },
  32104. rearDickUnfolded: {
  32105. height: math.unit(8.78, "feet"),
  32106. name: "Rear Dick (Unfolded)",
  32107. image: {
  32108. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32109. }
  32110. },
  32111. wings: {
  32112. height: math.unit(43, "feet"),
  32113. name: "Wings",
  32114. image: {
  32115. source: "./media/characters/irb'iiritaahn/wings.svg"
  32116. }
  32117. },
  32118. },
  32119. [
  32120. {
  32121. name: "Macro",
  32122. height: math.unit(50 + 9/12, "feet"),
  32123. default: true
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32129. {
  32130. front: {
  32131. height: math.unit(205, "cm"),
  32132. weight: math.unit(102, "kg"),
  32133. name: "Front",
  32134. image: {
  32135. source: "./media/characters/irbisgreif/front.svg",
  32136. extra: 785/706,
  32137. bottom: 13/798
  32138. }
  32139. },
  32140. back: {
  32141. height: math.unit(205, "cm"),
  32142. weight: math.unit(102, "kg"),
  32143. name: "Back",
  32144. image: {
  32145. source: "./media/characters/irbisgreif/back.svg",
  32146. extra: 713/701,
  32147. bottom: 26/739
  32148. }
  32149. },
  32150. frontDressed: {
  32151. height: math.unit(216, "cm"),
  32152. weight: math.unit(102, "kg"),
  32153. name: "Front-dressed",
  32154. image: {
  32155. source: "./media/characters/irbisgreif/front-dressed.svg",
  32156. extra: 902/776,
  32157. bottom: 14/916
  32158. }
  32159. },
  32160. sideDressed: {
  32161. height: math.unit(195, "cm"),
  32162. weight: math.unit(102, "kg"),
  32163. name: "Side-dressed",
  32164. image: {
  32165. source: "./media/characters/irbisgreif/side-dressed.svg",
  32166. extra: 788/688,
  32167. bottom: 21/809
  32168. }
  32169. },
  32170. backDressed: {
  32171. height: math.unit(216, "cm"),
  32172. weight: math.unit(102, "kg"),
  32173. name: "Back-dressed",
  32174. image: {
  32175. source: "./media/characters/irbisgreif/back-dressed.svg",
  32176. extra: 901/783,
  32177. bottom: 10/911
  32178. }
  32179. },
  32180. dick: {
  32181. height: math.unit(0.49, "feet"),
  32182. name: "Dick",
  32183. image: {
  32184. source: "./media/characters/irbisgreif/dick.svg"
  32185. }
  32186. },
  32187. wingTop: {
  32188. height: math.unit(1.93 , "feet"),
  32189. name: "Wing-top",
  32190. image: {
  32191. source: "./media/characters/irbisgreif/wing-top.svg"
  32192. }
  32193. },
  32194. wingBottom: {
  32195. height: math.unit(1.93 , "feet"),
  32196. name: "Wing-bottom",
  32197. image: {
  32198. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32199. }
  32200. },
  32201. },
  32202. [
  32203. {
  32204. name: "Normal",
  32205. height: math.unit(216, "cm"),
  32206. default: true
  32207. },
  32208. ]
  32209. ))
  32210. characterMakers.push(() => makeCharacter(
  32211. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32212. {
  32213. front: {
  32214. height: math.unit(6, "feet"),
  32215. weight: math.unit(150, "lb"),
  32216. name: "Front",
  32217. image: {
  32218. source: "./media/characters/pride/front.svg",
  32219. extra: 1299/1230,
  32220. bottom: 18/1317
  32221. }
  32222. },
  32223. },
  32224. [
  32225. {
  32226. name: "Normal",
  32227. height: math.unit(7, "feet")
  32228. },
  32229. {
  32230. name: "Mini-macro",
  32231. height: math.unit(11, "feet")
  32232. },
  32233. {
  32234. name: "Macro",
  32235. height: math.unit(15, "meters"),
  32236. default: true
  32237. },
  32238. {
  32239. name: "Macro+",
  32240. height: math.unit(40, "meters")
  32241. },
  32242. ]
  32243. ))
  32244. characterMakers.push(() => makeCharacter(
  32245. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32246. {
  32247. front: {
  32248. height: math.unit(4 + 2 / 12, "feet"),
  32249. weight: math.unit(95, "lb"),
  32250. name: "Front",
  32251. image: {
  32252. source: "./media/characters/vaelophis-nyx/front.svg",
  32253. extra: 2532/2330,
  32254. bottom: 0/2532
  32255. }
  32256. },
  32257. back: {
  32258. height: math.unit(4 + 2 / 12, "feet"),
  32259. weight: math.unit(95, "lb"),
  32260. name: "Back",
  32261. image: {
  32262. source: "./media/characters/vaelophis-nyx/back.svg",
  32263. extra: 2484/2361,
  32264. bottom: 0/2484
  32265. }
  32266. },
  32267. feralSide: {
  32268. height: math.unit(2 + 1/12, "feet"),
  32269. weight: math.unit(20, "lb"),
  32270. name: "Feral (Side)",
  32271. image: {
  32272. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32273. extra: 1721/1581,
  32274. bottom: 70/1791
  32275. }
  32276. },
  32277. feralLazing: {
  32278. height: math.unit(1.08, "feet"),
  32279. weight: math.unit(20, "lb"),
  32280. name: "Feral (Lazing)",
  32281. image: {
  32282. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32283. extra: 822/822,
  32284. bottom: 248/1070
  32285. }
  32286. },
  32287. ear: {
  32288. height: math.unit(0.416, "feet"),
  32289. name: "Ear",
  32290. image: {
  32291. source: "./media/characters/vaelophis-nyx/ear.svg"
  32292. }
  32293. },
  32294. eye: {
  32295. height: math.unit(0.0748, "feet"),
  32296. name: "Eye",
  32297. image: {
  32298. source: "./media/characters/vaelophis-nyx/eye.svg"
  32299. }
  32300. },
  32301. mouth: {
  32302. height: math.unit(0.378, "feet"),
  32303. name: "Mouth",
  32304. image: {
  32305. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32306. }
  32307. },
  32308. spade: {
  32309. height: math.unit(0.55, "feet"),
  32310. name: "Spade",
  32311. image: {
  32312. source: "./media/characters/vaelophis-nyx/spade.svg"
  32313. }
  32314. },
  32315. },
  32316. [
  32317. {
  32318. name: "Normal",
  32319. height: math.unit(4 + 2/12, "feet"),
  32320. default: true
  32321. },
  32322. ]
  32323. ))
  32324. characterMakers.push(() => makeCharacter(
  32325. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32326. {
  32327. front: {
  32328. height: math.unit(7, "feet"),
  32329. weight: math.unit(231, "lb"),
  32330. name: "Front",
  32331. image: {
  32332. source: "./media/characters/flux/front.svg",
  32333. extra: 919/871,
  32334. bottom: 0/919
  32335. }
  32336. },
  32337. back: {
  32338. height: math.unit(7, "feet"),
  32339. weight: math.unit(231, "lb"),
  32340. name: "Back",
  32341. image: {
  32342. source: "./media/characters/flux/back.svg",
  32343. extra: 1040/992,
  32344. bottom: 0/1040
  32345. }
  32346. },
  32347. frontDressed: {
  32348. height: math.unit(7, "feet"),
  32349. weight: math.unit(231, "lb"),
  32350. name: "Front (Dressed)",
  32351. image: {
  32352. source: "./media/characters/flux/front-dressed.svg",
  32353. extra: 919/871,
  32354. bottom: 0/919
  32355. }
  32356. },
  32357. feralSide: {
  32358. height: math.unit(5, "feet"),
  32359. weight: math.unit(150, "lb"),
  32360. name: "Feral (Side)",
  32361. image: {
  32362. source: "./media/characters/flux/feral-side.svg",
  32363. extra: 598/528,
  32364. bottom: 28/626
  32365. }
  32366. },
  32367. head: {
  32368. height: math.unit(1.585, "feet"),
  32369. name: "Head",
  32370. image: {
  32371. source: "./media/characters/flux/head.svg"
  32372. }
  32373. },
  32374. headSide: {
  32375. height: math.unit(1.74, "feet"),
  32376. name: "Head (Side)",
  32377. image: {
  32378. source: "./media/characters/flux/head-side.svg"
  32379. }
  32380. },
  32381. headSideFire: {
  32382. height: math.unit(1.76, "feet"),
  32383. name: "Head (Side, Fire)",
  32384. image: {
  32385. source: "./media/characters/flux/head-side-fire.svg"
  32386. }
  32387. },
  32388. },
  32389. [
  32390. {
  32391. name: "Normal",
  32392. height: math.unit(7, "feet"),
  32393. default: true
  32394. },
  32395. ]
  32396. ))
  32397. characterMakers.push(() => makeCharacter(
  32398. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32399. {
  32400. front: {
  32401. height: math.unit(9, "feet"),
  32402. weight: math.unit(1012, "lb"),
  32403. name: "Front",
  32404. image: {
  32405. source: "./media/characters/ulfra-lupae/front.svg",
  32406. extra: 1083/1011,
  32407. bottom: 67/1150
  32408. }
  32409. },
  32410. },
  32411. [
  32412. {
  32413. name: "Micro",
  32414. height: math.unit(6, "inches")
  32415. },
  32416. {
  32417. name: "Socializing",
  32418. height: math.unit(6 + 5/12, "feet")
  32419. },
  32420. {
  32421. name: "Normal",
  32422. height: math.unit(9, "feet"),
  32423. default: true
  32424. },
  32425. {
  32426. name: "Macro",
  32427. height: math.unit(150, "feet")
  32428. },
  32429. ]
  32430. ))
  32431. characterMakers.push(() => makeCharacter(
  32432. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32433. {
  32434. front: {
  32435. height: math.unit(5 + 2/12, "feet"),
  32436. weight: math.unit(120, "lb"),
  32437. name: "Front",
  32438. image: {
  32439. source: "./media/characters/timber/front.svg",
  32440. extra: 2814/2705,
  32441. bottom: 181/2995
  32442. }
  32443. },
  32444. },
  32445. [
  32446. {
  32447. name: "Normal",
  32448. height: math.unit(5 + 2/12, "feet"),
  32449. default: true
  32450. },
  32451. ]
  32452. ))
  32453. characterMakers.push(() => makeCharacter(
  32454. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32455. {
  32456. front: {
  32457. height: math.unit(9, "feet"),
  32458. name: "Front",
  32459. image: {
  32460. source: "./media/characters/nicki/front.svg",
  32461. extra: 1240/990,
  32462. bottom: 45/1285
  32463. },
  32464. form: "anthro",
  32465. default: true
  32466. },
  32467. side: {
  32468. height: math.unit(9, "feet"),
  32469. name: "Side",
  32470. image: {
  32471. source: "./media/characters/nicki/side.svg",
  32472. extra: 1047/973,
  32473. bottom: 61/1108
  32474. },
  32475. form: "anthro"
  32476. },
  32477. back: {
  32478. height: math.unit(9, "feet"),
  32479. name: "Back",
  32480. image: {
  32481. source: "./media/characters/nicki/back.svg",
  32482. extra: 1006/965,
  32483. bottom: 39/1045
  32484. },
  32485. form: "anthro"
  32486. },
  32487. taur: {
  32488. height: math.unit(15, "feet"),
  32489. name: "Taur",
  32490. image: {
  32491. source: "./media/characters/nicki/taur.svg",
  32492. extra: 1592/1347,
  32493. bottom: 0/1592
  32494. },
  32495. form: "taur",
  32496. default: true
  32497. },
  32498. },
  32499. [
  32500. {
  32501. name: "Normal",
  32502. height: math.unit(9, "feet"),
  32503. form: "anthro",
  32504. default: true
  32505. },
  32506. {
  32507. name: "Normal",
  32508. height: math.unit(15, "feet"),
  32509. form: "taur",
  32510. default: true
  32511. }
  32512. ],
  32513. {
  32514. "anthro": {
  32515. name: "Anthro",
  32516. default: true
  32517. },
  32518. "taur": {
  32519. name: "Taur"
  32520. }
  32521. }
  32522. ))
  32523. characterMakers.push(() => makeCharacter(
  32524. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32525. {
  32526. front: {
  32527. height: math.unit(7 + 10/12, "feet"),
  32528. weight: math.unit(3.5, "tons"),
  32529. name: "Front",
  32530. image: {
  32531. source: "./media/characters/lee/front.svg",
  32532. extra: 1773/1615,
  32533. bottom: 86/1859
  32534. }
  32535. },
  32536. hand: {
  32537. height: math.unit(1.78, "feet"),
  32538. name: "Hand",
  32539. image: {
  32540. source: "./media/characters/lee/hand.svg"
  32541. }
  32542. },
  32543. maw: {
  32544. height: math.unit(1.18, "feet"),
  32545. name: "Maw",
  32546. image: {
  32547. source: "./media/characters/lee/maw.svg"
  32548. }
  32549. },
  32550. },
  32551. [
  32552. {
  32553. name: "Normal",
  32554. height: math.unit(7 + 10/12, "feet"),
  32555. default: true
  32556. },
  32557. ]
  32558. ))
  32559. characterMakers.push(() => makeCharacter(
  32560. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32561. {
  32562. front: {
  32563. height: math.unit(9, "feet"),
  32564. name: "Front",
  32565. image: {
  32566. source: "./media/characters/guti/front.svg",
  32567. extra: 4551/4355,
  32568. bottom: 123/4674
  32569. }
  32570. },
  32571. tongue: {
  32572. height: math.unit(1, "feet"),
  32573. name: "Tongue",
  32574. image: {
  32575. source: "./media/characters/guti/tongue.svg"
  32576. }
  32577. },
  32578. paw: {
  32579. height: math.unit(1.18, "feet"),
  32580. name: "Paw",
  32581. image: {
  32582. source: "./media/characters/guti/paw.svg"
  32583. }
  32584. },
  32585. },
  32586. [
  32587. {
  32588. name: "Normal",
  32589. height: math.unit(9, "feet"),
  32590. default: true
  32591. },
  32592. ]
  32593. ))
  32594. characterMakers.push(() => makeCharacter(
  32595. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32596. {
  32597. side: {
  32598. height: math.unit(5, "meters"),
  32599. name: "Side",
  32600. image: {
  32601. source: "./media/characters/vesper/side.svg",
  32602. extra: 1605/1518,
  32603. bottom: 0/1605
  32604. }
  32605. },
  32606. },
  32607. [
  32608. {
  32609. name: "Small",
  32610. height: math.unit(5, "meters")
  32611. },
  32612. {
  32613. name: "Sage",
  32614. height: math.unit(100, "meters"),
  32615. default: true
  32616. },
  32617. {
  32618. name: "Fun Size",
  32619. height: math.unit(600, "meters")
  32620. },
  32621. {
  32622. name: "Goddess",
  32623. height: math.unit(20000, "km")
  32624. },
  32625. {
  32626. name: "Maximum",
  32627. height: math.unit(5, "galaxies")
  32628. },
  32629. ]
  32630. ))
  32631. characterMakers.push(() => makeCharacter(
  32632. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32633. {
  32634. front: {
  32635. height: math.unit(6 + 3/12, "feet"),
  32636. weight: math.unit(190, "lb"),
  32637. name: "Front",
  32638. image: {
  32639. source: "./media/characters/gawain/front.svg",
  32640. extra: 2222/2139,
  32641. bottom: 90/2312
  32642. }
  32643. },
  32644. back: {
  32645. height: math.unit(6 + 3/12, "feet"),
  32646. weight: math.unit(190, "lb"),
  32647. name: "Back",
  32648. image: {
  32649. source: "./media/characters/gawain/back.svg",
  32650. extra: 2199/2111,
  32651. bottom: 73/2272
  32652. }
  32653. },
  32654. },
  32655. [
  32656. {
  32657. name: "Normal",
  32658. height: math.unit(6 + 3/12, "feet"),
  32659. default: true
  32660. },
  32661. ]
  32662. ))
  32663. characterMakers.push(() => makeCharacter(
  32664. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32665. {
  32666. side: {
  32667. height: math.unit(3.5, "meters"),
  32668. weight: math.unit(16000, "lb"),
  32669. name: "Side",
  32670. image: {
  32671. source: "./media/characters/dascalti/side.svg",
  32672. extra: 392/273,
  32673. bottom: 47/439
  32674. }
  32675. },
  32676. breath: {
  32677. height: math.unit(7.4, "feet"),
  32678. name: "Breath",
  32679. image: {
  32680. source: "./media/characters/dascalti/breath.svg"
  32681. }
  32682. },
  32683. fed: {
  32684. height: math.unit(3.6, "meters"),
  32685. weight: math.unit(16000, "lb"),
  32686. name: "Fed",
  32687. image: {
  32688. source: "./media/characters/dascalti/fed.svg",
  32689. extra: 1419/820,
  32690. bottom: 95/1514
  32691. }
  32692. },
  32693. },
  32694. [
  32695. {
  32696. name: "Normal",
  32697. height: math.unit(3.5, "meters"),
  32698. default: true
  32699. },
  32700. ]
  32701. ))
  32702. characterMakers.push(() => makeCharacter(
  32703. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32704. {
  32705. front: {
  32706. height: math.unit(3 + 5/12, "feet"),
  32707. name: "Front",
  32708. image: {
  32709. source: "./media/characters/mauve/front.svg",
  32710. extra: 1126/1033,
  32711. bottom: 65/1191
  32712. }
  32713. },
  32714. side: {
  32715. height: math.unit(3 + 5/12, "feet"),
  32716. name: "Side",
  32717. image: {
  32718. source: "./media/characters/mauve/side.svg",
  32719. extra: 1089/1001,
  32720. bottom: 29/1118
  32721. }
  32722. },
  32723. back: {
  32724. height: math.unit(3 + 5/12, "feet"),
  32725. name: "Back",
  32726. image: {
  32727. source: "./media/characters/mauve/back.svg",
  32728. extra: 1173/1053,
  32729. bottom: 109/1282
  32730. }
  32731. },
  32732. },
  32733. [
  32734. {
  32735. name: "Normal",
  32736. height: math.unit(3 + 5/12, "feet"),
  32737. default: true
  32738. },
  32739. ]
  32740. ))
  32741. characterMakers.push(() => makeCharacter(
  32742. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32743. {
  32744. front: {
  32745. height: math.unit(6 + 3/12, "feet"),
  32746. weight: math.unit(430, "lb"),
  32747. name: "Front",
  32748. image: {
  32749. source: "./media/characters/carlos/front.svg",
  32750. extra: 1964/1913,
  32751. bottom: 70/2034
  32752. }
  32753. },
  32754. },
  32755. [
  32756. {
  32757. name: "Normal",
  32758. height: math.unit(6 + 3/12, "feet"),
  32759. default: true
  32760. },
  32761. ]
  32762. ))
  32763. characterMakers.push(() => makeCharacter(
  32764. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32765. {
  32766. back: {
  32767. height: math.unit(5 + 10/12, "feet"),
  32768. weight: math.unit(200, "lb"),
  32769. name: "Back",
  32770. image: {
  32771. source: "./media/characters/jax/back.svg",
  32772. extra: 764/739,
  32773. bottom: 25/789
  32774. }
  32775. },
  32776. },
  32777. [
  32778. {
  32779. name: "Normal",
  32780. height: math.unit(5 + 10/12, "feet"),
  32781. default: true
  32782. },
  32783. ]
  32784. ))
  32785. characterMakers.push(() => makeCharacter(
  32786. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32787. {
  32788. front: {
  32789. height: math.unit(8, "feet"),
  32790. weight: math.unit(250, "lb"),
  32791. name: "Front",
  32792. image: {
  32793. source: "./media/characters/eikthynir/front.svg",
  32794. extra: 1332/1166,
  32795. bottom: 82/1414
  32796. }
  32797. },
  32798. back: {
  32799. height: math.unit(8, "feet"),
  32800. weight: math.unit(250, "lb"),
  32801. name: "Back",
  32802. image: {
  32803. source: "./media/characters/eikthynir/back.svg",
  32804. extra: 1342/1190,
  32805. bottom: 19/1361
  32806. }
  32807. },
  32808. dick: {
  32809. height: math.unit(2.35, "feet"),
  32810. name: "Dick",
  32811. image: {
  32812. source: "./media/characters/eikthynir/dick.svg"
  32813. }
  32814. },
  32815. },
  32816. [
  32817. {
  32818. name: "Normal",
  32819. height: math.unit(8, "feet"),
  32820. default: true
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32826. {
  32827. front: {
  32828. height: math.unit(99, "meters"),
  32829. weight: math.unit(13000, "tons"),
  32830. name: "Front",
  32831. image: {
  32832. source: "./media/characters/zlmos/front.svg",
  32833. extra: 2202/1992,
  32834. bottom: 315/2517
  32835. }
  32836. },
  32837. },
  32838. [
  32839. {
  32840. name: "Macro",
  32841. height: math.unit(99, "meters"),
  32842. default: true
  32843. },
  32844. ]
  32845. ))
  32846. characterMakers.push(() => makeCharacter(
  32847. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32848. {
  32849. front: {
  32850. height: math.unit(6 + 5/12, "feet"),
  32851. name: "Front",
  32852. image: {
  32853. source: "./media/characters/purri/front.svg",
  32854. extra: 1698/1610,
  32855. bottom: 32/1730
  32856. }
  32857. },
  32858. frontAlt: {
  32859. height: math.unit(6 + 5/12, "feet"),
  32860. name: "Front (Alt)",
  32861. image: {
  32862. source: "./media/characters/purri/front-alt.svg",
  32863. extra: 450/420,
  32864. bottom: 26/476
  32865. }
  32866. },
  32867. boots: {
  32868. height: math.unit(5.5, "feet"),
  32869. name: "Boots",
  32870. image: {
  32871. source: "./media/characters/purri/boots.svg",
  32872. extra: 905/853,
  32873. bottom: 18/923
  32874. }
  32875. },
  32876. lying: {
  32877. height: math.unit(2, "feet"),
  32878. name: "Lying",
  32879. image: {
  32880. source: "./media/characters/purri/lying.svg",
  32881. extra: 940/843,
  32882. bottom: 146/1086
  32883. }
  32884. },
  32885. devious: {
  32886. height: math.unit(1.77, "feet"),
  32887. name: "Devious",
  32888. image: {
  32889. source: "./media/characters/purri/devious.svg",
  32890. extra: 1440/1155,
  32891. bottom: 147/1587
  32892. }
  32893. },
  32894. bean: {
  32895. height: math.unit(1.94, "feet"),
  32896. name: "Bean",
  32897. image: {
  32898. source: "./media/characters/purri/bean.svg"
  32899. }
  32900. },
  32901. },
  32902. [
  32903. {
  32904. name: "Micro",
  32905. height: math.unit(1, "mm")
  32906. },
  32907. {
  32908. name: "Normal",
  32909. height: math.unit(6 + 5/12, "feet"),
  32910. default: true
  32911. },
  32912. {
  32913. name: "Macro :3c",
  32914. height: math.unit(2, "miles")
  32915. },
  32916. ]
  32917. ))
  32918. characterMakers.push(() => makeCharacter(
  32919. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32920. {
  32921. front: {
  32922. height: math.unit(6 + 2/12, "feet"),
  32923. weight: math.unit(250, "lb"),
  32924. name: "Front",
  32925. image: {
  32926. source: "./media/characters/moonlight/front.svg",
  32927. extra: 1044/908,
  32928. bottom: 56/1100
  32929. }
  32930. },
  32931. feral: {
  32932. height: math.unit(3 + 1/12, "feet"),
  32933. weight: math.unit(50, "kg"),
  32934. name: "Feral",
  32935. image: {
  32936. source: "./media/characters/moonlight/feral.svg",
  32937. extra: 3705/2791,
  32938. bottom: 145/3850
  32939. }
  32940. },
  32941. paw: {
  32942. height: math.unit(1, "feet"),
  32943. name: "Paw",
  32944. image: {
  32945. source: "./media/characters/moonlight/paw.svg"
  32946. }
  32947. },
  32948. paws: {
  32949. height: math.unit(0.98, "feet"),
  32950. name: "Paws",
  32951. image: {
  32952. source: "./media/characters/moonlight/paws.svg",
  32953. extra: 939/939,
  32954. bottom: 50/989
  32955. }
  32956. },
  32957. mouth: {
  32958. height: math.unit(0.48, "feet"),
  32959. name: "Mouth",
  32960. image: {
  32961. source: "./media/characters/moonlight/mouth.svg"
  32962. }
  32963. },
  32964. dick: {
  32965. height: math.unit(1.46, "feet"),
  32966. name: "Dick",
  32967. image: {
  32968. source: "./media/characters/moonlight/dick.svg"
  32969. }
  32970. },
  32971. },
  32972. [
  32973. {
  32974. name: "Normal",
  32975. height: math.unit(6 + 2/12, "feet"),
  32976. default: true
  32977. },
  32978. {
  32979. name: "Macro",
  32980. height: math.unit(300, "feet")
  32981. },
  32982. {
  32983. name: "Macro+",
  32984. height: math.unit(1, "mile")
  32985. },
  32986. {
  32987. name: "Mt. Moon",
  32988. height: math.unit(5, "miles")
  32989. },
  32990. {
  32991. name: "Megamacro",
  32992. height: math.unit(15, "miles")
  32993. },
  32994. ]
  32995. ))
  32996. characterMakers.push(() => makeCharacter(
  32997. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32998. {
  32999. back: {
  33000. height: math.unit(6, "feet"),
  33001. weight: math.unit(150, "lb"),
  33002. name: "Back",
  33003. image: {
  33004. source: "./media/characters/sylen/back.svg",
  33005. extra: 1335/1273,
  33006. bottom: 107/1442
  33007. }
  33008. },
  33009. },
  33010. [
  33011. {
  33012. name: "Normal",
  33013. height: math.unit(5 + 5/12, "feet")
  33014. },
  33015. {
  33016. name: "Megamacro",
  33017. height: math.unit(3, "miles"),
  33018. default: true
  33019. },
  33020. ]
  33021. ))
  33022. characterMakers.push(() => makeCharacter(
  33023. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33024. {
  33025. front: {
  33026. height: math.unit(6, "feet"),
  33027. weight: math.unit(190, "lb"),
  33028. name: "Front",
  33029. image: {
  33030. source: "./media/characters/huttser/front.svg",
  33031. extra: 1152/1058,
  33032. bottom: 23/1175
  33033. }
  33034. },
  33035. side: {
  33036. height: math.unit(6, "feet"),
  33037. weight: math.unit(190, "lb"),
  33038. name: "Side",
  33039. image: {
  33040. source: "./media/characters/huttser/side.svg",
  33041. extra: 1174/1065,
  33042. bottom: 18/1192
  33043. }
  33044. },
  33045. back: {
  33046. height: math.unit(6, "feet"),
  33047. weight: math.unit(190, "lb"),
  33048. name: "Back",
  33049. image: {
  33050. source: "./media/characters/huttser/back.svg",
  33051. extra: 1158/1056,
  33052. bottom: 12/1170
  33053. }
  33054. },
  33055. },
  33056. [
  33057. ]
  33058. ))
  33059. characterMakers.push(() => makeCharacter(
  33060. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33061. {
  33062. side: {
  33063. height: math.unit(12 + 9/12, "feet"),
  33064. weight: math.unit(15000, "lb"),
  33065. name: "Side",
  33066. image: {
  33067. source: "./media/characters/faan/side.svg",
  33068. extra: 2747/2697,
  33069. bottom: 0/2747
  33070. }
  33071. },
  33072. front: {
  33073. height: math.unit(12 + 9/12, "feet"),
  33074. weight: math.unit(15000, "lb"),
  33075. name: "Front",
  33076. image: {
  33077. source: "./media/characters/faan/front.svg",
  33078. extra: 607/571,
  33079. bottom: 24/631
  33080. }
  33081. },
  33082. head: {
  33083. height: math.unit(2.85, "feet"),
  33084. name: "Head",
  33085. image: {
  33086. source: "./media/characters/faan/head.svg"
  33087. }
  33088. },
  33089. headAlt: {
  33090. height: math.unit(3.13, "feet"),
  33091. name: "Head-alt",
  33092. image: {
  33093. source: "./media/characters/faan/head-alt.svg"
  33094. }
  33095. },
  33096. },
  33097. [
  33098. {
  33099. name: "Normal",
  33100. height: math.unit(12 + 9/12, "feet"),
  33101. default: true
  33102. },
  33103. ]
  33104. ))
  33105. characterMakers.push(() => makeCharacter(
  33106. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33107. {
  33108. front: {
  33109. height: math.unit(6, "feet"),
  33110. weight: math.unit(300, "lb"),
  33111. name: "Front",
  33112. image: {
  33113. source: "./media/characters/tanio/front.svg",
  33114. extra: 711/673,
  33115. bottom: 25/736
  33116. }
  33117. },
  33118. },
  33119. [
  33120. {
  33121. name: "Normal",
  33122. height: math.unit(6, "feet"),
  33123. default: true
  33124. },
  33125. ]
  33126. ))
  33127. characterMakers.push(() => makeCharacter(
  33128. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33129. {
  33130. front: {
  33131. height: math.unit(3, "inches"),
  33132. name: "Front",
  33133. image: {
  33134. source: "./media/characters/noboru/front.svg",
  33135. extra: 1039/932,
  33136. bottom: 18/1057
  33137. }
  33138. },
  33139. },
  33140. [
  33141. {
  33142. name: "Micro",
  33143. height: math.unit(3, "inches"),
  33144. default: true
  33145. },
  33146. ]
  33147. ))
  33148. characterMakers.push(() => makeCharacter(
  33149. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33150. {
  33151. front: {
  33152. height: math.unit(1.85, "meters"),
  33153. weight: math.unit(80, "kg"),
  33154. name: "Front",
  33155. image: {
  33156. source: "./media/characters/daniel-barrett/front.svg",
  33157. extra: 355/337,
  33158. bottom: 9/364
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "Pico",
  33165. height: math.unit(0.0433, "mm")
  33166. },
  33167. {
  33168. name: "Nano",
  33169. height: math.unit(1.5, "mm")
  33170. },
  33171. {
  33172. name: "Micro",
  33173. height: math.unit(5.3, "cm"),
  33174. default: true
  33175. },
  33176. {
  33177. name: "Normal",
  33178. height: math.unit(1.85, "meters")
  33179. },
  33180. {
  33181. name: "Macro",
  33182. height: math.unit(64.7, "meters")
  33183. },
  33184. {
  33185. name: "Megamacro",
  33186. height: math.unit(2.26, "km")
  33187. },
  33188. {
  33189. name: "Gigamacro",
  33190. height: math.unit(79, "km")
  33191. },
  33192. {
  33193. name: "Teramacro",
  33194. height: math.unit(2765, "km")
  33195. },
  33196. {
  33197. name: "Petamacro",
  33198. height: math.unit(96678, "km")
  33199. },
  33200. ]
  33201. ))
  33202. characterMakers.push(() => makeCharacter(
  33203. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33204. {
  33205. front: {
  33206. height: math.unit(30, "meters"),
  33207. weight: math.unit(400, "tons"),
  33208. name: "Front",
  33209. image: {
  33210. source: "./media/characters/zeel/front.svg",
  33211. extra: 2599/2599,
  33212. bottom: 226/2825
  33213. }
  33214. },
  33215. },
  33216. [
  33217. {
  33218. name: "Macro",
  33219. height: math.unit(30, "meters"),
  33220. default: true
  33221. },
  33222. ]
  33223. ))
  33224. characterMakers.push(() => makeCharacter(
  33225. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33226. {
  33227. front: {
  33228. height: math.unit(6 + 7/12, "feet"),
  33229. weight: math.unit(210, "lb"),
  33230. name: "Front",
  33231. image: {
  33232. source: "./media/characters/tarn/front.svg",
  33233. extra: 3517/3220,
  33234. bottom: 91/3608
  33235. }
  33236. },
  33237. back: {
  33238. height: math.unit(6 + 7/12, "feet"),
  33239. weight: math.unit(210, "lb"),
  33240. name: "Back",
  33241. image: {
  33242. source: "./media/characters/tarn/back.svg",
  33243. extra: 3566/3241,
  33244. bottom: 34/3600
  33245. }
  33246. },
  33247. dick: {
  33248. height: math.unit(1.65, "feet"),
  33249. name: "Dick",
  33250. image: {
  33251. source: "./media/characters/tarn/dick.svg"
  33252. }
  33253. },
  33254. paw: {
  33255. height: math.unit(1.80, "feet"),
  33256. name: "Paw",
  33257. image: {
  33258. source: "./media/characters/tarn/paw.svg"
  33259. }
  33260. },
  33261. tongue: {
  33262. height: math.unit(0.97, "feet"),
  33263. name: "Tongue",
  33264. image: {
  33265. source: "./media/characters/tarn/tongue.svg"
  33266. }
  33267. },
  33268. },
  33269. [
  33270. {
  33271. name: "Micro",
  33272. height: math.unit(4, "inches")
  33273. },
  33274. {
  33275. name: "Normal",
  33276. height: math.unit(6 + 7/12, "feet"),
  33277. default: true
  33278. },
  33279. {
  33280. name: "Macro",
  33281. height: math.unit(300, "feet")
  33282. },
  33283. ]
  33284. ))
  33285. characterMakers.push(() => makeCharacter(
  33286. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33287. {
  33288. front: {
  33289. height: math.unit(5 + 7/12, "feet"),
  33290. weight: math.unit(80, "kg"),
  33291. name: "Front",
  33292. image: {
  33293. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33294. extra: 3023/2865,
  33295. bottom: 33/3056
  33296. }
  33297. },
  33298. back: {
  33299. height: math.unit(5 + 7/12, "feet"),
  33300. weight: math.unit(80, "kg"),
  33301. name: "Back",
  33302. image: {
  33303. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33304. extra: 3020/2886,
  33305. bottom: 30/3050
  33306. }
  33307. },
  33308. dick: {
  33309. height: math.unit(0.98, "feet"),
  33310. name: "Dick",
  33311. image: {
  33312. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33313. }
  33314. },
  33315. anatomy: {
  33316. height: math.unit(2.86, "feet"),
  33317. name: "Anatomy",
  33318. image: {
  33319. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33320. }
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Really Small",
  33326. height: math.unit(2, "inches")
  33327. },
  33328. {
  33329. name: "Micro",
  33330. height: math.unit(5.583, "inches")
  33331. },
  33332. {
  33333. name: "Normal",
  33334. height: math.unit(5 + 7/12, "feet"),
  33335. default: true
  33336. },
  33337. {
  33338. name: "Macro",
  33339. height: math.unit(67, "feet")
  33340. },
  33341. {
  33342. name: "Megamacro",
  33343. height: math.unit(134, "feet")
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33349. {
  33350. front: {
  33351. height: math.unit(9, "feet"),
  33352. weight: math.unit(120, "lb"),
  33353. name: "Front",
  33354. image: {
  33355. source: "./media/characters/sally/front.svg",
  33356. extra: 1506/1349,
  33357. bottom: 66/1572
  33358. }
  33359. },
  33360. },
  33361. [
  33362. {
  33363. name: "Normal",
  33364. height: math.unit(9, "feet"),
  33365. default: true
  33366. },
  33367. ]
  33368. ))
  33369. characterMakers.push(() => makeCharacter(
  33370. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33371. {
  33372. front: {
  33373. height: math.unit(8, "feet"),
  33374. weight: math.unit(900, "lb"),
  33375. name: "Front",
  33376. image: {
  33377. source: "./media/characters/owen/front.svg",
  33378. extra: 1761/1657,
  33379. bottom: 74/1835
  33380. }
  33381. },
  33382. side: {
  33383. height: math.unit(8, "feet"),
  33384. weight: math.unit(900, "lb"),
  33385. name: "Side",
  33386. image: {
  33387. source: "./media/characters/owen/side.svg",
  33388. extra: 1797/1734,
  33389. bottom: 30/1827
  33390. }
  33391. },
  33392. back: {
  33393. height: math.unit(8, "feet"),
  33394. weight: math.unit(900, "lb"),
  33395. name: "Back",
  33396. image: {
  33397. source: "./media/characters/owen/back.svg",
  33398. extra: 1796/1706,
  33399. bottom: 59/1855
  33400. }
  33401. },
  33402. maw: {
  33403. height: math.unit(1.76, "feet"),
  33404. name: "Maw",
  33405. image: {
  33406. source: "./media/characters/owen/maw.svg"
  33407. }
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(8, "feet"),
  33414. default: true
  33415. },
  33416. ]
  33417. ))
  33418. characterMakers.push(() => makeCharacter(
  33419. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33420. {
  33421. front: {
  33422. height: math.unit(4, "feet"),
  33423. weight: math.unit(400, "lb"),
  33424. name: "Front",
  33425. image: {
  33426. source: "./media/characters/ryth/front.svg",
  33427. extra: 1920/1748,
  33428. bottom: 42/1962
  33429. }
  33430. },
  33431. back: {
  33432. height: math.unit(4, "feet"),
  33433. weight: math.unit(400, "lb"),
  33434. name: "Back",
  33435. image: {
  33436. source: "./media/characters/ryth/back.svg",
  33437. extra: 1897/1690,
  33438. bottom: 89/1986
  33439. }
  33440. },
  33441. mouth: {
  33442. height: math.unit(1.39, "feet"),
  33443. name: "Mouth",
  33444. image: {
  33445. source: "./media/characters/ryth/mouth.svg"
  33446. }
  33447. },
  33448. tailmaw: {
  33449. height: math.unit(1.23, "feet"),
  33450. name: "Tailmaw",
  33451. image: {
  33452. source: "./media/characters/ryth/tailmaw.svg"
  33453. }
  33454. },
  33455. goia: {
  33456. height: math.unit(4, "meters"),
  33457. weight: math.unit(10800, "lb"),
  33458. name: "Goia",
  33459. image: {
  33460. source: "./media/characters/ryth/goia.svg",
  33461. extra: 745/640,
  33462. bottom: 107/852
  33463. }
  33464. },
  33465. goiaFront: {
  33466. height: math.unit(4, "meters"),
  33467. weight: math.unit(10800, "lb"),
  33468. name: "Goia (Front)",
  33469. image: {
  33470. source: "./media/characters/ryth/goia-front.svg",
  33471. extra: 750/586,
  33472. bottom: 114/864
  33473. }
  33474. },
  33475. goiaMaw: {
  33476. height: math.unit(5.55, "feet"),
  33477. name: "Goia Maw",
  33478. image: {
  33479. source: "./media/characters/ryth/goia-maw.svg"
  33480. }
  33481. },
  33482. goiaForepaw: {
  33483. height: math.unit(3.5, "feet"),
  33484. name: "Goia Forepaw",
  33485. image: {
  33486. source: "./media/characters/ryth/goia-forepaw.svg"
  33487. }
  33488. },
  33489. goiaHindpaw: {
  33490. height: math.unit(5.55, "feet"),
  33491. name: "Goia Hindpaw",
  33492. image: {
  33493. source: "./media/characters/ryth/goia-hindpaw.svg"
  33494. }
  33495. },
  33496. },
  33497. [
  33498. {
  33499. name: "Normal",
  33500. height: math.unit(4, "feet"),
  33501. default: true
  33502. },
  33503. ]
  33504. ))
  33505. characterMakers.push(() => makeCharacter(
  33506. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33507. {
  33508. front: {
  33509. height: math.unit(7, "feet"),
  33510. weight: math.unit(180, "lb"),
  33511. name: "Front",
  33512. image: {
  33513. source: "./media/characters/necrolance/front.svg",
  33514. extra: 1062/947,
  33515. bottom: 41/1103
  33516. }
  33517. },
  33518. back: {
  33519. height: math.unit(7, "feet"),
  33520. weight: math.unit(180, "lb"),
  33521. name: "Back",
  33522. image: {
  33523. source: "./media/characters/necrolance/back.svg",
  33524. extra: 1045/984,
  33525. bottom: 14/1059
  33526. }
  33527. },
  33528. wing: {
  33529. height: math.unit(2.67, "feet"),
  33530. name: "Wing",
  33531. image: {
  33532. source: "./media/characters/necrolance/wing.svg"
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Normal",
  33539. height: math.unit(7, "feet"),
  33540. default: true
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33546. {
  33547. front: {
  33548. height: math.unit(76, "meters"),
  33549. weight: math.unit(30000, "tons"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/tyler/front.svg",
  33553. extra: 1640/1640,
  33554. bottom: 114/1754
  33555. }
  33556. },
  33557. },
  33558. [
  33559. {
  33560. name: "Macro",
  33561. height: math.unit(76, "meters"),
  33562. default: true
  33563. },
  33564. ]
  33565. ))
  33566. characterMakers.push(() => makeCharacter(
  33567. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33568. {
  33569. front: {
  33570. height: math.unit(4 + 11/12, "feet"),
  33571. weight: math.unit(132, "lb"),
  33572. name: "Front",
  33573. image: {
  33574. source: "./media/characters/icey/front.svg",
  33575. extra: 2750/2550,
  33576. bottom: 33/2783
  33577. }
  33578. },
  33579. back: {
  33580. height: math.unit(4 + 11/12, "feet"),
  33581. weight: math.unit(132, "lb"),
  33582. name: "Back",
  33583. image: {
  33584. source: "./media/characters/icey/back.svg",
  33585. extra: 2624/2481,
  33586. bottom: 35/2659
  33587. }
  33588. },
  33589. },
  33590. [
  33591. {
  33592. name: "Normal",
  33593. height: math.unit(4 + 11/12, "feet"),
  33594. default: true
  33595. },
  33596. ]
  33597. ))
  33598. characterMakers.push(() => makeCharacter(
  33599. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33600. {
  33601. front: {
  33602. height: math.unit(100, "feet"),
  33603. weight: math.unit(0, "lb"),
  33604. name: "Front",
  33605. image: {
  33606. source: "./media/characters/smile/front.svg",
  33607. extra: 2983/2912,
  33608. bottom: 162/3145
  33609. }
  33610. },
  33611. back: {
  33612. height: math.unit(100, "feet"),
  33613. weight: math.unit(0, "lb"),
  33614. name: "Back",
  33615. image: {
  33616. source: "./media/characters/smile/back.svg",
  33617. extra: 3143/3031,
  33618. bottom: 91/3234
  33619. }
  33620. },
  33621. head: {
  33622. height: math.unit(26.3, "feet"),
  33623. weight: math.unit(0, "lb"),
  33624. name: "Head",
  33625. image: {
  33626. source: "./media/characters/smile/head.svg"
  33627. }
  33628. },
  33629. collar: {
  33630. height: math.unit(5.3, "feet"),
  33631. weight: math.unit(0, "lb"),
  33632. name: "Collar",
  33633. image: {
  33634. source: "./media/characters/smile/collar.svg"
  33635. }
  33636. },
  33637. },
  33638. [
  33639. {
  33640. name: "Macro",
  33641. height: math.unit(100, "feet"),
  33642. default: true
  33643. },
  33644. ]
  33645. ))
  33646. characterMakers.push(() => makeCharacter(
  33647. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33648. {
  33649. dragon: {
  33650. height: math.unit(26, "feet"),
  33651. weight: math.unit(36, "tons"),
  33652. name: "Dragon",
  33653. image: {
  33654. source: "./media/characters/arimphae/dragon.svg",
  33655. extra: 1574/983,
  33656. bottom: 357/1931
  33657. }
  33658. },
  33659. drake: {
  33660. height: math.unit(9, "feet"),
  33661. weight: math.unit(1.5, "tons"),
  33662. name: "Drake",
  33663. image: {
  33664. source: "./media/characters/arimphae/drake.svg",
  33665. extra: 1120/925,
  33666. bottom: 435/1555
  33667. }
  33668. },
  33669. },
  33670. [
  33671. {
  33672. name: "Small",
  33673. height: math.unit(26*5/9, "feet")
  33674. },
  33675. {
  33676. name: "Normal",
  33677. height: math.unit(26, "feet"),
  33678. default: true
  33679. },
  33680. ]
  33681. ))
  33682. characterMakers.push(() => makeCharacter(
  33683. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33684. {
  33685. front: {
  33686. height: math.unit(8 + 9/12, "feet"),
  33687. name: "Front",
  33688. image: {
  33689. source: "./media/characters/xander/front.svg",
  33690. extra: 1237/974,
  33691. bottom: 94/1331
  33692. }
  33693. },
  33694. },
  33695. [
  33696. {
  33697. name: "Normal",
  33698. height: math.unit(8 + 9/12, "feet"),
  33699. default: true
  33700. },
  33701. {
  33702. name: "Gaze Grabber",
  33703. height: math.unit(13 + 8/12, "feet")
  33704. },
  33705. {
  33706. name: "Jaw Dropper",
  33707. height: math.unit(27, "feet")
  33708. },
  33709. {
  33710. name: "Show Stopper",
  33711. height: math.unit(136, "feet")
  33712. },
  33713. {
  33714. name: "Superstar",
  33715. height: math.unit(1.9e6, "miles")
  33716. },
  33717. ]
  33718. ))
  33719. characterMakers.push(() => makeCharacter(
  33720. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33721. {
  33722. side: {
  33723. height: math.unit(2100, "feet"),
  33724. name: "Side",
  33725. image: {
  33726. source: "./media/characters/osiris/side.svg",
  33727. extra: 1105/939,
  33728. bottom: 167/1272
  33729. }
  33730. },
  33731. },
  33732. [
  33733. {
  33734. name: "Macro",
  33735. height: math.unit(2100, "feet"),
  33736. default: true
  33737. },
  33738. ]
  33739. ))
  33740. characterMakers.push(() => makeCharacter(
  33741. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33742. {
  33743. front: {
  33744. height: math.unit(6 + 8/12, "feet"),
  33745. weight: math.unit(225, "lb"),
  33746. name: "Front",
  33747. image: {
  33748. source: "./media/characters/rhys-londe/front.svg",
  33749. extra: 2258/2141,
  33750. bottom: 188/2446
  33751. }
  33752. },
  33753. back: {
  33754. height: math.unit(6 + 8/12, "feet"),
  33755. weight: math.unit(225, "lb"),
  33756. name: "Back",
  33757. image: {
  33758. source: "./media/characters/rhys-londe/back.svg",
  33759. extra: 2237/2137,
  33760. bottom: 63/2300
  33761. }
  33762. },
  33763. frontNsfw: {
  33764. height: math.unit(6 + 8/12, "feet"),
  33765. weight: math.unit(225, "lb"),
  33766. name: "Front (NSFW)",
  33767. image: {
  33768. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33769. extra: 2258/2141,
  33770. bottom: 188/2446
  33771. }
  33772. },
  33773. backNsfw: {
  33774. height: math.unit(6 + 8/12, "feet"),
  33775. weight: math.unit(225, "lb"),
  33776. name: "Back (NSFW)",
  33777. image: {
  33778. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33779. extra: 2237/2137,
  33780. bottom: 63/2300
  33781. }
  33782. },
  33783. dick: {
  33784. height: math.unit(30, "inches"),
  33785. name: "Dick",
  33786. image: {
  33787. source: "./media/characters/rhys-londe/dick.svg"
  33788. }
  33789. },
  33790. maw: {
  33791. height: math.unit(1.6, "feet"),
  33792. name: "Maw",
  33793. image: {
  33794. source: "./media/characters/rhys-londe/maw.svg"
  33795. }
  33796. },
  33797. },
  33798. [
  33799. {
  33800. name: "Normal",
  33801. height: math.unit(6 + 8/12, "feet"),
  33802. default: true
  33803. },
  33804. ]
  33805. ))
  33806. characterMakers.push(() => makeCharacter(
  33807. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33808. {
  33809. front: {
  33810. height: math.unit(3 + 10/12, "feet"),
  33811. weight: math.unit(90, "lb"),
  33812. name: "Front",
  33813. image: {
  33814. source: "./media/characters/taivas-ensim/front.svg",
  33815. extra: 1327/1216,
  33816. bottom: 96/1423
  33817. }
  33818. },
  33819. back: {
  33820. height: math.unit(3 + 10/12, "feet"),
  33821. weight: math.unit(90, "lb"),
  33822. name: "Back",
  33823. image: {
  33824. source: "./media/characters/taivas-ensim/back.svg",
  33825. extra: 1355/1247,
  33826. bottom: 11/1366
  33827. }
  33828. },
  33829. frontNsfw: {
  33830. height: math.unit(3 + 10/12, "feet"),
  33831. weight: math.unit(90, "lb"),
  33832. name: "Front (NSFW)",
  33833. image: {
  33834. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33835. extra: 1327/1216,
  33836. bottom: 96/1423
  33837. }
  33838. },
  33839. backNsfw: {
  33840. height: math.unit(3 + 10/12, "feet"),
  33841. weight: math.unit(90, "lb"),
  33842. name: "Back (NSFW)",
  33843. image: {
  33844. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33845. extra: 1355/1247,
  33846. bottom: 11/1366
  33847. }
  33848. },
  33849. },
  33850. [
  33851. {
  33852. name: "Normal",
  33853. height: math.unit(3 + 10/12, "feet"),
  33854. default: true
  33855. },
  33856. ]
  33857. ))
  33858. characterMakers.push(() => makeCharacter(
  33859. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33860. {
  33861. front: {
  33862. height: math.unit(9 + 6/12, "feet"),
  33863. weight: math.unit(940, "lb"),
  33864. name: "Front",
  33865. image: {
  33866. source: "./media/characters/byliss/front.svg",
  33867. extra: 1327/1290,
  33868. bottom: 82/1409
  33869. }
  33870. },
  33871. back: {
  33872. height: math.unit(9 + 6/12, "feet"),
  33873. weight: math.unit(940, "lb"),
  33874. name: "Back",
  33875. image: {
  33876. source: "./media/characters/byliss/back.svg",
  33877. extra: 1376/1349,
  33878. bottom: 9/1385
  33879. }
  33880. },
  33881. frontNsfw: {
  33882. height: math.unit(9 + 6/12, "feet"),
  33883. weight: math.unit(940, "lb"),
  33884. name: "Front (NSFW)",
  33885. image: {
  33886. source: "./media/characters/byliss/front-nsfw.svg",
  33887. extra: 1327/1290,
  33888. bottom: 82/1409
  33889. }
  33890. },
  33891. backNsfw: {
  33892. height: math.unit(9 + 6/12, "feet"),
  33893. weight: math.unit(940, "lb"),
  33894. name: "Back (NSFW)",
  33895. image: {
  33896. source: "./media/characters/byliss/back-nsfw.svg",
  33897. extra: 1376/1349,
  33898. bottom: 9/1385
  33899. }
  33900. },
  33901. },
  33902. [
  33903. {
  33904. name: "Normal",
  33905. height: math.unit(9 + 6/12, "feet"),
  33906. default: true
  33907. },
  33908. ]
  33909. ))
  33910. characterMakers.push(() => makeCharacter(
  33911. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33912. {
  33913. front: {
  33914. height: math.unit(5 + 2/12, "feet"),
  33915. weight: math.unit(200, "lb"),
  33916. name: "Front",
  33917. image: {
  33918. source: "./media/characters/noraly/front.svg",
  33919. extra: 4985/4773,
  33920. bottom: 150/5135
  33921. }
  33922. },
  33923. full: {
  33924. height: math.unit(5 + 2/12, "feet"),
  33925. weight: math.unit(164, "lb"),
  33926. name: "Full",
  33927. image: {
  33928. source: "./media/characters/noraly/full.svg",
  33929. extra: 1114/1059,
  33930. bottom: 35/1149
  33931. }
  33932. },
  33933. fuller: {
  33934. height: math.unit(5 + 2/12, "feet"),
  33935. weight: math.unit(230, "lb"),
  33936. name: "Fuller",
  33937. image: {
  33938. source: "./media/characters/noraly/fuller.svg",
  33939. extra: 1114/1059,
  33940. bottom: 35/1149
  33941. }
  33942. },
  33943. fullest: {
  33944. height: math.unit(5 + 2/12, "feet"),
  33945. weight: math.unit(300, "lb"),
  33946. name: "Fullest",
  33947. image: {
  33948. source: "./media/characters/noraly/fullest.svg",
  33949. extra: 1114/1059,
  33950. bottom: 35/1149
  33951. }
  33952. },
  33953. },
  33954. [
  33955. {
  33956. name: "Normal",
  33957. height: math.unit(5 + 2/12, "feet"),
  33958. default: true
  33959. },
  33960. ]
  33961. ))
  33962. characterMakers.push(() => makeCharacter(
  33963. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33964. {
  33965. front: {
  33966. height: math.unit(5 + 2/12, "feet"),
  33967. weight: math.unit(210, "lb"),
  33968. name: "Front",
  33969. image: {
  33970. source: "./media/characters/pera/front.svg",
  33971. extra: 1560/1531,
  33972. bottom: 165/1725
  33973. }
  33974. },
  33975. back: {
  33976. height: math.unit(5 + 2/12, "feet"),
  33977. weight: math.unit(210, "lb"),
  33978. name: "Back",
  33979. image: {
  33980. source: "./media/characters/pera/back.svg",
  33981. extra: 1523/1493,
  33982. bottom: 152/1675
  33983. }
  33984. },
  33985. dick: {
  33986. height: math.unit(2.4, "feet"),
  33987. name: "Dick",
  33988. image: {
  33989. source: "./media/characters/pera/dick.svg"
  33990. }
  33991. },
  33992. },
  33993. [
  33994. {
  33995. name: "Normal",
  33996. height: math.unit(5 + 2/12, "feet"),
  33997. default: true
  33998. },
  33999. ]
  34000. ))
  34001. characterMakers.push(() => makeCharacter(
  34002. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34003. {
  34004. front: {
  34005. height: math.unit(12, "feet"),
  34006. weight: math.unit(3200, "lb"),
  34007. name: "Front",
  34008. image: {
  34009. source: "./media/characters/julian/front.svg",
  34010. extra: 2962/2701,
  34011. bottom: 184/3146
  34012. }
  34013. },
  34014. maw: {
  34015. height: math.unit(5.35, "feet"),
  34016. name: "Maw",
  34017. image: {
  34018. source: "./media/characters/julian/maw.svg"
  34019. }
  34020. },
  34021. paw: {
  34022. height: math.unit(3.07, "feet"),
  34023. name: "Paw",
  34024. image: {
  34025. source: "./media/characters/julian/paw.svg"
  34026. }
  34027. },
  34028. },
  34029. [
  34030. {
  34031. name: "Default",
  34032. height: math.unit(12, "feet"),
  34033. default: true
  34034. },
  34035. {
  34036. name: "Big",
  34037. height: math.unit(50, "feet")
  34038. },
  34039. {
  34040. name: "Really Big",
  34041. height: math.unit(1, "mile")
  34042. },
  34043. {
  34044. name: "Extremely Big",
  34045. height: math.unit(100, "miles")
  34046. },
  34047. {
  34048. name: "Planet Hugger",
  34049. height: math.unit(200, "megameters")
  34050. },
  34051. {
  34052. name: "Unreasonably Big",
  34053. height: math.unit(1e300, "meters")
  34054. },
  34055. ]
  34056. ))
  34057. characterMakers.push(() => makeCharacter(
  34058. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34059. {
  34060. solgooleo: {
  34061. height: math.unit(4, "meters"),
  34062. weight: math.unit(6000*1.5, "kg"),
  34063. volume: math.unit(6000, "liters"),
  34064. name: "Solgooleo",
  34065. image: {
  34066. source: "./media/characters/pi/solgooleo.svg",
  34067. extra: 388/331,
  34068. bottom: 29/417
  34069. }
  34070. },
  34071. },
  34072. [
  34073. {
  34074. name: "Normal",
  34075. height: math.unit(4, "meters"),
  34076. default: true
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34082. {
  34083. front: {
  34084. height: math.unit(8, "feet"),
  34085. weight: math.unit(4, "tons"),
  34086. name: "Front",
  34087. image: {
  34088. source: "./media/characters/shaun/front.svg",
  34089. extra: 503/495,
  34090. bottom: 20/523
  34091. }
  34092. },
  34093. back: {
  34094. height: math.unit(8, "feet"),
  34095. weight: math.unit(4, "tons"),
  34096. name: "Back",
  34097. image: {
  34098. source: "./media/characters/shaun/back.svg",
  34099. extra: 487/480,
  34100. bottom: 20/507
  34101. }
  34102. },
  34103. },
  34104. [
  34105. {
  34106. name: "Lorg",
  34107. height: math.unit(8, "feet"),
  34108. default: true
  34109. },
  34110. ]
  34111. ))
  34112. characterMakers.push(() => makeCharacter(
  34113. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34114. {
  34115. frontAnthro: {
  34116. height: math.unit(7, "feet"),
  34117. name: "Front",
  34118. image: {
  34119. source: "./media/characters/sini/front-anthro.svg",
  34120. extra: 726/678,
  34121. bottom: 35/761
  34122. },
  34123. form: "anthro",
  34124. default: true
  34125. },
  34126. backAnthro: {
  34127. height: math.unit(7, "feet"),
  34128. name: "Back",
  34129. image: {
  34130. source: "./media/characters/sini/back-anthro.svg",
  34131. extra: 743/701,
  34132. bottom: 12/755
  34133. },
  34134. form: "anthro",
  34135. },
  34136. frontAnthroNsfw: {
  34137. height: math.unit(7, "feet"),
  34138. name: "Front (NSFW)",
  34139. image: {
  34140. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34141. extra: 726/678,
  34142. bottom: 35/761
  34143. },
  34144. form: "anthro"
  34145. },
  34146. backAnthroNsfw: {
  34147. height: math.unit(7, "feet"),
  34148. name: "Back (NSFW)",
  34149. image: {
  34150. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34151. extra: 743/701,
  34152. bottom: 12/755
  34153. },
  34154. form: "anthro",
  34155. },
  34156. mawAnthro: {
  34157. height: math.unit(2.14, "feet"),
  34158. name: "Maw",
  34159. image: {
  34160. source: "./media/characters/sini/maw-anthro.svg"
  34161. },
  34162. form: "anthro"
  34163. },
  34164. dick: {
  34165. height: math.unit(1.45, "feet"),
  34166. name: "Dick",
  34167. image: {
  34168. source: "./media/characters/sini/dick-anthro.svg"
  34169. },
  34170. form: "anthro"
  34171. },
  34172. feral: {
  34173. height: math.unit(16, "feet"),
  34174. name: "Feral",
  34175. image: {
  34176. source: "./media/characters/sini/feral.svg",
  34177. extra: 814/605,
  34178. bottom: 11/825
  34179. },
  34180. form: "feral",
  34181. default: true
  34182. },
  34183. feralNsfw: {
  34184. height: math.unit(16, "feet"),
  34185. name: "Feral (NSFW)",
  34186. image: {
  34187. source: "./media/characters/sini/feral-nsfw.svg",
  34188. extra: 814/605,
  34189. bottom: 11/825
  34190. },
  34191. form: "feral"
  34192. },
  34193. mawFeral: {
  34194. height: math.unit(5.66, "feet"),
  34195. name: "Maw",
  34196. image: {
  34197. source: "./media/characters/sini/maw-feral.svg"
  34198. },
  34199. form: "feral",
  34200. },
  34201. pawFeral: {
  34202. height: math.unit(5.17, "feet"),
  34203. name: "Paw",
  34204. image: {
  34205. source: "./media/characters/sini/paw-feral.svg"
  34206. },
  34207. form: "feral",
  34208. },
  34209. rumpFeral: {
  34210. height: math.unit(13.11, "feet"),
  34211. name: "Rump",
  34212. image: {
  34213. source: "./media/characters/sini/rump-feral.svg"
  34214. },
  34215. form: "feral",
  34216. },
  34217. dickFeral: {
  34218. height: math.unit(1, "feet"),
  34219. name: "Dick",
  34220. image: {
  34221. source: "./media/characters/sini/dick-feral.svg"
  34222. },
  34223. form: "feral",
  34224. },
  34225. eyeFeral: {
  34226. height: math.unit(1.23, "feet"),
  34227. name: "Eye",
  34228. image: {
  34229. source: "./media/characters/sini/eye-feral.svg"
  34230. },
  34231. form: "feral",
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Normal",
  34237. height: math.unit(7, "feet"),
  34238. default: true,
  34239. form: "anthro"
  34240. },
  34241. {
  34242. name: "Normal",
  34243. height: math.unit(16, "feet"),
  34244. default: true,
  34245. form: "feral"
  34246. },
  34247. ],
  34248. {
  34249. "anthro": {
  34250. name: "Anthro",
  34251. default: true
  34252. },
  34253. "feral": {
  34254. name: "Feral",
  34255. }
  34256. }
  34257. ))
  34258. characterMakers.push(() => makeCharacter(
  34259. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34260. {
  34261. side: {
  34262. height: math.unit(47.2, "meters"),
  34263. weight: math.unit(10000, "tons"),
  34264. name: "Side",
  34265. image: {
  34266. source: "./media/characters/raylldo/side.svg",
  34267. extra: 2363/642,
  34268. bottom: 221/2584
  34269. }
  34270. },
  34271. top: {
  34272. height: math.unit(240, "meters"),
  34273. weight: math.unit(10000, "tons"),
  34274. name: "Top",
  34275. image: {
  34276. source: "./media/characters/raylldo/top.svg"
  34277. }
  34278. },
  34279. bottom: {
  34280. height: math.unit(240, "meters"),
  34281. weight: math.unit(10000, "tons"),
  34282. name: "Bottom",
  34283. image: {
  34284. source: "./media/characters/raylldo/bottom.svg"
  34285. }
  34286. },
  34287. head: {
  34288. height: math.unit(38.6, "meters"),
  34289. name: "Head",
  34290. image: {
  34291. source: "./media/characters/raylldo/head.svg",
  34292. extra: 1335/1112,
  34293. bottom: 0/1335
  34294. }
  34295. },
  34296. maw: {
  34297. height: math.unit(16.37, "meters"),
  34298. name: "Maw",
  34299. image: {
  34300. source: "./media/characters/raylldo/maw.svg",
  34301. extra: 883/660,
  34302. bottom: 0/883
  34303. },
  34304. extraAttributes: {
  34305. preyCapacity: {
  34306. name: "Capacity",
  34307. power: 3,
  34308. type: "volume",
  34309. base: math.unit(1000, "people")
  34310. },
  34311. tongueSize: {
  34312. name: "Tongue Size",
  34313. power: 2,
  34314. type: "area",
  34315. base: math.unit(21, "m^2")
  34316. }
  34317. }
  34318. },
  34319. forepaw: {
  34320. height: math.unit(18, "meters"),
  34321. name: "Forepaw",
  34322. image: {
  34323. source: "./media/characters/raylldo/forepaw.svg"
  34324. }
  34325. },
  34326. hindpaw: {
  34327. height: math.unit(23, "meters"),
  34328. name: "Hindpaw",
  34329. image: {
  34330. source: "./media/characters/raylldo/hindpaw.svg"
  34331. }
  34332. },
  34333. genitals: {
  34334. height: math.unit(42, "meters"),
  34335. name: "Genitals",
  34336. image: {
  34337. source: "./media/characters/raylldo/genitals.svg"
  34338. }
  34339. },
  34340. },
  34341. [
  34342. {
  34343. name: "Normal",
  34344. height: math.unit(47.2, "meters"),
  34345. default: true
  34346. },
  34347. ]
  34348. ))
  34349. characterMakers.push(() => makeCharacter(
  34350. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34351. {
  34352. anthroFront: {
  34353. height: math.unit(9, "feet"),
  34354. weight: math.unit(600, "lb"),
  34355. name: "Anthro (Front)",
  34356. image: {
  34357. source: "./media/characters/glint/anthro-front.svg",
  34358. extra: 1097/1018,
  34359. bottom: 28/1125
  34360. }
  34361. },
  34362. anthroBack: {
  34363. height: math.unit(9, "feet"),
  34364. weight: math.unit(600, "lb"),
  34365. name: "Anthro (Back)",
  34366. image: {
  34367. source: "./media/characters/glint/anthro-back.svg",
  34368. extra: 1154/997,
  34369. bottom: 36/1190
  34370. }
  34371. },
  34372. feral: {
  34373. height: math.unit(11, "feet"),
  34374. weight: math.unit(50000, "lb"),
  34375. name: "Feral",
  34376. image: {
  34377. source: "./media/characters/glint/feral.svg",
  34378. extra: 3035/1585,
  34379. bottom: 1169/4204
  34380. }
  34381. },
  34382. dickAnthro: {
  34383. height: math.unit(0.7, "meters"),
  34384. name: "Dick (Anthro)",
  34385. image: {
  34386. source: "./media/characters/glint/dick-anthro.svg"
  34387. }
  34388. },
  34389. dickFeral: {
  34390. height: math.unit(2.65, "meters"),
  34391. name: "Dick (Feral)",
  34392. image: {
  34393. source: "./media/characters/glint/dick-feral.svg"
  34394. }
  34395. },
  34396. slitHidden: {
  34397. height: math.unit(5.85, "meters"),
  34398. name: "Slit (Hidden)",
  34399. image: {
  34400. source: "./media/characters/glint/slit-hidden.svg"
  34401. }
  34402. },
  34403. slitErect: {
  34404. height: math.unit(5.85, "meters"),
  34405. name: "Slit (Erect)",
  34406. image: {
  34407. source: "./media/characters/glint/slit-erect.svg"
  34408. }
  34409. },
  34410. mawAnthro: {
  34411. height: math.unit(0.63, "meters"),
  34412. name: "Maw (Anthro)",
  34413. image: {
  34414. source: "./media/characters/glint/maw.svg"
  34415. }
  34416. },
  34417. mawFeral: {
  34418. height: math.unit(2.89, "meters"),
  34419. name: "Maw (Feral)",
  34420. image: {
  34421. source: "./media/characters/glint/maw.svg"
  34422. }
  34423. },
  34424. },
  34425. [
  34426. {
  34427. name: "Normal",
  34428. height: math.unit(9, "feet"),
  34429. default: true
  34430. },
  34431. ]
  34432. ))
  34433. characterMakers.push(() => makeCharacter(
  34434. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34435. {
  34436. side: {
  34437. height: math.unit(15, "feet"),
  34438. weight: math.unit(5000, "kg"),
  34439. name: "Side",
  34440. image: {
  34441. source: "./media/characters/kairne/side.svg",
  34442. extra: 979/811,
  34443. bottom: 13/992
  34444. }
  34445. },
  34446. front: {
  34447. height: math.unit(15, "feet"),
  34448. weight: math.unit(5000, "kg"),
  34449. name: "Front",
  34450. image: {
  34451. source: "./media/characters/kairne/front.svg",
  34452. extra: 908/814,
  34453. bottom: 26/934
  34454. }
  34455. },
  34456. sideNsfw: {
  34457. height: math.unit(15, "feet"),
  34458. weight: math.unit(5000, "kg"),
  34459. name: "Side (NSFW)",
  34460. image: {
  34461. source: "./media/characters/kairne/side-nsfw.svg",
  34462. extra: 979/811,
  34463. bottom: 13/992
  34464. }
  34465. },
  34466. frontNsfw: {
  34467. height: math.unit(15, "feet"),
  34468. weight: math.unit(5000, "kg"),
  34469. name: "Front (NSFW)",
  34470. image: {
  34471. source: "./media/characters/kairne/front-nsfw.svg",
  34472. extra: 908/814,
  34473. bottom: 26/934
  34474. }
  34475. },
  34476. dickCaged: {
  34477. height: math.unit(0.65, "meters"),
  34478. name: "Dick-caged",
  34479. image: {
  34480. source: "./media/characters/kairne/dick-caged.svg"
  34481. }
  34482. },
  34483. dick: {
  34484. height: math.unit(0.79, "meters"),
  34485. name: "Dick",
  34486. image: {
  34487. source: "./media/characters/kairne/dick.svg"
  34488. }
  34489. },
  34490. genitals: {
  34491. height: math.unit(1.29, "meters"),
  34492. name: "Genitals",
  34493. image: {
  34494. source: "./media/characters/kairne/genitals.svg"
  34495. }
  34496. },
  34497. maw: {
  34498. height: math.unit(1.73, "meters"),
  34499. name: "Maw",
  34500. image: {
  34501. source: "./media/characters/kairne/maw.svg"
  34502. }
  34503. },
  34504. },
  34505. [
  34506. {
  34507. name: "Normal",
  34508. height: math.unit(15, "feet"),
  34509. default: true
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34515. {
  34516. front: {
  34517. height: math.unit(5 + 8/12, "feet"),
  34518. weight: math.unit(139, "lb"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/biscuit-jackal/front.svg",
  34522. extra: 2106/1961,
  34523. bottom: 58/2164
  34524. }
  34525. },
  34526. back: {
  34527. height: math.unit(5 + 8/12, "feet"),
  34528. weight: math.unit(139, "lb"),
  34529. name: "Back",
  34530. image: {
  34531. source: "./media/characters/biscuit-jackal/back.svg",
  34532. extra: 2132/1976,
  34533. bottom: 57/2189
  34534. }
  34535. },
  34536. werejackal: {
  34537. height: math.unit(6 + 3/12, "feet"),
  34538. weight: math.unit(188, "lb"),
  34539. name: "Werejackal",
  34540. image: {
  34541. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34542. extra: 2373/2178,
  34543. bottom: 53/2426
  34544. }
  34545. },
  34546. },
  34547. [
  34548. {
  34549. name: "Normal",
  34550. height: math.unit(5 + 8/12, "feet"),
  34551. default: true
  34552. },
  34553. ]
  34554. ))
  34555. characterMakers.push(() => makeCharacter(
  34556. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34557. {
  34558. front: {
  34559. height: math.unit(140, "cm"),
  34560. weight: math.unit(45, "kg"),
  34561. name: "Front",
  34562. image: {
  34563. source: "./media/characters/tayra-white/front.svg",
  34564. extra: 2229/2192,
  34565. bottom: 75/2304
  34566. }
  34567. },
  34568. },
  34569. [
  34570. {
  34571. name: "Normal",
  34572. height: math.unit(140, "cm"),
  34573. default: true
  34574. },
  34575. ]
  34576. ))
  34577. characterMakers.push(() => makeCharacter(
  34578. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34579. {
  34580. front: {
  34581. height: math.unit(4 + 5/12, "feet"),
  34582. name: "Front",
  34583. image: {
  34584. source: "./media/characters/scoop/front.svg",
  34585. extra: 1257/1136,
  34586. bottom: 69/1326
  34587. }
  34588. },
  34589. back: {
  34590. height: math.unit(4 + 5/12, "feet"),
  34591. name: "Back",
  34592. image: {
  34593. source: "./media/characters/scoop/back.svg",
  34594. extra: 1321/1152,
  34595. bottom: 32/1353
  34596. }
  34597. },
  34598. maw: {
  34599. height: math.unit(0.68, "feet"),
  34600. name: "Maw",
  34601. image: {
  34602. source: "./media/characters/scoop/maw.svg"
  34603. }
  34604. },
  34605. },
  34606. [
  34607. {
  34608. name: "Really Small",
  34609. height: math.unit(1, "mm")
  34610. },
  34611. {
  34612. name: "Micro",
  34613. height: math.unit(1, "inch")
  34614. },
  34615. {
  34616. name: "Normal",
  34617. height: math.unit(4 + 5/12, "feet"),
  34618. default: true
  34619. },
  34620. {
  34621. name: "Macro",
  34622. height: math.unit(200, "feet")
  34623. },
  34624. {
  34625. name: "Megamacro",
  34626. height: math.unit(3240, "feet")
  34627. },
  34628. {
  34629. name: "Teramacro",
  34630. height: math.unit(2500, "miles")
  34631. },
  34632. ]
  34633. ))
  34634. characterMakers.push(() => makeCharacter(
  34635. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34636. {
  34637. front: {
  34638. height: math.unit(15 + 7/12, "feet"),
  34639. weight: math.unit(1150, "tons"),
  34640. name: "Front",
  34641. image: {
  34642. source: "./media/characters/saphinara/front.svg",
  34643. extra: 1837/1643,
  34644. bottom: 84/1921
  34645. },
  34646. form: "normal",
  34647. default: true
  34648. },
  34649. side: {
  34650. height: math.unit(15 + 7/12, "feet"),
  34651. weight: math.unit(1150, "tons"),
  34652. name: "Side",
  34653. image: {
  34654. source: "./media/characters/saphinara/side.svg",
  34655. extra: 605/547,
  34656. bottom: 6/611
  34657. },
  34658. form: "normal"
  34659. },
  34660. back: {
  34661. height: math.unit(15 + 7/12, "feet"),
  34662. weight: math.unit(1150, "tons"),
  34663. name: "Back",
  34664. image: {
  34665. source: "./media/characters/saphinara/back.svg",
  34666. extra: 591/531,
  34667. bottom: 13/604
  34668. },
  34669. form: "normal"
  34670. },
  34671. frontTail: {
  34672. height: math.unit(15 + 7/12, "feet"),
  34673. weight: math.unit(1150, "tons"),
  34674. name: "Front (Full Tail)",
  34675. image: {
  34676. source: "./media/characters/saphinara/front-tail.svg",
  34677. extra: 2256/1630,
  34678. bottom: 261/2517
  34679. },
  34680. form: "normal"
  34681. },
  34682. insides: {
  34683. height: math.unit(11.92, "feet"),
  34684. name: "Insides",
  34685. image: {
  34686. source: "./media/characters/saphinara/insides.svg"
  34687. },
  34688. form: "normal"
  34689. },
  34690. head: {
  34691. height: math.unit(4.17, "feet"),
  34692. name: "Head",
  34693. image: {
  34694. source: "./media/characters/saphinara/head.svg"
  34695. },
  34696. form: "normal"
  34697. },
  34698. tongue: {
  34699. height: math.unit(4.60, "feet"),
  34700. name: "Tongue",
  34701. image: {
  34702. source: "./media/characters/saphinara/tongue.svg"
  34703. },
  34704. form: "normal"
  34705. },
  34706. headEnraged: {
  34707. height: math.unit(5.55, "feet"),
  34708. name: "Head (Enraged)",
  34709. image: {
  34710. source: "./media/characters/saphinara/head-enraged.svg"
  34711. },
  34712. form: "normal"
  34713. },
  34714. wings: {
  34715. height: math.unit(11.95, "feet"),
  34716. name: "Wings",
  34717. image: {
  34718. source: "./media/characters/saphinara/wings.svg"
  34719. },
  34720. form: "normal"
  34721. },
  34722. feathers: {
  34723. height: math.unit(8.92, "feet"),
  34724. name: "Feathers",
  34725. image: {
  34726. source: "./media/characters/saphinara/feathers.svg"
  34727. },
  34728. form: "normal"
  34729. },
  34730. shackles: {
  34731. height: math.unit(2, "feet"),
  34732. name: "Shackles",
  34733. image: {
  34734. source: "./media/characters/saphinara/shackles.svg"
  34735. },
  34736. form: "normal"
  34737. },
  34738. eyes: {
  34739. height: math.unit(1.331, "feet"),
  34740. name: "Eyes",
  34741. image: {
  34742. source: "./media/characters/saphinara/eyes.svg"
  34743. },
  34744. form: "normal"
  34745. },
  34746. eyesEnraged: {
  34747. height: math.unit(1.331, "feet"),
  34748. name: "Eyes (Enraged)",
  34749. image: {
  34750. source: "./media/characters/saphinara/eyes-enraged.svg"
  34751. },
  34752. form: "normal"
  34753. },
  34754. trueFormSide: {
  34755. height: math.unit(200, "feet"),
  34756. weight: math.unit(1e7, "tons"),
  34757. name: "Side",
  34758. image: {
  34759. source: "./media/characters/saphinara/true-form-side.svg",
  34760. extra: 1399/770,
  34761. bottom: 97/1496
  34762. },
  34763. form: "true-form",
  34764. default: true
  34765. },
  34766. trueFormMaw: {
  34767. height: math.unit(71.5, "feet"),
  34768. name: "Maw",
  34769. image: {
  34770. source: "./media/characters/saphinara/true-form-maw.svg",
  34771. extra: 2302/1453,
  34772. bottom: 0/2302
  34773. },
  34774. form: "true-form"
  34775. },
  34776. meowberusSide: {
  34777. height: math.unit(75, "feet"),
  34778. weight: math.unit(180000, "kg"),
  34779. preyCapacity: math.unit(50000, "people"),
  34780. name: "Side",
  34781. image: {
  34782. source: "./media/characters/saphinara/meowberus-side.svg",
  34783. extra: 1400/711,
  34784. bottom: 126/1526
  34785. },
  34786. form: "meowberus",
  34787. extraAttributes: {
  34788. "pawArea": {
  34789. name: "Paw Size",
  34790. power: 2,
  34791. type: "area",
  34792. base: math.unit(35, "m^2")
  34793. }
  34794. }
  34795. },
  34796. },
  34797. [
  34798. {
  34799. name: "Normal",
  34800. height: math.unit(15 + 7/12, "feet"),
  34801. default: true,
  34802. form: "normal"
  34803. },
  34804. {
  34805. name: "Angry",
  34806. height: math.unit(30 + 6/12, "feet"),
  34807. form: "normal"
  34808. },
  34809. {
  34810. name: "Enraged",
  34811. height: math.unit(102 + 1/12, "feet"),
  34812. form: "normal"
  34813. },
  34814. {
  34815. name: "True",
  34816. height: math.unit(200, "feet"),
  34817. default: true,
  34818. form: "true-form"
  34819. },
  34820. {
  34821. name: "Normal",
  34822. height: math.unit(75, "feet"),
  34823. default: true,
  34824. form: "meowberus"
  34825. },
  34826. ],
  34827. {
  34828. "normal": {
  34829. name: "Normal",
  34830. default: true
  34831. },
  34832. "true-form": {
  34833. name: "True Form"
  34834. },
  34835. "meowberus": {
  34836. name: "Meowberus",
  34837. },
  34838. }
  34839. ))
  34840. characterMakers.push(() => makeCharacter(
  34841. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34842. {
  34843. front: {
  34844. height: math.unit(6 + 8/12, "feet"),
  34845. weight: math.unit(300, "lb"),
  34846. name: "Front",
  34847. image: {
  34848. source: "./media/characters/jrain/front.svg",
  34849. extra: 3039/2865,
  34850. bottom: 399/3438
  34851. }
  34852. },
  34853. back: {
  34854. height: math.unit(6 + 8/12, "feet"),
  34855. weight: math.unit(300, "lb"),
  34856. name: "Back",
  34857. image: {
  34858. source: "./media/characters/jrain/back.svg",
  34859. extra: 3089/2938,
  34860. bottom: 172/3261
  34861. }
  34862. },
  34863. head: {
  34864. height: math.unit(2.14, "feet"),
  34865. name: "Head",
  34866. image: {
  34867. source: "./media/characters/jrain/head.svg"
  34868. }
  34869. },
  34870. maw: {
  34871. height: math.unit(1.77, "feet"),
  34872. name: "Maw",
  34873. image: {
  34874. source: "./media/characters/jrain/maw.svg"
  34875. }
  34876. },
  34877. leftHand: {
  34878. height: math.unit(1.1, "feet"),
  34879. name: "Left Hand",
  34880. image: {
  34881. source: "./media/characters/jrain/left-hand.svg"
  34882. }
  34883. },
  34884. rightHand: {
  34885. height: math.unit(1.1, "feet"),
  34886. name: "Right Hand",
  34887. image: {
  34888. source: "./media/characters/jrain/right-hand.svg"
  34889. }
  34890. },
  34891. eye: {
  34892. height: math.unit(0.35, "feet"),
  34893. name: "Eye",
  34894. image: {
  34895. source: "./media/characters/jrain/eye.svg"
  34896. }
  34897. },
  34898. },
  34899. [
  34900. {
  34901. name: "Normal",
  34902. height: math.unit(6 + 8/12, "feet"),
  34903. default: true
  34904. },
  34905. {
  34906. name: "Casually Large",
  34907. height: math.unit(25, "feet")
  34908. },
  34909. {
  34910. name: "Giant",
  34911. height: math.unit(100, "feet")
  34912. },
  34913. {
  34914. name: "Kaiju",
  34915. height: math.unit(300, "feet")
  34916. },
  34917. ]
  34918. ))
  34919. characterMakers.push(() => makeCharacter(
  34920. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34921. {
  34922. dragon: {
  34923. height: math.unit(5, "meters"),
  34924. name: "Dragon",
  34925. image: {
  34926. source: "./media/characters/sabrina/dragon.svg",
  34927. extra: 3670 / 2365,
  34928. bottom: 333 / 4003
  34929. }
  34930. },
  34931. gryphon: {
  34932. height: math.unit(3, "meters"),
  34933. name: "Gryphon",
  34934. image: {
  34935. source: "./media/characters/sabrina/gryphon.svg",
  34936. extra: 1576 / 945,
  34937. bottom: 71 / 1647
  34938. }
  34939. },
  34940. snake: {
  34941. height: math.unit(12, "meters"),
  34942. name: "Snake",
  34943. image: {
  34944. source: "./media/characters/sabrina/snake.svg",
  34945. extra: 1758 / 1320,
  34946. bottom: 186 / 1944
  34947. }
  34948. },
  34949. collar: {
  34950. height: math.unit(1.86, "meters"),
  34951. name: "Collar",
  34952. image: {
  34953. source: "./media/characters/sabrina/collar.svg"
  34954. }
  34955. },
  34956. eye: {
  34957. height: math.unit(0.53, "meters"),
  34958. name: "Eye",
  34959. image: {
  34960. source: "./media/characters/sabrina/eye.svg"
  34961. }
  34962. },
  34963. foot: {
  34964. height: math.unit(1.86, "meters"),
  34965. name: "Foot",
  34966. image: {
  34967. source: "./media/characters/sabrina/foot.svg"
  34968. }
  34969. },
  34970. hand: {
  34971. height: math.unit(1.32, "meters"),
  34972. name: "Hand",
  34973. image: {
  34974. source: "./media/characters/sabrina/hand.svg"
  34975. }
  34976. },
  34977. head: {
  34978. height: math.unit(2.44, "meters"),
  34979. name: "Head",
  34980. image: {
  34981. source: "./media/characters/sabrina/head.svg"
  34982. }
  34983. },
  34984. headAngry: {
  34985. height: math.unit(2.44, "meters"),
  34986. name: "Head (Angry))",
  34987. image: {
  34988. source: "./media/characters/sabrina/head-angry.svg"
  34989. }
  34990. },
  34991. maw: {
  34992. height: math.unit(1.65, "meters"),
  34993. name: "Maw",
  34994. image: {
  34995. source: "./media/characters/sabrina/maw.svg"
  34996. }
  34997. },
  34998. spikes: {
  34999. height: math.unit(1.69, "meters"),
  35000. name: "Spikes",
  35001. image: {
  35002. source: "./media/characters/sabrina/spikes.svg"
  35003. }
  35004. },
  35005. stomach: {
  35006. height: math.unit(1.15, "meters"),
  35007. name: "Stomach",
  35008. image: {
  35009. source: "./media/characters/sabrina/stomach.svg"
  35010. }
  35011. },
  35012. tongue: {
  35013. height: math.unit(1.27, "meters"),
  35014. name: "Tongue",
  35015. image: {
  35016. source: "./media/characters/sabrina/tongue.svg"
  35017. }
  35018. },
  35019. wingDorsal: {
  35020. height: math.unit(4.85, "meters"),
  35021. name: "Wing (Dorsal)",
  35022. image: {
  35023. source: "./media/characters/sabrina/wing-dorsal.svg"
  35024. }
  35025. },
  35026. wingVentral: {
  35027. height: math.unit(4.85, "meters"),
  35028. name: "Wing (Ventral)",
  35029. image: {
  35030. source: "./media/characters/sabrina/wing-ventral.svg"
  35031. }
  35032. },
  35033. },
  35034. [
  35035. {
  35036. name: "Normal",
  35037. height: math.unit(5, "meters"),
  35038. default: true
  35039. },
  35040. ]
  35041. ))
  35042. characterMakers.push(() => makeCharacter(
  35043. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35044. {
  35045. frontMaid: {
  35046. height: math.unit(5 + 5/12, "feet"),
  35047. weight: math.unit(130, "lb"),
  35048. name: "Front (Maid)",
  35049. image: {
  35050. source: "./media/characters/midnight-tales/front-maid.svg",
  35051. extra: 489/454,
  35052. bottom: 61/550
  35053. }
  35054. },
  35055. frontFormal: {
  35056. height: math.unit(5 + 5/12, "feet"),
  35057. weight: math.unit(130, "lb"),
  35058. name: "Front (Formal)",
  35059. image: {
  35060. source: "./media/characters/midnight-tales/front-formal.svg",
  35061. extra: 489/454,
  35062. bottom: 61/550
  35063. }
  35064. },
  35065. back: {
  35066. height: math.unit(5 + 5/12, "feet"),
  35067. weight: math.unit(130, "lb"),
  35068. name: "Back",
  35069. image: {
  35070. source: "./media/characters/midnight-tales/back.svg",
  35071. extra: 498/456,
  35072. bottom: 33/531
  35073. }
  35074. },
  35075. frontBeast: {
  35076. height: math.unit(40, "feet"),
  35077. weight: math.unit(64000, "lb"),
  35078. name: "Front (Beast)",
  35079. image: {
  35080. source: "./media/characters/midnight-tales/front-beast.svg",
  35081. extra: 927/860,
  35082. bottom: 53/980
  35083. }
  35084. },
  35085. backBeast: {
  35086. height: math.unit(40, "feet"),
  35087. weight: math.unit(64000, "lb"),
  35088. name: "Back (Beast)",
  35089. image: {
  35090. source: "./media/characters/midnight-tales/back-beast.svg",
  35091. extra: 929/855,
  35092. bottom: 16/945
  35093. }
  35094. },
  35095. footBeast: {
  35096. height: math.unit(6.7, "feet"),
  35097. name: "Foot (Beast)",
  35098. image: {
  35099. source: "./media/characters/midnight-tales/foot-beast.svg"
  35100. }
  35101. },
  35102. headBeast: {
  35103. height: math.unit(8, "feet"),
  35104. name: "Head (Beast)",
  35105. image: {
  35106. source: "./media/characters/midnight-tales/head-beast.svg"
  35107. }
  35108. },
  35109. },
  35110. [
  35111. {
  35112. name: "Normal",
  35113. height: math.unit(5 + 5 / 12, "feet"),
  35114. default: true
  35115. },
  35116. {
  35117. name: "Macro",
  35118. height: math.unit(25, "feet")
  35119. },
  35120. ]
  35121. ))
  35122. characterMakers.push(() => makeCharacter(
  35123. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35124. {
  35125. front: {
  35126. height: math.unit(5 + 10/12, "feet"),
  35127. name: "Front",
  35128. image: {
  35129. source: "./media/characters/argon/front.svg",
  35130. extra: 2009/1935,
  35131. bottom: 118/2127
  35132. }
  35133. },
  35134. back: {
  35135. height: math.unit(5 + 10/12, "feet"),
  35136. name: "Back",
  35137. image: {
  35138. source: "./media/characters/argon/back.svg",
  35139. extra: 2047/1992,
  35140. bottom: 20/2067
  35141. }
  35142. },
  35143. frontDressed: {
  35144. height: math.unit(5 + 10/12, "feet"),
  35145. name: "Front (Dressed)",
  35146. image: {
  35147. source: "./media/characters/argon/front-dressed.svg",
  35148. extra: 2009/1935,
  35149. bottom: 118/2127
  35150. }
  35151. },
  35152. },
  35153. [
  35154. {
  35155. name: "Normal",
  35156. height: math.unit(5 + 10/12, "feet"),
  35157. default: true
  35158. },
  35159. ]
  35160. ))
  35161. characterMakers.push(() => makeCharacter(
  35162. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35163. {
  35164. front: {
  35165. height: math.unit(8 + 6/12, "feet"),
  35166. weight: math.unit(1150, "lb"),
  35167. name: "Front",
  35168. image: {
  35169. source: "./media/characters/kichi/front.svg",
  35170. extra: 1267/1164,
  35171. bottom: 61/1328
  35172. }
  35173. },
  35174. back: {
  35175. height: math.unit(8 + 6/12, "feet"),
  35176. weight: math.unit(1150, "lb"),
  35177. name: "Back",
  35178. image: {
  35179. source: "./media/characters/kichi/back.svg",
  35180. extra: 1273/1166,
  35181. bottom: 33/1306
  35182. }
  35183. },
  35184. },
  35185. [
  35186. {
  35187. name: "Normal",
  35188. height: math.unit(8 + 6/12, "feet"),
  35189. default: true
  35190. },
  35191. ]
  35192. ))
  35193. characterMakers.push(() => makeCharacter(
  35194. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35195. {
  35196. front: {
  35197. height: math.unit(6, "feet"),
  35198. weight: math.unit(210, "lb"),
  35199. name: "Front",
  35200. image: {
  35201. source: "./media/characters/manetel-greyscale/front.svg",
  35202. extra: 350/312,
  35203. bottom: 8/358
  35204. }
  35205. },
  35206. },
  35207. [
  35208. {
  35209. name: "Micro",
  35210. height: math.unit(2, "inches")
  35211. },
  35212. {
  35213. name: "Normal",
  35214. height: math.unit(6, "feet"),
  35215. default: true
  35216. },
  35217. {
  35218. name: "Minimacro",
  35219. height: math.unit(17, "feet")
  35220. },
  35221. {
  35222. name: "Macro",
  35223. height: math.unit(117, "feet")
  35224. },
  35225. ]
  35226. ))
  35227. characterMakers.push(() => makeCharacter(
  35228. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35229. {
  35230. side: {
  35231. height: math.unit(5 + 1/12, "feet"),
  35232. weight: math.unit(418, "lb"),
  35233. name: "Side",
  35234. image: {
  35235. source: "./media/characters/softpurr/side.svg",
  35236. extra: 1993/1945,
  35237. bottom: 134/2127
  35238. }
  35239. },
  35240. front: {
  35241. height: math.unit(5 + 1/12, "feet"),
  35242. weight: math.unit(418, "lb"),
  35243. name: "Front",
  35244. image: {
  35245. source: "./media/characters/softpurr/front.svg",
  35246. extra: 1950/1856,
  35247. bottom: 174/2124
  35248. }
  35249. },
  35250. paw: {
  35251. height: math.unit(1, "feet"),
  35252. name: "Paw",
  35253. image: {
  35254. source: "./media/characters/softpurr/paw.svg"
  35255. }
  35256. },
  35257. },
  35258. [
  35259. {
  35260. name: "Normal",
  35261. height: math.unit(5 + 1/12, "feet"),
  35262. default: true
  35263. },
  35264. ]
  35265. ))
  35266. characterMakers.push(() => makeCharacter(
  35267. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35268. {
  35269. front: {
  35270. height: math.unit(260, "meters"),
  35271. name: "Front",
  35272. image: {
  35273. source: "./media/characters/anahita/front.svg",
  35274. extra: 665/635,
  35275. bottom: 89/754
  35276. }
  35277. },
  35278. },
  35279. [
  35280. {
  35281. name: "Macro",
  35282. height: math.unit(260, "meters"),
  35283. default: true
  35284. },
  35285. ]
  35286. ))
  35287. characterMakers.push(() => makeCharacter(
  35288. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35289. {
  35290. front: {
  35291. height: math.unit(4 + 10/12, "feet"),
  35292. weight: math.unit(160, "lb"),
  35293. name: "Front",
  35294. image: {
  35295. source: "./media/characters/chip-mouse/front.svg",
  35296. extra: 3528/3408,
  35297. bottom: 0/3528
  35298. }
  35299. },
  35300. frontNsfw: {
  35301. height: math.unit(4 + 10/12, "feet"),
  35302. weight: math.unit(160, "lb"),
  35303. name: "Front (NSFW)",
  35304. image: {
  35305. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35306. extra: 3528/3408,
  35307. bottom: 0/3528
  35308. }
  35309. },
  35310. },
  35311. [
  35312. {
  35313. name: "Normal",
  35314. height: math.unit(4 + 10/12, "feet"),
  35315. default: true
  35316. },
  35317. ]
  35318. ))
  35319. characterMakers.push(() => makeCharacter(
  35320. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35321. {
  35322. side: {
  35323. height: math.unit(10, "feet"),
  35324. weight: math.unit(14000, "lb"),
  35325. name: "Side",
  35326. image: {
  35327. source: "./media/characters/kremm/side.svg",
  35328. extra: 1390/1053,
  35329. bottom: 90/1480
  35330. }
  35331. },
  35332. gut: {
  35333. height: math.unit(5.8, "feet"),
  35334. name: "Gut",
  35335. image: {
  35336. source: "./media/characters/kremm/gut.svg"
  35337. }
  35338. },
  35339. ass: {
  35340. height: math.unit(6.1, "feet"),
  35341. name: "Ass",
  35342. image: {
  35343. source: "./media/characters/kremm/ass.svg"
  35344. }
  35345. },
  35346. jaws: {
  35347. height: math.unit(2.2, "feet"),
  35348. name: "Jaws",
  35349. image: {
  35350. source: "./media/characters/kremm/jaws.svg"
  35351. }
  35352. },
  35353. dick: {
  35354. height: math.unit(4.26, "feet"),
  35355. name: "Dick",
  35356. image: {
  35357. source: "./media/characters/kremm/dick.svg"
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(10, "feet"),
  35365. default: true
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35371. {
  35372. front: {
  35373. height: math.unit(30, "stories"),
  35374. name: "Front",
  35375. image: {
  35376. source: "./media/characters/kai/front.svg",
  35377. extra: 1892/1718,
  35378. bottom: 162/2054
  35379. }
  35380. },
  35381. },
  35382. [
  35383. {
  35384. name: "Macro",
  35385. height: math.unit(30, "stories"),
  35386. default: true
  35387. },
  35388. ]
  35389. ))
  35390. characterMakers.push(() => makeCharacter(
  35391. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35392. {
  35393. front: {
  35394. height: math.unit(6 + 4/12, "feet"),
  35395. weight: math.unit(145, "lb"),
  35396. name: "Front",
  35397. image: {
  35398. source: "./media/characters/sykes/front.svg",
  35399. extra: 1321 / 1187,
  35400. bottom: 66 / 1387
  35401. }
  35402. },
  35403. back: {
  35404. height: math.unit(6 + 4/12, "feet"),
  35405. weight: math.unit(145, "lb"),
  35406. name: "Back",
  35407. image: {
  35408. source: "./media/characters/sykes/back.svg",
  35409. extra: 1326/1181,
  35410. bottom: 31/1357
  35411. }
  35412. },
  35413. traditionalOutfit: {
  35414. height: math.unit(6 + 4/12, "feet"),
  35415. weight: math.unit(145, "lb"),
  35416. name: "Traditional Outfit",
  35417. image: {
  35418. source: "./media/characters/sykes/traditional-outfit.svg",
  35419. extra: 1321 / 1187,
  35420. bottom: 66 / 1387
  35421. }
  35422. },
  35423. adventureOutfit: {
  35424. height: math.unit(6 + 4/12, "feet"),
  35425. weight: math.unit(145, "lb"),
  35426. name: "Adventure Outfit",
  35427. image: {
  35428. source: "./media/characters/sykes/adventure-outfit.svg",
  35429. extra: 1321 / 1187,
  35430. bottom: 66 / 1387
  35431. }
  35432. },
  35433. handLeft: {
  35434. height: math.unit(0.9, "feet"),
  35435. name: "Hand (Left)",
  35436. image: {
  35437. source: "./media/characters/sykes/hand-left.svg"
  35438. }
  35439. },
  35440. handRight: {
  35441. height: math.unit(0.839, "feet"),
  35442. name: "Hand (Right)",
  35443. image: {
  35444. source: "./media/characters/sykes/hand-right.svg"
  35445. }
  35446. },
  35447. leftFoot: {
  35448. height: math.unit(1.2, "feet"),
  35449. name: "Foot (Left)",
  35450. image: {
  35451. source: "./media/characters/sykes/foot-left.svg"
  35452. }
  35453. },
  35454. rightFoot: {
  35455. height: math.unit(1.2, "feet"),
  35456. name: "Foot (Right)",
  35457. image: {
  35458. source: "./media/characters/sykes/foot-right.svg"
  35459. }
  35460. },
  35461. maw: {
  35462. height: math.unit(1.93, "feet"),
  35463. name: "Maw",
  35464. image: {
  35465. source: "./media/characters/sykes/maw.svg"
  35466. }
  35467. },
  35468. teeth: {
  35469. height: math.unit(0.51, "feet"),
  35470. name: "Teeth",
  35471. image: {
  35472. source: "./media/characters/sykes/teeth.svg"
  35473. }
  35474. },
  35475. tongue: {
  35476. height: math.unit(2.13, "feet"),
  35477. name: "Tongue",
  35478. image: {
  35479. source: "./media/characters/sykes/tongue.svg"
  35480. }
  35481. },
  35482. uvula: {
  35483. height: math.unit(0.16, "feet"),
  35484. name: "Uvula",
  35485. image: {
  35486. source: "./media/characters/sykes/uvula.svg"
  35487. }
  35488. },
  35489. collar: {
  35490. height: math.unit(0.287, "feet"),
  35491. name: "Collar",
  35492. image: {
  35493. source: "./media/characters/sykes/collar.svg"
  35494. }
  35495. },
  35496. tail: {
  35497. height: math.unit(3.8, "feet"),
  35498. name: "Tail",
  35499. image: {
  35500. source: "./media/characters/sykes/tail.svg"
  35501. }
  35502. },
  35503. },
  35504. [
  35505. {
  35506. name: "Shrunken",
  35507. height: math.unit(5, "inches")
  35508. },
  35509. {
  35510. name: "Normal",
  35511. height: math.unit(6 + 4 / 12, "feet"),
  35512. default: true
  35513. },
  35514. {
  35515. name: "Big",
  35516. height: math.unit(15, "feet")
  35517. },
  35518. ]
  35519. ))
  35520. characterMakers.push(() => makeCharacter(
  35521. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35522. {
  35523. front: {
  35524. height: math.unit(5 + 8/12, "feet"),
  35525. weight: math.unit(190, "lb"),
  35526. name: "Front",
  35527. image: {
  35528. source: "./media/characters/oven-otter/front.svg",
  35529. extra: 1809/1740,
  35530. bottom: 181/1990
  35531. }
  35532. },
  35533. back: {
  35534. height: math.unit(5 + 8/12, "feet"),
  35535. weight: math.unit(190, "lb"),
  35536. name: "Back",
  35537. image: {
  35538. source: "./media/characters/oven-otter/back.svg",
  35539. extra: 1709/1635,
  35540. bottom: 118/1827
  35541. }
  35542. },
  35543. hand: {
  35544. height: math.unit(1.07, "feet"),
  35545. name: "Hand",
  35546. image: {
  35547. source: "./media/characters/oven-otter/hand.svg"
  35548. }
  35549. },
  35550. beans: {
  35551. height: math.unit(1.74, "feet"),
  35552. name: "Beans",
  35553. image: {
  35554. source: "./media/characters/oven-otter/beans.svg"
  35555. }
  35556. },
  35557. },
  35558. [
  35559. {
  35560. name: "Micro",
  35561. height: math.unit(0.5, "inches")
  35562. },
  35563. {
  35564. name: "Normal",
  35565. height: math.unit(5 + 8/12, "feet"),
  35566. default: true
  35567. },
  35568. {
  35569. name: "Macro",
  35570. height: math.unit(250, "feet")
  35571. },
  35572. {
  35573. name: "Really High",
  35574. height: math.unit(420, "feet")
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35580. {
  35581. front: {
  35582. height: math.unit(5, "meters"),
  35583. weight: math.unit(292000000000000, "kg"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/devourer/front.svg",
  35587. extra: 1800/1733,
  35588. bottom: 211/2011
  35589. }
  35590. },
  35591. maw: {
  35592. height: math.unit(1.1, "meter"),
  35593. name: "Maw",
  35594. image: {
  35595. source: "./media/characters/devourer/maw.svg"
  35596. }
  35597. },
  35598. },
  35599. [
  35600. {
  35601. name: "Small",
  35602. height: math.unit(3, "meters")
  35603. },
  35604. {
  35605. name: "Large",
  35606. height: math.unit(5, "meters"),
  35607. default: true
  35608. },
  35609. ]
  35610. ))
  35611. characterMakers.push(() => makeCharacter(
  35612. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35613. {
  35614. front: {
  35615. height: math.unit(6, "feet"),
  35616. weight: math.unit(400, "lb"),
  35617. name: "Front",
  35618. image: {
  35619. source: "./media/characters/ellarby/front.svg",
  35620. extra: 1909/1763,
  35621. bottom: 80/1989
  35622. }
  35623. },
  35624. back: {
  35625. height: math.unit(6, "feet"),
  35626. weight: math.unit(400, "lb"),
  35627. name: "Back",
  35628. image: {
  35629. source: "./media/characters/ellarby/back.svg",
  35630. extra: 1914/1784,
  35631. bottom: 172/2086
  35632. }
  35633. },
  35634. },
  35635. [
  35636. {
  35637. name: "Mischief",
  35638. height: math.unit(18, "inches")
  35639. },
  35640. {
  35641. name: "Trouble",
  35642. height: math.unit(12, "feet")
  35643. },
  35644. {
  35645. name: "Havoc",
  35646. height: math.unit(200, "feet"),
  35647. default: true
  35648. },
  35649. {
  35650. name: "Pandemonium",
  35651. height: math.unit(1, "mile")
  35652. },
  35653. {
  35654. name: "Catastrophe",
  35655. height: math.unit(100, "miles")
  35656. },
  35657. ]
  35658. ))
  35659. characterMakers.push(() => makeCharacter(
  35660. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35661. {
  35662. front: {
  35663. height: math.unit(4.7, "meters"),
  35664. weight: math.unit(6500, "kg"),
  35665. name: "Front",
  35666. image: {
  35667. source: "./media/characters/vex/front.svg",
  35668. extra: 1288/1140,
  35669. bottom: 100/1388
  35670. }
  35671. },
  35672. },
  35673. [
  35674. {
  35675. name: "Normal",
  35676. height: math.unit(4.7, "meters"),
  35677. default: true
  35678. },
  35679. ]
  35680. ))
  35681. characterMakers.push(() => makeCharacter(
  35682. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35683. {
  35684. normal: {
  35685. height: math.unit(6, "feet"),
  35686. weight: math.unit(350, "lb"),
  35687. name: "Normal",
  35688. image: {
  35689. source: "./media/characters/teshy/normal.svg",
  35690. extra: 1795/1735,
  35691. bottom: 16/1811
  35692. }
  35693. },
  35694. monsterFront: {
  35695. height: math.unit(12, "feet"),
  35696. weight: math.unit(4700, "lb"),
  35697. name: "Monster (Front)",
  35698. image: {
  35699. source: "./media/characters/teshy/monster-front.svg",
  35700. extra: 2042/2034,
  35701. bottom: 128/2170
  35702. }
  35703. },
  35704. monsterSide: {
  35705. height: math.unit(12, "feet"),
  35706. weight: math.unit(4700, "lb"),
  35707. name: "Monster (Side)",
  35708. image: {
  35709. source: "./media/characters/teshy/monster-side.svg",
  35710. extra: 2067/2056,
  35711. bottom: 70/2137
  35712. }
  35713. },
  35714. monsterBack: {
  35715. height: math.unit(12, "feet"),
  35716. weight: math.unit(4700, "lb"),
  35717. name: "Monster (Back)",
  35718. image: {
  35719. source: "./media/characters/teshy/monster-back.svg",
  35720. extra: 1921/1914,
  35721. bottom: 171/2092
  35722. }
  35723. },
  35724. },
  35725. [
  35726. {
  35727. name: "Normal",
  35728. height: math.unit(6, "feet"),
  35729. default: true
  35730. },
  35731. ]
  35732. ))
  35733. characterMakers.push(() => makeCharacter(
  35734. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35735. {
  35736. front: {
  35737. height: math.unit(6, "feet"),
  35738. name: "Front",
  35739. image: {
  35740. source: "./media/characters/ramey/front.svg",
  35741. extra: 790/787,
  35742. bottom: 27/817
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Normal",
  35749. height: math.unit(6, "feet"),
  35750. default: true
  35751. },
  35752. ]
  35753. ))
  35754. characterMakers.push(() => makeCharacter(
  35755. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35756. {
  35757. front: {
  35758. height: math.unit(5 + 5/12, "feet"),
  35759. weight: math.unit(120, "lb"),
  35760. name: "Front",
  35761. image: {
  35762. source: "./media/characters/phirae/front.svg",
  35763. extra: 2491/2436,
  35764. bottom: 38/2529
  35765. }
  35766. },
  35767. },
  35768. [
  35769. {
  35770. name: "Normal",
  35771. height: math.unit(5 + 5/12, "feet"),
  35772. default: true
  35773. },
  35774. ]
  35775. ))
  35776. characterMakers.push(() => makeCharacter(
  35777. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35778. {
  35779. front: {
  35780. height: math.unit(5 + 3/12, "feet"),
  35781. name: "Front",
  35782. image: {
  35783. source: "./media/characters/stagglas/front.svg",
  35784. extra: 962/882,
  35785. bottom: 53/1015
  35786. }
  35787. },
  35788. feral: {
  35789. height: math.unit(335, "cm"),
  35790. name: "Feral",
  35791. image: {
  35792. source: "./media/characters/stagglas/feral.svg",
  35793. extra: 1732/1090,
  35794. bottom: 48/1780
  35795. }
  35796. },
  35797. },
  35798. [
  35799. {
  35800. name: "Normal",
  35801. height: math.unit(5 + 3/12, "feet"),
  35802. default: true
  35803. },
  35804. ]
  35805. ))
  35806. characterMakers.push(() => makeCharacter(
  35807. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35808. {
  35809. front: {
  35810. height: math.unit(5 + 4/12, "feet"),
  35811. weight: math.unit(145, "lb"),
  35812. name: "Front",
  35813. image: {
  35814. source: "./media/characters/starra/front.svg",
  35815. extra: 1790/1691,
  35816. bottom: 91/1881
  35817. }
  35818. },
  35819. },
  35820. [
  35821. {
  35822. name: "Normal",
  35823. height: math.unit(5 + 4/12, "feet"),
  35824. default: true
  35825. },
  35826. ]
  35827. ))
  35828. characterMakers.push(() => makeCharacter(
  35829. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35830. {
  35831. front: {
  35832. height: math.unit(2.2, "meters"),
  35833. name: "Front",
  35834. image: {
  35835. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35836. extra: 1194/1005,
  35837. bottom: 25/1219
  35838. }
  35839. },
  35840. },
  35841. [
  35842. {
  35843. name: "Normal",
  35844. height: math.unit(2.2, "meters"),
  35845. default: true
  35846. },
  35847. ]
  35848. ))
  35849. characterMakers.push(() => makeCharacter(
  35850. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35851. {
  35852. side: {
  35853. height: math.unit(8 + 2/12, "feet"),
  35854. weight: math.unit(1240, "lb"),
  35855. name: "Side",
  35856. image: {
  35857. source: "./media/characters/mika-valentine/side.svg",
  35858. extra: 2670/2501,
  35859. bottom: 250/2920
  35860. }
  35861. },
  35862. },
  35863. [
  35864. {
  35865. name: "Normal",
  35866. height: math.unit(8 + 2/12, "feet"),
  35867. default: true
  35868. },
  35869. ]
  35870. ))
  35871. characterMakers.push(() => makeCharacter(
  35872. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35873. {
  35874. front: {
  35875. height: math.unit(7 + 2/12, "feet"),
  35876. name: "Front",
  35877. image: {
  35878. source: "./media/characters/xoltol/front.svg",
  35879. extra: 2212/2124,
  35880. bottom: 84/2296
  35881. }
  35882. },
  35883. side: {
  35884. height: math.unit(7 + 2/12, "feet"),
  35885. name: "Side",
  35886. image: {
  35887. source: "./media/characters/xoltol/side.svg",
  35888. extra: 2273/2197,
  35889. bottom: 26/2299
  35890. }
  35891. },
  35892. hand: {
  35893. height: math.unit(2.5, "feet"),
  35894. name: "Hand",
  35895. image: {
  35896. source: "./media/characters/xoltol/hand.svg"
  35897. }
  35898. },
  35899. },
  35900. [
  35901. {
  35902. name: "Small-ish",
  35903. height: math.unit(5 + 11/12, "feet")
  35904. },
  35905. {
  35906. name: "Normal",
  35907. height: math.unit(7 + 2/12, "feet")
  35908. },
  35909. {
  35910. name: "\"Macro\"",
  35911. height: math.unit(14 + 9/12, "feet"),
  35912. default: true
  35913. },
  35914. {
  35915. name: "Alternate Height",
  35916. height: math.unit(20, "feet")
  35917. },
  35918. {
  35919. name: "Actually Macro",
  35920. height: math.unit(100, "feet")
  35921. },
  35922. ]
  35923. ))
  35924. characterMakers.push(() => makeCharacter(
  35925. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35926. {
  35927. front: {
  35928. height: math.unit(5 + 2/12, "feet"),
  35929. name: "Front",
  35930. image: {
  35931. source: "./media/characters/kotetsu-redwood/front.svg",
  35932. extra: 1053/942,
  35933. bottom: 60/1113
  35934. }
  35935. },
  35936. },
  35937. [
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(5 + 2/12, "feet"),
  35941. default: true
  35942. },
  35943. ]
  35944. ))
  35945. characterMakers.push(() => makeCharacter(
  35946. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35947. {
  35948. front: {
  35949. height: math.unit(2.4, "meters"),
  35950. weight: math.unit(125, "kg"),
  35951. name: "Front",
  35952. image: {
  35953. source: "./media/characters/lilith/front.svg",
  35954. extra: 1590/1513,
  35955. bottom: 203/1793
  35956. }
  35957. },
  35958. },
  35959. [
  35960. {
  35961. name: "Humanoid",
  35962. height: math.unit(2.4, "meters")
  35963. },
  35964. {
  35965. name: "Normal",
  35966. height: math.unit(6, "meters"),
  35967. default: true
  35968. },
  35969. {
  35970. name: "Largest",
  35971. height: math.unit(55, "meters")
  35972. },
  35973. ]
  35974. ))
  35975. characterMakers.push(() => makeCharacter(
  35976. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35977. {
  35978. front: {
  35979. height: math.unit(8 + 4/12, "feet"),
  35980. weight: math.unit(535, "lb"),
  35981. name: "Front",
  35982. image: {
  35983. source: "./media/characters/beh'kah-bolger/front.svg",
  35984. extra: 1660/1603,
  35985. bottom: 37/1697
  35986. }
  35987. },
  35988. },
  35989. [
  35990. {
  35991. name: "Normal",
  35992. height: math.unit(8 + 4/12, "feet"),
  35993. default: true
  35994. },
  35995. {
  35996. name: "Kaiju",
  35997. height: math.unit(250, "feet")
  35998. },
  35999. {
  36000. name: "Still Growing",
  36001. height: math.unit(10, "miles")
  36002. },
  36003. {
  36004. name: "Continental",
  36005. height: math.unit(5000, "miles")
  36006. },
  36007. {
  36008. name: "Final Form",
  36009. height: math.unit(2500000, "miles")
  36010. },
  36011. ]
  36012. ))
  36013. characterMakers.push(() => makeCharacter(
  36014. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36015. {
  36016. front: {
  36017. height: math.unit(7 + 2/12, "feet"),
  36018. weight: math.unit(230, "kg"),
  36019. name: "Front",
  36020. image: {
  36021. source: "./media/characters/tatyana-milewska/front.svg",
  36022. extra: 1199/1150,
  36023. bottom: 86/1285
  36024. }
  36025. },
  36026. },
  36027. [
  36028. {
  36029. name: "Normal",
  36030. height: math.unit(7 + 2/12, "feet"),
  36031. default: true
  36032. },
  36033. {
  36034. name: "Big",
  36035. height: math.unit(12, "feet")
  36036. },
  36037. {
  36038. name: "Minimacro",
  36039. height: math.unit(20, "feet")
  36040. },
  36041. {
  36042. name: "Macro",
  36043. height: math.unit(120, "feet")
  36044. },
  36045. ]
  36046. ))
  36047. characterMakers.push(() => makeCharacter(
  36048. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36049. {
  36050. front: {
  36051. height: math.unit(7 + 8/12, "feet"),
  36052. weight: math.unit(152, "kg"),
  36053. name: "Front",
  36054. image: {
  36055. source: "./media/characters/helen-arri/front.svg",
  36056. extra: 440/423,
  36057. bottom: 14/454
  36058. }
  36059. },
  36060. back: {
  36061. height: math.unit(7 + 8/12, "feet"),
  36062. weight: math.unit(152, "kg"),
  36063. name: "Back",
  36064. image: {
  36065. source: "./media/characters/helen-arri/back.svg",
  36066. extra: 443/426,
  36067. bottom: 8/451
  36068. }
  36069. },
  36070. },
  36071. [
  36072. {
  36073. name: "Normal",
  36074. height: math.unit(7 + 8/12, "feet"),
  36075. default: true
  36076. },
  36077. {
  36078. name: "Big",
  36079. height: math.unit(14, "feet")
  36080. },
  36081. {
  36082. name: "Minimacro",
  36083. height: math.unit(24, "feet")
  36084. },
  36085. {
  36086. name: "Macro",
  36087. height: math.unit(140, "feet")
  36088. },
  36089. ]
  36090. ))
  36091. characterMakers.push(() => makeCharacter(
  36092. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36093. {
  36094. front: {
  36095. height: math.unit(6, "meters"),
  36096. name: "Front",
  36097. image: {
  36098. source: "./media/characters/ehanu-rehu/front.svg",
  36099. extra: 1800/1800,
  36100. bottom: 59/1859
  36101. }
  36102. },
  36103. },
  36104. [
  36105. {
  36106. name: "Normal",
  36107. height: math.unit(6, "meters"),
  36108. default: true
  36109. },
  36110. ]
  36111. ))
  36112. characterMakers.push(() => makeCharacter(
  36113. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36114. {
  36115. front: {
  36116. height: math.unit(7 + 3/12, "feet"),
  36117. name: "Front",
  36118. image: {
  36119. source: "./media/characters/renholder/front.svg",
  36120. extra: 3096/2960,
  36121. bottom: 250/3346
  36122. }
  36123. },
  36124. },
  36125. [
  36126. {
  36127. name: "Normal Bat",
  36128. height: math.unit(7 + 3/12, "feet"),
  36129. default: true
  36130. },
  36131. {
  36132. name: "Slightly Tall Bat",
  36133. height: math.unit(100, "feet")
  36134. },
  36135. {
  36136. name: "Big Bat",
  36137. height: math.unit(1000, "feet")
  36138. },
  36139. {
  36140. name: "City-Sized Bat",
  36141. height: math.unit(200000, "feet")
  36142. },
  36143. {
  36144. name: "Bigger Bat",
  36145. height: math.unit(10000, "miles")
  36146. },
  36147. {
  36148. name: "Solar Sized Bat",
  36149. height: math.unit(100, "AU")
  36150. },
  36151. {
  36152. name: "Galactic Bat",
  36153. height: math.unit(200000, "lightyears")
  36154. },
  36155. {
  36156. name: "Universally Known Bat",
  36157. height: math.unit(1, "universe")
  36158. },
  36159. ]
  36160. ))
  36161. characterMakers.push(() => makeCharacter(
  36162. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36163. {
  36164. front: {
  36165. height: math.unit(6 + 11/12, "feet"),
  36166. weight: math.unit(250, "lb"),
  36167. name: "Front",
  36168. image: {
  36169. source: "./media/characters/cookiecat/front.svg",
  36170. extra: 893/827,
  36171. bottom: 14/907
  36172. }
  36173. },
  36174. },
  36175. [
  36176. {
  36177. name: "Micro",
  36178. height: math.unit(3, "inches")
  36179. },
  36180. {
  36181. name: "Normal",
  36182. height: math.unit(6 + 11/12, "feet"),
  36183. default: true
  36184. },
  36185. {
  36186. name: "Macro",
  36187. height: math.unit(100, "feet")
  36188. },
  36189. {
  36190. name: "Macro+",
  36191. height: math.unit(404, "feet")
  36192. },
  36193. {
  36194. name: "Megamacro",
  36195. height: math.unit(165, "miles")
  36196. },
  36197. {
  36198. name: "Planetary",
  36199. height: math.unit(4600, "miles")
  36200. },
  36201. ]
  36202. ))
  36203. characterMakers.push(() => makeCharacter(
  36204. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36205. {
  36206. front: {
  36207. height: math.unit(10 + 3/12, "feet"),
  36208. weight: math.unit(1500, "lb"),
  36209. name: "Front",
  36210. image: {
  36211. source: "./media/characters/tux-kusanagi/front.svg",
  36212. extra: 944/840,
  36213. bottom: 39/983
  36214. }
  36215. },
  36216. back: {
  36217. height: math.unit(10 + 3/12, "feet"),
  36218. weight: math.unit(1500, "lb"),
  36219. name: "Back",
  36220. image: {
  36221. source: "./media/characters/tux-kusanagi/back.svg",
  36222. extra: 941/842,
  36223. bottom: 28/969
  36224. }
  36225. },
  36226. rump: {
  36227. height: math.unit(5.25, "feet"),
  36228. name: "Rump",
  36229. image: {
  36230. source: "./media/characters/tux-kusanagi/rump.svg"
  36231. }
  36232. },
  36233. beak: {
  36234. height: math.unit(1.54, "feet"),
  36235. name: "Beak",
  36236. image: {
  36237. source: "./media/characters/tux-kusanagi/beak.svg"
  36238. }
  36239. },
  36240. },
  36241. [
  36242. {
  36243. name: "Normal",
  36244. height: math.unit(10 + 3/12, "feet"),
  36245. default: true
  36246. },
  36247. ]
  36248. ))
  36249. characterMakers.push(() => makeCharacter(
  36250. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36251. {
  36252. front: {
  36253. height: math.unit(58, "feet"),
  36254. weight: math.unit(200, "tons"),
  36255. name: "Front",
  36256. image: {
  36257. source: "./media/characters/uzarmazari/front.svg",
  36258. extra: 1575/1455,
  36259. bottom: 152/1727
  36260. }
  36261. },
  36262. back: {
  36263. height: math.unit(58, "feet"),
  36264. weight: math.unit(200, "tons"),
  36265. name: "Back",
  36266. image: {
  36267. source: "./media/characters/uzarmazari/back.svg",
  36268. extra: 1585/1510,
  36269. bottom: 157/1742
  36270. }
  36271. },
  36272. head: {
  36273. height: math.unit(26, "feet"),
  36274. name: "Head",
  36275. image: {
  36276. source: "./media/characters/uzarmazari/head.svg"
  36277. }
  36278. },
  36279. },
  36280. [
  36281. {
  36282. name: "Normal",
  36283. height: math.unit(58, "feet"),
  36284. default: true
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36290. {
  36291. side: {
  36292. height: math.unit(15, "feet"),
  36293. name: "Side",
  36294. image: {
  36295. source: "./media/characters/akitu/side.svg",
  36296. extra: 1421/1321,
  36297. bottom: 157/1578
  36298. }
  36299. },
  36300. front: {
  36301. height: math.unit(15, "feet"),
  36302. name: "Front",
  36303. image: {
  36304. source: "./media/characters/akitu/front.svg",
  36305. extra: 1435/1326,
  36306. bottom: 232/1667
  36307. }
  36308. },
  36309. },
  36310. [
  36311. {
  36312. name: "Normal",
  36313. height: math.unit(15, "feet"),
  36314. default: true
  36315. },
  36316. ]
  36317. ))
  36318. characterMakers.push(() => makeCharacter(
  36319. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36320. {
  36321. front: {
  36322. height: math.unit(10 + 8/12, "feet"),
  36323. name: "Front",
  36324. image: {
  36325. source: "./media/characters/azalie-croixland/front.svg",
  36326. extra: 1972/1856,
  36327. bottom: 31/2003
  36328. }
  36329. },
  36330. },
  36331. [
  36332. {
  36333. name: "Original Height",
  36334. height: math.unit(5 + 4/12, "feet")
  36335. },
  36336. {
  36337. name: "Normal Height",
  36338. height: math.unit(10 + 8/12, "feet"),
  36339. default: true
  36340. },
  36341. ]
  36342. ))
  36343. characterMakers.push(() => makeCharacter(
  36344. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36345. {
  36346. side: {
  36347. height: math.unit(7 + 1/12, "feet"),
  36348. weight: math.unit(245, "lb"),
  36349. name: "Side",
  36350. image: {
  36351. source: "./media/characters/kavus-kazian/side.svg",
  36352. extra: 349/342,
  36353. bottom: 15/364
  36354. }
  36355. },
  36356. },
  36357. [
  36358. {
  36359. name: "Normal",
  36360. height: math.unit(7 + 1/12, "feet"),
  36361. default: true
  36362. },
  36363. ]
  36364. ))
  36365. characterMakers.push(() => makeCharacter(
  36366. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36367. {
  36368. normalFront: {
  36369. height: math.unit(5 + 11/12, "feet"),
  36370. name: "Front",
  36371. image: {
  36372. source: "./media/characters/moonlight-rose/normal-front.svg",
  36373. extra: 1980/1825,
  36374. bottom: 18/1998
  36375. },
  36376. form: "normal",
  36377. default: true
  36378. },
  36379. normalBack: {
  36380. height: math.unit(5 + 11/12, "feet"),
  36381. name: "Back",
  36382. image: {
  36383. source: "./media/characters/moonlight-rose/normal-back.svg",
  36384. extra: 2010/1839,
  36385. bottom: 10/2020
  36386. },
  36387. form: "normal"
  36388. },
  36389. demonFront: {
  36390. height: math.unit(1.5, "earths"),
  36391. name: "Front",
  36392. image: {
  36393. source: "./media/characters/moonlight-rose/demon.svg",
  36394. extra: 1400/1294,
  36395. bottom: 45/1445
  36396. },
  36397. form: "demon",
  36398. default: true
  36399. },
  36400. terraFront: {
  36401. height: math.unit(1.5, "earths"),
  36402. name: "Front",
  36403. image: {
  36404. source: "./media/characters/moonlight-rose/terra.svg"
  36405. },
  36406. form: "terra",
  36407. default: true
  36408. },
  36409. jupiterFront: {
  36410. height: math.unit(69911*2, "km"),
  36411. name: "Front",
  36412. image: {
  36413. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36414. extra: 1367/1286,
  36415. bottom: 55/1422
  36416. },
  36417. form: "jupiter",
  36418. default: true
  36419. },
  36420. neptuneFront: {
  36421. height: math.unit(24622*2, "feet"),
  36422. name: "Front",
  36423. image: {
  36424. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36425. extra: 1851/1712,
  36426. bottom: 0/1851
  36427. },
  36428. form: "neptune",
  36429. default: true
  36430. },
  36431. },
  36432. [
  36433. {
  36434. name: "\"Natural\" Height",
  36435. height: math.unit(5 + 11/12, "feet"),
  36436. form: "normal"
  36437. },
  36438. {
  36439. name: "Smallest comfortable size",
  36440. height: math.unit(40, "meters"),
  36441. form: "normal"
  36442. },
  36443. {
  36444. name: "Common size",
  36445. height: math.unit(50, "km"),
  36446. form: "normal",
  36447. default: true
  36448. },
  36449. {
  36450. name: "Normal",
  36451. height: math.unit(1.5, "earths"),
  36452. form: "demon",
  36453. default: true
  36454. },
  36455. {
  36456. name: "Universal",
  36457. height: math.unit(15, "universes"),
  36458. form: "demon"
  36459. },
  36460. {
  36461. name: "Earth",
  36462. height: math.unit(1.5, "earths"),
  36463. form: "terra",
  36464. default: true
  36465. },
  36466. {
  36467. name: "Super Earth",
  36468. height: math.unit(67.5, "earths"),
  36469. form: "terra"
  36470. },
  36471. {
  36472. name: "Doesn't fit in a solar system...",
  36473. height: math.unit(1, "galaxy"),
  36474. form: "terra"
  36475. },
  36476. {
  36477. name: "Saturn",
  36478. height: math.unit(58232*2, "km"),
  36479. form: "jupiter"
  36480. },
  36481. {
  36482. name: "Jupiter",
  36483. height: math.unit(69911*2, "km"),
  36484. form: "jupiter",
  36485. default: true
  36486. },
  36487. {
  36488. name: "HD 100546 b",
  36489. height: math.unit(482938, "km"),
  36490. form: "jupiter"
  36491. },
  36492. {
  36493. name: "Enceladus",
  36494. height: math.unit(513*2, "km"),
  36495. form: "neptune"
  36496. },
  36497. {
  36498. name: "Europe",
  36499. height: math.unit(1560*2, "km"),
  36500. form: "neptune"
  36501. },
  36502. {
  36503. name: "Neptune",
  36504. height: math.unit(24622*2, "km"),
  36505. form: "neptune",
  36506. default: true
  36507. },
  36508. {
  36509. name: "CoRoT-9b",
  36510. height: math.unit(75067*2, "km"),
  36511. form: "neptune"
  36512. },
  36513. ],
  36514. {
  36515. "normal": {
  36516. name: "Normal",
  36517. default: true
  36518. },
  36519. "demon": {
  36520. name: "Demon"
  36521. },
  36522. "terra": {
  36523. name: "Terra"
  36524. },
  36525. "jupiter": {
  36526. name: "Jupiter"
  36527. },
  36528. "neptune": {
  36529. name: "Neptune"
  36530. }
  36531. }
  36532. ))
  36533. characterMakers.push(() => makeCharacter(
  36534. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36535. {
  36536. front: {
  36537. height: math.unit(16, "feet"),
  36538. weight: math.unit(610, "kg"),
  36539. name: "Front",
  36540. image: {
  36541. source: "./media/characters/huckle/front.svg",
  36542. extra: 1731/1625,
  36543. bottom: 33/1764
  36544. }
  36545. },
  36546. back: {
  36547. height: math.unit(16, "feet"),
  36548. weight: math.unit(610, "kg"),
  36549. name: "Back",
  36550. image: {
  36551. source: "./media/characters/huckle/back.svg",
  36552. extra: 1738/1651,
  36553. bottom: 37/1775
  36554. }
  36555. },
  36556. laughing: {
  36557. height: math.unit(3.75, "feet"),
  36558. name: "Laughing",
  36559. image: {
  36560. source: "./media/characters/huckle/laughing.svg"
  36561. }
  36562. },
  36563. angry: {
  36564. height: math.unit(4.15, "feet"),
  36565. name: "Angry",
  36566. image: {
  36567. source: "./media/characters/huckle/angry.svg"
  36568. }
  36569. },
  36570. },
  36571. [
  36572. {
  36573. name: "Normal",
  36574. height: math.unit(16, "feet"),
  36575. default: true
  36576. },
  36577. {
  36578. name: "Mini Macro",
  36579. height: math.unit(463, "feet")
  36580. },
  36581. {
  36582. name: "Macro",
  36583. height: math.unit(1680, "meters")
  36584. },
  36585. {
  36586. name: "Mega Macro",
  36587. height: math.unit(175, "km")
  36588. },
  36589. {
  36590. name: "Terra Macro",
  36591. height: math.unit(32, "gigameters")
  36592. },
  36593. {
  36594. name: "Multiverse+",
  36595. height: math.unit(2.56e23, "yottameters")
  36596. },
  36597. ]
  36598. ))
  36599. characterMakers.push(() => makeCharacter(
  36600. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36601. {
  36602. front: {
  36603. height: math.unit(6 + 9/12, "feet"),
  36604. weight: math.unit(280, "lb"),
  36605. name: "Front",
  36606. image: {
  36607. source: "./media/characters/candy/front.svg",
  36608. extra: 234/217,
  36609. bottom: 11/245
  36610. }
  36611. },
  36612. },
  36613. [
  36614. {
  36615. name: "Really Small",
  36616. height: math.unit(0.1, "nm")
  36617. },
  36618. {
  36619. name: "Micro",
  36620. height: math.unit(2, "inches")
  36621. },
  36622. {
  36623. name: "Normal",
  36624. height: math.unit(6 + 9/12, "feet"),
  36625. default: true
  36626. },
  36627. {
  36628. name: "Small Macro",
  36629. height: math.unit(69, "feet")
  36630. },
  36631. {
  36632. name: "Macro",
  36633. height: math.unit(160, "feet")
  36634. },
  36635. {
  36636. name: "Megamacro",
  36637. height: math.unit(22000, "miles")
  36638. },
  36639. {
  36640. name: "Gigamacro",
  36641. height: math.unit(50000, "miles")
  36642. },
  36643. ]
  36644. ))
  36645. characterMakers.push(() => makeCharacter(
  36646. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36647. {
  36648. front: {
  36649. height: math.unit(4, "feet"),
  36650. weight: math.unit(90, "lb"),
  36651. name: "Front",
  36652. image: {
  36653. source: "./media/characters/joey-mcdonald/front.svg",
  36654. extra: 1059/852,
  36655. bottom: 33/1092
  36656. }
  36657. },
  36658. back: {
  36659. height: math.unit(4, "feet"),
  36660. weight: math.unit(90, "lb"),
  36661. name: "Back",
  36662. image: {
  36663. source: "./media/characters/joey-mcdonald/back.svg",
  36664. extra: 1077/879,
  36665. bottom: 5/1082
  36666. }
  36667. },
  36668. frontKobold: {
  36669. height: math.unit(4, "feet"),
  36670. weight: math.unit(100, "lb"),
  36671. name: "Front-kobold",
  36672. image: {
  36673. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36674. extra: 1480/1367,
  36675. bottom: 0/1480
  36676. }
  36677. },
  36678. backKobold: {
  36679. height: math.unit(4, "feet"),
  36680. weight: math.unit(100, "lb"),
  36681. name: "Back-kobold",
  36682. image: {
  36683. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36684. extra: 1449/1361,
  36685. bottom: 0/1449
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Normal",
  36692. height: math.unit(4, "feet"),
  36693. default: true
  36694. },
  36695. ]
  36696. ))
  36697. characterMakers.push(() => makeCharacter(
  36698. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36699. {
  36700. front: {
  36701. height: math.unit(12 + 6/12, "feet"),
  36702. name: "Front",
  36703. image: {
  36704. source: "./media/characters/kass-lockheed/front.svg",
  36705. extra: 354/343,
  36706. bottom: 9/363
  36707. }
  36708. },
  36709. back: {
  36710. height: math.unit(12 + 6/12, "feet"),
  36711. name: "Back",
  36712. image: {
  36713. source: "./media/characters/kass-lockheed/back.svg",
  36714. extra: 364/352,
  36715. bottom: 3/367
  36716. }
  36717. },
  36718. dick: {
  36719. height: math.unit(3.12, "feet"),
  36720. name: "Dick",
  36721. image: {
  36722. source: "./media/characters/kass-lockheed/dick.svg"
  36723. }
  36724. },
  36725. head: {
  36726. height: math.unit(2.6, "feet"),
  36727. name: "Head",
  36728. image: {
  36729. source: "./media/characters/kass-lockheed/head.svg"
  36730. }
  36731. },
  36732. bleh: {
  36733. height: math.unit(2.85, "feet"),
  36734. name: "Bleh",
  36735. image: {
  36736. source: "./media/characters/kass-lockheed/bleh.svg"
  36737. }
  36738. },
  36739. smug: {
  36740. height: math.unit(2.85, "feet"),
  36741. name: "Smug",
  36742. image: {
  36743. source: "./media/characters/kass-lockheed/smug.svg"
  36744. }
  36745. },
  36746. },
  36747. [
  36748. {
  36749. name: "Normal",
  36750. height: math.unit(12 + 6/12, "feet"),
  36751. default: true
  36752. },
  36753. ]
  36754. ))
  36755. characterMakers.push(() => makeCharacter(
  36756. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36757. {
  36758. front: {
  36759. height: math.unit(6 + 2/12, "feet"),
  36760. name: "Front",
  36761. image: {
  36762. source: "./media/characters/taylor/front.svg",
  36763. extra: 639/495,
  36764. bottom: 12/651
  36765. }
  36766. },
  36767. },
  36768. [
  36769. {
  36770. name: "Normal",
  36771. height: math.unit(6 + 2/12, "feet"),
  36772. default: true
  36773. },
  36774. {
  36775. name: "Big",
  36776. height: math.unit(15, "feet")
  36777. },
  36778. {
  36779. name: "Lorg",
  36780. height: math.unit(80, "feet")
  36781. },
  36782. {
  36783. name: "Too Lorg",
  36784. height: math.unit(120, "feet")
  36785. },
  36786. ]
  36787. ))
  36788. characterMakers.push(() => makeCharacter(
  36789. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36790. {
  36791. front: {
  36792. height: math.unit(15, "feet"),
  36793. name: "Front",
  36794. image: {
  36795. source: "./media/characters/kaizer/front.svg",
  36796. extra: 1612/1436,
  36797. bottom: 43/1655
  36798. }
  36799. },
  36800. },
  36801. [
  36802. {
  36803. name: "Normal",
  36804. height: math.unit(15, "feet"),
  36805. default: true
  36806. },
  36807. ]
  36808. ))
  36809. characterMakers.push(() => makeCharacter(
  36810. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36811. {
  36812. front: {
  36813. height: math.unit(2, "feet"),
  36814. weight: math.unit(30, "lb"),
  36815. name: "Front",
  36816. image: {
  36817. source: "./media/characters/sandy/front.svg",
  36818. extra: 1439/1307,
  36819. bottom: 194/1633
  36820. }
  36821. },
  36822. },
  36823. [
  36824. {
  36825. name: "Normal",
  36826. height: math.unit(2, "feet"),
  36827. default: true
  36828. },
  36829. ]
  36830. ))
  36831. characterMakers.push(() => makeCharacter(
  36832. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36833. {
  36834. front: {
  36835. height: math.unit(3, "feet"),
  36836. name: "Front",
  36837. image: {
  36838. source: "./media/characters/mellvi/front.svg",
  36839. extra: 1831/1630,
  36840. bottom: 58/1889
  36841. }
  36842. },
  36843. },
  36844. [
  36845. {
  36846. name: "Normal",
  36847. height: math.unit(3, "feet"),
  36848. default: true
  36849. },
  36850. ]
  36851. ))
  36852. characterMakers.push(() => makeCharacter(
  36853. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36854. {
  36855. front: {
  36856. height: math.unit(5 + 11/12, "feet"),
  36857. weight: math.unit(200, "lb"),
  36858. name: "Front",
  36859. image: {
  36860. source: "./media/characters/shirou/front.svg",
  36861. extra: 2491/2383,
  36862. bottom: 189/2680
  36863. }
  36864. },
  36865. back: {
  36866. height: math.unit(5 + 11/12, "feet"),
  36867. weight: math.unit(200, "lb"),
  36868. name: "Back",
  36869. image: {
  36870. source: "./media/characters/shirou/back.svg",
  36871. extra: 2554/2450,
  36872. bottom: 76/2630
  36873. }
  36874. },
  36875. },
  36876. [
  36877. {
  36878. name: "Normal",
  36879. height: math.unit(5 + 11/12, "feet"),
  36880. default: true
  36881. },
  36882. ]
  36883. ))
  36884. characterMakers.push(() => makeCharacter(
  36885. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36886. {
  36887. front: {
  36888. height: math.unit(6 + 3/12, "feet"),
  36889. weight: math.unit(177, "lb"),
  36890. name: "Front",
  36891. image: {
  36892. source: "./media/characters/noryu/front.svg",
  36893. extra: 973/885,
  36894. bottom: 10/983
  36895. }
  36896. },
  36897. },
  36898. [
  36899. {
  36900. name: "Normal",
  36901. height: math.unit(6 + 3/12, "feet"),
  36902. default: true
  36903. },
  36904. ]
  36905. ))
  36906. characterMakers.push(() => makeCharacter(
  36907. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36908. {
  36909. front: {
  36910. height: math.unit(5 + 6/12, "feet"),
  36911. weight: math.unit(170, "lb"),
  36912. name: "Front",
  36913. image: {
  36914. source: "./media/characters/mevolas-rubenido/front.svg",
  36915. extra: 2109/1901,
  36916. bottom: 96/2205
  36917. }
  36918. },
  36919. },
  36920. [
  36921. {
  36922. name: "Normal",
  36923. height: math.unit(5 + 6/12, "feet"),
  36924. default: true
  36925. },
  36926. ]
  36927. ))
  36928. characterMakers.push(() => makeCharacter(
  36929. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36930. {
  36931. front: {
  36932. height: math.unit(100, "feet"),
  36933. name: "Front",
  36934. image: {
  36935. source: "./media/characters/dee/front.svg",
  36936. extra: 2153/2036,
  36937. bottom: 59/2212
  36938. }
  36939. },
  36940. back: {
  36941. height: math.unit(100, "feet"),
  36942. name: "Back",
  36943. image: {
  36944. source: "./media/characters/dee/back.svg",
  36945. extra: 2183/2058,
  36946. bottom: 75/2258
  36947. }
  36948. },
  36949. foot: {
  36950. height: math.unit(19.43, "feet"),
  36951. name: "Foot",
  36952. image: {
  36953. source: "./media/characters/dee/foot.svg"
  36954. }
  36955. },
  36956. hoof: {
  36957. height: math.unit(20.6, "feet"),
  36958. name: "Hoof",
  36959. image: {
  36960. source: "./media/characters/dee/hoof.svg"
  36961. }
  36962. },
  36963. },
  36964. [
  36965. {
  36966. name: "Macro",
  36967. height: math.unit(100, "feet"),
  36968. default: true
  36969. },
  36970. ]
  36971. ))
  36972. characterMakers.push(() => makeCharacter(
  36973. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36974. {
  36975. front: {
  36976. height: math.unit(5 + 6/12, "feet"),
  36977. name: "Front",
  36978. image: {
  36979. source: "./media/characters/teh/front.svg",
  36980. extra: 1002/847,
  36981. bottom: 62/1064
  36982. }
  36983. },
  36984. },
  36985. [
  36986. {
  36987. name: "Normal",
  36988. height: math.unit(5 + 6/12, "feet"),
  36989. default: true
  36990. },
  36991. ]
  36992. ))
  36993. characterMakers.push(() => makeCharacter(
  36994. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36995. {
  36996. side: {
  36997. height: math.unit(6 + 1/12, "feet"),
  36998. weight: math.unit(204, "lb"),
  36999. name: "Side",
  37000. image: {
  37001. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37002. extra: 974/775,
  37003. bottom: 169/1143
  37004. }
  37005. },
  37006. sitting: {
  37007. height: math.unit(6 + 2/12, "feet"),
  37008. weight: math.unit(204, "lb"),
  37009. name: "Sitting",
  37010. image: {
  37011. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37012. extra: 1175/964,
  37013. bottom: 378/1553
  37014. }
  37015. },
  37016. },
  37017. [
  37018. {
  37019. name: "Normal",
  37020. height: math.unit(6 + 1/12, "feet"),
  37021. default: true
  37022. },
  37023. ]
  37024. ))
  37025. characterMakers.push(() => makeCharacter(
  37026. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37027. {
  37028. front: {
  37029. height: math.unit(6, "inches"),
  37030. name: "Front",
  37031. image: {
  37032. source: "./media/characters/tululi/front.svg",
  37033. extra: 1997/1876,
  37034. bottom: 20/2017
  37035. }
  37036. },
  37037. },
  37038. [
  37039. {
  37040. name: "Normal",
  37041. height: math.unit(6, "inches"),
  37042. default: true
  37043. },
  37044. ]
  37045. ))
  37046. characterMakers.push(() => makeCharacter(
  37047. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37048. {
  37049. front: {
  37050. height: math.unit(4 + 1/12, "feet"),
  37051. name: "Front",
  37052. image: {
  37053. source: "./media/characters/star/front.svg",
  37054. extra: 1493/1189,
  37055. bottom: 48/1541
  37056. }
  37057. },
  37058. },
  37059. [
  37060. {
  37061. name: "Normal",
  37062. height: math.unit(4 + 1/12, "feet"),
  37063. default: true
  37064. },
  37065. ]
  37066. ))
  37067. characterMakers.push(() => makeCharacter(
  37068. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37069. {
  37070. front: {
  37071. height: math.unit(6 + 3/12, "feet"),
  37072. name: "Front",
  37073. image: {
  37074. source: "./media/characters/comet/front.svg",
  37075. extra: 1681/1462,
  37076. bottom: 26/1707
  37077. }
  37078. },
  37079. },
  37080. [
  37081. {
  37082. name: "Normal",
  37083. height: math.unit(6 + 3/12, "feet"),
  37084. default: true
  37085. },
  37086. ]
  37087. ))
  37088. characterMakers.push(() => makeCharacter(
  37089. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37090. {
  37091. front: {
  37092. height: math.unit(950, "feet"),
  37093. name: "Front",
  37094. image: {
  37095. source: "./media/characters/vortex/front.svg",
  37096. extra: 1497/1434,
  37097. bottom: 56/1553
  37098. }
  37099. },
  37100. maw: {
  37101. height: math.unit(285, "feet"),
  37102. name: "Maw",
  37103. image: {
  37104. source: "./media/characters/vortex/maw.svg"
  37105. }
  37106. },
  37107. },
  37108. [
  37109. {
  37110. name: "Macro",
  37111. height: math.unit(950, "feet"),
  37112. default: true
  37113. },
  37114. ]
  37115. ))
  37116. characterMakers.push(() => makeCharacter(
  37117. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37118. {
  37119. front: {
  37120. height: math.unit(600, "feet"),
  37121. weight: math.unit(0.02, "grams"),
  37122. name: "Front",
  37123. image: {
  37124. source: "./media/characters/doodle/front.svg",
  37125. extra: 1578/1413,
  37126. bottom: 37/1615
  37127. }
  37128. },
  37129. },
  37130. [
  37131. {
  37132. name: "Macro",
  37133. height: math.unit(600, "feet"),
  37134. default: true
  37135. },
  37136. ]
  37137. ))
  37138. characterMakers.push(() => makeCharacter(
  37139. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37140. {
  37141. front: {
  37142. height: math.unit(6 + 6/12, "feet"),
  37143. name: "Front",
  37144. image: {
  37145. source: "./media/characters/jai/front.svg",
  37146. extra: 1645/1534,
  37147. bottom: 115/1760
  37148. }
  37149. },
  37150. },
  37151. [
  37152. {
  37153. name: "Normal",
  37154. height: math.unit(6 + 6/12, "feet"),
  37155. default: true
  37156. },
  37157. ]
  37158. ))
  37159. characterMakers.push(() => makeCharacter(
  37160. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37161. {
  37162. front: {
  37163. height: math.unit(6 + 8/12, "feet"),
  37164. name: "Front",
  37165. image: {
  37166. source: "./media/characters/pixel/front.svg",
  37167. extra: 1900/1735,
  37168. bottom: 63/1963
  37169. }
  37170. },
  37171. },
  37172. [
  37173. {
  37174. name: "Normal",
  37175. height: math.unit(6 + 8/12, "feet"),
  37176. default: true
  37177. },
  37178. ]
  37179. ))
  37180. characterMakers.push(() => makeCharacter(
  37181. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37182. {
  37183. back: {
  37184. height: math.unit(4 + 1/12, "feet"),
  37185. weight: math.unit(75, "lb"),
  37186. name: "Back",
  37187. image: {
  37188. source: "./media/characters/rhett/back.svg",
  37189. extra: 930/878,
  37190. bottom: 25/955
  37191. }
  37192. },
  37193. front: {
  37194. height: math.unit(4 + 1/12, "feet"),
  37195. weight: math.unit(75, "lb"),
  37196. name: "Front",
  37197. image: {
  37198. source: "./media/characters/rhett/front.svg",
  37199. extra: 1682/1586,
  37200. bottom: 92/1774
  37201. }
  37202. },
  37203. },
  37204. [
  37205. {
  37206. name: "Micro",
  37207. height: math.unit(8, "inches")
  37208. },
  37209. {
  37210. name: "Tiny",
  37211. height: math.unit(2, "feet")
  37212. },
  37213. {
  37214. name: "Normal",
  37215. height: math.unit(4 + 1/12, "feet"),
  37216. default: true
  37217. },
  37218. ]
  37219. ))
  37220. characterMakers.push(() => makeCharacter(
  37221. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37222. {
  37223. front: {
  37224. height: math.unit(3 + 3/12, "feet"),
  37225. name: "Front",
  37226. image: {
  37227. source: "./media/characters/penny/front.svg",
  37228. extra: 1406/1311,
  37229. bottom: 26/1432
  37230. }
  37231. },
  37232. },
  37233. [
  37234. {
  37235. name: "Normal",
  37236. height: math.unit(3 + 3/12, "feet"),
  37237. default: true
  37238. },
  37239. ]
  37240. ))
  37241. characterMakers.push(() => makeCharacter(
  37242. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37243. {
  37244. front: {
  37245. height: math.unit(4 + 11/12, "feet"),
  37246. name: "Front",
  37247. image: {
  37248. source: "./media/characters/monty/front.svg",
  37249. extra: 1479/1209,
  37250. bottom: 0/1479
  37251. }
  37252. },
  37253. },
  37254. [
  37255. {
  37256. name: "Normal",
  37257. height: math.unit(4 + 11/12, "feet"),
  37258. default: true
  37259. },
  37260. ]
  37261. ))
  37262. characterMakers.push(() => makeCharacter(
  37263. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37264. {
  37265. front: {
  37266. height: math.unit(8 + 4/12, "feet"),
  37267. name: "Front",
  37268. image: {
  37269. source: "./media/characters/sterling/front.svg",
  37270. extra: 1420/1236,
  37271. bottom: 27/1447
  37272. }
  37273. },
  37274. },
  37275. [
  37276. {
  37277. name: "Normal",
  37278. height: math.unit(8 + 4/12, "feet"),
  37279. default: true
  37280. },
  37281. ]
  37282. ))
  37283. characterMakers.push(() => makeCharacter(
  37284. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37285. {
  37286. front: {
  37287. height: math.unit(15, "feet"),
  37288. name: "Front",
  37289. image: {
  37290. source: "./media/characters/marble/front.svg",
  37291. extra: 973/937,
  37292. bottom: 32/1005
  37293. }
  37294. },
  37295. },
  37296. [
  37297. {
  37298. name: "Normal",
  37299. height: math.unit(15, "feet"),
  37300. default: true
  37301. },
  37302. ]
  37303. ))
  37304. characterMakers.push(() => makeCharacter(
  37305. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37306. {
  37307. front: {
  37308. height: math.unit(3, "inches"),
  37309. name: "Front",
  37310. image: {
  37311. source: "./media/characters/powder/front.svg",
  37312. extra: 1504/1334,
  37313. bottom: 518/2022
  37314. }
  37315. },
  37316. },
  37317. [
  37318. {
  37319. name: "Normal",
  37320. height: math.unit(3, "inches"),
  37321. default: true
  37322. },
  37323. ]
  37324. ))
  37325. characterMakers.push(() => makeCharacter(
  37326. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37327. {
  37328. front: {
  37329. height: math.unit(4 + 5/12, "feet"),
  37330. name: "Front",
  37331. image: {
  37332. source: "./media/characters/joey-raccoon/front.svg",
  37333. extra: 1273/1197,
  37334. bottom: 0/1273
  37335. }
  37336. },
  37337. },
  37338. [
  37339. {
  37340. name: "Normal",
  37341. height: math.unit(4 + 5/12, "feet"),
  37342. default: true
  37343. },
  37344. ]
  37345. ))
  37346. characterMakers.push(() => makeCharacter(
  37347. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37348. {
  37349. front: {
  37350. height: math.unit(8 + 4/12, "feet"),
  37351. name: "Front",
  37352. image: {
  37353. source: "./media/characters/vick/front.svg",
  37354. extra: 2187/2118,
  37355. bottom: 47/2234
  37356. }
  37357. },
  37358. },
  37359. [
  37360. {
  37361. name: "Normal",
  37362. height: math.unit(8 + 4/12, "feet"),
  37363. default: true
  37364. },
  37365. ]
  37366. ))
  37367. characterMakers.push(() => makeCharacter(
  37368. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37369. {
  37370. front: {
  37371. height: math.unit(5 + 5/12, "feet"),
  37372. name: "Front",
  37373. image: {
  37374. source: "./media/characters/mitsy/front.svg",
  37375. extra: 1842/1695,
  37376. bottom: 0/1842
  37377. }
  37378. },
  37379. },
  37380. [
  37381. {
  37382. name: "Normal",
  37383. height: math.unit(5 + 5/12, "feet"),
  37384. default: true
  37385. },
  37386. ]
  37387. ))
  37388. characterMakers.push(() => makeCharacter(
  37389. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37390. {
  37391. front: {
  37392. height: math.unit(6 + 3/12, "feet"),
  37393. name: "Front",
  37394. image: {
  37395. source: "./media/characters/silvy/front.svg",
  37396. extra: 1995/1836,
  37397. bottom: 225/2220
  37398. }
  37399. },
  37400. },
  37401. [
  37402. {
  37403. name: "Normal",
  37404. height: math.unit(6 + 3/12, "feet"),
  37405. default: true
  37406. },
  37407. ]
  37408. ))
  37409. characterMakers.push(() => makeCharacter(
  37410. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37411. {
  37412. front: {
  37413. height: math.unit(3 + 8/12, "feet"),
  37414. name: "Front",
  37415. image: {
  37416. source: "./media/characters/rodney/front.svg",
  37417. extra: 1956/1747,
  37418. bottom: 31/1987
  37419. }
  37420. },
  37421. frontDressed: {
  37422. height: math.unit(2.9, "feet"),
  37423. name: "Front (Dressed)",
  37424. image: {
  37425. source: "./media/characters/rodney/front-dressed.svg",
  37426. extra: 1382/1241,
  37427. bottom: 385/1767
  37428. }
  37429. },
  37430. },
  37431. [
  37432. {
  37433. name: "Normal",
  37434. height: math.unit(3 + 8/12, "feet"),
  37435. default: true
  37436. },
  37437. ]
  37438. ))
  37439. characterMakers.push(() => makeCharacter(
  37440. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37441. {
  37442. front: {
  37443. height: math.unit(5 + 9/12, "feet"),
  37444. weight: math.unit(194, "lbs"),
  37445. name: "Front",
  37446. image: {
  37447. source: "./media/characters/zakail-sudekai/front.svg",
  37448. extra: 2696/2533,
  37449. bottom: 248/2944
  37450. }
  37451. },
  37452. maw: {
  37453. height: math.unit(1.35, "feet"),
  37454. name: "Maw",
  37455. image: {
  37456. source: "./media/characters/zakail-sudekai/maw.svg"
  37457. }
  37458. },
  37459. },
  37460. [
  37461. {
  37462. name: "Normal",
  37463. height: math.unit(5 + 9/12, "feet"),
  37464. default: true
  37465. },
  37466. ]
  37467. ))
  37468. characterMakers.push(() => makeCharacter(
  37469. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37470. {
  37471. front: {
  37472. height: math.unit(8 + 4/12, "feet"),
  37473. weight: math.unit(1200, "lb"),
  37474. name: "Front",
  37475. image: {
  37476. source: "./media/characters/eleanor/front.svg",
  37477. extra: 1226/1192,
  37478. bottom: 52/1278
  37479. }
  37480. },
  37481. back: {
  37482. height: math.unit(8 + 4/12, "feet"),
  37483. weight: math.unit(1200, "lb"),
  37484. name: "Back",
  37485. image: {
  37486. source: "./media/characters/eleanor/back.svg",
  37487. extra: 1242/1184,
  37488. bottom: 60/1302
  37489. }
  37490. },
  37491. head: {
  37492. height: math.unit(2.62, "feet"),
  37493. name: "Head",
  37494. image: {
  37495. source: "./media/characters/eleanor/head.svg"
  37496. }
  37497. },
  37498. },
  37499. [
  37500. {
  37501. name: "Normal",
  37502. height: math.unit(8 + 4/12, "feet"),
  37503. default: true
  37504. },
  37505. ]
  37506. ))
  37507. characterMakers.push(() => makeCharacter(
  37508. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37509. {
  37510. front: {
  37511. height: math.unit(8 + 4/12, "feet"),
  37512. weight: math.unit(750, "lb"),
  37513. name: "Front",
  37514. image: {
  37515. source: "./media/characters/tanya/front.svg",
  37516. extra: 1749/1615,
  37517. bottom: 33/1782
  37518. }
  37519. },
  37520. },
  37521. [
  37522. {
  37523. name: "Normal",
  37524. height: math.unit(8 + 4/12, "feet"),
  37525. default: true
  37526. },
  37527. ]
  37528. ))
  37529. characterMakers.push(() => makeCharacter(
  37530. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37531. {
  37532. front: {
  37533. height: math.unit(5, "feet"),
  37534. weight: math.unit(225, "lb"),
  37535. name: "Front",
  37536. image: {
  37537. source: "./media/characters/cindy/front.svg",
  37538. extra: 1320/1250,
  37539. bottom: 42/1362
  37540. }
  37541. },
  37542. frontDressed: {
  37543. height: math.unit(5, "feet"),
  37544. weight: math.unit(225, "lb"),
  37545. name: "Front (Dressed)",
  37546. image: {
  37547. source: "./media/characters/cindy/front-dressed.svg",
  37548. extra: 1320/1250,
  37549. bottom: 42/1362
  37550. }
  37551. },
  37552. back: {
  37553. height: math.unit(5, "feet"),
  37554. weight: math.unit(225, "lb"),
  37555. name: "Back",
  37556. image: {
  37557. source: "./media/characters/cindy/back.svg",
  37558. extra: 1384/1346,
  37559. bottom: 14/1398
  37560. }
  37561. },
  37562. },
  37563. [
  37564. {
  37565. name: "Normal",
  37566. height: math.unit(5, "feet"),
  37567. default: true
  37568. },
  37569. ]
  37570. ))
  37571. characterMakers.push(() => makeCharacter(
  37572. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37573. {
  37574. front: {
  37575. height: math.unit(6 + 9/12, "feet"),
  37576. weight: math.unit(440, "lb"),
  37577. name: "Front",
  37578. image: {
  37579. source: "./media/characters/wilbur-owen/front.svg",
  37580. extra: 1575/1448,
  37581. bottom: 72/1647
  37582. }
  37583. },
  37584. back: {
  37585. height: math.unit(6 + 9/12, "feet"),
  37586. weight: math.unit(440, "lb"),
  37587. name: "Back",
  37588. image: {
  37589. source: "./media/characters/wilbur-owen/back.svg",
  37590. extra: 1578/1445,
  37591. bottom: 36/1614
  37592. }
  37593. },
  37594. },
  37595. [
  37596. {
  37597. name: "Normal",
  37598. height: math.unit(6 + 9/12, "feet"),
  37599. default: true
  37600. },
  37601. ]
  37602. ))
  37603. characterMakers.push(() => makeCharacter(
  37604. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37605. {
  37606. front: {
  37607. height: math.unit(6 + 5/12, "feet"),
  37608. weight: math.unit(650, "lb"),
  37609. name: "Front",
  37610. image: {
  37611. source: "./media/characters/keegan/front.svg",
  37612. extra: 2387/2198,
  37613. bottom: 33/2420
  37614. }
  37615. },
  37616. side: {
  37617. height: math.unit(6 + 5/12, "feet"),
  37618. weight: math.unit(650, "lb"),
  37619. name: "Side",
  37620. image: {
  37621. source: "./media/characters/keegan/side.svg",
  37622. extra: 2390/2202,
  37623. bottom: 47/2437
  37624. }
  37625. },
  37626. back: {
  37627. height: math.unit(6 + 5/12, "feet"),
  37628. weight: math.unit(650, "lb"),
  37629. name: "Back",
  37630. image: {
  37631. source: "./media/characters/keegan/back.svg",
  37632. extra: 2418/2268,
  37633. bottom: 15/2433
  37634. }
  37635. },
  37636. frontSfw: {
  37637. height: math.unit(6 + 5/12, "feet"),
  37638. weight: math.unit(650, "lb"),
  37639. name: "Front (SFW)",
  37640. image: {
  37641. source: "./media/characters/keegan/front-sfw.svg",
  37642. extra: 2387/2198,
  37643. bottom: 33/2420
  37644. }
  37645. },
  37646. beans: {
  37647. height: math.unit(1.85, "feet"),
  37648. name: "Beans",
  37649. image: {
  37650. source: "./media/characters/keegan/beans.svg"
  37651. }
  37652. },
  37653. },
  37654. [
  37655. {
  37656. name: "Normal",
  37657. height: math.unit(6 + 5/12, "feet"),
  37658. default: true
  37659. },
  37660. ]
  37661. ))
  37662. characterMakers.push(() => makeCharacter(
  37663. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37664. {
  37665. front: {
  37666. height: math.unit(9, "feet"),
  37667. name: "Front",
  37668. image: {
  37669. source: "./media/characters/colton/front.svg",
  37670. extra: 1589/1326,
  37671. bottom: 139/1728
  37672. }
  37673. },
  37674. },
  37675. [
  37676. {
  37677. name: "Normal",
  37678. height: math.unit(9, "feet"),
  37679. default: true
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(2 + 9/12, "feet"),
  37688. name: "Front",
  37689. image: {
  37690. source: "./media/characters/bora/front.svg",
  37691. extra: 1265/1250,
  37692. bottom: 24/1289
  37693. }
  37694. },
  37695. },
  37696. [
  37697. {
  37698. name: "Normal",
  37699. height: math.unit(2 + 9/12, "feet"),
  37700. default: true
  37701. },
  37702. ]
  37703. ))
  37704. characterMakers.push(() => makeCharacter(
  37705. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37706. {
  37707. front: {
  37708. height: math.unit(8, "feet"),
  37709. name: "Front",
  37710. image: {
  37711. source: "./media/characters/myu-myu/front.svg",
  37712. extra: 1949/1857,
  37713. bottom: 90/2039
  37714. }
  37715. },
  37716. },
  37717. [
  37718. {
  37719. name: "Normal",
  37720. height: math.unit(8, "feet"),
  37721. default: true
  37722. },
  37723. {
  37724. name: "Big",
  37725. height: math.unit(15, "feet")
  37726. },
  37727. {
  37728. name: "BIG",
  37729. height: math.unit(25, "feet")
  37730. },
  37731. ]
  37732. ))
  37733. characterMakers.push(() => makeCharacter(
  37734. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37735. {
  37736. side: {
  37737. height: math.unit(7 + 5/12, "feet"),
  37738. weight: math.unit(2800, "lb"),
  37739. name: "Side",
  37740. image: {
  37741. source: "./media/characters/haloren/side.svg",
  37742. extra: 1793/409,
  37743. bottom: 59/1852
  37744. }
  37745. },
  37746. frontPaw: {
  37747. height: math.unit(2.36, "feet"),
  37748. name: "Front paw",
  37749. image: {
  37750. source: "./media/characters/haloren/front-paw.svg"
  37751. }
  37752. },
  37753. hindPaw: {
  37754. height: math.unit(3.18, "feet"),
  37755. name: "Hind paw",
  37756. image: {
  37757. source: "./media/characters/haloren/hind-paw.svg"
  37758. }
  37759. },
  37760. maw: {
  37761. height: math.unit(5.05, "feet"),
  37762. name: "Maw",
  37763. image: {
  37764. source: "./media/characters/haloren/maw.svg"
  37765. }
  37766. },
  37767. dick: {
  37768. height: math.unit(2.90, "feet"),
  37769. name: "Dick",
  37770. image: {
  37771. source: "./media/characters/haloren/dick.svg"
  37772. }
  37773. },
  37774. },
  37775. [
  37776. {
  37777. name: "Normal",
  37778. height: math.unit(7 + 5/12, "feet"),
  37779. default: true
  37780. },
  37781. {
  37782. name: "Enhanced",
  37783. height: math.unit(14 + 3/12, "feet")
  37784. },
  37785. ]
  37786. ))
  37787. characterMakers.push(() => makeCharacter(
  37788. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37789. {
  37790. front: {
  37791. height: math.unit(171, "cm"),
  37792. name: "Front",
  37793. image: {
  37794. source: "./media/characters/kimmy/front.svg",
  37795. extra: 1491/1435,
  37796. bottom: 53/1544
  37797. }
  37798. },
  37799. },
  37800. [
  37801. {
  37802. name: "Small",
  37803. height: math.unit(9, "cm")
  37804. },
  37805. {
  37806. name: "Normal",
  37807. height: math.unit(171, "cm"),
  37808. default: true
  37809. },
  37810. ]
  37811. ))
  37812. characterMakers.push(() => makeCharacter(
  37813. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37814. {
  37815. front: {
  37816. height: math.unit(8, "feet"),
  37817. weight: math.unit(300, "lb"),
  37818. name: "Front",
  37819. image: {
  37820. source: "./media/characters/galeboomer/front.svg",
  37821. extra: 4651/4415,
  37822. bottom: 162/4813
  37823. }
  37824. },
  37825. back: {
  37826. height: math.unit(8, "feet"),
  37827. weight: math.unit(300, "lb"),
  37828. name: "Back",
  37829. image: {
  37830. source: "./media/characters/galeboomer/back.svg",
  37831. extra: 4544/4314,
  37832. bottom: 16/4560
  37833. }
  37834. },
  37835. frontAlt: {
  37836. height: math.unit(8, "feet"),
  37837. weight: math.unit(300, "lb"),
  37838. name: "Front (Alt)",
  37839. image: {
  37840. source: "./media/characters/galeboomer/front-alt.svg",
  37841. extra: 4458/4228,
  37842. bottom: 68/4526
  37843. }
  37844. },
  37845. maw: {
  37846. height: math.unit(1.2, "feet"),
  37847. name: "Maw",
  37848. image: {
  37849. source: "./media/characters/galeboomer/maw.svg"
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(8, "feet"),
  37857. default: true
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37863. {
  37864. front: {
  37865. height: math.unit(5 + 9/12, "feet"),
  37866. weight: math.unit(120, "lb"),
  37867. name: "Front",
  37868. image: {
  37869. source: "./media/characters/chyr/front.svg",
  37870. extra: 1323/1254,
  37871. bottom: 63/1386
  37872. }
  37873. },
  37874. back: {
  37875. height: math.unit(5 + 9/12, "feet"),
  37876. weight: math.unit(120, "lb"),
  37877. name: "Back",
  37878. image: {
  37879. source: "./media/characters/chyr/back.svg",
  37880. extra: 1323/1252,
  37881. bottom: 48/1371
  37882. }
  37883. },
  37884. },
  37885. [
  37886. {
  37887. name: "Normal",
  37888. height: math.unit(5 + 9/12, "feet"),
  37889. default: true
  37890. },
  37891. ]
  37892. ))
  37893. characterMakers.push(() => makeCharacter(
  37894. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37895. {
  37896. front: {
  37897. height: math.unit(7, "feet"),
  37898. weight: math.unit(310, "lb"),
  37899. name: "Front",
  37900. image: {
  37901. source: "./media/characters/solarus/front.svg",
  37902. extra: 2415/2021,
  37903. bottom: 103/2518
  37904. }
  37905. },
  37906. back: {
  37907. height: math.unit(7, "feet"),
  37908. weight: math.unit(310, "lb"),
  37909. name: "Back",
  37910. image: {
  37911. source: "./media/characters/solarus/back.svg",
  37912. extra: 2463/2089,
  37913. bottom: 79/2542
  37914. }
  37915. },
  37916. },
  37917. [
  37918. {
  37919. name: "Normal",
  37920. height: math.unit(7, "feet"),
  37921. default: true
  37922. },
  37923. ]
  37924. ))
  37925. characterMakers.push(() => makeCharacter(
  37926. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37927. {
  37928. front: {
  37929. height: math.unit(16, "feet"),
  37930. name: "Front",
  37931. image: {
  37932. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37933. extra: 1844/1780,
  37934. bottom: 58/1902
  37935. }
  37936. },
  37937. winterCoat: {
  37938. height: math.unit(16, "feet"),
  37939. name: "Winter Coat",
  37940. image: {
  37941. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37942. extra: 1807/1775,
  37943. bottom: 69/1876
  37944. }
  37945. },
  37946. },
  37947. [
  37948. {
  37949. name: "Normal",
  37950. height: math.unit(16, "feet"),
  37951. default: true
  37952. },
  37953. {
  37954. name: "Chicago Size",
  37955. height: math.unit(560, "feet")
  37956. },
  37957. ]
  37958. ))
  37959. characterMakers.push(() => makeCharacter(
  37960. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37961. {
  37962. front: {
  37963. height: math.unit(11 + 6/12, "feet"),
  37964. weight: math.unit(1366, "lb"),
  37965. name: "Front",
  37966. image: {
  37967. source: "./media/characters/lexor/front.svg",
  37968. extra: 1560/1481,
  37969. bottom: 211/1771
  37970. }
  37971. },
  37972. back: {
  37973. height: math.unit(11 + 6/12, "feet"),
  37974. weight: math.unit(1366, "lb"),
  37975. name: "Back",
  37976. image: {
  37977. source: "./media/characters/lexor/back.svg",
  37978. extra: 1614/1533,
  37979. bottom: 76/1690
  37980. }
  37981. },
  37982. maw: {
  37983. height: math.unit(3, "feet"),
  37984. name: "Maw",
  37985. image: {
  37986. source: "./media/characters/lexor/maw.svg"
  37987. }
  37988. },
  37989. dick: {
  37990. height: math.unit(2.59, "feet"),
  37991. name: "Dick",
  37992. image: {
  37993. source: "./media/characters/lexor/dick.svg"
  37994. }
  37995. },
  37996. },
  37997. [
  37998. {
  37999. name: "Normal",
  38000. height: math.unit(11 + 6/12, "feet"),
  38001. default: true
  38002. },
  38003. ]
  38004. ))
  38005. characterMakers.push(() => makeCharacter(
  38006. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38007. {
  38008. front: {
  38009. height: math.unit(5 + 8/12, "feet"),
  38010. name: "Front",
  38011. image: {
  38012. source: "./media/characters/magnum/front.svg",
  38013. extra: 942/855,
  38014. bottom: 26/968
  38015. }
  38016. },
  38017. },
  38018. [
  38019. {
  38020. name: "Normal",
  38021. height: math.unit(5 + 8/12, "feet"),
  38022. default: true
  38023. },
  38024. ]
  38025. ))
  38026. characterMakers.push(() => makeCharacter(
  38027. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38028. {
  38029. front: {
  38030. height: math.unit(18 + 4/12, "feet"),
  38031. weight: math.unit(1500, "kg"),
  38032. name: "Front",
  38033. image: {
  38034. source: "./media/characters/solas-sharpsman/front.svg",
  38035. extra: 1698/1589,
  38036. bottom: 0/1698
  38037. }
  38038. },
  38039. },
  38040. [
  38041. {
  38042. name: "Normal",
  38043. height: math.unit(18 + 4/12, "feet"),
  38044. default: true
  38045. },
  38046. ]
  38047. ))
  38048. characterMakers.push(() => makeCharacter(
  38049. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38050. {
  38051. front: {
  38052. height: math.unit(5 + 5/12, "feet"),
  38053. weight: math.unit(180, "lb"),
  38054. name: "Front",
  38055. image: {
  38056. source: "./media/characters/october/front.svg",
  38057. extra: 1800/1650,
  38058. bottom: 0/1800
  38059. }
  38060. },
  38061. frontNsfw: {
  38062. height: math.unit(5 + 5/12, "feet"),
  38063. weight: math.unit(180, "lb"),
  38064. name: "Front (NSFW)",
  38065. image: {
  38066. source: "./media/characters/october/front-nsfw.svg",
  38067. extra: 1392/1307,
  38068. bottom: 42/1434
  38069. }
  38070. },
  38071. },
  38072. [
  38073. {
  38074. name: "Normal",
  38075. height: math.unit(5 + 5/12, "feet"),
  38076. default: true
  38077. },
  38078. ]
  38079. ))
  38080. characterMakers.push(() => makeCharacter(
  38081. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38082. {
  38083. front: {
  38084. height: math.unit(8 + 6/12, "feet"),
  38085. name: "Front",
  38086. image: {
  38087. source: "./media/characters/essynkardi/front.svg",
  38088. extra: 1914/1846,
  38089. bottom: 22/1936
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(8 + 6/12, "feet"),
  38097. default: true
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38103. {
  38104. front: {
  38105. height: math.unit(6 + 6/12, "feet"),
  38106. weight: math.unit(7, "lb"),
  38107. name: "Front",
  38108. image: {
  38109. source: "./media/characters/icky/front.svg",
  38110. extra: 813/782,
  38111. bottom: 66/879
  38112. }
  38113. },
  38114. back: {
  38115. height: math.unit(6 + 6/12, "feet"),
  38116. weight: math.unit(7, "lb"),
  38117. name: "Back",
  38118. image: {
  38119. source: "./media/characters/icky/back.svg",
  38120. extra: 754/735,
  38121. bottom: 56/810
  38122. }
  38123. },
  38124. },
  38125. [
  38126. {
  38127. name: "Normal",
  38128. height: math.unit(6 + 6/12, "feet"),
  38129. default: true
  38130. },
  38131. ]
  38132. ))
  38133. characterMakers.push(() => makeCharacter(
  38134. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38135. {
  38136. front: {
  38137. height: math.unit(15, "feet"),
  38138. name: "Front",
  38139. image: {
  38140. source: "./media/characters/rojas/front.svg",
  38141. extra: 1462/1408,
  38142. bottom: 95/1557
  38143. }
  38144. },
  38145. back: {
  38146. height: math.unit(15, "feet"),
  38147. name: "Back",
  38148. image: {
  38149. source: "./media/characters/rojas/back.svg",
  38150. extra: 1023/954,
  38151. bottom: 28/1051
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Normal",
  38158. height: math.unit(15, "feet"),
  38159. default: true
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38165. {
  38166. frontHuman: {
  38167. height: math.unit(5 + 7/12, "feet"),
  38168. name: "Front (Human)",
  38169. image: {
  38170. source: "./media/characters/alek-dryagan/front-human.svg",
  38171. extra: 1687/1667,
  38172. bottom: 69/1756
  38173. }
  38174. },
  38175. backHuman: {
  38176. height: math.unit(5 + 7/12, "feet"),
  38177. name: "Back (Human)",
  38178. image: {
  38179. source: "./media/characters/alek-dryagan/back-human.svg",
  38180. extra: 1670/1649,
  38181. bottom: 65/1735
  38182. }
  38183. },
  38184. frontDemi: {
  38185. height: math.unit(65, "feet"),
  38186. name: "Front (Demi)",
  38187. image: {
  38188. source: "./media/characters/alek-dryagan/front-demi.svg",
  38189. extra: 1669/1642,
  38190. bottom: 49/1718
  38191. }
  38192. },
  38193. backDemi: {
  38194. height: math.unit(65, "feet"),
  38195. name: "Back (Demi)",
  38196. image: {
  38197. source: "./media/characters/alek-dryagan/back-demi.svg",
  38198. extra: 1658/1637,
  38199. bottom: 40/1698
  38200. }
  38201. },
  38202. mawHuman: {
  38203. height: math.unit(0.3, "feet"),
  38204. name: "Maw (Human)",
  38205. image: {
  38206. source: "./media/characters/alek-dryagan/maw-human.svg"
  38207. }
  38208. },
  38209. mawDemi: {
  38210. height: math.unit(3.8, "feet"),
  38211. name: "Maw (Demi)",
  38212. image: {
  38213. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38214. }
  38215. },
  38216. },
  38217. [
  38218. {
  38219. name: "Normal",
  38220. height: math.unit(5 + 7/12, "feet"),
  38221. default: true
  38222. },
  38223. ]
  38224. ))
  38225. characterMakers.push(() => makeCharacter(
  38226. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38227. {
  38228. frontHuman: {
  38229. height: math.unit(5 + 2/12, "feet"),
  38230. name: "Front (Human)",
  38231. image: {
  38232. source: "./media/characters/gen/front-human.svg",
  38233. extra: 1627/1538,
  38234. bottom: 71/1698
  38235. }
  38236. },
  38237. backHuman: {
  38238. height: math.unit(5 + 2/12, "feet"),
  38239. name: "Back (Human)",
  38240. image: {
  38241. source: "./media/characters/gen/back-human.svg",
  38242. extra: 1638/1548,
  38243. bottom: 69/1707
  38244. }
  38245. },
  38246. frontDemi: {
  38247. height: math.unit(5 + 2/12, "feet"),
  38248. name: "Front (Demi)",
  38249. image: {
  38250. source: "./media/characters/gen/front-demi.svg",
  38251. extra: 1627/1538,
  38252. bottom: 71/1698
  38253. }
  38254. },
  38255. backDemi: {
  38256. height: math.unit(5 + 2/12, "feet"),
  38257. name: "Back (Demi)",
  38258. image: {
  38259. source: "./media/characters/gen/back-demi.svg",
  38260. extra: 1638/1548,
  38261. bottom: 69/1707
  38262. }
  38263. },
  38264. },
  38265. [
  38266. {
  38267. name: "Normal",
  38268. height: math.unit(5 + 2/12, "feet"),
  38269. default: true
  38270. },
  38271. ]
  38272. ))
  38273. characterMakers.push(() => makeCharacter(
  38274. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38275. {
  38276. frontImp: {
  38277. height: math.unit(1 + 11/12, "feet"),
  38278. name: "Front (Imp)",
  38279. image: {
  38280. source: "./media/characters/max-kobold/front-imp.svg",
  38281. extra: 1238/1134,
  38282. bottom: 81/1319
  38283. }
  38284. },
  38285. backImp: {
  38286. height: math.unit(1 + 11/12, "feet"),
  38287. name: "Back (Imp)",
  38288. image: {
  38289. source: "./media/characters/max-kobold/back-imp.svg",
  38290. extra: 1334/1175,
  38291. bottom: 34/1368
  38292. }
  38293. },
  38294. frontDemi: {
  38295. height: math.unit(5 + 9/12, "feet"),
  38296. name: "Front (Demi)",
  38297. image: {
  38298. source: "./media/characters/max-kobold/front-demi.svg",
  38299. extra: 1715/1685,
  38300. bottom: 54/1769
  38301. }
  38302. },
  38303. backDemi: {
  38304. height: math.unit(5 + 9/12, "feet"),
  38305. name: "Back (Demi)",
  38306. image: {
  38307. source: "./media/characters/max-kobold/back-demi.svg",
  38308. extra: 1752/1729,
  38309. bottom: 41/1793
  38310. }
  38311. },
  38312. handImp: {
  38313. height: math.unit(0.45, "feet"),
  38314. name: "Hand (Imp)",
  38315. image: {
  38316. source: "./media/characters/max-kobold/hand.svg"
  38317. }
  38318. },
  38319. pawImp: {
  38320. height: math.unit(0.46, "feet"),
  38321. name: "Paw (Imp)",
  38322. image: {
  38323. source: "./media/characters/max-kobold/paw.svg"
  38324. }
  38325. },
  38326. handDemi: {
  38327. height: math.unit(0.80, "feet"),
  38328. name: "Hand (Demi)",
  38329. image: {
  38330. source: "./media/characters/max-kobold/hand.svg"
  38331. }
  38332. },
  38333. pawDemi: {
  38334. height: math.unit(1.1, "feet"),
  38335. name: "Paw (Demi)",
  38336. image: {
  38337. source: "./media/characters/max-kobold/paw.svg"
  38338. }
  38339. },
  38340. headImp: {
  38341. height: math.unit(1.33, "feet"),
  38342. name: "Head (Imp)",
  38343. image: {
  38344. source: "./media/characters/max-kobold/head-imp.svg"
  38345. }
  38346. },
  38347. mawImp: {
  38348. height: math.unit(0.75, "feet"),
  38349. name: "Maw (Imp)",
  38350. image: {
  38351. source: "./media/characters/max-kobold/maw-imp.svg"
  38352. }
  38353. },
  38354. mawDemi: {
  38355. height: math.unit(0.42, "feet"),
  38356. name: "Maw (Demi)",
  38357. image: {
  38358. source: "./media/characters/max-kobold/maw-demi.svg"
  38359. }
  38360. },
  38361. },
  38362. [
  38363. {
  38364. name: "Normal",
  38365. height: math.unit(1 + 11/12, "feet"),
  38366. default: true
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38372. {
  38373. front: {
  38374. height: math.unit(7 + 5/12, "feet"),
  38375. name: "Front",
  38376. image: {
  38377. source: "./media/characters/carbon/front.svg",
  38378. extra: 1754/1689,
  38379. bottom: 65/1819
  38380. }
  38381. },
  38382. back: {
  38383. height: math.unit(7 + 5/12, "feet"),
  38384. name: "Back",
  38385. image: {
  38386. source: "./media/characters/carbon/back.svg",
  38387. extra: 1762/1695,
  38388. bottom: 24/1786
  38389. }
  38390. },
  38391. frontGigantamax: {
  38392. height: math.unit(150, "feet"),
  38393. name: "Front (Gigantamax)",
  38394. image: {
  38395. source: "./media/characters/carbon/front-gigantamax.svg",
  38396. extra: 1826/1669,
  38397. bottom: 59/1885
  38398. }
  38399. },
  38400. backGigantamax: {
  38401. height: math.unit(150, "feet"),
  38402. name: "Back (Gigantamax)",
  38403. image: {
  38404. source: "./media/characters/carbon/back-gigantamax.svg",
  38405. extra: 1796/1653,
  38406. bottom: 53/1849
  38407. }
  38408. },
  38409. maw: {
  38410. height: math.unit(0.48, "feet"),
  38411. name: "Maw",
  38412. image: {
  38413. source: "./media/characters/carbon/maw.svg"
  38414. }
  38415. },
  38416. mawGigantamax: {
  38417. height: math.unit(7.5, "feet"),
  38418. name: "Maw (Gigantamax)",
  38419. image: {
  38420. source: "./media/characters/carbon/maw-gigantamax.svg"
  38421. }
  38422. },
  38423. },
  38424. [
  38425. {
  38426. name: "Normal",
  38427. height: math.unit(7 + 5/12, "feet"),
  38428. default: true
  38429. },
  38430. ]
  38431. ))
  38432. characterMakers.push(() => makeCharacter(
  38433. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38434. {
  38435. front: {
  38436. height: math.unit(6, "feet"),
  38437. name: "Front",
  38438. image: {
  38439. source: "./media/characters/maverick/front.svg",
  38440. extra: 1672/1661,
  38441. bottom: 85/1757
  38442. }
  38443. },
  38444. back: {
  38445. height: math.unit(6, "feet"),
  38446. name: "Back",
  38447. image: {
  38448. source: "./media/characters/maverick/back.svg",
  38449. extra: 1642/1631,
  38450. bottom: 38/1680
  38451. }
  38452. },
  38453. },
  38454. [
  38455. {
  38456. name: "Normal",
  38457. height: math.unit(6, "feet"),
  38458. default: true
  38459. },
  38460. ]
  38461. ))
  38462. characterMakers.push(() => makeCharacter(
  38463. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38464. {
  38465. front: {
  38466. height: math.unit(15, "feet"),
  38467. weight: math.unit(615, "lb"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/grockle/front.svg",
  38471. extra: 1535/1427,
  38472. bottom: 56/1591
  38473. }
  38474. },
  38475. },
  38476. [
  38477. {
  38478. name: "Normal",
  38479. height: math.unit(15, "feet"),
  38480. default: true
  38481. },
  38482. {
  38483. name: "Large",
  38484. height: math.unit(150, "feet")
  38485. },
  38486. {
  38487. name: "Macro",
  38488. height: math.unit(1876, "feet")
  38489. },
  38490. {
  38491. name: "Mega Macro",
  38492. height: math.unit(121940, "feet")
  38493. },
  38494. {
  38495. name: "Giga Macro",
  38496. height: math.unit(750, "km")
  38497. },
  38498. {
  38499. name: "Tera Macro",
  38500. height: math.unit(750000, "km")
  38501. },
  38502. {
  38503. name: "Galactic",
  38504. height: math.unit(1.4e5, "km")
  38505. },
  38506. {
  38507. name: "Godlike",
  38508. height: math.unit(9.8e280, "galaxies")
  38509. },
  38510. ]
  38511. ))
  38512. characterMakers.push(() => makeCharacter(
  38513. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38514. {
  38515. front: {
  38516. height: math.unit(11, "meters"),
  38517. weight: math.unit(20, "tonnes"),
  38518. name: "Front",
  38519. image: {
  38520. source: "./media/characters/alistair/front.svg",
  38521. extra: 1265/1009,
  38522. bottom: 93/1358
  38523. }
  38524. },
  38525. },
  38526. [
  38527. {
  38528. name: "Normal",
  38529. height: math.unit(11, "meters"),
  38530. default: true
  38531. },
  38532. ]
  38533. ))
  38534. characterMakers.push(() => makeCharacter(
  38535. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38536. {
  38537. front: {
  38538. height: math.unit(5 + 8/12, "feet"),
  38539. name: "Front",
  38540. image: {
  38541. source: "./media/characters/haruka/front.svg",
  38542. extra: 2012/1952,
  38543. bottom: 0/2012
  38544. }
  38545. },
  38546. },
  38547. [
  38548. {
  38549. name: "Normal",
  38550. height: math.unit(5 + 8/12, "feet"),
  38551. default: true
  38552. },
  38553. ]
  38554. ))
  38555. characterMakers.push(() => makeCharacter(
  38556. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38557. {
  38558. back: {
  38559. height: math.unit(9, "feet"),
  38560. name: "Back",
  38561. image: {
  38562. source: "./media/characters/vivian-sylveon/back.svg",
  38563. extra: 1853/1714,
  38564. bottom: 0/1853
  38565. }
  38566. },
  38567. },
  38568. [
  38569. {
  38570. name: "Normal",
  38571. height: math.unit(9, "feet"),
  38572. default: true
  38573. },
  38574. {
  38575. name: "Macro",
  38576. height: math.unit(500, "feet")
  38577. },
  38578. {
  38579. name: "Megamacro",
  38580. height: math.unit(600, "miles")
  38581. },
  38582. {
  38583. name: "Gigamacro",
  38584. height: math.unit(30000, "miles")
  38585. },
  38586. ]
  38587. ))
  38588. characterMakers.push(() => makeCharacter(
  38589. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38590. {
  38591. anthro: {
  38592. height: math.unit(5 + 10/12, "feet"),
  38593. weight: math.unit(100, "lb"),
  38594. name: "Anthro",
  38595. image: {
  38596. source: "./media/characters/daiki/anthro.svg",
  38597. extra: 1115/1027,
  38598. bottom: 69/1184
  38599. }
  38600. },
  38601. feral: {
  38602. height: math.unit(200, "feet"),
  38603. name: "Feral",
  38604. image: {
  38605. source: "./media/characters/daiki/feral.svg",
  38606. extra: 1256/313,
  38607. bottom: 39/1295
  38608. }
  38609. },
  38610. feralHead: {
  38611. height: math.unit(171, "feet"),
  38612. name: "Feral Head",
  38613. image: {
  38614. source: "./media/characters/daiki/feral-head.svg"
  38615. }
  38616. },
  38617. manaDragon: {
  38618. height: math.unit(170, "meters"),
  38619. name: "Mana-dragon",
  38620. image: {
  38621. source: "./media/characters/daiki/mana-dragon.svg",
  38622. extra: 763/420,
  38623. bottom: 97/860
  38624. }
  38625. },
  38626. },
  38627. [
  38628. {
  38629. name: "Normal",
  38630. height: math.unit(5 + 10/12, "feet"),
  38631. default: true
  38632. },
  38633. ]
  38634. ))
  38635. characterMakers.push(() => makeCharacter(
  38636. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38637. {
  38638. fullyEquippedFront: {
  38639. height: math.unit(3 + 1/12, "feet"),
  38640. weight: math.unit(24, "lb"),
  38641. name: "Fully Equipped (Front)",
  38642. image: {
  38643. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38644. extra: 687/605,
  38645. bottom: 18/705
  38646. }
  38647. },
  38648. fullyEquippedBack: {
  38649. height: math.unit(3 + 1/12, "feet"),
  38650. weight: math.unit(24, "lb"),
  38651. name: "Fully Equipped (Back)",
  38652. image: {
  38653. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38654. extra: 689/590,
  38655. bottom: 18/707
  38656. }
  38657. },
  38658. dailyWear: {
  38659. height: math.unit(3 + 1/12, "feet"),
  38660. weight: math.unit(24, "lb"),
  38661. name: "Daily Wear",
  38662. image: {
  38663. source: "./media/characters/tea-spot/daily-wear.svg",
  38664. extra: 701/620,
  38665. bottom: 21/722
  38666. }
  38667. },
  38668. maidWork: {
  38669. height: math.unit(3 + 1/12, "feet"),
  38670. weight: math.unit(24, "lb"),
  38671. name: "Maid Work",
  38672. image: {
  38673. source: "./media/characters/tea-spot/maid-work.svg",
  38674. extra: 693/609,
  38675. bottom: 15/708
  38676. }
  38677. },
  38678. },
  38679. [
  38680. {
  38681. name: "Normal",
  38682. height: math.unit(3 + 1/12, "feet"),
  38683. default: true
  38684. },
  38685. ]
  38686. ))
  38687. characterMakers.push(() => makeCharacter(
  38688. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38689. {
  38690. front: {
  38691. height: math.unit(175, "cm"),
  38692. weight: math.unit(75, "kg"),
  38693. name: "Front",
  38694. image: {
  38695. source: "./media/characters/chee/front.svg",
  38696. extra: 1796/1740,
  38697. bottom: 40/1836
  38698. }
  38699. },
  38700. },
  38701. [
  38702. {
  38703. name: "Micro-Micro",
  38704. height: math.unit(1, "nm")
  38705. },
  38706. {
  38707. name: "Micro-erst",
  38708. height: math.unit(1, "micrometer")
  38709. },
  38710. {
  38711. name: "Micro-er",
  38712. height: math.unit(1, "cm")
  38713. },
  38714. {
  38715. name: "Normal",
  38716. height: math.unit(175, "cm"),
  38717. default: true
  38718. },
  38719. {
  38720. name: "Macro",
  38721. height: math.unit(100, "m")
  38722. },
  38723. {
  38724. name: "Macro-er",
  38725. height: math.unit(1, "km")
  38726. },
  38727. {
  38728. name: "Macro-erst",
  38729. height: math.unit(10, "km")
  38730. },
  38731. {
  38732. name: "Macro-Macro",
  38733. height: math.unit(100, "km")
  38734. },
  38735. ]
  38736. ))
  38737. characterMakers.push(() => makeCharacter(
  38738. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38739. {
  38740. front: {
  38741. height: math.unit(11 + 9/12, "feet"),
  38742. weight: math.unit(935, "lb"),
  38743. name: "Front",
  38744. image: {
  38745. source: "./media/characters/kingsley/front.svg",
  38746. extra: 1803/1674,
  38747. bottom: 127/1930
  38748. }
  38749. },
  38750. frontNude: {
  38751. height: math.unit(11 + 9/12, "feet"),
  38752. weight: math.unit(935, "lb"),
  38753. name: "Front (Nude)",
  38754. image: {
  38755. source: "./media/characters/kingsley/front-nude.svg",
  38756. extra: 1803/1674,
  38757. bottom: 127/1930
  38758. }
  38759. },
  38760. },
  38761. [
  38762. {
  38763. name: "Normal",
  38764. height: math.unit(11 + 9/12, "feet"),
  38765. default: true
  38766. },
  38767. ]
  38768. ))
  38769. characterMakers.push(() => makeCharacter(
  38770. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38771. {
  38772. side: {
  38773. height: math.unit(9, "feet"),
  38774. name: "Side",
  38775. image: {
  38776. source: "./media/characters/rymel/side.svg",
  38777. extra: 792/469,
  38778. bottom: 121/913
  38779. }
  38780. },
  38781. maw: {
  38782. height: math.unit(2.4, "meters"),
  38783. name: "Maw",
  38784. image: {
  38785. source: "./media/characters/rymel/maw.svg"
  38786. }
  38787. },
  38788. },
  38789. [
  38790. {
  38791. name: "House Drake",
  38792. height: math.unit(2, "feet")
  38793. },
  38794. {
  38795. name: "Reduced",
  38796. height: math.unit(4.5, "feet")
  38797. },
  38798. {
  38799. name: "Normal",
  38800. height: math.unit(9, "feet"),
  38801. default: true
  38802. },
  38803. ]
  38804. ))
  38805. characterMakers.push(() => makeCharacter(
  38806. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38807. {
  38808. front: {
  38809. height: math.unit(1.74, "meters"),
  38810. weight: math.unit(55, "kg"),
  38811. name: "Front",
  38812. image: {
  38813. source: "./media/characters/rubus/front.svg",
  38814. extra: 1894/1742,
  38815. bottom: 44/1938
  38816. }
  38817. },
  38818. },
  38819. [
  38820. {
  38821. name: "Normal",
  38822. height: math.unit(1.74, "meters"),
  38823. default: true
  38824. },
  38825. ]
  38826. ))
  38827. characterMakers.push(() => makeCharacter(
  38828. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38829. {
  38830. front: {
  38831. height: math.unit(5 + 2/12, "feet"),
  38832. weight: math.unit(112, "lb"),
  38833. name: "Front",
  38834. image: {
  38835. source: "./media/characters/cassie-kingston/front.svg",
  38836. extra: 1438/1390,
  38837. bottom: 47/1485
  38838. }
  38839. },
  38840. },
  38841. [
  38842. {
  38843. name: "Normal",
  38844. height: math.unit(5 + 2/12, "feet"),
  38845. default: true
  38846. },
  38847. {
  38848. name: "Macro",
  38849. height: math.unit(128, "feet")
  38850. },
  38851. {
  38852. name: "Megamacro",
  38853. height: math.unit(2.56, "miles")
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38859. {
  38860. front: {
  38861. height: math.unit(7, "feet"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/fox/front.svg",
  38865. extra: 1798/1703,
  38866. bottom: 55/1853
  38867. }
  38868. },
  38869. back: {
  38870. height: math.unit(7, "feet"),
  38871. name: "Back",
  38872. image: {
  38873. source: "./media/characters/fox/back.svg",
  38874. extra: 1748/1649,
  38875. bottom: 32/1780
  38876. }
  38877. },
  38878. head: {
  38879. height: math.unit(1.95, "feet"),
  38880. name: "Head",
  38881. image: {
  38882. source: "./media/characters/fox/head.svg"
  38883. }
  38884. },
  38885. dick: {
  38886. height: math.unit(1.33, "feet"),
  38887. name: "Dick",
  38888. image: {
  38889. source: "./media/characters/fox/dick.svg"
  38890. }
  38891. },
  38892. foot: {
  38893. height: math.unit(1, "feet"),
  38894. name: "Foot",
  38895. image: {
  38896. source: "./media/characters/fox/foot.svg"
  38897. }
  38898. },
  38899. paw: {
  38900. height: math.unit(0.92, "feet"),
  38901. name: "Paw",
  38902. image: {
  38903. source: "./media/characters/fox/paw.svg"
  38904. }
  38905. },
  38906. },
  38907. [
  38908. {
  38909. name: "Small",
  38910. height: math.unit(3, "inches")
  38911. },
  38912. {
  38913. name: "\"Realistic\"",
  38914. height: math.unit(7, "feet")
  38915. },
  38916. {
  38917. name: "Normal",
  38918. height: math.unit(150, "feet"),
  38919. default: true
  38920. },
  38921. {
  38922. name: "BIG",
  38923. height: math.unit(1200, "feet")
  38924. },
  38925. {
  38926. name: "👀",
  38927. height: math.unit(5, "miles")
  38928. },
  38929. {
  38930. name: "👀👀👀",
  38931. height: math.unit(64, "miles")
  38932. },
  38933. ]
  38934. ))
  38935. characterMakers.push(() => makeCharacter(
  38936. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38937. {
  38938. front: {
  38939. height: math.unit(625, "feet"),
  38940. name: "Front",
  38941. image: {
  38942. source: "./media/characters/asonja-rossa/front.svg",
  38943. extra: 1833/1686,
  38944. bottom: 24/1857
  38945. }
  38946. },
  38947. back: {
  38948. height: math.unit(625, "feet"),
  38949. name: "Back",
  38950. image: {
  38951. source: "./media/characters/asonja-rossa/back.svg",
  38952. extra: 1852/1753,
  38953. bottom: 26/1878
  38954. }
  38955. },
  38956. },
  38957. [
  38958. {
  38959. name: "Macro",
  38960. height: math.unit(625, "feet"),
  38961. default: true
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38967. {
  38968. side: {
  38969. height: math.unit(8, "feet"),
  38970. name: "Side",
  38971. image: {
  38972. source: "./media/characters/rezukii/side.svg",
  38973. extra: 979/542,
  38974. bottom: 87/1066
  38975. }
  38976. },
  38977. sitting: {
  38978. height: math.unit(14.6, "feet"),
  38979. name: "Sitting",
  38980. image: {
  38981. source: "./media/characters/rezukii/sitting.svg",
  38982. extra: 1023/813,
  38983. bottom: 45/1068
  38984. }
  38985. },
  38986. },
  38987. [
  38988. {
  38989. name: "Tiny",
  38990. height: math.unit(2, "feet")
  38991. },
  38992. {
  38993. name: "Smol",
  38994. height: math.unit(4, "feet")
  38995. },
  38996. {
  38997. name: "Normal",
  38998. height: math.unit(8, "feet"),
  38999. default: true
  39000. },
  39001. {
  39002. name: "Big",
  39003. height: math.unit(12, "feet")
  39004. },
  39005. {
  39006. name: "Macro",
  39007. height: math.unit(30, "feet")
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39013. {
  39014. front: {
  39015. height: math.unit(14, "feet"),
  39016. weight: math.unit(9.5, "tonnes"),
  39017. name: "Front",
  39018. image: {
  39019. source: "./media/characters/dawnheart/front.svg",
  39020. extra: 2792/2675,
  39021. bottom: 64/2856
  39022. }
  39023. },
  39024. },
  39025. [
  39026. {
  39027. name: "Normal",
  39028. height: math.unit(14, "feet"),
  39029. default: true
  39030. },
  39031. ]
  39032. ))
  39033. characterMakers.push(() => makeCharacter(
  39034. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39035. {
  39036. front: {
  39037. height: math.unit(1.7, "m"),
  39038. name: "Front",
  39039. image: {
  39040. source: "./media/characters/gladi/front.svg",
  39041. extra: 1460/1362,
  39042. bottom: 19/1479
  39043. }
  39044. },
  39045. back: {
  39046. height: math.unit(1.7, "m"),
  39047. name: "Back",
  39048. image: {
  39049. source: "./media/characters/gladi/back.svg",
  39050. extra: 1459/1357,
  39051. bottom: 12/1471
  39052. }
  39053. },
  39054. feral: {
  39055. height: math.unit(2.05, "m"),
  39056. name: "Feral",
  39057. image: {
  39058. source: "./media/characters/gladi/feral.svg",
  39059. extra: 821/557,
  39060. bottom: 91/912
  39061. }
  39062. },
  39063. },
  39064. [
  39065. {
  39066. name: "Shortest",
  39067. height: math.unit(70, "cm")
  39068. },
  39069. {
  39070. name: "Normal",
  39071. height: math.unit(1.7, "m")
  39072. },
  39073. {
  39074. name: "Macro",
  39075. height: math.unit(10, "m"),
  39076. default: true
  39077. },
  39078. {
  39079. name: "Tallest",
  39080. height: math.unit(200, "m")
  39081. },
  39082. ]
  39083. ))
  39084. characterMakers.push(() => makeCharacter(
  39085. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39086. {
  39087. front: {
  39088. height: math.unit(5 + 7/12, "feet"),
  39089. weight: math.unit(2, "tons"),
  39090. name: "Front",
  39091. image: {
  39092. source: "./media/characters/erdno/front.svg",
  39093. extra: 1234/1129,
  39094. bottom: 35/1269
  39095. }
  39096. },
  39097. angled: {
  39098. height: math.unit(5 + 7/12, "feet"),
  39099. weight: math.unit(2, "tons"),
  39100. name: "Angled",
  39101. image: {
  39102. source: "./media/characters/erdno/angled.svg",
  39103. extra: 1185/1139,
  39104. bottom: 36/1221
  39105. }
  39106. },
  39107. side: {
  39108. height: math.unit(5 + 7/12, "feet"),
  39109. weight: math.unit(2, "tons"),
  39110. name: "Side",
  39111. image: {
  39112. source: "./media/characters/erdno/side.svg",
  39113. extra: 1191/1144,
  39114. bottom: 40/1231
  39115. }
  39116. },
  39117. back: {
  39118. height: math.unit(5 + 7/12, "feet"),
  39119. weight: math.unit(2, "tons"),
  39120. name: "Back",
  39121. image: {
  39122. source: "./media/characters/erdno/back.svg",
  39123. extra: 1202/1146,
  39124. bottom: 17/1219
  39125. }
  39126. },
  39127. frontNsfw: {
  39128. height: math.unit(5 + 7/12, "feet"),
  39129. weight: math.unit(2, "tons"),
  39130. name: "Front (NSFW)",
  39131. image: {
  39132. source: "./media/characters/erdno/front-nsfw.svg",
  39133. extra: 1234/1129,
  39134. bottom: 35/1269
  39135. }
  39136. },
  39137. angledNsfw: {
  39138. height: math.unit(5 + 7/12, "feet"),
  39139. weight: math.unit(2, "tons"),
  39140. name: "Angled (NSFW)",
  39141. image: {
  39142. source: "./media/characters/erdno/angled-nsfw.svg",
  39143. extra: 1185/1139,
  39144. bottom: 36/1221
  39145. }
  39146. },
  39147. sideNsfw: {
  39148. height: math.unit(5 + 7/12, "feet"),
  39149. weight: math.unit(2, "tons"),
  39150. name: "Side (NSFW)",
  39151. image: {
  39152. source: "./media/characters/erdno/side-nsfw.svg",
  39153. extra: 1191/1144,
  39154. bottom: 40/1231
  39155. }
  39156. },
  39157. backNsfw: {
  39158. height: math.unit(5 + 7/12, "feet"),
  39159. weight: math.unit(2, "tons"),
  39160. name: "Back (NSFW)",
  39161. image: {
  39162. source: "./media/characters/erdno/back-nsfw.svg",
  39163. extra: 1202/1146,
  39164. bottom: 17/1219
  39165. }
  39166. },
  39167. frontHyper: {
  39168. height: math.unit(5 + 7/12, "feet"),
  39169. weight: math.unit(2, "tons"),
  39170. name: "Front (Hyper)",
  39171. image: {
  39172. source: "./media/characters/erdno/front-hyper.svg",
  39173. extra: 1298/1136,
  39174. bottom: 35/1333
  39175. }
  39176. },
  39177. },
  39178. [
  39179. {
  39180. name: "Normal",
  39181. height: math.unit(5 + 7/12, "feet"),
  39182. default: true
  39183. },
  39184. {
  39185. name: "Big",
  39186. height: math.unit(5.7, "meters")
  39187. },
  39188. {
  39189. name: "Macro",
  39190. height: math.unit(5.7, "kilometers")
  39191. },
  39192. {
  39193. name: "Megamacro",
  39194. height: math.unit(5.7, "earths")
  39195. },
  39196. ]
  39197. ))
  39198. characterMakers.push(() => makeCharacter(
  39199. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39200. {
  39201. front: {
  39202. height: math.unit(5 + 10/12, "feet"),
  39203. weight: math.unit(150, "lb"),
  39204. name: "Front",
  39205. image: {
  39206. source: "./media/characters/jamie/front.svg",
  39207. extra: 1908/1768,
  39208. bottom: 19/1927
  39209. }
  39210. },
  39211. },
  39212. [
  39213. {
  39214. name: "Minimum",
  39215. height: math.unit(2, "cm")
  39216. },
  39217. {
  39218. name: "Micro",
  39219. height: math.unit(3, "inches")
  39220. },
  39221. {
  39222. name: "Normal",
  39223. height: math.unit(5 + 10/12, "feet"),
  39224. default: true
  39225. },
  39226. {
  39227. name: "Macro",
  39228. height: math.unit(150, "feet")
  39229. },
  39230. {
  39231. name: "Megamacro",
  39232. height: math.unit(10000, "m")
  39233. },
  39234. ]
  39235. ))
  39236. characterMakers.push(() => makeCharacter(
  39237. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39238. {
  39239. front: {
  39240. height: math.unit(2, "meters"),
  39241. weight: math.unit(100, "kg"),
  39242. name: "Front",
  39243. image: {
  39244. source: "./media/characters/shiron/front.svg",
  39245. extra: 2103/1985,
  39246. bottom: 98/2201
  39247. }
  39248. },
  39249. back: {
  39250. height: math.unit(2, "meters"),
  39251. weight: math.unit(100, "kg"),
  39252. name: "Back",
  39253. image: {
  39254. source: "./media/characters/shiron/back.svg",
  39255. extra: 2110/2015,
  39256. bottom: 89/2199
  39257. }
  39258. },
  39259. hand: {
  39260. height: math.unit(0.96, "feet"),
  39261. name: "Hand",
  39262. image: {
  39263. source: "./media/characters/shiron/hand.svg"
  39264. }
  39265. },
  39266. foot: {
  39267. height: math.unit(1.464, "feet"),
  39268. name: "Foot",
  39269. image: {
  39270. source: "./media/characters/shiron/foot.svg"
  39271. }
  39272. },
  39273. },
  39274. [
  39275. {
  39276. name: "Normal",
  39277. height: math.unit(2, "meters")
  39278. },
  39279. {
  39280. name: "Macro",
  39281. height: math.unit(500, "meters"),
  39282. default: true
  39283. },
  39284. {
  39285. name: "Megamacro",
  39286. height: math.unit(20, "km")
  39287. },
  39288. ]
  39289. ))
  39290. characterMakers.push(() => makeCharacter(
  39291. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39292. {
  39293. front: {
  39294. height: math.unit(6, "feet"),
  39295. name: "Front",
  39296. image: {
  39297. source: "./media/characters/sam/front.svg",
  39298. extra: 849/826,
  39299. bottom: 19/868
  39300. }
  39301. },
  39302. },
  39303. [
  39304. {
  39305. name: "Normal",
  39306. height: math.unit(6, "feet"),
  39307. default: true
  39308. },
  39309. ]
  39310. ))
  39311. characterMakers.push(() => makeCharacter(
  39312. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39313. {
  39314. front: {
  39315. height: math.unit(8 + 4/12, "feet"),
  39316. weight: math.unit(122, "kg"),
  39317. name: "Front",
  39318. image: {
  39319. source: "./media/characters/namori-kurogawa/front.svg",
  39320. extra: 1894/1576,
  39321. bottom: 34/1928
  39322. }
  39323. },
  39324. },
  39325. [
  39326. {
  39327. name: "Normal",
  39328. height: math.unit(8 + 4/12, "feet"),
  39329. default: true
  39330. },
  39331. ]
  39332. ))
  39333. characterMakers.push(() => makeCharacter(
  39334. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39335. {
  39336. front: {
  39337. height: math.unit(9, "feet"),
  39338. weight: math.unit(621, "lb"),
  39339. name: "Front",
  39340. image: {
  39341. source: "./media/characters/unmru/front.svg",
  39342. extra: 1853/1747,
  39343. bottom: 73/1926
  39344. }
  39345. },
  39346. side: {
  39347. height: math.unit(9, "feet"),
  39348. weight: math.unit(621, "lb"),
  39349. name: "Side",
  39350. image: {
  39351. source: "./media/characters/unmru/side.svg",
  39352. extra: 1781/1671,
  39353. bottom: 127/1908
  39354. }
  39355. },
  39356. back: {
  39357. height: math.unit(9, "feet"),
  39358. weight: math.unit(621, "lb"),
  39359. name: "Back",
  39360. image: {
  39361. source: "./media/characters/unmru/back.svg",
  39362. extra: 1894/1765,
  39363. bottom: 75/1969
  39364. }
  39365. },
  39366. dick: {
  39367. height: math.unit(3, "feet"),
  39368. weight: math.unit(35, "lb"),
  39369. name: "Dick",
  39370. image: {
  39371. source: "./media/characters/unmru/dick.svg"
  39372. }
  39373. },
  39374. },
  39375. [
  39376. {
  39377. name: "Normal",
  39378. height: math.unit(9, "feet")
  39379. },
  39380. {
  39381. name: "Natural",
  39382. height: math.unit(27, "feet"),
  39383. default: true
  39384. },
  39385. {
  39386. name: "Giant",
  39387. height: math.unit(90, "feet")
  39388. },
  39389. {
  39390. name: "Kaiju",
  39391. height: math.unit(270, "feet")
  39392. },
  39393. {
  39394. name: "Macro",
  39395. height: math.unit(900, "feet")
  39396. },
  39397. {
  39398. name: "Macro+",
  39399. height: math.unit(2700, "feet")
  39400. },
  39401. {
  39402. name: "Megamacro",
  39403. height: math.unit(9000, "feet")
  39404. },
  39405. {
  39406. name: "City-Crushing",
  39407. height: math.unit(27000, "feet")
  39408. },
  39409. {
  39410. name: "Mountain-Mashing",
  39411. height: math.unit(90000, "feet")
  39412. },
  39413. {
  39414. name: "Earth-Eclipsing",
  39415. height: math.unit(2.7e8, "feet")
  39416. },
  39417. {
  39418. name: "Sol-Swallowing",
  39419. height: math.unit(9e10, "feet")
  39420. },
  39421. {
  39422. name: "Majoris-Munching",
  39423. height: math.unit(2.7e13, "feet")
  39424. },
  39425. ]
  39426. ))
  39427. characterMakers.push(() => makeCharacter(
  39428. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39429. {
  39430. front: {
  39431. height: math.unit(1, "inch"),
  39432. name: "Front",
  39433. image: {
  39434. source: "./media/characters/squeaks-mouse/front.svg",
  39435. extra: 352/308,
  39436. bottom: 25/377
  39437. }
  39438. },
  39439. },
  39440. [
  39441. {
  39442. name: "Micro",
  39443. height: math.unit(1, "inch"),
  39444. default: true
  39445. },
  39446. ]
  39447. ))
  39448. characterMakers.push(() => makeCharacter(
  39449. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39450. {
  39451. side: {
  39452. height: math.unit(35, "feet"),
  39453. name: "Side",
  39454. image: {
  39455. source: "./media/characters/sayko/side.svg",
  39456. extra: 1697/1021,
  39457. bottom: 82/1779
  39458. }
  39459. },
  39460. head: {
  39461. height: math.unit(16, "feet"),
  39462. name: "Head",
  39463. image: {
  39464. source: "./media/characters/sayko/head.svg"
  39465. }
  39466. },
  39467. forepaw: {
  39468. height: math.unit(7.85, "feet"),
  39469. name: "Forepaw",
  39470. image: {
  39471. source: "./media/characters/sayko/forepaw.svg"
  39472. }
  39473. },
  39474. hindpaw: {
  39475. height: math.unit(8.8, "feet"),
  39476. name: "Hindpaw",
  39477. image: {
  39478. source: "./media/characters/sayko/hindpaw.svg"
  39479. }
  39480. },
  39481. },
  39482. [
  39483. {
  39484. name: "Normal",
  39485. height: math.unit(35, "feet"),
  39486. default: true
  39487. },
  39488. {
  39489. name: "Colossus",
  39490. height: math.unit(100, "meters")
  39491. },
  39492. {
  39493. name: "\"Small\" Deity",
  39494. height: math.unit(1, "km")
  39495. },
  39496. {
  39497. name: "\"Large\" Deity",
  39498. height: math.unit(15, "km")
  39499. },
  39500. ]
  39501. ))
  39502. characterMakers.push(() => makeCharacter(
  39503. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39504. {
  39505. front: {
  39506. height: math.unit(6, "feet"),
  39507. weight: math.unit(250, "lb"),
  39508. name: "Front",
  39509. image: {
  39510. source: "./media/characters/mukiro/front.svg",
  39511. extra: 1368/1310,
  39512. bottom: 34/1402
  39513. }
  39514. },
  39515. },
  39516. [
  39517. {
  39518. name: "Normal",
  39519. height: math.unit(6, "feet"),
  39520. default: true
  39521. },
  39522. ]
  39523. ))
  39524. characterMakers.push(() => makeCharacter(
  39525. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39526. {
  39527. front: {
  39528. height: math.unit(12 + 4/12, "feet"),
  39529. name: "Front",
  39530. image: {
  39531. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39532. extra: 1346/1311,
  39533. bottom: 65/1411
  39534. }
  39535. },
  39536. },
  39537. [
  39538. {
  39539. name: "Base",
  39540. height: math.unit(12 + 4/12, "feet"),
  39541. default: true
  39542. },
  39543. {
  39544. name: "Macro",
  39545. height: math.unit(150, "feet")
  39546. },
  39547. {
  39548. name: "Mega",
  39549. height: math.unit(2, "miles")
  39550. },
  39551. {
  39552. name: "Demi God",
  39553. height: math.unit(4, "AU")
  39554. },
  39555. {
  39556. name: "God Size",
  39557. height: math.unit(1, "universe")
  39558. },
  39559. ]
  39560. ))
  39561. characterMakers.push(() => makeCharacter(
  39562. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39563. {
  39564. front: {
  39565. height: math.unit(3 + 3/12, "feet"),
  39566. weight: math.unit(88, "lb"),
  39567. name: "Front",
  39568. image: {
  39569. source: "./media/characters/trey/front.svg",
  39570. extra: 1815/1509,
  39571. bottom: 60/1875
  39572. }
  39573. },
  39574. },
  39575. [
  39576. {
  39577. name: "Normal",
  39578. height: math.unit(3 + 3/12, "feet"),
  39579. default: true
  39580. },
  39581. ]
  39582. ))
  39583. characterMakers.push(() => makeCharacter(
  39584. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39585. {
  39586. front: {
  39587. height: math.unit(4, "meters"),
  39588. name: "Front",
  39589. image: {
  39590. source: "./media/characters/adelonda/front.svg",
  39591. extra: 1077/982,
  39592. bottom: 39/1116
  39593. }
  39594. },
  39595. back: {
  39596. height: math.unit(4, "meters"),
  39597. name: "Back",
  39598. image: {
  39599. source: "./media/characters/adelonda/back.svg",
  39600. extra: 1105/1003,
  39601. bottom: 25/1130
  39602. }
  39603. },
  39604. feral: {
  39605. height: math.unit(40/1.5, "meters"),
  39606. name: "Feral",
  39607. image: {
  39608. source: "./media/characters/adelonda/feral.svg",
  39609. extra: 597/271,
  39610. bottom: 387/984
  39611. }
  39612. },
  39613. },
  39614. [
  39615. {
  39616. name: "Normal",
  39617. height: math.unit(4, "meters"),
  39618. default: true
  39619. },
  39620. ]
  39621. ))
  39622. characterMakers.push(() => makeCharacter(
  39623. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39624. {
  39625. front: {
  39626. height: math.unit(8 + 4/12, "feet"),
  39627. weight: math.unit(670, "lb"),
  39628. name: "Front",
  39629. image: {
  39630. source: "./media/characters/acadiel/front.svg",
  39631. extra: 1901/1595,
  39632. bottom: 142/2043
  39633. }
  39634. },
  39635. },
  39636. [
  39637. {
  39638. name: "Normal",
  39639. height: math.unit(8 + 4/12, "feet"),
  39640. default: true
  39641. },
  39642. {
  39643. name: "Macro",
  39644. height: math.unit(200, "feet")
  39645. },
  39646. ]
  39647. ))
  39648. characterMakers.push(() => makeCharacter(
  39649. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39650. {
  39651. front: {
  39652. height: math.unit(6 + 2/12, "feet"),
  39653. weight: math.unit(185, "lb"),
  39654. name: "Front",
  39655. image: {
  39656. source: "./media/characters/kayne-ein/front.svg",
  39657. extra: 1780/1560,
  39658. bottom: 81/1861
  39659. }
  39660. },
  39661. },
  39662. [
  39663. {
  39664. name: "Normal",
  39665. height: math.unit(6 + 2/12, "feet"),
  39666. default: true
  39667. },
  39668. {
  39669. name: "Transformation Stage",
  39670. height: math.unit(15, "feet")
  39671. },
  39672. {
  39673. name: "Macro",
  39674. height: math.unit(150, "feet")
  39675. },
  39676. {
  39677. name: "Earth's Shadow",
  39678. height: math.unit(6200, "miles")
  39679. },
  39680. {
  39681. name: "Universal Demon",
  39682. height: math.unit(28e9, "parsecs")
  39683. },
  39684. {
  39685. name: "Multiverse God",
  39686. height: math.unit(3, "multiverses")
  39687. },
  39688. ]
  39689. ))
  39690. characterMakers.push(() => makeCharacter(
  39691. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39692. {
  39693. front: {
  39694. height: math.unit(5 + 5/12, "feet"),
  39695. name: "Front",
  39696. image: {
  39697. source: "./media/characters/fawn/front.svg",
  39698. extra: 1873/1731,
  39699. bottom: 95/1968
  39700. }
  39701. },
  39702. back: {
  39703. height: math.unit(5 + 5/12, "feet"),
  39704. name: "Back",
  39705. image: {
  39706. source: "./media/characters/fawn/back.svg",
  39707. extra: 1813/1700,
  39708. bottom: 14/1827
  39709. }
  39710. },
  39711. hoof: {
  39712. height: math.unit(1.45, "feet"),
  39713. name: "Hoof",
  39714. image: {
  39715. source: "./media/characters/fawn/hoof.svg"
  39716. }
  39717. },
  39718. },
  39719. [
  39720. {
  39721. name: "Normal",
  39722. height: math.unit(5 + 5/12, "feet"),
  39723. default: true
  39724. },
  39725. ]
  39726. ))
  39727. characterMakers.push(() => makeCharacter(
  39728. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39729. {
  39730. front: {
  39731. height: math.unit(2 + 5/12, "feet"),
  39732. name: "Front",
  39733. image: {
  39734. source: "./media/characters/orion/front.svg",
  39735. extra: 1366/1304,
  39736. bottom: 43/1409
  39737. }
  39738. },
  39739. paw: {
  39740. height: math.unit(0.52, "feet"),
  39741. name: "Paw",
  39742. image: {
  39743. source: "./media/characters/orion/paw.svg"
  39744. }
  39745. },
  39746. },
  39747. [
  39748. {
  39749. name: "Normal",
  39750. height: math.unit(2 + 5/12, "feet"),
  39751. default: true
  39752. },
  39753. ]
  39754. ))
  39755. characterMakers.push(() => makeCharacter(
  39756. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39757. {
  39758. front: {
  39759. height: math.unit(5 + 10/12, "feet"),
  39760. name: "Front",
  39761. image: {
  39762. source: "./media/characters/vera/front.svg",
  39763. extra: 1680/1575,
  39764. bottom: 49/1729
  39765. }
  39766. },
  39767. back: {
  39768. height: math.unit(5 + 10/12, "feet"),
  39769. name: "Back",
  39770. image: {
  39771. source: "./media/characters/vera/back.svg",
  39772. extra: 1700/1588,
  39773. bottom: 18/1718
  39774. }
  39775. },
  39776. arcanine: {
  39777. height: math.unit(6 + 8/12, "feet"),
  39778. name: "Arcanine",
  39779. image: {
  39780. source: "./media/characters/vera/arcanine.svg",
  39781. extra: 1590/1511,
  39782. bottom: 71/1661
  39783. }
  39784. },
  39785. maw: {
  39786. height: math.unit(0.82, "feet"),
  39787. name: "Maw",
  39788. image: {
  39789. source: "./media/characters/vera/maw.svg"
  39790. }
  39791. },
  39792. mawArcanine: {
  39793. height: math.unit(0.97, "feet"),
  39794. name: "Maw (Arcanine)",
  39795. image: {
  39796. source: "./media/characters/vera/maw-arcanine.svg"
  39797. }
  39798. },
  39799. paw: {
  39800. height: math.unit(0.75, "feet"),
  39801. name: "Paw",
  39802. image: {
  39803. source: "./media/characters/vera/paw.svg"
  39804. }
  39805. },
  39806. pawprint: {
  39807. height: math.unit(0.52, "feet"),
  39808. name: "Pawprint",
  39809. image: {
  39810. source: "./media/characters/vera/pawprint.svg"
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "Normal",
  39817. height: math.unit(5 + 10/12, "feet"),
  39818. default: true
  39819. },
  39820. {
  39821. name: "Macro",
  39822. height: math.unit(75, "feet")
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39828. {
  39829. front: {
  39830. height: math.unit(4, "feet"),
  39831. weight: math.unit(40, "lb"),
  39832. name: "Front",
  39833. image: {
  39834. source: "./media/characters/orvan-rabbit/front.svg",
  39835. extra: 1896/1642,
  39836. bottom: 29/1925
  39837. }
  39838. },
  39839. },
  39840. [
  39841. {
  39842. name: "Normal",
  39843. height: math.unit(4, "feet"),
  39844. default: true
  39845. },
  39846. ]
  39847. ))
  39848. characterMakers.push(() => makeCharacter(
  39849. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39850. {
  39851. front: {
  39852. height: math.unit(6, "feet"),
  39853. weight: math.unit(168, "lb"),
  39854. name: "Front",
  39855. image: {
  39856. source: "./media/characters/lisa/front.svg",
  39857. extra: 2065/1867,
  39858. bottom: 46/2111
  39859. }
  39860. },
  39861. back: {
  39862. height: math.unit(6, "feet"),
  39863. weight: math.unit(168, "lb"),
  39864. name: "Back",
  39865. image: {
  39866. source: "./media/characters/lisa/back.svg",
  39867. extra: 1982/1838,
  39868. bottom: 29/2011
  39869. }
  39870. },
  39871. maw: {
  39872. height: math.unit(0.81, "feet"),
  39873. name: "Maw",
  39874. image: {
  39875. source: "./media/characters/lisa/maw.svg"
  39876. }
  39877. },
  39878. paw: {
  39879. height: math.unit(0.9, "feet"),
  39880. name: "Paw",
  39881. image: {
  39882. source: "./media/characters/lisa/paw.svg"
  39883. }
  39884. },
  39885. caribousune: {
  39886. height: math.unit(7 + 2/12, "feet"),
  39887. weight: math.unit(268, "lb"),
  39888. name: "Caribousune",
  39889. image: {
  39890. source: "./media/characters/lisa/caribousune.svg",
  39891. extra: 1843/1633,
  39892. bottom: 29/1872
  39893. }
  39894. },
  39895. frontCaribousune: {
  39896. height: math.unit(7 + 2/12, "feet"),
  39897. weight: math.unit(268, "lb"),
  39898. name: "Front (Caribousune)",
  39899. image: {
  39900. source: "./media/characters/lisa/front-caribousune.svg",
  39901. extra: 1818/1638,
  39902. bottom: 52/1870
  39903. }
  39904. },
  39905. sideCaribousune: {
  39906. height: math.unit(7 + 2/12, "feet"),
  39907. weight: math.unit(268, "lb"),
  39908. name: "Side (Caribousune)",
  39909. image: {
  39910. source: "./media/characters/lisa/side-caribousune.svg",
  39911. extra: 1851/1635,
  39912. bottom: 16/1867
  39913. }
  39914. },
  39915. backCaribousune: {
  39916. height: math.unit(7 + 2/12, "feet"),
  39917. weight: math.unit(268, "lb"),
  39918. name: "Back (Caribousune)",
  39919. image: {
  39920. source: "./media/characters/lisa/back-caribousune.svg",
  39921. extra: 1801/1604,
  39922. bottom: 44/1845
  39923. }
  39924. },
  39925. caribou: {
  39926. height: math.unit(7 + 2/12, "feet"),
  39927. weight: math.unit(268, "lb"),
  39928. name: "Caribou",
  39929. image: {
  39930. source: "./media/characters/lisa/caribou.svg",
  39931. extra: 1843/1633,
  39932. bottom: 29/1872
  39933. }
  39934. },
  39935. frontCaribou: {
  39936. height: math.unit(7 + 2/12, "feet"),
  39937. weight: math.unit(268, "lb"),
  39938. name: "Front (Caribou)",
  39939. image: {
  39940. source: "./media/characters/lisa/front-caribou.svg",
  39941. extra: 1818/1638,
  39942. bottom: 52/1870
  39943. }
  39944. },
  39945. sideCaribou: {
  39946. height: math.unit(7 + 2/12, "feet"),
  39947. weight: math.unit(268, "lb"),
  39948. name: "Side (Caribou)",
  39949. image: {
  39950. source: "./media/characters/lisa/side-caribou.svg",
  39951. extra: 1851/1635,
  39952. bottom: 16/1867
  39953. }
  39954. },
  39955. backCaribou: {
  39956. height: math.unit(7 + 2/12, "feet"),
  39957. weight: math.unit(268, "lb"),
  39958. name: "Back (Caribou)",
  39959. image: {
  39960. source: "./media/characters/lisa/back-caribou.svg",
  39961. extra: 1801/1604,
  39962. bottom: 44/1845
  39963. }
  39964. },
  39965. mawCaribou: {
  39966. height: math.unit(1.45, "feet"),
  39967. name: "Maw (Caribou)",
  39968. image: {
  39969. source: "./media/characters/lisa/maw-caribou.svg"
  39970. }
  39971. },
  39972. mawCaribousune: {
  39973. height: math.unit(1.45, "feet"),
  39974. name: "Maw (Caribousune)",
  39975. image: {
  39976. source: "./media/characters/lisa/maw-caribousune.svg"
  39977. }
  39978. },
  39979. pawCaribousune: {
  39980. height: math.unit(1.61, "feet"),
  39981. name: "Paw (Caribou)",
  39982. image: {
  39983. source: "./media/characters/lisa/paw-caribousune.svg"
  39984. }
  39985. },
  39986. },
  39987. [
  39988. {
  39989. name: "Normal",
  39990. height: math.unit(6, "feet")
  39991. },
  39992. {
  39993. name: "God Size",
  39994. height: math.unit(72, "feet"),
  39995. default: true
  39996. },
  39997. {
  39998. name: "Towering",
  39999. height: math.unit(288, "feet")
  40000. },
  40001. {
  40002. name: "City Size",
  40003. height: math.unit(48384, "feet")
  40004. },
  40005. {
  40006. name: "Continental",
  40007. height: math.unit(4200, "miles")
  40008. },
  40009. {
  40010. name: "Planet Eater",
  40011. height: math.unit(42, "earths")
  40012. },
  40013. {
  40014. name: "Star Swallower",
  40015. height: math.unit(42, "solarradii")
  40016. },
  40017. {
  40018. name: "System Swallower",
  40019. height: math.unit(84000, "AU")
  40020. },
  40021. {
  40022. name: "Galaxy Gobbler",
  40023. height: math.unit(42, "galaxies")
  40024. },
  40025. {
  40026. name: "Universe Devourer",
  40027. height: math.unit(42, "universes")
  40028. },
  40029. {
  40030. name: "Multiverse Muncher",
  40031. height: math.unit(42, "multiverses")
  40032. },
  40033. ]
  40034. ))
  40035. characterMakers.push(() => makeCharacter(
  40036. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40037. {
  40038. front: {
  40039. height: math.unit(36, "feet"),
  40040. name: "Front",
  40041. image: {
  40042. source: "./media/characters/shadow-rat/front.svg",
  40043. extra: 1845/1758,
  40044. bottom: 83/1928
  40045. }
  40046. },
  40047. },
  40048. [
  40049. {
  40050. name: "Macro",
  40051. height: math.unit(36, "feet"),
  40052. default: true
  40053. },
  40054. ]
  40055. ))
  40056. characterMakers.push(() => makeCharacter(
  40057. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40058. {
  40059. side: {
  40060. height: math.unit(8, "feet"),
  40061. weight: math.unit(2630, "lb"),
  40062. name: "Side",
  40063. image: {
  40064. source: "./media/characters/torallia/side.svg",
  40065. extra: 2164/2021,
  40066. bottom: 371/2535
  40067. }
  40068. },
  40069. },
  40070. [
  40071. {
  40072. name: "Mortal Interaction",
  40073. height: math.unit(8, "feet")
  40074. },
  40075. {
  40076. name: "Natural",
  40077. height: math.unit(24, "feet"),
  40078. default: true
  40079. },
  40080. {
  40081. name: "Giant",
  40082. height: math.unit(80, "feet")
  40083. },
  40084. {
  40085. name: "Kaiju",
  40086. height: math.unit(240, "feet")
  40087. },
  40088. {
  40089. name: "Macro",
  40090. height: math.unit(800, "feet")
  40091. },
  40092. {
  40093. name: "Macro+",
  40094. height: math.unit(2400, "feet")
  40095. },
  40096. {
  40097. name: "Macro++",
  40098. height: math.unit(8000, "feet")
  40099. },
  40100. {
  40101. name: "City-Crushing",
  40102. height: math.unit(24000, "feet")
  40103. },
  40104. {
  40105. name: "Mountain-Mashing",
  40106. height: math.unit(80000, "feet")
  40107. },
  40108. {
  40109. name: "District Demolisher",
  40110. height: math.unit(240000, "feet")
  40111. },
  40112. {
  40113. name: "Tri-County Terror",
  40114. height: math.unit(800000, "feet")
  40115. },
  40116. {
  40117. name: "State Smasher",
  40118. height: math.unit(2.4e6, "feet")
  40119. },
  40120. {
  40121. name: "Nation Nemesis",
  40122. height: math.unit(8e6, "feet")
  40123. },
  40124. {
  40125. name: "Continent Cracker",
  40126. height: math.unit(2.4e7, "feet")
  40127. },
  40128. {
  40129. name: "Planet-Pillaging",
  40130. height: math.unit(8e7, "feet")
  40131. },
  40132. {
  40133. name: "Earth-Eclipsing",
  40134. height: math.unit(2.4e8, "feet")
  40135. },
  40136. {
  40137. name: "Jovian-Jostling",
  40138. height: math.unit(8e8, "feet")
  40139. },
  40140. {
  40141. name: "Gas Giant Gulper",
  40142. height: math.unit(2.4e9, "feet")
  40143. },
  40144. {
  40145. name: "Astral Annihilator",
  40146. height: math.unit(8e9, "feet")
  40147. },
  40148. {
  40149. name: "Celestial Conqueror",
  40150. height: math.unit(2.4e10, "feet")
  40151. },
  40152. {
  40153. name: "Sol-Swallowing",
  40154. height: math.unit(8e10, "feet")
  40155. },
  40156. {
  40157. name: "Hunter of the Heavens",
  40158. height: math.unit(2.4e13, "feet")
  40159. },
  40160. ]
  40161. ))
  40162. characterMakers.push(() => makeCharacter(
  40163. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40164. {
  40165. front: {
  40166. height: math.unit(6 + 8/12, "feet"),
  40167. weight: math.unit(250, "kilograms"),
  40168. volume: math.unit(28, "liters"),
  40169. name: "Front",
  40170. image: {
  40171. source: "./media/characters/rebecca-pawlson/front.svg",
  40172. extra: 1737/1596,
  40173. bottom: 107/1844
  40174. }
  40175. },
  40176. back: {
  40177. height: math.unit(6 + 8/12, "feet"),
  40178. weight: math.unit(250, "kilograms"),
  40179. volume: math.unit(28, "liters"),
  40180. name: "Back",
  40181. image: {
  40182. source: "./media/characters/rebecca-pawlson/back.svg",
  40183. extra: 1702/1523,
  40184. bottom: 86/1788
  40185. }
  40186. },
  40187. },
  40188. [
  40189. {
  40190. name: "Normal",
  40191. height: math.unit(6 + 8/12, "feet")
  40192. },
  40193. {
  40194. name: "Mini Macro",
  40195. height: math.unit(10, "feet"),
  40196. default: true
  40197. },
  40198. {
  40199. name: "Macro",
  40200. height: math.unit(100, "feet")
  40201. },
  40202. {
  40203. name: "Mega Macro",
  40204. height: math.unit(2500, "feet")
  40205. },
  40206. {
  40207. name: "Giga Macro",
  40208. height: math.unit(50, "miles")
  40209. },
  40210. ]
  40211. ))
  40212. characterMakers.push(() => makeCharacter(
  40213. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40214. {
  40215. front: {
  40216. height: math.unit(7 + 6/12, "feet"),
  40217. weight: math.unit(600, "lb"),
  40218. name: "Front",
  40219. image: {
  40220. source: "./media/characters/moxie-nova/front.svg",
  40221. extra: 1734/1652,
  40222. bottom: 41/1775
  40223. }
  40224. },
  40225. },
  40226. [
  40227. {
  40228. name: "Normal",
  40229. height: math.unit(7 + 6/12, "feet"),
  40230. default: true
  40231. },
  40232. ]
  40233. ))
  40234. characterMakers.push(() => makeCharacter(
  40235. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40236. {
  40237. goat: {
  40238. height: math.unit(4, "feet"),
  40239. weight: math.unit(180, "lb"),
  40240. name: "Goat",
  40241. image: {
  40242. source: "./media/characters/tiffany/goat.svg",
  40243. extra: 1845/1595,
  40244. bottom: 106/1951
  40245. }
  40246. },
  40247. front: {
  40248. height: math.unit(5, "feet"),
  40249. weight: math.unit(150, "lb"),
  40250. name: "Foxcoon",
  40251. image: {
  40252. source: "./media/characters/tiffany/foxcoon.svg",
  40253. extra: 1941/1845,
  40254. bottom: 58/1999
  40255. }
  40256. },
  40257. },
  40258. [
  40259. {
  40260. name: "Normal",
  40261. height: math.unit(5, "feet"),
  40262. default: true
  40263. },
  40264. ]
  40265. ))
  40266. characterMakers.push(() => makeCharacter(
  40267. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40268. {
  40269. front: {
  40270. height: math.unit(8, "feet"),
  40271. weight: math.unit(300, "lb"),
  40272. name: "Front",
  40273. image: {
  40274. source: "./media/characters/raxinath/front.svg",
  40275. extra: 1407/1309,
  40276. bottom: 39/1446
  40277. }
  40278. },
  40279. back: {
  40280. height: math.unit(8, "feet"),
  40281. weight: math.unit(300, "lb"),
  40282. name: "Back",
  40283. image: {
  40284. source: "./media/characters/raxinath/back.svg",
  40285. extra: 1405/1315,
  40286. bottom: 9/1414
  40287. }
  40288. },
  40289. },
  40290. [
  40291. {
  40292. name: "Speck",
  40293. height: math.unit(0.5, "nm")
  40294. },
  40295. {
  40296. name: "Micro",
  40297. height: math.unit(3, "inches")
  40298. },
  40299. {
  40300. name: "Kobold",
  40301. height: math.unit(3, "feet")
  40302. },
  40303. {
  40304. name: "Normal",
  40305. height: math.unit(8, "feet"),
  40306. default: true
  40307. },
  40308. {
  40309. name: "Giant",
  40310. height: math.unit(50, "feet")
  40311. },
  40312. {
  40313. name: "Macro",
  40314. height: math.unit(1000, "feet")
  40315. },
  40316. {
  40317. name: "Megamacro",
  40318. height: math.unit(1, "mile")
  40319. },
  40320. ]
  40321. ))
  40322. characterMakers.push(() => makeCharacter(
  40323. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40324. {
  40325. front: {
  40326. height: math.unit(10, "feet"),
  40327. weight: math.unit(1442, "lb"),
  40328. name: "Front",
  40329. image: {
  40330. source: "./media/characters/mal-dragon/front.svg",
  40331. extra: 1515/1444,
  40332. bottom: 113/1628
  40333. }
  40334. },
  40335. back: {
  40336. height: math.unit(10, "feet"),
  40337. weight: math.unit(1442, "lb"),
  40338. name: "Back",
  40339. image: {
  40340. source: "./media/characters/mal-dragon/back.svg",
  40341. extra: 1527/1434,
  40342. bottom: 25/1552
  40343. }
  40344. },
  40345. },
  40346. [
  40347. {
  40348. name: "Mortal Interaction",
  40349. height: math.unit(10, "feet"),
  40350. default: true
  40351. },
  40352. {
  40353. name: "Large",
  40354. height: math.unit(30, "feet")
  40355. },
  40356. {
  40357. name: "Kaiju",
  40358. height: math.unit(300, "feet")
  40359. },
  40360. {
  40361. name: "Megamacro",
  40362. height: math.unit(10000, "feet")
  40363. },
  40364. {
  40365. name: "Continent Cracker",
  40366. height: math.unit(30000000, "feet")
  40367. },
  40368. {
  40369. name: "Sol-Swallowing",
  40370. height: math.unit(1e11, "feet")
  40371. },
  40372. {
  40373. name: "Light Universal",
  40374. height: math.unit(5, "universes")
  40375. },
  40376. {
  40377. name: "Universe Atoms",
  40378. height: math.unit(1.829e9, "universes")
  40379. },
  40380. {
  40381. name: "Light Multiversal",
  40382. height: math.unit(5, "multiverses")
  40383. },
  40384. {
  40385. name: "Multiverse Atoms",
  40386. height: math.unit(1.829e9, "multiverses")
  40387. },
  40388. {
  40389. name: "Fabric of Time",
  40390. height: math.unit(1e262, "multiverses")
  40391. },
  40392. ]
  40393. ))
  40394. characterMakers.push(() => makeCharacter(
  40395. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40396. {
  40397. front: {
  40398. height: math.unit(9, "feet"),
  40399. weight: math.unit(1050, "lb"),
  40400. name: "Front",
  40401. image: {
  40402. source: "./media/characters/tabitha/front.svg",
  40403. extra: 2083/1994,
  40404. bottom: 68/2151
  40405. }
  40406. },
  40407. },
  40408. [
  40409. {
  40410. name: "Baseline",
  40411. height: math.unit(9, "feet"),
  40412. default: true
  40413. },
  40414. {
  40415. name: "Giant",
  40416. height: math.unit(90, "feet")
  40417. },
  40418. {
  40419. name: "Macro",
  40420. height: math.unit(900, "feet")
  40421. },
  40422. {
  40423. name: "Megamacro",
  40424. height: math.unit(9000, "feet")
  40425. },
  40426. {
  40427. name: "City-Crushing",
  40428. height: math.unit(27000, "feet")
  40429. },
  40430. {
  40431. name: "Mountain-Mashing",
  40432. height: math.unit(90000, "feet")
  40433. },
  40434. {
  40435. name: "Nation Nemesis",
  40436. height: math.unit(9e6, "feet")
  40437. },
  40438. {
  40439. name: "Continent Cracker",
  40440. height: math.unit(27e6, "feet")
  40441. },
  40442. {
  40443. name: "Earth-Eclipsing",
  40444. height: math.unit(2.7e8, "feet")
  40445. },
  40446. {
  40447. name: "Gas Giant Gulper",
  40448. height: math.unit(2.7e9, "feet")
  40449. },
  40450. {
  40451. name: "Sol-Swallowing",
  40452. height: math.unit(9e10, "feet")
  40453. },
  40454. {
  40455. name: "Galaxy Gulper",
  40456. height: math.unit(9, "galaxies")
  40457. },
  40458. {
  40459. name: "Cosmos Churner",
  40460. height: math.unit(9, "universes")
  40461. },
  40462. ]
  40463. ))
  40464. characterMakers.push(() => makeCharacter(
  40465. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40466. {
  40467. front: {
  40468. height: math.unit(160, "cm"),
  40469. weight: math.unit(55, "kg"),
  40470. name: "Front",
  40471. image: {
  40472. source: "./media/characters/tow/front.svg",
  40473. extra: 1751/1722,
  40474. bottom: 74/1825
  40475. }
  40476. },
  40477. },
  40478. [
  40479. {
  40480. name: "Norm",
  40481. height: math.unit(160, "cm")
  40482. },
  40483. {
  40484. name: "Casual",
  40485. height: math.unit(3200, "m"),
  40486. default: true
  40487. },
  40488. {
  40489. name: "Show-Off",
  40490. height: math.unit(160, "km")
  40491. },
  40492. ]
  40493. ))
  40494. characterMakers.push(() => makeCharacter(
  40495. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40496. {
  40497. front: {
  40498. height: math.unit(7 + 11/12, "feet"),
  40499. weight: math.unit(342.8, "lb"),
  40500. name: "Front",
  40501. image: {
  40502. source: "./media/characters/vivian-orca-dragon/front.svg",
  40503. extra: 1890/1865,
  40504. bottom: 28/1918
  40505. }
  40506. },
  40507. },
  40508. [
  40509. {
  40510. name: "Micro",
  40511. height: math.unit(5, "inches")
  40512. },
  40513. {
  40514. name: "Normal",
  40515. height: math.unit(7 + 11/12, "feet"),
  40516. default: true
  40517. },
  40518. {
  40519. name: "Macro",
  40520. height: math.unit(395 + 7/12, "feet")
  40521. },
  40522. ]
  40523. ))
  40524. characterMakers.push(() => makeCharacter(
  40525. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40526. {
  40527. side: {
  40528. height: math.unit(10, "feet"),
  40529. weight: math.unit(1442, "lb"),
  40530. name: "Side",
  40531. image: {
  40532. source: "./media/characters/lotherakon/side.svg",
  40533. extra: 1604/1497,
  40534. bottom: 89/1693
  40535. }
  40536. },
  40537. },
  40538. [
  40539. {
  40540. name: "Mortal Interaction",
  40541. height: math.unit(10, "feet")
  40542. },
  40543. {
  40544. name: "Large",
  40545. height: math.unit(30, "feet"),
  40546. default: true
  40547. },
  40548. {
  40549. name: "Giant",
  40550. height: math.unit(100, "feet")
  40551. },
  40552. {
  40553. name: "Kaiju",
  40554. height: math.unit(300, "feet")
  40555. },
  40556. {
  40557. name: "Macro",
  40558. height: math.unit(1000, "feet")
  40559. },
  40560. {
  40561. name: "Macro+",
  40562. height: math.unit(3000, "feet")
  40563. },
  40564. {
  40565. name: "Megamacro",
  40566. height: math.unit(10000, "feet")
  40567. },
  40568. {
  40569. name: "City-Crushing",
  40570. height: math.unit(30000, "feet")
  40571. },
  40572. {
  40573. name: "Continent Cracker",
  40574. height: math.unit(30e6, "feet")
  40575. },
  40576. {
  40577. name: "Earth Eclipsing",
  40578. height: math.unit(3e8, "feet")
  40579. },
  40580. {
  40581. name: "Gas Giant Gulper",
  40582. height: math.unit(3e9, "feet")
  40583. },
  40584. {
  40585. name: "Sol-Swallowing",
  40586. height: math.unit(1e11, "feet")
  40587. },
  40588. {
  40589. name: "System Swallower",
  40590. height: math.unit(3e14, "feet")
  40591. },
  40592. {
  40593. name: "Galaxy Gulper",
  40594. height: math.unit(10, "galaxies")
  40595. },
  40596. {
  40597. name: "Light Universal",
  40598. height: math.unit(5, "universes")
  40599. },
  40600. {
  40601. name: "Universe Palm",
  40602. height: math.unit(20, "universes")
  40603. },
  40604. {
  40605. name: "Light Multiversal",
  40606. height: math.unit(5, "multiverses")
  40607. },
  40608. {
  40609. name: "Multiverse Palm",
  40610. height: math.unit(20, "multiverses")
  40611. },
  40612. {
  40613. name: "Inferno Incarnate",
  40614. height: math.unit(1e7, "multiverses")
  40615. },
  40616. ]
  40617. ))
  40618. characterMakers.push(() => makeCharacter(
  40619. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40620. {
  40621. front: {
  40622. height: math.unit(8, "feet"),
  40623. weight: math.unit(1200, "lb"),
  40624. name: "Front",
  40625. image: {
  40626. source: "./media/characters/malithee/front.svg",
  40627. extra: 1675/1640,
  40628. bottom: 162/1837
  40629. }
  40630. },
  40631. },
  40632. [
  40633. {
  40634. name: "Mortal Interaction",
  40635. height: math.unit(8, "feet"),
  40636. default: true
  40637. },
  40638. {
  40639. name: "Large",
  40640. height: math.unit(24, "feet")
  40641. },
  40642. {
  40643. name: "Kaiju",
  40644. height: math.unit(240, "feet")
  40645. },
  40646. {
  40647. name: "Megamacro",
  40648. height: math.unit(8000, "feet")
  40649. },
  40650. {
  40651. name: "Continent Cracker",
  40652. height: math.unit(24e6, "feet")
  40653. },
  40654. {
  40655. name: "Earth-Eclipsing",
  40656. height: math.unit(2.4e8, "feet")
  40657. },
  40658. {
  40659. name: "Sol-Swallowing",
  40660. height: math.unit(8e10, "feet")
  40661. },
  40662. {
  40663. name: "Galaxy Gulper",
  40664. height: math.unit(8, "galaxies")
  40665. },
  40666. {
  40667. name: "Light Universal",
  40668. height: math.unit(4, "universes")
  40669. },
  40670. {
  40671. name: "Universe Atoms",
  40672. height: math.unit(1.829e9, "universes")
  40673. },
  40674. {
  40675. name: "Light Multiversal",
  40676. height: math.unit(4, "multiverses")
  40677. },
  40678. {
  40679. name: "Multiverse Atoms",
  40680. height: math.unit(1.829e9, "multiverses")
  40681. },
  40682. {
  40683. name: "Nigh-Omnipresence",
  40684. height: math.unit(8e261, "multiverses")
  40685. },
  40686. ]
  40687. ))
  40688. characterMakers.push(() => makeCharacter(
  40689. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40690. {
  40691. front: {
  40692. height: math.unit(10, "feet"),
  40693. weight: math.unit(1500, "lb"),
  40694. name: "Front",
  40695. image: {
  40696. source: "./media/characters/miles-thestia/front.svg",
  40697. extra: 1812/1727,
  40698. bottom: 86/1898
  40699. }
  40700. },
  40701. back: {
  40702. height: math.unit(10, "feet"),
  40703. weight: math.unit(1500, "lb"),
  40704. name: "Back",
  40705. image: {
  40706. source: "./media/characters/miles-thestia/back.svg",
  40707. extra: 1799/1690,
  40708. bottom: 47/1846
  40709. }
  40710. },
  40711. frontNsfw: {
  40712. height: math.unit(10, "feet"),
  40713. weight: math.unit(1500, "lb"),
  40714. name: "Front (NSFW)",
  40715. image: {
  40716. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40717. extra: 1812/1727,
  40718. bottom: 86/1898
  40719. }
  40720. },
  40721. },
  40722. [
  40723. {
  40724. name: "Mini-Macro",
  40725. height: math.unit(10, "feet"),
  40726. default: true
  40727. },
  40728. ]
  40729. ))
  40730. characterMakers.push(() => makeCharacter(
  40731. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40732. {
  40733. front: {
  40734. height: math.unit(25, "feet"),
  40735. name: "Front",
  40736. image: {
  40737. source: "./media/characters/titan-s-wulf/front.svg",
  40738. extra: 1560/1484,
  40739. bottom: 76/1636
  40740. }
  40741. },
  40742. },
  40743. [
  40744. {
  40745. name: "Smallest",
  40746. height: math.unit(25, "feet"),
  40747. default: true
  40748. },
  40749. {
  40750. name: "Normal",
  40751. height: math.unit(200, "feet")
  40752. },
  40753. {
  40754. name: "Macro",
  40755. height: math.unit(200000, "feet")
  40756. },
  40757. {
  40758. name: "Multiversal Original",
  40759. height: math.unit(10000, "multiverses")
  40760. },
  40761. ]
  40762. ))
  40763. characterMakers.push(() => makeCharacter(
  40764. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40765. {
  40766. front: {
  40767. height: math.unit(8, "feet"),
  40768. weight: math.unit(553, "lb"),
  40769. name: "Front",
  40770. image: {
  40771. source: "./media/characters/tawendeh/front.svg",
  40772. extra: 2365/2268,
  40773. bottom: 83/2448
  40774. }
  40775. },
  40776. frontClothed: {
  40777. height: math.unit(8, "feet"),
  40778. weight: math.unit(553, "lb"),
  40779. name: "Front (Clothed)",
  40780. image: {
  40781. source: "./media/characters/tawendeh/front-clothed.svg",
  40782. extra: 2365/2268,
  40783. bottom: 83/2448
  40784. }
  40785. },
  40786. back: {
  40787. height: math.unit(8, "feet"),
  40788. weight: math.unit(553, "lb"),
  40789. name: "Back",
  40790. image: {
  40791. source: "./media/characters/tawendeh/back.svg",
  40792. extra: 2397/2294,
  40793. bottom: 42/2439
  40794. }
  40795. },
  40796. },
  40797. [
  40798. {
  40799. name: "Mortal Interaction",
  40800. height: math.unit(8, "feet"),
  40801. default: true
  40802. },
  40803. {
  40804. name: "Giant",
  40805. height: math.unit(80, "feet")
  40806. },
  40807. {
  40808. name: "Macro",
  40809. height: math.unit(800, "feet")
  40810. },
  40811. {
  40812. name: "Megamacro",
  40813. height: math.unit(8000, "feet")
  40814. },
  40815. {
  40816. name: "City-Crushing",
  40817. height: math.unit(24000, "feet")
  40818. },
  40819. {
  40820. name: "Mountain-Mashing",
  40821. height: math.unit(80000, "feet")
  40822. },
  40823. {
  40824. name: "Nation Nemesis",
  40825. height: math.unit(8e6, "feet")
  40826. },
  40827. {
  40828. name: "Continent Cracker",
  40829. height: math.unit(24e6, "feet")
  40830. },
  40831. {
  40832. name: "Earth-Eclipsing",
  40833. height: math.unit(2.4e8, "feet")
  40834. },
  40835. {
  40836. name: "Gas Giant Gulper",
  40837. height: math.unit(2.4e9, "feet")
  40838. },
  40839. {
  40840. name: "Sol-Swallowing",
  40841. height: math.unit(8e10, "feet")
  40842. },
  40843. {
  40844. name: "Galaxy Gulper",
  40845. height: math.unit(8, "galaxies")
  40846. },
  40847. {
  40848. name: "Cosmos Churner",
  40849. height: math.unit(8, "universes")
  40850. },
  40851. {
  40852. name: "Omnipotent Otter",
  40853. height: math.unit(80, "universes")
  40854. },
  40855. ]
  40856. ))
  40857. characterMakers.push(() => makeCharacter(
  40858. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40859. {
  40860. front: {
  40861. height: math.unit(2.6, "meters"),
  40862. weight: math.unit(900, "kg"),
  40863. name: "Front",
  40864. image: {
  40865. source: "./media/characters/neesha/front.svg",
  40866. extra: 1803/1653,
  40867. bottom: 128/1931
  40868. }
  40869. },
  40870. },
  40871. [
  40872. {
  40873. name: "Normal",
  40874. height: math.unit(2.6, "meters"),
  40875. default: true
  40876. },
  40877. {
  40878. name: "Macro",
  40879. height: math.unit(50, "meters")
  40880. },
  40881. ]
  40882. ))
  40883. characterMakers.push(() => makeCharacter(
  40884. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40885. {
  40886. front: {
  40887. height: math.unit(5, "feet"),
  40888. weight: math.unit(185, "lb"),
  40889. name: "Front",
  40890. image: {
  40891. source: "./media/characters/kyera/front.svg",
  40892. extra: 1875/1790,
  40893. bottom: 96/1971
  40894. }
  40895. },
  40896. },
  40897. [
  40898. {
  40899. name: "Normal",
  40900. height: math.unit(5, "feet"),
  40901. default: true
  40902. },
  40903. ]
  40904. ))
  40905. characterMakers.push(() => makeCharacter(
  40906. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40907. {
  40908. front: {
  40909. height: math.unit(7 + 6/12, "feet"),
  40910. weight: math.unit(540, "lb"),
  40911. name: "Front",
  40912. image: {
  40913. source: "./media/characters/yuko/front.svg",
  40914. extra: 1282/1222,
  40915. bottom: 101/1383
  40916. }
  40917. },
  40918. frontClothed: {
  40919. height: math.unit(7 + 6/12, "feet"),
  40920. weight: math.unit(540, "lb"),
  40921. name: "Front (Clothed)",
  40922. image: {
  40923. source: "./media/characters/yuko/front-clothed.svg",
  40924. extra: 1282/1222,
  40925. bottom: 101/1383
  40926. }
  40927. },
  40928. },
  40929. [
  40930. {
  40931. name: "Normal",
  40932. height: math.unit(7 + 6/12, "feet"),
  40933. default: true
  40934. },
  40935. {
  40936. name: "Macro",
  40937. height: math.unit(26 + 9/12, "feet")
  40938. },
  40939. {
  40940. name: "Megamacro",
  40941. height: math.unit(300, "feet")
  40942. },
  40943. {
  40944. name: "Gigamacro",
  40945. height: math.unit(5000, "feet")
  40946. },
  40947. {
  40948. name: "Planetary",
  40949. height: math.unit(10000, "miles")
  40950. },
  40951. ]
  40952. ))
  40953. characterMakers.push(() => makeCharacter(
  40954. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40955. {
  40956. front: {
  40957. height: math.unit(8 + 2/12, "feet"),
  40958. weight: math.unit(600, "lb"),
  40959. name: "Front",
  40960. image: {
  40961. source: "./media/characters/deam-nitrel/front.svg",
  40962. extra: 1308/1234,
  40963. bottom: 125/1433
  40964. }
  40965. },
  40966. },
  40967. [
  40968. {
  40969. name: "Normal",
  40970. height: math.unit(8 + 2/12, "feet"),
  40971. default: true
  40972. },
  40973. ]
  40974. ))
  40975. characterMakers.push(() => makeCharacter(
  40976. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40977. {
  40978. front: {
  40979. height: math.unit(6.1, "feet"),
  40980. weight: math.unit(180, "lb"),
  40981. name: "Front",
  40982. image: {
  40983. source: "./media/characters/skyress/front.svg",
  40984. extra: 1045/915,
  40985. bottom: 28/1073
  40986. }
  40987. },
  40988. maw: {
  40989. height: math.unit(1, "feet"),
  40990. name: "Maw",
  40991. image: {
  40992. source: "./media/characters/skyress/maw.svg"
  40993. }
  40994. },
  40995. },
  40996. [
  40997. {
  40998. name: "Normal",
  40999. height: math.unit(6.1, "feet"),
  41000. default: true
  41001. },
  41002. {
  41003. name: "Macro",
  41004. height: math.unit(200, "feet")
  41005. },
  41006. ]
  41007. ))
  41008. characterMakers.push(() => makeCharacter(
  41009. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41010. {
  41011. front: {
  41012. height: math.unit(4 + 2/12, "feet"),
  41013. weight: math.unit(40, "kg"),
  41014. name: "Front",
  41015. image: {
  41016. source: "./media/characters/amethyst-jones/front.svg",
  41017. extra: 1220/1150,
  41018. bottom: 101/1321
  41019. }
  41020. },
  41021. },
  41022. [
  41023. {
  41024. name: "Normal",
  41025. height: math.unit(4 + 2/12, "feet"),
  41026. default: true
  41027. },
  41028. ]
  41029. ))
  41030. characterMakers.push(() => makeCharacter(
  41031. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41032. {
  41033. front: {
  41034. height: math.unit(1.7, "m"),
  41035. weight: math.unit(135, "lb"),
  41036. name: "Front",
  41037. image: {
  41038. source: "./media/characters/jade/front.svg",
  41039. extra: 1818/1767,
  41040. bottom: 32/1850
  41041. }
  41042. },
  41043. back: {
  41044. height: math.unit(1.7, "m"),
  41045. weight: math.unit(135, "lb"),
  41046. name: "Back",
  41047. image: {
  41048. source: "./media/characters/jade/back.svg",
  41049. extra: 1869/1809,
  41050. bottom: 35/1904
  41051. }
  41052. },
  41053. hand: {
  41054. height: math.unit(0.24, "m"),
  41055. name: "Hand",
  41056. image: {
  41057. source: "./media/characters/jade/hand.svg"
  41058. }
  41059. },
  41060. foot: {
  41061. height: math.unit(0.263, "m"),
  41062. name: "Foot",
  41063. image: {
  41064. source: "./media/characters/jade/foot.svg"
  41065. }
  41066. },
  41067. dick: {
  41068. height: math.unit(0.47, "m"),
  41069. name: "Dick",
  41070. image: {
  41071. source: "./media/characters/jade/dick.svg"
  41072. }
  41073. },
  41074. },
  41075. [
  41076. {
  41077. name: "Micro",
  41078. height: math.unit(22, "cm")
  41079. },
  41080. {
  41081. name: "Normal",
  41082. height: math.unit(1.7, "m"),
  41083. default: true
  41084. },
  41085. {
  41086. name: "Macro",
  41087. height: math.unit(152, "m")
  41088. },
  41089. ]
  41090. ))
  41091. characterMakers.push(() => makeCharacter(
  41092. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41093. {
  41094. front: {
  41095. height: math.unit(100, "miles"),
  41096. weight: math.unit(20000, "tons"),
  41097. name: "Front",
  41098. image: {
  41099. source: "./media/characters/cookie/front.svg",
  41100. extra: 1125/1070,
  41101. bottom: 30/1155
  41102. }
  41103. },
  41104. },
  41105. [
  41106. {
  41107. name: "Big",
  41108. height: math.unit(50, "feet")
  41109. },
  41110. {
  41111. name: "Macro",
  41112. height: math.unit(100, "miles"),
  41113. default: true
  41114. },
  41115. {
  41116. name: "Megamacro",
  41117. height: math.unit(90000, "miles")
  41118. },
  41119. ]
  41120. ))
  41121. characterMakers.push(() => makeCharacter(
  41122. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41123. {
  41124. front: {
  41125. height: math.unit(6, "feet"),
  41126. weight: math.unit(145, "lb"),
  41127. name: "Front",
  41128. image: {
  41129. source: "./media/characters/farzian/front.svg",
  41130. extra: 1902/1693,
  41131. bottom: 108/2010
  41132. }
  41133. },
  41134. },
  41135. [
  41136. {
  41137. name: "Macro",
  41138. height: math.unit(500, "feet"),
  41139. default: true
  41140. },
  41141. ]
  41142. ))
  41143. characterMakers.push(() => makeCharacter(
  41144. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41145. {
  41146. front: {
  41147. height: math.unit(3 + 6/12, "feet"),
  41148. weight: math.unit(50, "lb"),
  41149. name: "Front",
  41150. image: {
  41151. source: "./media/characters/kimberly-tilson/front.svg",
  41152. extra: 1400/1322,
  41153. bottom: 36/1436
  41154. }
  41155. },
  41156. back: {
  41157. height: math.unit(3 + 6/12, "feet"),
  41158. weight: math.unit(50, "lb"),
  41159. name: "Back",
  41160. image: {
  41161. source: "./media/characters/kimberly-tilson/back.svg",
  41162. extra: 1370/1307,
  41163. bottom: 20/1390
  41164. }
  41165. },
  41166. },
  41167. [
  41168. {
  41169. name: "Normal",
  41170. height: math.unit(3 + 6/12, "feet"),
  41171. default: true
  41172. },
  41173. ]
  41174. ))
  41175. characterMakers.push(() => makeCharacter(
  41176. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41177. {
  41178. front: {
  41179. height: math.unit(1148, "feet"),
  41180. weight: math.unit(34057, "lb"),
  41181. name: "Front",
  41182. image: {
  41183. source: "./media/characters/harthos/front.svg",
  41184. extra: 1391/1339,
  41185. bottom: 13/1404
  41186. }
  41187. },
  41188. },
  41189. [
  41190. {
  41191. name: "Macro",
  41192. height: math.unit(1148, "feet"),
  41193. default: true
  41194. },
  41195. ]
  41196. ))
  41197. characterMakers.push(() => makeCharacter(
  41198. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41199. {
  41200. front: {
  41201. height: math.unit(15, "feet"),
  41202. name: "Front",
  41203. image: {
  41204. source: "./media/characters/hypatia/front.svg",
  41205. extra: 1653/1591,
  41206. bottom: 79/1732
  41207. }
  41208. },
  41209. },
  41210. [
  41211. {
  41212. name: "Normal",
  41213. height: math.unit(15, "feet")
  41214. },
  41215. {
  41216. name: "Small",
  41217. height: math.unit(300, "feet")
  41218. },
  41219. {
  41220. name: "Macro",
  41221. height: math.unit(2500, "feet"),
  41222. default: true
  41223. },
  41224. {
  41225. name: "Mega Macro",
  41226. height: math.unit(1500, "miles")
  41227. },
  41228. {
  41229. name: "Giga Macro",
  41230. height: math.unit(1.5e6, "miles")
  41231. },
  41232. ]
  41233. ))
  41234. characterMakers.push(() => makeCharacter(
  41235. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41236. {
  41237. front: {
  41238. height: math.unit(6, "feet"),
  41239. weight: math.unit(200, "lb"),
  41240. name: "Front",
  41241. image: {
  41242. source: "./media/characters/wulver/front.svg",
  41243. extra: 1724/1632,
  41244. bottom: 130/1854
  41245. }
  41246. },
  41247. frontNsfw: {
  41248. height: math.unit(6, "feet"),
  41249. weight: math.unit(200, "lb"),
  41250. name: "Front (NSFW)",
  41251. image: {
  41252. source: "./media/characters/wulver/front-nsfw.svg",
  41253. extra: 1724/1632,
  41254. bottom: 130/1854
  41255. }
  41256. },
  41257. },
  41258. [
  41259. {
  41260. name: "Human-Sized",
  41261. height: math.unit(6, "feet")
  41262. },
  41263. {
  41264. name: "Normal",
  41265. height: math.unit(4, "meters"),
  41266. default: true
  41267. },
  41268. {
  41269. name: "Large",
  41270. height: math.unit(6, "m")
  41271. },
  41272. ]
  41273. ))
  41274. characterMakers.push(() => makeCharacter(
  41275. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41276. {
  41277. front: {
  41278. height: math.unit(7, "feet"),
  41279. name: "Front",
  41280. image: {
  41281. source: "./media/characters/maru/front.svg",
  41282. extra: 1595/1570,
  41283. bottom: 0/1595
  41284. }
  41285. },
  41286. },
  41287. [
  41288. {
  41289. name: "Normal",
  41290. height: math.unit(7, "feet"),
  41291. default: true
  41292. },
  41293. {
  41294. name: "Macro",
  41295. height: math.unit(700, "feet")
  41296. },
  41297. {
  41298. name: "Mega Macro",
  41299. height: math.unit(25, "miles")
  41300. },
  41301. ]
  41302. ))
  41303. characterMakers.push(() => makeCharacter(
  41304. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41305. {
  41306. front: {
  41307. height: math.unit(6, "feet"),
  41308. weight: math.unit(170, "lb"),
  41309. name: "Front",
  41310. image: {
  41311. source: "./media/characters/xenon/front.svg",
  41312. extra: 1376/1305,
  41313. bottom: 56/1432
  41314. }
  41315. },
  41316. back: {
  41317. height: math.unit(6, "feet"),
  41318. weight: math.unit(170, "lb"),
  41319. name: "Back",
  41320. image: {
  41321. source: "./media/characters/xenon/back.svg",
  41322. extra: 1328/1259,
  41323. bottom: 95/1423
  41324. }
  41325. },
  41326. maw: {
  41327. height: math.unit(0.52, "feet"),
  41328. name: "Maw",
  41329. image: {
  41330. source: "./media/characters/xenon/maw.svg"
  41331. }
  41332. },
  41333. hand: {
  41334. height: math.unit(0.82, "feet"),
  41335. name: "Hand",
  41336. image: {
  41337. source: "./media/characters/xenon/hand.svg"
  41338. }
  41339. },
  41340. foot: {
  41341. height: math.unit(1.13, "feet"),
  41342. name: "Foot",
  41343. image: {
  41344. source: "./media/characters/xenon/foot.svg"
  41345. }
  41346. },
  41347. },
  41348. [
  41349. {
  41350. name: "Micro",
  41351. height: math.unit(0.8, "inches")
  41352. },
  41353. {
  41354. name: "Normal",
  41355. height: math.unit(6, "feet")
  41356. },
  41357. {
  41358. name: "Macro",
  41359. height: math.unit(50, "feet"),
  41360. default: true
  41361. },
  41362. {
  41363. name: "Macro+",
  41364. height: math.unit(250, "feet")
  41365. },
  41366. {
  41367. name: "Megamacro",
  41368. height: math.unit(1500, "feet")
  41369. },
  41370. ]
  41371. ))
  41372. characterMakers.push(() => makeCharacter(
  41373. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41374. {
  41375. front: {
  41376. height: math.unit(7 + 5/12, "feet"),
  41377. name: "Front",
  41378. image: {
  41379. source: "./media/characters/zane/front.svg",
  41380. extra: 1260/1203,
  41381. bottom: 94/1354
  41382. }
  41383. },
  41384. back: {
  41385. height: math.unit(5.05, "feet"),
  41386. name: "Back",
  41387. image: {
  41388. source: "./media/characters/zane/back.svg",
  41389. extra: 893/829,
  41390. bottom: 30/923
  41391. }
  41392. },
  41393. werewolf: {
  41394. height: math.unit(11, "feet"),
  41395. name: "Werewolf",
  41396. image: {
  41397. source: "./media/characters/zane/werewolf.svg",
  41398. extra: 1383/1323,
  41399. bottom: 89/1472
  41400. }
  41401. },
  41402. foot: {
  41403. height: math.unit(1.46, "feet"),
  41404. name: "Foot",
  41405. image: {
  41406. source: "./media/characters/zane/foot.svg"
  41407. }
  41408. },
  41409. footFront: {
  41410. height: math.unit(0.784, "feet"),
  41411. name: "Foot (Front)",
  41412. image: {
  41413. source: "./media/characters/zane/foot-front.svg"
  41414. }
  41415. },
  41416. dick: {
  41417. height: math.unit(1.95, "feet"),
  41418. name: "Dick",
  41419. image: {
  41420. source: "./media/characters/zane/dick.svg"
  41421. }
  41422. },
  41423. dickWerewolf: {
  41424. height: math.unit(3.77, "feet"),
  41425. name: "Dick (Werewolf)",
  41426. image: {
  41427. source: "./media/characters/zane/dick.svg"
  41428. }
  41429. },
  41430. },
  41431. [
  41432. {
  41433. name: "Normal",
  41434. height: math.unit(7 + 5/12, "feet"),
  41435. default: true
  41436. },
  41437. ]
  41438. ))
  41439. characterMakers.push(() => makeCharacter(
  41440. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41441. {
  41442. front: {
  41443. height: math.unit(6 + 2/12, "feet"),
  41444. weight: math.unit(284, "lb"),
  41445. name: "Front",
  41446. image: {
  41447. source: "./media/characters/benni-desparque/front.svg",
  41448. extra: 1353/1126,
  41449. bottom: 69/1422
  41450. }
  41451. },
  41452. },
  41453. [
  41454. {
  41455. name: "Civilian",
  41456. height: math.unit(6 + 2/12, "feet")
  41457. },
  41458. {
  41459. name: "Normal",
  41460. height: math.unit(98, "feet"),
  41461. default: true
  41462. },
  41463. {
  41464. name: "Kaiju Fighter",
  41465. height: math.unit(268, "feet")
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41471. {
  41472. front: {
  41473. height: math.unit(5, "feet"),
  41474. weight: math.unit(105, "lb"),
  41475. name: "Front",
  41476. image: {
  41477. source: "./media/characters/maxine/front.svg",
  41478. extra: 1386/1250,
  41479. bottom: 71/1457
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "Normal",
  41486. height: math.unit(5, "feet"),
  41487. default: true
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41493. {
  41494. front: {
  41495. height: math.unit(11 + 7/12, "feet"),
  41496. weight: math.unit(9576, "lb"),
  41497. name: "Front",
  41498. image: {
  41499. source: "./media/characters/scaly/front.svg",
  41500. extra: 888/867,
  41501. bottom: 36/924
  41502. }
  41503. },
  41504. },
  41505. [
  41506. {
  41507. name: "Normal",
  41508. height: math.unit(11 + 7/12, "feet"),
  41509. default: true
  41510. },
  41511. ]
  41512. ))
  41513. characterMakers.push(() => makeCharacter(
  41514. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41515. {
  41516. front: {
  41517. height: math.unit(6 + 3/12, "feet"),
  41518. name: "Front",
  41519. image: {
  41520. source: "./media/characters/saelria/front.svg",
  41521. extra: 1243/1138,
  41522. bottom: 46/1289
  41523. }
  41524. },
  41525. },
  41526. [
  41527. {
  41528. name: "Micro",
  41529. height: math.unit(6, "inches"),
  41530. },
  41531. {
  41532. name: "Normal",
  41533. height: math.unit(6 + 3/12, "feet"),
  41534. default: true
  41535. },
  41536. {
  41537. name: "Macro",
  41538. height: math.unit(25, "feet")
  41539. },
  41540. ]
  41541. ))
  41542. characterMakers.push(() => makeCharacter(
  41543. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41544. {
  41545. front: {
  41546. height: math.unit(80, "meters"),
  41547. weight: math.unit(7000, "tonnes"),
  41548. name: "Front",
  41549. image: {
  41550. source: "./media/characters/tef/front.svg",
  41551. extra: 2036/1991,
  41552. bottom: 54/2090
  41553. }
  41554. },
  41555. back: {
  41556. height: math.unit(80, "meters"),
  41557. weight: math.unit(7000, "tonnes"),
  41558. name: "Back",
  41559. image: {
  41560. source: "./media/characters/tef/back.svg",
  41561. extra: 2036/1991,
  41562. bottom: 54/2090
  41563. }
  41564. },
  41565. },
  41566. [
  41567. {
  41568. name: "Macro",
  41569. height: math.unit(80, "meters"),
  41570. default: true
  41571. },
  41572. ]
  41573. ))
  41574. characterMakers.push(() => makeCharacter(
  41575. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41576. {
  41577. front: {
  41578. height: math.unit(13, "feet"),
  41579. weight: math.unit(6, "tons"),
  41580. name: "Front",
  41581. image: {
  41582. source: "./media/characters/rover/front.svg",
  41583. extra: 1233/1156,
  41584. bottom: 50/1283
  41585. }
  41586. },
  41587. back: {
  41588. height: math.unit(13, "feet"),
  41589. weight: math.unit(6, "tons"),
  41590. name: "Back",
  41591. image: {
  41592. source: "./media/characters/rover/back.svg",
  41593. extra: 1327/1258,
  41594. bottom: 39/1366
  41595. }
  41596. },
  41597. },
  41598. [
  41599. {
  41600. name: "Normal",
  41601. height: math.unit(13, "feet"),
  41602. default: true
  41603. },
  41604. {
  41605. name: "Macro",
  41606. height: math.unit(1300, "feet")
  41607. },
  41608. {
  41609. name: "Megamacro",
  41610. height: math.unit(1300, "miles")
  41611. },
  41612. {
  41613. name: "Gigamacro",
  41614. height: math.unit(1300000, "miles")
  41615. },
  41616. ]
  41617. ))
  41618. characterMakers.push(() => makeCharacter(
  41619. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41620. {
  41621. front: {
  41622. height: math.unit(6, "feet"),
  41623. weight: math.unit(150, "lb"),
  41624. name: "Front",
  41625. image: {
  41626. source: "./media/characters/ariz/front.svg",
  41627. extra: 1401/1346,
  41628. bottom: 5/1406
  41629. }
  41630. },
  41631. },
  41632. [
  41633. {
  41634. name: "Normal",
  41635. height: math.unit(10, "feet"),
  41636. default: true
  41637. },
  41638. ]
  41639. ))
  41640. characterMakers.push(() => makeCharacter(
  41641. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41642. {
  41643. front: {
  41644. height: math.unit(6, "feet"),
  41645. weight: math.unit(140, "lb"),
  41646. name: "Front",
  41647. image: {
  41648. source: "./media/characters/sigrun/front.svg",
  41649. extra: 1418/1359,
  41650. bottom: 27/1445
  41651. }
  41652. },
  41653. },
  41654. [
  41655. {
  41656. name: "Macro",
  41657. height: math.unit(35, "feet"),
  41658. default: true
  41659. },
  41660. ]
  41661. ))
  41662. characterMakers.push(() => makeCharacter(
  41663. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41664. {
  41665. front: {
  41666. height: math.unit(6, "feet"),
  41667. weight: math.unit(150, "lb"),
  41668. name: "Front",
  41669. image: {
  41670. source: "./media/characters/numin/front.svg",
  41671. extra: 1433/1388,
  41672. bottom: 12/1445
  41673. }
  41674. },
  41675. },
  41676. [
  41677. {
  41678. name: "Macro",
  41679. height: math.unit(21.5, "km"),
  41680. default: true
  41681. },
  41682. ]
  41683. ))
  41684. characterMakers.push(() => makeCharacter(
  41685. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41686. {
  41687. front: {
  41688. height: math.unit(6, "feet"),
  41689. weight: math.unit(463, "lb"),
  41690. name: "Front",
  41691. image: {
  41692. source: "./media/characters/melwa/front.svg",
  41693. extra: 1307/1248,
  41694. bottom: 93/1400
  41695. }
  41696. },
  41697. },
  41698. [
  41699. {
  41700. name: "Macro",
  41701. height: math.unit(50, "meters"),
  41702. default: true
  41703. },
  41704. ]
  41705. ))
  41706. characterMakers.push(() => makeCharacter(
  41707. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41708. {
  41709. front: {
  41710. height: math.unit(325, "feet"),
  41711. name: "Front",
  41712. image: {
  41713. source: "./media/characters/zorkaiju/front.svg",
  41714. extra: 1955/1814,
  41715. bottom: 40/1995
  41716. }
  41717. },
  41718. frontExtended: {
  41719. height: math.unit(325, "feet"),
  41720. name: "Front (Extended)",
  41721. image: {
  41722. source: "./media/characters/zorkaiju/front-extended.svg",
  41723. extra: 1955/1814,
  41724. bottom: 40/1995
  41725. }
  41726. },
  41727. side: {
  41728. height: math.unit(325, "feet"),
  41729. name: "Side",
  41730. image: {
  41731. source: "./media/characters/zorkaiju/side.svg",
  41732. extra: 1495/1396,
  41733. bottom: 17/1512
  41734. }
  41735. },
  41736. sideExtended: {
  41737. height: math.unit(325, "feet"),
  41738. name: "Side (Extended)",
  41739. image: {
  41740. source: "./media/characters/zorkaiju/side-extended.svg",
  41741. extra: 1495/1396,
  41742. bottom: 17/1512
  41743. }
  41744. },
  41745. back: {
  41746. height: math.unit(325, "feet"),
  41747. name: "Back",
  41748. image: {
  41749. source: "./media/characters/zorkaiju/back.svg",
  41750. extra: 1959/1821,
  41751. bottom: 31/1990
  41752. }
  41753. },
  41754. backExtended: {
  41755. height: math.unit(325, "feet"),
  41756. name: "Back (Extended)",
  41757. image: {
  41758. source: "./media/characters/zorkaiju/back-extended.svg",
  41759. extra: 1959/1821,
  41760. bottom: 31/1990
  41761. }
  41762. },
  41763. hand: {
  41764. height: math.unit(58.4, "feet"),
  41765. name: "Hand",
  41766. image: {
  41767. source: "./media/characters/zorkaiju/hand.svg"
  41768. }
  41769. },
  41770. handExtended: {
  41771. height: math.unit(61.4, "feet"),
  41772. name: "Hand (Extended)",
  41773. image: {
  41774. source: "./media/characters/zorkaiju/hand-extended.svg"
  41775. }
  41776. },
  41777. foot: {
  41778. height: math.unit(95, "feet"),
  41779. name: "Foot",
  41780. image: {
  41781. source: "./media/characters/zorkaiju/foot.svg"
  41782. }
  41783. },
  41784. leftArm: {
  41785. height: math.unit(59, "feet"),
  41786. name: "Left Arm",
  41787. image: {
  41788. source: "./media/characters/zorkaiju/left-arm.svg"
  41789. }
  41790. },
  41791. rightArm: {
  41792. height: math.unit(59, "feet"),
  41793. name: "Right Arm",
  41794. image: {
  41795. source: "./media/characters/zorkaiju/right-arm.svg"
  41796. }
  41797. },
  41798. leftArmExtended: {
  41799. height: math.unit(59 * 1.033546, "feet"),
  41800. name: "Left Arm (Extended)",
  41801. image: {
  41802. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41803. }
  41804. },
  41805. rightArmExtended: {
  41806. height: math.unit(59 * 1.0496, "feet"),
  41807. name: "Right Arm (Extended)",
  41808. image: {
  41809. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41810. }
  41811. },
  41812. tail: {
  41813. height: math.unit(104, "feet"),
  41814. name: "Tail",
  41815. image: {
  41816. source: "./media/characters/zorkaiju/tail.svg"
  41817. }
  41818. },
  41819. tailExtended: {
  41820. height: math.unit(104, "feet"),
  41821. name: "Tail (Extended)",
  41822. image: {
  41823. source: "./media/characters/zorkaiju/tail-extended.svg"
  41824. }
  41825. },
  41826. tailBottom: {
  41827. height: math.unit(104, "feet"),
  41828. name: "Tail Bottom",
  41829. image: {
  41830. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41831. }
  41832. },
  41833. crystal: {
  41834. height: math.unit(27.54, "feet"),
  41835. name: "Crystal",
  41836. image: {
  41837. source: "./media/characters/zorkaiju/crystal.svg"
  41838. }
  41839. },
  41840. },
  41841. [
  41842. {
  41843. name: "Kaiju",
  41844. height: math.unit(325, "feet"),
  41845. default: true
  41846. },
  41847. ]
  41848. ))
  41849. characterMakers.push(() => makeCharacter(
  41850. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41851. {
  41852. front: {
  41853. height: math.unit(6 + 1/12, "feet"),
  41854. weight: math.unit(115, "lb"),
  41855. name: "Front",
  41856. image: {
  41857. source: "./media/characters/bailey-belfry/front.svg",
  41858. extra: 1240/1121,
  41859. bottom: 101/1341
  41860. }
  41861. },
  41862. },
  41863. [
  41864. {
  41865. name: "Normal",
  41866. height: math.unit(6 + 1/12, "feet"),
  41867. default: true
  41868. },
  41869. ]
  41870. ))
  41871. characterMakers.push(() => makeCharacter(
  41872. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41873. {
  41874. side: {
  41875. height: math.unit(4, "meters"),
  41876. weight: math.unit(250, "kg"),
  41877. name: "Side",
  41878. image: {
  41879. source: "./media/characters/blacky/side.svg",
  41880. extra: 1027/919,
  41881. bottom: 43/1070
  41882. }
  41883. },
  41884. maw: {
  41885. height: math.unit(1, "meters"),
  41886. name: "Maw",
  41887. image: {
  41888. source: "./media/characters/blacky/maw.svg"
  41889. }
  41890. },
  41891. paw: {
  41892. height: math.unit(1, "meters"),
  41893. name: "Paw",
  41894. image: {
  41895. source: "./media/characters/blacky/paw.svg"
  41896. }
  41897. },
  41898. },
  41899. [
  41900. {
  41901. name: "Normal",
  41902. height: math.unit(4, "meters"),
  41903. default: true
  41904. },
  41905. ]
  41906. ))
  41907. characterMakers.push(() => makeCharacter(
  41908. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41909. {
  41910. front: {
  41911. height: math.unit(170, "cm"),
  41912. weight: math.unit(66, "kg"),
  41913. name: "Front",
  41914. image: {
  41915. source: "./media/characters/thux-ei/front.svg",
  41916. extra: 1109/1011,
  41917. bottom: 8/1117
  41918. }
  41919. },
  41920. },
  41921. [
  41922. {
  41923. name: "Normal",
  41924. height: math.unit(170, "cm"),
  41925. default: true
  41926. },
  41927. ]
  41928. ))
  41929. characterMakers.push(() => makeCharacter(
  41930. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41931. {
  41932. front: {
  41933. height: math.unit(5, "feet"),
  41934. weight: math.unit(120, "lb"),
  41935. name: "Front",
  41936. image: {
  41937. source: "./media/characters/roxanne-voltaire/front.svg",
  41938. extra: 1901/1779,
  41939. bottom: 53/1954
  41940. }
  41941. },
  41942. },
  41943. [
  41944. {
  41945. name: "Normal",
  41946. height: math.unit(5, "feet"),
  41947. default: true
  41948. },
  41949. {
  41950. name: "Giant",
  41951. height: math.unit(50, "feet")
  41952. },
  41953. {
  41954. name: "Titan",
  41955. height: math.unit(500, "feet")
  41956. },
  41957. {
  41958. name: "Macro",
  41959. height: math.unit(5000, "feet")
  41960. },
  41961. {
  41962. name: "Megamacro",
  41963. height: math.unit(50000, "feet")
  41964. },
  41965. {
  41966. name: "Gigamacro",
  41967. height: math.unit(500000, "feet")
  41968. },
  41969. {
  41970. name: "Teramacro",
  41971. height: math.unit(5e6, "feet")
  41972. },
  41973. ]
  41974. ))
  41975. characterMakers.push(() => makeCharacter(
  41976. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41977. {
  41978. front: {
  41979. height: math.unit(6 + 2/12, "feet"),
  41980. name: "Front",
  41981. image: {
  41982. source: "./media/characters/squeaks/front.svg",
  41983. extra: 1823/1768,
  41984. bottom: 138/1961
  41985. }
  41986. },
  41987. },
  41988. [
  41989. {
  41990. name: "Micro",
  41991. height: math.unit(0.5, "inches")
  41992. },
  41993. {
  41994. name: "Normal",
  41995. height: math.unit(6 + 2/12, "feet"),
  41996. default: true
  41997. },
  41998. {
  41999. name: "Macro",
  42000. height: math.unit(600, "feet")
  42001. },
  42002. ]
  42003. ))
  42004. characterMakers.push(() => makeCharacter(
  42005. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42006. {
  42007. front: {
  42008. height: math.unit(1.72, "meters"),
  42009. name: "Front",
  42010. image: {
  42011. source: "./media/characters/archinger/front.svg",
  42012. extra: 1861/1675,
  42013. bottom: 125/1986
  42014. }
  42015. },
  42016. back: {
  42017. height: math.unit(1.72, "meters"),
  42018. name: "Back",
  42019. image: {
  42020. source: "./media/characters/archinger/back.svg",
  42021. extra: 1844/1701,
  42022. bottom: 104/1948
  42023. }
  42024. },
  42025. cock: {
  42026. height: math.unit(0.59, "feet"),
  42027. name: "Cock",
  42028. image: {
  42029. source: "./media/characters/archinger/cock.svg"
  42030. }
  42031. },
  42032. },
  42033. [
  42034. {
  42035. name: "Normal",
  42036. height: math.unit(1.72, "meters"),
  42037. default: true
  42038. },
  42039. {
  42040. name: "Macro",
  42041. height: math.unit(84, "meters")
  42042. },
  42043. {
  42044. name: "Macro+",
  42045. height: math.unit(112, "meters")
  42046. },
  42047. {
  42048. name: "Macro++",
  42049. height: math.unit(960, "meters")
  42050. },
  42051. {
  42052. name: "Macro+++",
  42053. height: math.unit(4, "km")
  42054. },
  42055. {
  42056. name: "Macro++++",
  42057. height: math.unit(48, "km")
  42058. },
  42059. {
  42060. name: "Macro+++++",
  42061. height: math.unit(4500, "km")
  42062. },
  42063. ]
  42064. ))
  42065. characterMakers.push(() => makeCharacter(
  42066. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42067. {
  42068. front: {
  42069. height: math.unit(5 + 5/12, "feet"),
  42070. name: "Front",
  42071. image: {
  42072. source: "./media/characters/alsnapz/front.svg",
  42073. extra: 1157/1065,
  42074. bottom: 42/1199
  42075. }
  42076. },
  42077. },
  42078. [
  42079. {
  42080. name: "Normal",
  42081. height: math.unit(5 + 5/12, "feet"),
  42082. default: true
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42088. {
  42089. side: {
  42090. height: math.unit(3.2, "earths"),
  42091. name: "Side",
  42092. image: {
  42093. source: "./media/characters/mag/side.svg",
  42094. extra: 1331/1008,
  42095. bottom: 52/1383
  42096. }
  42097. },
  42098. wing: {
  42099. height: math.unit(1.94, "earths"),
  42100. name: "Wing",
  42101. image: {
  42102. source: "./media/characters/mag/wing.svg"
  42103. }
  42104. },
  42105. dick: {
  42106. height: math.unit(1.8, "earths"),
  42107. name: "Dick",
  42108. image: {
  42109. source: "./media/characters/mag/dick.svg"
  42110. }
  42111. },
  42112. ass: {
  42113. height: math.unit(1.33, "earths"),
  42114. name: "Ass",
  42115. image: {
  42116. source: "./media/characters/mag/ass.svg"
  42117. }
  42118. },
  42119. head: {
  42120. height: math.unit(1.1, "earths"),
  42121. name: "Head",
  42122. image: {
  42123. source: "./media/characters/mag/head.svg"
  42124. }
  42125. },
  42126. maw: {
  42127. height: math.unit(1.62, "earths"),
  42128. name: "Maw",
  42129. image: {
  42130. source: "./media/characters/mag/maw.svg"
  42131. }
  42132. },
  42133. },
  42134. [
  42135. {
  42136. name: "Small",
  42137. height: math.unit(162, "feet")
  42138. },
  42139. {
  42140. name: "Normal",
  42141. height: math.unit(3.2, "earths"),
  42142. default: true
  42143. },
  42144. ]
  42145. ))
  42146. characterMakers.push(() => makeCharacter(
  42147. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42148. {
  42149. front: {
  42150. height: math.unit(512, "feet"),
  42151. weight: math.unit(63509, "tonnes"),
  42152. name: "Front",
  42153. image: {
  42154. source: "./media/characters/vorrel-harroc/front.svg",
  42155. extra: 1075/1063,
  42156. bottom: 62/1137
  42157. }
  42158. },
  42159. },
  42160. [
  42161. {
  42162. name: "Normal",
  42163. height: math.unit(10, "feet")
  42164. },
  42165. {
  42166. name: "Macro",
  42167. height: math.unit(512, "feet"),
  42168. default: true
  42169. },
  42170. {
  42171. name: "Megamacro",
  42172. height: math.unit(256, "miles")
  42173. },
  42174. {
  42175. name: "Gigamacro",
  42176. height: math.unit(4096, "miles")
  42177. },
  42178. ]
  42179. ))
  42180. characterMakers.push(() => makeCharacter(
  42181. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42182. {
  42183. side: {
  42184. height: math.unit(50, "feet"),
  42185. name: "Side",
  42186. image: {
  42187. source: "./media/characters/froimar/side.svg",
  42188. extra: 855/638,
  42189. bottom: 99/954
  42190. }
  42191. },
  42192. },
  42193. [
  42194. {
  42195. name: "Macro",
  42196. height: math.unit(50, "feet"),
  42197. default: true
  42198. },
  42199. ]
  42200. ))
  42201. characterMakers.push(() => makeCharacter(
  42202. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42203. {
  42204. front: {
  42205. height: math.unit(210, "miles"),
  42206. name: "Front",
  42207. image: {
  42208. source: "./media/characters/timothy/front.svg",
  42209. extra: 1007/943,
  42210. bottom: 62/1069
  42211. }
  42212. },
  42213. frontSkirt: {
  42214. height: math.unit(210, "miles"),
  42215. name: "Front (Skirt)",
  42216. image: {
  42217. source: "./media/characters/timothy/front-skirt.svg",
  42218. extra: 1007/943,
  42219. bottom: 62/1069
  42220. }
  42221. },
  42222. frontCoat: {
  42223. height: math.unit(210, "miles"),
  42224. name: "Front (Coat)",
  42225. image: {
  42226. source: "./media/characters/timothy/front-coat.svg",
  42227. extra: 1007/943,
  42228. bottom: 62/1069
  42229. }
  42230. },
  42231. },
  42232. [
  42233. {
  42234. name: "Macro",
  42235. height: math.unit(210, "miles"),
  42236. default: true
  42237. },
  42238. {
  42239. name: "Megamacro",
  42240. height: math.unit(210000, "miles")
  42241. },
  42242. ]
  42243. ))
  42244. characterMakers.push(() => makeCharacter(
  42245. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42246. {
  42247. front: {
  42248. height: math.unit(188, "feet"),
  42249. name: "Front",
  42250. image: {
  42251. source: "./media/characters/pyotr/front.svg",
  42252. extra: 1912/1826,
  42253. bottom: 18/1930
  42254. }
  42255. },
  42256. },
  42257. [
  42258. {
  42259. name: "Macro",
  42260. height: math.unit(188, "feet"),
  42261. default: true
  42262. },
  42263. {
  42264. name: "Megamacro",
  42265. height: math.unit(8, "miles")
  42266. },
  42267. ]
  42268. ))
  42269. characterMakers.push(() => makeCharacter(
  42270. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42271. {
  42272. side: {
  42273. height: math.unit(10, "feet"),
  42274. weight: math.unit(4500, "lb"),
  42275. name: "Side",
  42276. image: {
  42277. source: "./media/characters/ackart/side.svg",
  42278. extra: 1776/1668,
  42279. bottom: 116/1892
  42280. }
  42281. },
  42282. },
  42283. [
  42284. {
  42285. name: "Normal",
  42286. height: math.unit(10, "feet"),
  42287. default: true
  42288. },
  42289. ]
  42290. ))
  42291. characterMakers.push(() => makeCharacter(
  42292. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42293. {
  42294. side: {
  42295. height: math.unit(21, "feet"),
  42296. name: "Side",
  42297. image: {
  42298. source: "./media/characters/nolow/side.svg",
  42299. extra: 1484/1434,
  42300. bottom: 85/1569
  42301. }
  42302. },
  42303. sideErect: {
  42304. height: math.unit(21, "feet"),
  42305. name: "Side-erect",
  42306. image: {
  42307. source: "./media/characters/nolow/side-erect.svg",
  42308. extra: 1484/1434,
  42309. bottom: 85/1569
  42310. }
  42311. },
  42312. },
  42313. [
  42314. {
  42315. name: "Regular",
  42316. height: math.unit(12, "feet")
  42317. },
  42318. {
  42319. name: "Big Chee",
  42320. height: math.unit(21, "feet"),
  42321. default: true
  42322. },
  42323. ]
  42324. ))
  42325. characterMakers.push(() => makeCharacter(
  42326. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42327. {
  42328. front: {
  42329. height: math.unit(7, "feet"),
  42330. weight: math.unit(250, "lb"),
  42331. name: "Front",
  42332. image: {
  42333. source: "./media/characters/nines/front.svg",
  42334. extra: 1741/1607,
  42335. bottom: 41/1782
  42336. }
  42337. },
  42338. side: {
  42339. height: math.unit(7, "feet"),
  42340. weight: math.unit(250, "lb"),
  42341. name: "Side",
  42342. image: {
  42343. source: "./media/characters/nines/side.svg",
  42344. extra: 1854/1735,
  42345. bottom: 93/1947
  42346. }
  42347. },
  42348. back: {
  42349. height: math.unit(7, "feet"),
  42350. weight: math.unit(250, "lb"),
  42351. name: "Back",
  42352. image: {
  42353. source: "./media/characters/nines/back.svg",
  42354. extra: 1748/1615,
  42355. bottom: 20/1768
  42356. }
  42357. },
  42358. },
  42359. [
  42360. {
  42361. name: "Megamacro",
  42362. height: math.unit(99, "km"),
  42363. default: true
  42364. },
  42365. ]
  42366. ))
  42367. characterMakers.push(() => makeCharacter(
  42368. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42369. {
  42370. front: {
  42371. height: math.unit(5 + 10/12, "feet"),
  42372. weight: math.unit(210, "lb"),
  42373. name: "Front",
  42374. image: {
  42375. source: "./media/characters/zenith/front.svg",
  42376. extra: 1531/1452,
  42377. bottom: 198/1729
  42378. }
  42379. },
  42380. back: {
  42381. height: math.unit(5 + 10/12, "feet"),
  42382. weight: math.unit(210, "lb"),
  42383. name: "Back",
  42384. image: {
  42385. source: "./media/characters/zenith/back.svg",
  42386. extra: 1571/1487,
  42387. bottom: 75/1646
  42388. }
  42389. },
  42390. },
  42391. [
  42392. {
  42393. name: "Normal",
  42394. height: math.unit(5 + 10/12, "feet"),
  42395. default: true
  42396. }
  42397. ]
  42398. ))
  42399. characterMakers.push(() => makeCharacter(
  42400. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42401. {
  42402. front: {
  42403. height: math.unit(4, "feet"),
  42404. weight: math.unit(60, "lb"),
  42405. name: "Front",
  42406. image: {
  42407. source: "./media/characters/jasper/front.svg",
  42408. extra: 1450/1379,
  42409. bottom: 19/1469
  42410. }
  42411. },
  42412. },
  42413. [
  42414. {
  42415. name: "Normal",
  42416. height: math.unit(4, "feet"),
  42417. default: true
  42418. },
  42419. ]
  42420. ))
  42421. characterMakers.push(() => makeCharacter(
  42422. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42423. {
  42424. front: {
  42425. height: math.unit(6 + 5/12, "feet"),
  42426. weight: math.unit(290, "lb"),
  42427. name: "Front",
  42428. image: {
  42429. source: "./media/characters/tiberius-thyben/front.svg",
  42430. extra: 757/739,
  42431. bottom: 39/796
  42432. }
  42433. },
  42434. },
  42435. [
  42436. {
  42437. name: "Micro",
  42438. height: math.unit(1.5, "inches")
  42439. },
  42440. {
  42441. name: "Normal",
  42442. height: math.unit(6 + 5/12, "feet"),
  42443. default: true
  42444. },
  42445. {
  42446. name: "Macro",
  42447. height: math.unit(300, "feet")
  42448. },
  42449. ]
  42450. ))
  42451. characterMakers.push(() => makeCharacter(
  42452. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42453. {
  42454. front: {
  42455. height: math.unit(5 + 6/12, "feet"),
  42456. weight: math.unit(60, "kg"),
  42457. name: "Front",
  42458. image: {
  42459. source: "./media/characters/sabre/front.svg",
  42460. extra: 738/671,
  42461. bottom: 27/765
  42462. }
  42463. },
  42464. },
  42465. [
  42466. {
  42467. name: "Teeny",
  42468. height: math.unit(2, "inches")
  42469. },
  42470. {
  42471. name: "Smol",
  42472. height: math.unit(8, "inches")
  42473. },
  42474. {
  42475. name: "Normal",
  42476. height: math.unit(5 + 6/12, "feet"),
  42477. default: true
  42478. },
  42479. {
  42480. name: "Mini-Macro",
  42481. height: math.unit(15, "feet")
  42482. },
  42483. {
  42484. name: "Macro",
  42485. height: math.unit(50, "feet")
  42486. },
  42487. ]
  42488. ))
  42489. characterMakers.push(() => makeCharacter(
  42490. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42491. {
  42492. front: {
  42493. height: math.unit(6 + 4/12, "feet"),
  42494. weight: math.unit(170, "lb"),
  42495. name: "Front",
  42496. image: {
  42497. source: "./media/characters/charlie/front.svg",
  42498. extra: 1348/1228,
  42499. bottom: 15/1363
  42500. }
  42501. },
  42502. },
  42503. [
  42504. {
  42505. name: "Macro",
  42506. height: math.unit(1700, "meters"),
  42507. default: true
  42508. },
  42509. {
  42510. name: "MegaMacro",
  42511. height: math.unit(20400, "meters")
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42517. {
  42518. front: {
  42519. height: math.unit(6 + 3/12, "feet"),
  42520. weight: math.unit(185, "lb"),
  42521. name: "Front",
  42522. image: {
  42523. source: "./media/characters/susan-grant/front.svg",
  42524. extra: 1351/1327,
  42525. bottom: 26/1377
  42526. }
  42527. },
  42528. },
  42529. [
  42530. {
  42531. name: "Normal",
  42532. height: math.unit(6 + 3/12, "feet"),
  42533. default: true
  42534. },
  42535. {
  42536. name: "Macro",
  42537. height: math.unit(225, "feet")
  42538. },
  42539. {
  42540. name: "Macro+",
  42541. height: math.unit(900, "feet")
  42542. },
  42543. {
  42544. name: "MegaMacro",
  42545. height: math.unit(14400, "feet")
  42546. },
  42547. ]
  42548. ))
  42549. characterMakers.push(() => makeCharacter(
  42550. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42551. {
  42552. front: {
  42553. height: math.unit(5 + 4/12, "feet"),
  42554. weight: math.unit(110, "lb"),
  42555. name: "Front",
  42556. image: {
  42557. source: "./media/characters/axel-isanov/front.svg",
  42558. extra: 1096/1065,
  42559. bottom: 13/1109
  42560. }
  42561. },
  42562. },
  42563. [
  42564. {
  42565. name: "Normal",
  42566. height: math.unit(5 + 4/12, "feet"),
  42567. default: true
  42568. },
  42569. ]
  42570. ))
  42571. characterMakers.push(() => makeCharacter(
  42572. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42573. {
  42574. front: {
  42575. height: math.unit(9, "feet"),
  42576. weight: math.unit(467, "lb"),
  42577. name: "Front",
  42578. image: {
  42579. source: "./media/characters/necahual/front.svg",
  42580. extra: 920/873,
  42581. bottom: 26/946
  42582. }
  42583. },
  42584. back: {
  42585. height: math.unit(9, "feet"),
  42586. weight: math.unit(467, "lb"),
  42587. name: "Back",
  42588. image: {
  42589. source: "./media/characters/necahual/back.svg",
  42590. extra: 930/884,
  42591. bottom: 16/946
  42592. }
  42593. },
  42594. frontUnderwear: {
  42595. height: math.unit(9, "feet"),
  42596. weight: math.unit(467, "lb"),
  42597. name: "Front (Underwear)",
  42598. image: {
  42599. source: "./media/characters/necahual/front-underwear.svg",
  42600. extra: 920/873,
  42601. bottom: 26/946
  42602. }
  42603. },
  42604. frontDressed: {
  42605. height: math.unit(9, "feet"),
  42606. weight: math.unit(467, "lb"),
  42607. name: "Front (Dressed)",
  42608. image: {
  42609. source: "./media/characters/necahual/front-dressed.svg",
  42610. extra: 920/873,
  42611. bottom: 26/946
  42612. }
  42613. },
  42614. },
  42615. [
  42616. {
  42617. name: "Comprsesed",
  42618. height: math.unit(9, "feet")
  42619. },
  42620. {
  42621. name: "Natural",
  42622. height: math.unit(15, "feet"),
  42623. default: true
  42624. },
  42625. {
  42626. name: "Boosted",
  42627. height: math.unit(50, "feet")
  42628. },
  42629. {
  42630. name: "Boosted+",
  42631. height: math.unit(150, "feet")
  42632. },
  42633. {
  42634. name: "Max",
  42635. height: math.unit(500, "feet")
  42636. },
  42637. ]
  42638. ))
  42639. characterMakers.push(() => makeCharacter(
  42640. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42641. {
  42642. front: {
  42643. height: math.unit(22 + 1/12, "feet"),
  42644. weight: math.unit(3200, "lb"),
  42645. name: "Front",
  42646. image: {
  42647. source: "./media/characters/theo-acacia/front.svg",
  42648. extra: 1796/1741,
  42649. bottom: 83/1879
  42650. }
  42651. },
  42652. frontUnderwear: {
  42653. height: math.unit(22 + 1/12, "feet"),
  42654. weight: math.unit(3200, "lb"),
  42655. name: "Front (Underwear)",
  42656. image: {
  42657. source: "./media/characters/theo-acacia/front-underwear.svg",
  42658. extra: 1796/1741,
  42659. bottom: 83/1879
  42660. }
  42661. },
  42662. frontNude: {
  42663. height: math.unit(22 + 1/12, "feet"),
  42664. weight: math.unit(3200, "lb"),
  42665. name: "Front (Nude)",
  42666. image: {
  42667. source: "./media/characters/theo-acacia/front-nude.svg",
  42668. extra: 1796/1741,
  42669. bottom: 83/1879
  42670. }
  42671. },
  42672. },
  42673. [
  42674. {
  42675. name: "Normal",
  42676. height: math.unit(22 + 1/12, "feet"),
  42677. default: true
  42678. },
  42679. ]
  42680. ))
  42681. characterMakers.push(() => makeCharacter(
  42682. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42683. {
  42684. front: {
  42685. height: math.unit(20, "feet"),
  42686. name: "Front",
  42687. image: {
  42688. source: "./media/characters/astra/front.svg",
  42689. extra: 1850/1714,
  42690. bottom: 106/1956
  42691. }
  42692. },
  42693. frontUndressed: {
  42694. height: math.unit(20, "feet"),
  42695. name: "Front (Undressed)",
  42696. image: {
  42697. source: "./media/characters/astra/front-undressed.svg",
  42698. extra: 1926/1749,
  42699. bottom: 0/1926
  42700. }
  42701. },
  42702. hand: {
  42703. height: math.unit(1.53, "feet"),
  42704. name: "Hand",
  42705. image: {
  42706. source: "./media/characters/astra/hand.svg"
  42707. }
  42708. },
  42709. paw: {
  42710. height: math.unit(1.53, "feet"),
  42711. name: "Paw",
  42712. image: {
  42713. source: "./media/characters/astra/paw.svg"
  42714. }
  42715. },
  42716. },
  42717. [
  42718. {
  42719. name: "Smallest",
  42720. height: math.unit(20, "feet")
  42721. },
  42722. {
  42723. name: "Normal",
  42724. height: math.unit(1e9, "miles"),
  42725. default: true
  42726. },
  42727. {
  42728. name: "Larger",
  42729. height: math.unit(5, "multiverses")
  42730. },
  42731. {
  42732. name: "Largest",
  42733. height: math.unit(1e9, "multiverses")
  42734. },
  42735. ]
  42736. ))
  42737. characterMakers.push(() => makeCharacter(
  42738. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42739. {
  42740. front: {
  42741. height: math.unit(8, "feet"),
  42742. name: "Front",
  42743. image: {
  42744. source: "./media/characters/breanna/front.svg",
  42745. extra: 1912/1632,
  42746. bottom: 33/1945
  42747. }
  42748. },
  42749. },
  42750. [
  42751. {
  42752. name: "Smallest",
  42753. height: math.unit(8, "feet")
  42754. },
  42755. {
  42756. name: "Normal",
  42757. height: math.unit(1, "mile"),
  42758. default: true
  42759. },
  42760. {
  42761. name: "Maximum",
  42762. height: math.unit(1500000000000, "lightyears")
  42763. },
  42764. ]
  42765. ))
  42766. characterMakers.push(() => makeCharacter(
  42767. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42768. {
  42769. front: {
  42770. height: math.unit(5 + 11/12, "feet"),
  42771. weight: math.unit(155, "lb"),
  42772. name: "Front",
  42773. image: {
  42774. source: "./media/characters/cai/front.svg",
  42775. extra: 1823/1702,
  42776. bottom: 32/1855
  42777. }
  42778. },
  42779. back: {
  42780. height: math.unit(5 + 11/12, "feet"),
  42781. weight: math.unit(155, "lb"),
  42782. name: "Back",
  42783. image: {
  42784. source: "./media/characters/cai/back.svg",
  42785. extra: 1809/1708,
  42786. bottom: 31/1840
  42787. }
  42788. },
  42789. },
  42790. [
  42791. {
  42792. name: "Normal",
  42793. height: math.unit(5 + 11/12, "feet"),
  42794. default: true
  42795. },
  42796. {
  42797. name: "Big",
  42798. height: math.unit(15, "feet")
  42799. },
  42800. {
  42801. name: "Macro",
  42802. height: math.unit(200, "feet")
  42803. },
  42804. ]
  42805. ))
  42806. characterMakers.push(() => makeCharacter(
  42807. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42808. {
  42809. front: {
  42810. height: math.unit(5 + 6/12, "feet"),
  42811. weight: math.unit(160, "lb"),
  42812. name: "Front",
  42813. image: {
  42814. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42815. extra: 1227/1174,
  42816. bottom: 37/1264
  42817. }
  42818. },
  42819. },
  42820. [
  42821. {
  42822. name: "Macro",
  42823. height: math.unit(444, "meters"),
  42824. default: true
  42825. },
  42826. ]
  42827. ))
  42828. characterMakers.push(() => makeCharacter(
  42829. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42830. {
  42831. front: {
  42832. height: math.unit(18 + 7/12, "feet"),
  42833. name: "Front",
  42834. image: {
  42835. source: "./media/characters/rex/front.svg",
  42836. extra: 1941/1807,
  42837. bottom: 66/2007
  42838. }
  42839. },
  42840. back: {
  42841. height: math.unit(18 + 7/12, "feet"),
  42842. name: "Back",
  42843. image: {
  42844. source: "./media/characters/rex/back.svg",
  42845. extra: 1937/1822,
  42846. bottom: 42/1979
  42847. }
  42848. },
  42849. boot: {
  42850. height: math.unit(3.45, "feet"),
  42851. name: "Boot",
  42852. image: {
  42853. source: "./media/characters/rex/boot.svg"
  42854. }
  42855. },
  42856. paw: {
  42857. height: math.unit(4.17, "feet"),
  42858. name: "Paw",
  42859. image: {
  42860. source: "./media/characters/rex/paw.svg"
  42861. }
  42862. },
  42863. head: {
  42864. height: math.unit(6.728, "feet"),
  42865. name: "Head",
  42866. image: {
  42867. source: "./media/characters/rex/head.svg"
  42868. }
  42869. },
  42870. },
  42871. [
  42872. {
  42873. name: "Nano",
  42874. height: math.unit(18 + 7/12, "feet")
  42875. },
  42876. {
  42877. name: "Micro",
  42878. height: math.unit(1.5, "megameters")
  42879. },
  42880. {
  42881. name: "Normal",
  42882. height: math.unit(440, "megameters"),
  42883. default: true
  42884. },
  42885. {
  42886. name: "Macro",
  42887. height: math.unit(2.5, "gigameters")
  42888. },
  42889. {
  42890. name: "Gigamacro",
  42891. height: math.unit(2, "galaxies")
  42892. },
  42893. ]
  42894. ))
  42895. characterMakers.push(() => makeCharacter(
  42896. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42897. {
  42898. side: {
  42899. height: math.unit(32, "feet"),
  42900. weight: math.unit(250000, "lb"),
  42901. name: "Side",
  42902. image: {
  42903. source: "./media/characters/silverwing/side.svg",
  42904. extra: 1100/1019,
  42905. bottom: 204/1304
  42906. }
  42907. },
  42908. },
  42909. [
  42910. {
  42911. name: "Normal",
  42912. height: math.unit(32, "feet"),
  42913. default: true
  42914. },
  42915. ]
  42916. ))
  42917. characterMakers.push(() => makeCharacter(
  42918. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42919. {
  42920. front: {
  42921. height: math.unit(6 + 6/12, "feet"),
  42922. weight: math.unit(350, "lb"),
  42923. name: "Front",
  42924. image: {
  42925. source: "./media/characters/tristan-hawthorne/front.svg",
  42926. extra: 1159/1124,
  42927. bottom: 37/1196
  42928. },
  42929. form: "labrador",
  42930. default: true
  42931. },
  42932. skunkFront: {
  42933. height: math.unit(4 + 6/12, "feet"),
  42934. weight: math.unit(120, "lb"),
  42935. name: "Front",
  42936. image: {
  42937. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42938. extra: 1609/1551,
  42939. bottom: 169/1778
  42940. },
  42941. form: "skunk",
  42942. default: true
  42943. },
  42944. },
  42945. [
  42946. {
  42947. name: "Normal",
  42948. height: math.unit(6 + 6/12, "feet"),
  42949. form: "labrador",
  42950. default: true
  42951. },
  42952. {
  42953. name: "Normal",
  42954. height: math.unit(4 + 6/12, "feet"),
  42955. form: "skunk",
  42956. default: true
  42957. },
  42958. ],
  42959. {
  42960. "labrador": {
  42961. name: "Labrador",
  42962. default: true
  42963. },
  42964. "skunk": {
  42965. name: "Skunk"
  42966. }
  42967. }
  42968. ))
  42969. characterMakers.push(() => makeCharacter(
  42970. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42971. {
  42972. front: {
  42973. height: math.unit(5 + 11/12, "feet"),
  42974. weight: math.unit(190, "lb"),
  42975. name: "Front",
  42976. image: {
  42977. source: "./media/characters/mizu/front.svg",
  42978. extra: 1988/1788,
  42979. bottom: 14/2002
  42980. }
  42981. },
  42982. },
  42983. [
  42984. {
  42985. name: "Normal",
  42986. height: math.unit(5 + 11/12, "feet"),
  42987. default: true
  42988. },
  42989. ]
  42990. ))
  42991. characterMakers.push(() => makeCharacter(
  42992. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42993. {
  42994. front: {
  42995. height: math.unit(1.7, "feet"),
  42996. weight: math.unit(50, "lb"),
  42997. name: "Front",
  42998. image: {
  42999. source: "./media/characters/dechroma/front.svg",
  43000. extra: 1095/859,
  43001. bottom: 64/1159
  43002. }
  43003. },
  43004. },
  43005. [
  43006. {
  43007. name: "Normal",
  43008. height: math.unit(1.7, "feet"),
  43009. default: true
  43010. },
  43011. ]
  43012. ))
  43013. characterMakers.push(() => makeCharacter(
  43014. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43015. {
  43016. side: {
  43017. height: math.unit(30, "feet"),
  43018. name: "Side",
  43019. image: {
  43020. source: "./media/characters/veluren-thanazel/side.svg",
  43021. extra: 1611/633,
  43022. bottom: 118/1729
  43023. }
  43024. },
  43025. front: {
  43026. height: math.unit(30, "feet"),
  43027. name: "Front",
  43028. image: {
  43029. source: "./media/characters/veluren-thanazel/front.svg",
  43030. extra: 1486/636,
  43031. bottom: 238/1724
  43032. }
  43033. },
  43034. head: {
  43035. height: math.unit(21.4, "feet"),
  43036. name: "Head",
  43037. image: {
  43038. source: "./media/characters/veluren-thanazel/head.svg"
  43039. }
  43040. },
  43041. genitals: {
  43042. height: math.unit(19.4, "feet"),
  43043. name: "Genitals",
  43044. image: {
  43045. source: "./media/characters/veluren-thanazel/genitals.svg"
  43046. }
  43047. },
  43048. },
  43049. [
  43050. {
  43051. name: "Social",
  43052. height: math.unit(6, "feet")
  43053. },
  43054. {
  43055. name: "Play",
  43056. height: math.unit(12, "feet")
  43057. },
  43058. {
  43059. name: "True",
  43060. height: math.unit(30, "feet"),
  43061. default: true
  43062. },
  43063. ]
  43064. ))
  43065. characterMakers.push(() => makeCharacter(
  43066. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43067. {
  43068. front: {
  43069. height: math.unit(7 + 6/12, "feet"),
  43070. weight: math.unit(500, "kg"),
  43071. name: "Front",
  43072. image: {
  43073. source: "./media/characters/arcturas/front.svg",
  43074. extra: 1700/1500,
  43075. bottom: 145/1845
  43076. }
  43077. },
  43078. },
  43079. [
  43080. {
  43081. name: "Normal",
  43082. height: math.unit(7 + 6/12, "feet"),
  43083. default: true
  43084. },
  43085. ]
  43086. ))
  43087. characterMakers.push(() => makeCharacter(
  43088. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43089. {
  43090. side: {
  43091. height: math.unit(6, "feet"),
  43092. weight: math.unit(2, "tons"),
  43093. name: "Side",
  43094. image: {
  43095. source: "./media/characters/vitaen/side.svg",
  43096. extra: 1157/617,
  43097. bottom: 122/1279
  43098. }
  43099. },
  43100. },
  43101. [
  43102. {
  43103. name: "Normal",
  43104. height: math.unit(6, "feet"),
  43105. default: true
  43106. },
  43107. ]
  43108. ))
  43109. characterMakers.push(() => makeCharacter(
  43110. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43111. {
  43112. front: {
  43113. height: math.unit(19, "feet"),
  43114. name: "Front",
  43115. image: {
  43116. source: "./media/characters/fia-dreamweaver/front.svg",
  43117. extra: 1630/1504,
  43118. bottom: 25/1655
  43119. }
  43120. },
  43121. },
  43122. [
  43123. {
  43124. name: "Normal",
  43125. height: math.unit(19, "feet"),
  43126. default: true
  43127. },
  43128. ]
  43129. ))
  43130. characterMakers.push(() => makeCharacter(
  43131. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43132. {
  43133. front: {
  43134. height: math.unit(5 + 4/12, "feet"),
  43135. name: "Front",
  43136. image: {
  43137. source: "./media/characters/artan/front.svg",
  43138. extra: 1618/1535,
  43139. bottom: 46/1664
  43140. }
  43141. },
  43142. back: {
  43143. height: math.unit(5 + 4/12, "feet"),
  43144. name: "Back",
  43145. image: {
  43146. source: "./media/characters/artan/back.svg",
  43147. extra: 1618/1543,
  43148. bottom: 31/1649
  43149. }
  43150. },
  43151. },
  43152. [
  43153. {
  43154. name: "Normal",
  43155. height: math.unit(5 + 4/12, "feet"),
  43156. default: true
  43157. },
  43158. ]
  43159. ))
  43160. characterMakers.push(() => makeCharacter(
  43161. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43162. {
  43163. side: {
  43164. height: math.unit(182, "cm"),
  43165. weight: math.unit(1000, "lb"),
  43166. name: "Side",
  43167. image: {
  43168. source: "./media/characters/silver-dragon/side.svg",
  43169. extra: 710/287,
  43170. bottom: 88/798
  43171. }
  43172. },
  43173. },
  43174. [
  43175. {
  43176. name: "Normal",
  43177. height: math.unit(182, "cm"),
  43178. default: true
  43179. },
  43180. ]
  43181. ))
  43182. characterMakers.push(() => makeCharacter(
  43183. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43184. {
  43185. side: {
  43186. height: math.unit(6 + 6/12, "feet"),
  43187. weight: math.unit(1.5, "tons"),
  43188. name: "Side",
  43189. image: {
  43190. source: "./media/characters/zephyr/side.svg",
  43191. extra: 1433/586,
  43192. bottom: 109/1542
  43193. }
  43194. },
  43195. },
  43196. [
  43197. {
  43198. name: "Normal",
  43199. height: math.unit(6 + 6/12, "feet"),
  43200. default: true
  43201. },
  43202. ]
  43203. ))
  43204. characterMakers.push(() => makeCharacter(
  43205. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43206. {
  43207. side: {
  43208. height: math.unit(1, "feet"),
  43209. name: "Side",
  43210. image: {
  43211. source: "./media/characters/vixye/side.svg",
  43212. extra: 632/541,
  43213. bottom: 0/632
  43214. }
  43215. },
  43216. },
  43217. [
  43218. {
  43219. name: "Normal",
  43220. height: math.unit(1, "feet"),
  43221. default: true
  43222. },
  43223. {
  43224. name: "True",
  43225. height: math.unit(1e15, "multiverses")
  43226. },
  43227. ]
  43228. ))
  43229. characterMakers.push(() => makeCharacter(
  43230. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43231. {
  43232. front: {
  43233. height: math.unit(8 + 2/12, "feet"),
  43234. weight: math.unit(650, "lb"),
  43235. name: "Front",
  43236. image: {
  43237. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43238. extra: 1174/1137,
  43239. bottom: 82/1256
  43240. }
  43241. },
  43242. back: {
  43243. height: math.unit(8 + 2/12, "feet"),
  43244. weight: math.unit(650, "lb"),
  43245. name: "Back",
  43246. image: {
  43247. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43248. extra: 1204/1157,
  43249. bottom: 46/1250
  43250. }
  43251. },
  43252. },
  43253. [
  43254. {
  43255. name: "Wildform",
  43256. height: math.unit(8 + 2/12, "feet"),
  43257. default: true
  43258. },
  43259. ]
  43260. ))
  43261. characterMakers.push(() => makeCharacter(
  43262. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43263. {
  43264. front: {
  43265. height: math.unit(18, "feet"),
  43266. name: "Front",
  43267. image: {
  43268. source: "./media/characters/cyphin/front.svg",
  43269. extra: 970/886,
  43270. bottom: 42/1012
  43271. }
  43272. },
  43273. back: {
  43274. height: math.unit(18, "feet"),
  43275. name: "Back",
  43276. image: {
  43277. source: "./media/characters/cyphin/back.svg",
  43278. extra: 1009/894,
  43279. bottom: 24/1033
  43280. }
  43281. },
  43282. head: {
  43283. height: math.unit(5.05, "feet"),
  43284. name: "Head",
  43285. image: {
  43286. source: "./media/characters/cyphin/head.svg"
  43287. }
  43288. },
  43289. tailbud: {
  43290. height: math.unit(5, "feet"),
  43291. name: "Tailbud",
  43292. image: {
  43293. source: "./media/characters/cyphin/tailbud.svg"
  43294. }
  43295. },
  43296. },
  43297. [
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43302. {
  43303. side: {
  43304. height: math.unit(10, "feet"),
  43305. weight: math.unit(6, "tons"),
  43306. name: "Side",
  43307. image: {
  43308. source: "./media/characters/raijin/side.svg",
  43309. extra: 1529/613,
  43310. bottom: 337/1866
  43311. }
  43312. },
  43313. },
  43314. [
  43315. {
  43316. name: "Normal",
  43317. height: math.unit(10, "feet"),
  43318. default: true
  43319. },
  43320. ]
  43321. ))
  43322. characterMakers.push(() => makeCharacter(
  43323. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43324. {
  43325. side: {
  43326. height: math.unit(9, "feet"),
  43327. name: "Side",
  43328. image: {
  43329. source: "./media/characters/nilghais/side.svg",
  43330. extra: 1047/744,
  43331. bottom: 91/1138
  43332. }
  43333. },
  43334. head: {
  43335. height: math.unit(3.14, "feet"),
  43336. name: "Head",
  43337. image: {
  43338. source: "./media/characters/nilghais/head.svg"
  43339. }
  43340. },
  43341. mouth: {
  43342. height: math.unit(4.6, "feet"),
  43343. name: "Mouth",
  43344. image: {
  43345. source: "./media/characters/nilghais/mouth.svg"
  43346. }
  43347. },
  43348. wings: {
  43349. height: math.unit(24, "feet"),
  43350. name: "Wings",
  43351. image: {
  43352. source: "./media/characters/nilghais/wings.svg"
  43353. }
  43354. },
  43355. ass: {
  43356. height: math.unit(6.12, "feet"),
  43357. name: "Ass",
  43358. image: {
  43359. source: "./media/characters/nilghais/ass.svg"
  43360. }
  43361. },
  43362. },
  43363. [
  43364. {
  43365. name: "Normal",
  43366. height: math.unit(9, "feet"),
  43367. default: true
  43368. },
  43369. ]
  43370. ))
  43371. characterMakers.push(() => makeCharacter(
  43372. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43373. {
  43374. regular: {
  43375. height: math.unit(16 + 2/12, "feet"),
  43376. weight: math.unit(2300, "lb"),
  43377. name: "Regular",
  43378. image: {
  43379. source: "./media/characters/zolgar/regular.svg",
  43380. extra: 1246/1004,
  43381. bottom: 124/1370
  43382. }
  43383. },
  43384. boxers: {
  43385. height: math.unit(16 + 2/12, "feet"),
  43386. weight: math.unit(2300, "lb"),
  43387. name: "Boxers",
  43388. image: {
  43389. source: "./media/characters/zolgar/boxers.svg",
  43390. extra: 1246/1004,
  43391. bottom: 124/1370
  43392. }
  43393. },
  43394. armored: {
  43395. height: math.unit(16 + 2/12, "feet"),
  43396. weight: math.unit(2300, "lb"),
  43397. name: "Armored",
  43398. image: {
  43399. source: "./media/characters/zolgar/armored.svg",
  43400. extra: 1246/1004,
  43401. bottom: 124/1370
  43402. }
  43403. },
  43404. goth: {
  43405. height: math.unit(16 + 2/12, "feet"),
  43406. weight: math.unit(2300, "lb"),
  43407. name: "Goth",
  43408. image: {
  43409. source: "./media/characters/zolgar/goth.svg",
  43410. extra: 1246/1004,
  43411. bottom: 124/1370
  43412. }
  43413. },
  43414. },
  43415. [
  43416. {
  43417. name: "Shrunken Down",
  43418. height: math.unit(9 + 2/12, "feet")
  43419. },
  43420. {
  43421. name: "Normal",
  43422. height: math.unit(16 + 2/12, "feet"),
  43423. default: true
  43424. },
  43425. ]
  43426. ))
  43427. characterMakers.push(() => makeCharacter(
  43428. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43429. {
  43430. front: {
  43431. height: math.unit(6, "feet"),
  43432. weight: math.unit(168, "lb"),
  43433. name: "Front",
  43434. image: {
  43435. source: "./media/characters/luca/front.svg",
  43436. extra: 841/667,
  43437. bottom: 102/943
  43438. }
  43439. },
  43440. },
  43441. [
  43442. {
  43443. name: "Normal",
  43444. height: math.unit(6, "feet"),
  43445. default: true
  43446. },
  43447. ]
  43448. ))
  43449. characterMakers.push(() => makeCharacter(
  43450. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43451. {
  43452. side: {
  43453. height: math.unit(7 + 3/12, "feet"),
  43454. weight: math.unit(312, "lb"),
  43455. name: "Side",
  43456. image: {
  43457. source: "./media/characters/zezo/side.svg",
  43458. extra: 1192/1067,
  43459. bottom: 63/1255
  43460. }
  43461. },
  43462. },
  43463. [
  43464. {
  43465. name: "Normal",
  43466. height: math.unit(7 + 3/12, "feet"),
  43467. default: true
  43468. },
  43469. ]
  43470. ))
  43471. characterMakers.push(() => makeCharacter(
  43472. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43473. {
  43474. front: {
  43475. height: math.unit(5 + 5/12, "feet"),
  43476. weight: math.unit(170, "lb"),
  43477. name: "Front",
  43478. image: {
  43479. source: "./media/characters/mayso/front.svg",
  43480. extra: 1215/1108,
  43481. bottom: 16/1231
  43482. }
  43483. },
  43484. },
  43485. [
  43486. {
  43487. name: "Normal",
  43488. height: math.unit(5 + 5/12, "feet"),
  43489. default: true
  43490. },
  43491. ]
  43492. ))
  43493. characterMakers.push(() => makeCharacter(
  43494. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43495. {
  43496. front: {
  43497. height: math.unit(4 + 3/12, "feet"),
  43498. weight: math.unit(80, "lb"),
  43499. name: "Front",
  43500. image: {
  43501. source: "./media/characters/hess/front.svg",
  43502. extra: 1200/1123,
  43503. bottom: 16/1216
  43504. }
  43505. },
  43506. },
  43507. [
  43508. {
  43509. name: "Normal",
  43510. height: math.unit(4 + 3/12, "feet"),
  43511. default: true
  43512. },
  43513. ]
  43514. ))
  43515. characterMakers.push(() => makeCharacter(
  43516. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43517. {
  43518. front: {
  43519. height: math.unit(1.9, "meters"),
  43520. name: "Front",
  43521. image: {
  43522. source: "./media/characters/ashgar/front.svg",
  43523. extra: 1177/1146,
  43524. bottom: 99/1276
  43525. }
  43526. },
  43527. back: {
  43528. height: math.unit(1.9, "meters"),
  43529. name: "Back",
  43530. image: {
  43531. source: "./media/characters/ashgar/back.svg",
  43532. extra: 1201/1183,
  43533. bottom: 53/1254
  43534. }
  43535. },
  43536. feral: {
  43537. height: math.unit(1.4, "meters"),
  43538. name: "Feral",
  43539. image: {
  43540. source: "./media/characters/ashgar/feral.svg",
  43541. extra: 370/345,
  43542. bottom: 45/415
  43543. }
  43544. },
  43545. },
  43546. [
  43547. {
  43548. name: "Normal",
  43549. height: math.unit(1.9, "meters"),
  43550. default: true
  43551. },
  43552. ]
  43553. ))
  43554. characterMakers.push(() => makeCharacter(
  43555. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43556. {
  43557. regular: {
  43558. height: math.unit(6, "feet"),
  43559. weight: math.unit(220, "lb"),
  43560. name: "Regular",
  43561. image: {
  43562. source: "./media/characters/phillip/regular.svg",
  43563. extra: 1373/1277,
  43564. bottom: 75/1448
  43565. }
  43566. },
  43567. dressed: {
  43568. height: math.unit(6, "feet"),
  43569. weight: math.unit(220, "lb"),
  43570. name: "Dressed",
  43571. image: {
  43572. source: "./media/characters/phillip/dressed.svg",
  43573. extra: 1373/1277,
  43574. bottom: 75/1448
  43575. }
  43576. },
  43577. paw: {
  43578. height: math.unit(1.44, "feet"),
  43579. name: "Paw",
  43580. image: {
  43581. source: "./media/characters/phillip/paw.svg"
  43582. }
  43583. },
  43584. },
  43585. [
  43586. {
  43587. name: "Normal",
  43588. height: math.unit(6, "feet"),
  43589. default: true
  43590. },
  43591. ]
  43592. ))
  43593. characterMakers.push(() => makeCharacter(
  43594. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43595. {
  43596. side: {
  43597. height: math.unit(42, "feet"),
  43598. name: "Side",
  43599. image: {
  43600. source: "./media/characters/uvula/side.svg",
  43601. extra: 683/586,
  43602. bottom: 60/743
  43603. }
  43604. },
  43605. front: {
  43606. height: math.unit(42, "feet"),
  43607. name: "Front",
  43608. image: {
  43609. source: "./media/characters/uvula/front.svg",
  43610. extra: 705/613,
  43611. bottom: 54/759
  43612. }
  43613. },
  43614. maw: {
  43615. height: math.unit(23.5, "feet"),
  43616. name: "Maw",
  43617. image: {
  43618. source: "./media/characters/uvula/maw.svg"
  43619. }
  43620. },
  43621. },
  43622. [
  43623. {
  43624. name: "Original Size",
  43625. height: math.unit(14, "inches")
  43626. },
  43627. {
  43628. name: "Human Size",
  43629. height: math.unit(6, "feet")
  43630. },
  43631. {
  43632. name: "Big",
  43633. height: math.unit(42, "feet"),
  43634. default: true
  43635. },
  43636. {
  43637. name: "Bigger",
  43638. height: math.unit(100, "feet")
  43639. },
  43640. ]
  43641. ))
  43642. characterMakers.push(() => makeCharacter(
  43643. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43644. {
  43645. front: {
  43646. height: math.unit(5 + 11/12, "feet"),
  43647. name: "Front",
  43648. image: {
  43649. source: "./media/characters/lannah/front.svg",
  43650. extra: 1208/1113,
  43651. bottom: 97/1305
  43652. }
  43653. },
  43654. },
  43655. [
  43656. {
  43657. name: "Normal",
  43658. height: math.unit(5 + 11/12, "feet"),
  43659. default: true
  43660. },
  43661. ]
  43662. ))
  43663. characterMakers.push(() => makeCharacter(
  43664. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43665. {
  43666. front: {
  43667. height: math.unit(6 + 3/12, "feet"),
  43668. weight: math.unit(3.5, "tons"),
  43669. name: "Front",
  43670. image: {
  43671. source: "./media/characters/emberflame/front.svg",
  43672. extra: 1198/672,
  43673. bottom: 82/1280
  43674. }
  43675. },
  43676. side: {
  43677. height: math.unit(6 + 3/12, "feet"),
  43678. weight: math.unit(3.5, "tons"),
  43679. name: "Side",
  43680. image: {
  43681. source: "./media/characters/emberflame/side.svg",
  43682. extra: 938/527,
  43683. bottom: 56/994
  43684. }
  43685. },
  43686. },
  43687. [
  43688. {
  43689. name: "Normal",
  43690. height: math.unit(6 + 3/12, "feet"),
  43691. default: true
  43692. },
  43693. ]
  43694. ))
  43695. characterMakers.push(() => makeCharacter(
  43696. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43697. {
  43698. side: {
  43699. height: math.unit(17.5, "feet"),
  43700. weight: math.unit(35, "tons"),
  43701. name: "Side",
  43702. image: {
  43703. source: "./media/characters/sophie-ambrose/side.svg",
  43704. extra: 1573/1242,
  43705. bottom: 71/1644
  43706. }
  43707. },
  43708. maw: {
  43709. height: math.unit(7.4, "feet"),
  43710. name: "Maw",
  43711. image: {
  43712. source: "./media/characters/sophie-ambrose/maw.svg"
  43713. }
  43714. },
  43715. },
  43716. [
  43717. {
  43718. name: "Normal",
  43719. height: math.unit(17.5, "feet"),
  43720. default: true
  43721. },
  43722. ]
  43723. ))
  43724. characterMakers.push(() => makeCharacter(
  43725. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43726. {
  43727. front: {
  43728. height: math.unit(280, "feet"),
  43729. weight: math.unit(550, "tons"),
  43730. name: "Front",
  43731. image: {
  43732. source: "./media/characters/king-mugi/front.svg",
  43733. extra: 1102/947,
  43734. bottom: 104/1206
  43735. }
  43736. },
  43737. },
  43738. [
  43739. {
  43740. name: "King Mugi",
  43741. height: math.unit(280, "feet"),
  43742. default: true
  43743. },
  43744. ]
  43745. ))
  43746. characterMakers.push(() => makeCharacter(
  43747. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43748. {
  43749. front: {
  43750. height: math.unit(64, "meters"),
  43751. name: "Front",
  43752. image: {
  43753. source: "./media/characters/nova-fox/front.svg",
  43754. extra: 1310/1246,
  43755. bottom: 65/1375
  43756. }
  43757. },
  43758. },
  43759. [
  43760. {
  43761. name: "Macro",
  43762. height: math.unit(64, "meters"),
  43763. default: true
  43764. },
  43765. ]
  43766. ))
  43767. characterMakers.push(() => makeCharacter(
  43768. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43769. {
  43770. front: {
  43771. height: math.unit(6 + 3/12, "feet"),
  43772. weight: math.unit(170, "lb"),
  43773. name: "Front",
  43774. image: {
  43775. source: "./media/characters/sam-bat/front.svg",
  43776. extra: 1601/1411,
  43777. bottom: 125/1726
  43778. }
  43779. },
  43780. back: {
  43781. height: math.unit(6 + 3/12, "feet"),
  43782. weight: math.unit(170, "lb"),
  43783. name: "Back",
  43784. image: {
  43785. source: "./media/characters/sam-bat/back.svg",
  43786. extra: 1577/1405,
  43787. bottom: 58/1635
  43788. }
  43789. },
  43790. },
  43791. [
  43792. {
  43793. name: "Normal",
  43794. height: math.unit(6 + 3/12, "feet"),
  43795. default: true
  43796. },
  43797. ]
  43798. ))
  43799. characterMakers.push(() => makeCharacter(
  43800. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43801. {
  43802. front: {
  43803. height: math.unit(59, "feet"),
  43804. weight: math.unit(40000, "lb"),
  43805. name: "Front",
  43806. image: {
  43807. source: "./media/characters/inari/front.svg",
  43808. extra: 1884/1350,
  43809. bottom: 95/1979
  43810. }
  43811. },
  43812. },
  43813. [
  43814. {
  43815. name: "Gigantamax",
  43816. height: math.unit(59, "feet"),
  43817. default: true
  43818. },
  43819. ]
  43820. ))
  43821. characterMakers.push(() => makeCharacter(
  43822. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43823. {
  43824. front: {
  43825. height: math.unit(5 + 8/12, "feet"),
  43826. name: "Front",
  43827. image: {
  43828. source: "./media/characters/elizabeth/front.svg",
  43829. extra: 1395/1298,
  43830. bottom: 54/1449
  43831. }
  43832. },
  43833. mouth: {
  43834. height: math.unit(1.97, "feet"),
  43835. name: "Mouth",
  43836. image: {
  43837. source: "./media/characters/elizabeth/mouth.svg"
  43838. }
  43839. },
  43840. foot: {
  43841. height: math.unit(1.17, "feet"),
  43842. name: "Foot",
  43843. image: {
  43844. source: "./media/characters/elizabeth/foot.svg"
  43845. }
  43846. },
  43847. },
  43848. [
  43849. {
  43850. name: "Normal",
  43851. height: math.unit(5 + 8/12, "feet"),
  43852. default: true
  43853. },
  43854. {
  43855. name: "Minimacro",
  43856. height: math.unit(18, "feet")
  43857. },
  43858. {
  43859. name: "Macro",
  43860. height: math.unit(180, "feet")
  43861. },
  43862. ]
  43863. ))
  43864. characterMakers.push(() => makeCharacter(
  43865. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43866. {
  43867. front: {
  43868. height: math.unit(5 + 2/12, "feet"),
  43869. name: "Front",
  43870. image: {
  43871. source: "./media/characters/october-gossamer/front.svg",
  43872. extra: 505/454,
  43873. bottom: 7/512
  43874. }
  43875. },
  43876. back: {
  43877. height: math.unit(5 + 2/12, "feet"),
  43878. name: "Back",
  43879. image: {
  43880. source: "./media/characters/october-gossamer/back.svg",
  43881. extra: 501/454,
  43882. bottom: 11/512
  43883. }
  43884. },
  43885. },
  43886. [
  43887. {
  43888. name: "Normal",
  43889. height: math.unit(5 + 2/12, "feet"),
  43890. default: true
  43891. },
  43892. ]
  43893. ))
  43894. characterMakers.push(() => makeCharacter(
  43895. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43896. {
  43897. front: {
  43898. height: math.unit(5, "feet"),
  43899. name: "Front",
  43900. image: {
  43901. source: "./media/characters/epiglottis/front.svg",
  43902. extra: 923/849,
  43903. bottom: 17/940
  43904. }
  43905. },
  43906. },
  43907. [
  43908. {
  43909. name: "Original Size",
  43910. height: math.unit(10, "inches")
  43911. },
  43912. {
  43913. name: "Human Size",
  43914. height: math.unit(5, "feet"),
  43915. default: true
  43916. },
  43917. {
  43918. name: "Big",
  43919. height: math.unit(25, "feet")
  43920. },
  43921. {
  43922. name: "Bigger",
  43923. height: math.unit(50, "feet")
  43924. },
  43925. {
  43926. name: "oh lawd",
  43927. height: math.unit(75, "feet")
  43928. },
  43929. ]
  43930. ))
  43931. characterMakers.push(() => makeCharacter(
  43932. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43933. {
  43934. front: {
  43935. height: math.unit(2 + 4/12, "feet"),
  43936. weight: math.unit(60, "lb"),
  43937. name: "Front",
  43938. image: {
  43939. source: "./media/characters/lerm/front.svg",
  43940. extra: 796/790,
  43941. bottom: 79/875
  43942. }
  43943. },
  43944. },
  43945. [
  43946. {
  43947. name: "Normal",
  43948. height: math.unit(2 + 4/12, "feet"),
  43949. default: true
  43950. },
  43951. ]
  43952. ))
  43953. characterMakers.push(() => makeCharacter(
  43954. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43955. {
  43956. front: {
  43957. height: math.unit(5.5, "feet"),
  43958. weight: math.unit(130, "lb"),
  43959. name: "Front",
  43960. image: {
  43961. source: "./media/characters/xena-nebadon/front.svg",
  43962. extra: 1828/1730,
  43963. bottom: 79/1907
  43964. }
  43965. },
  43966. },
  43967. [
  43968. {
  43969. name: "Tiny Puppy",
  43970. height: math.unit(3, "inches")
  43971. },
  43972. {
  43973. name: "Normal",
  43974. height: math.unit(5.5, "feet"),
  43975. default: true
  43976. },
  43977. {
  43978. name: "Lotta Lady",
  43979. height: math.unit(12, "feet")
  43980. },
  43981. {
  43982. name: "Pretty Big",
  43983. height: math.unit(100, "feet")
  43984. },
  43985. {
  43986. name: "Big",
  43987. height: math.unit(500, "feet")
  43988. },
  43989. {
  43990. name: "Skyscraper Toys",
  43991. height: math.unit(2500, "feet")
  43992. },
  43993. {
  43994. name: "Plane Catcher",
  43995. height: math.unit(8, "miles")
  43996. },
  43997. {
  43998. name: "Planet Toys",
  43999. height: math.unit(15, "earths")
  44000. },
  44001. {
  44002. name: "Stardust",
  44003. height: math.unit(0.25, "galaxies")
  44004. },
  44005. {
  44006. name: "Snacks",
  44007. height: math.unit(70, "universes")
  44008. },
  44009. ]
  44010. ))
  44011. characterMakers.push(() => makeCharacter(
  44012. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44013. {
  44014. front: {
  44015. height: math.unit(1.6, "meters"),
  44016. weight: math.unit(60, "kg"),
  44017. name: "Front",
  44018. image: {
  44019. source: "./media/characters/bounty/front.svg",
  44020. extra: 1426/1308,
  44021. bottom: 15/1441
  44022. }
  44023. },
  44024. back: {
  44025. height: math.unit(1.6, "meters"),
  44026. weight: math.unit(60, "kg"),
  44027. name: "Back",
  44028. image: {
  44029. source: "./media/characters/bounty/back.svg",
  44030. extra: 1417/1307,
  44031. bottom: 8/1425
  44032. }
  44033. },
  44034. },
  44035. [
  44036. {
  44037. name: "Normal",
  44038. height: math.unit(1.6, "meters"),
  44039. default: true
  44040. },
  44041. {
  44042. name: "Macro",
  44043. height: math.unit(300, "meters")
  44044. },
  44045. ]
  44046. ))
  44047. characterMakers.push(() => makeCharacter(
  44048. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44049. {
  44050. front: {
  44051. height: math.unit(2 + 8/12, "feet"),
  44052. weight: math.unit(15, "lb"),
  44053. name: "Front",
  44054. image: {
  44055. source: "./media/characters/mochi/front.svg",
  44056. extra: 1022/852,
  44057. bottom: 435/1457
  44058. }
  44059. },
  44060. back: {
  44061. height: math.unit(2 + 8/12, "feet"),
  44062. weight: math.unit(15, "lb"),
  44063. name: "Back",
  44064. image: {
  44065. source: "./media/characters/mochi/back.svg",
  44066. extra: 1335/1119,
  44067. bottom: 39/1374
  44068. }
  44069. },
  44070. bird: {
  44071. height: math.unit(2 + 8/12, "feet"),
  44072. weight: math.unit(15, "lb"),
  44073. name: "Bird",
  44074. image: {
  44075. source: "./media/characters/mochi/bird.svg",
  44076. extra: 1251/1113,
  44077. bottom: 178/1429
  44078. }
  44079. },
  44080. kaiju: {
  44081. height: math.unit(154, "feet"),
  44082. weight: math.unit(1e7, "lb"),
  44083. name: "Kaiju",
  44084. image: {
  44085. source: "./media/characters/mochi/kaiju.svg",
  44086. extra: 460/324,
  44087. bottom: 40/500
  44088. }
  44089. },
  44090. head: {
  44091. height: math.unit(1.21, "feet"),
  44092. name: "Head",
  44093. image: {
  44094. source: "./media/characters/mochi/head.svg"
  44095. }
  44096. },
  44097. alternateTail: {
  44098. height: math.unit(2 + 8/12, "feet"),
  44099. weight: math.unit(45, "lb"),
  44100. name: "Alternate Tail",
  44101. image: {
  44102. source: "./media/characters/mochi/alternate-tail.svg",
  44103. extra: 139/76,
  44104. bottom: 45/184
  44105. }
  44106. },
  44107. },
  44108. [
  44109. {
  44110. name: "Micro",
  44111. height: math.unit(2, "inches")
  44112. },
  44113. {
  44114. name: "Normal",
  44115. height: math.unit(2 + 8/12, "feet"),
  44116. default: true
  44117. },
  44118. {
  44119. name: "Macro",
  44120. height: math.unit(106, "feet")
  44121. },
  44122. ]
  44123. ))
  44124. characterMakers.push(() => makeCharacter(
  44125. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44126. {
  44127. front: {
  44128. height: math.unit(5.67, "feet"),
  44129. weight: math.unit(135, "lb"),
  44130. name: "Front",
  44131. image: {
  44132. source: "./media/characters/sarel/front.svg",
  44133. extra: 865/788,
  44134. bottom: 97/962
  44135. }
  44136. },
  44137. back: {
  44138. height: math.unit(5.67, "feet"),
  44139. weight: math.unit(135, "lb"),
  44140. name: "Back",
  44141. image: {
  44142. source: "./media/characters/sarel/back.svg",
  44143. extra: 857/777,
  44144. bottom: 32/889
  44145. }
  44146. },
  44147. chozoan: {
  44148. height: math.unit(5.67, "feet"),
  44149. weight: math.unit(135, "lb"),
  44150. name: "Chozoan",
  44151. image: {
  44152. source: "./media/characters/sarel/chozoan.svg",
  44153. extra: 865/788,
  44154. bottom: 97/962
  44155. }
  44156. },
  44157. current: {
  44158. height: math.unit(5.67, "feet"),
  44159. weight: math.unit(135, "lb"),
  44160. name: "Current",
  44161. image: {
  44162. source: "./media/characters/sarel/current.svg",
  44163. extra: 865/788,
  44164. bottom: 97/962
  44165. }
  44166. },
  44167. head: {
  44168. height: math.unit(1.77, "feet"),
  44169. name: "Head",
  44170. image: {
  44171. source: "./media/characters/sarel/head.svg"
  44172. }
  44173. },
  44174. claws: {
  44175. height: math.unit(1.8, "feet"),
  44176. name: "Claws",
  44177. image: {
  44178. source: "./media/characters/sarel/claws.svg"
  44179. }
  44180. },
  44181. clawsAlt: {
  44182. height: math.unit(1.8, "feet"),
  44183. name: "Claws-alt",
  44184. image: {
  44185. source: "./media/characters/sarel/claws-alt.svg"
  44186. }
  44187. },
  44188. },
  44189. [
  44190. {
  44191. name: "Normal",
  44192. height: math.unit(5.67, "feet"),
  44193. default: true
  44194. },
  44195. ]
  44196. ))
  44197. characterMakers.push(() => makeCharacter(
  44198. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44199. {
  44200. front: {
  44201. height: math.unit(5500, "feet"),
  44202. name: "Front",
  44203. image: {
  44204. source: "./media/characters/alyonia/front.svg",
  44205. extra: 1200/1135,
  44206. bottom: 29/1229
  44207. }
  44208. },
  44209. back: {
  44210. height: math.unit(5500, "feet"),
  44211. name: "Back",
  44212. image: {
  44213. source: "./media/characters/alyonia/back.svg",
  44214. extra: 1205/1138,
  44215. bottom: 10/1215
  44216. }
  44217. },
  44218. },
  44219. [
  44220. {
  44221. name: "Small",
  44222. height: math.unit(10, "feet")
  44223. },
  44224. {
  44225. name: "Macro",
  44226. height: math.unit(500, "feet")
  44227. },
  44228. {
  44229. name: "Mega Macro",
  44230. height: math.unit(5500, "feet"),
  44231. default: true
  44232. },
  44233. {
  44234. name: "Mega Macro+",
  44235. height: math.unit(500000, "feet")
  44236. },
  44237. {
  44238. name: "Giga Macro",
  44239. height: math.unit(3000, "miles")
  44240. },
  44241. {
  44242. name: "Tera Macro",
  44243. height: math.unit(2.8e6, "miles")
  44244. },
  44245. {
  44246. name: "Galactic",
  44247. height: math.unit(120000, "lightyears")
  44248. },
  44249. ]
  44250. ))
  44251. characterMakers.push(() => makeCharacter(
  44252. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44253. {
  44254. werewolf: {
  44255. height: math.unit(8, "feet"),
  44256. weight: math.unit(425, "lb"),
  44257. name: "Werewolf",
  44258. image: {
  44259. source: "./media/characters/autumn/werewolf.svg",
  44260. extra: 2154/2031,
  44261. bottom: 160/2314
  44262. }
  44263. },
  44264. human: {
  44265. height: math.unit(5 + 8/12, "feet"),
  44266. weight: math.unit(150, "lb"),
  44267. name: "Human",
  44268. image: {
  44269. source: "./media/characters/autumn/human.svg",
  44270. extra: 1200/1149,
  44271. bottom: 30/1230
  44272. }
  44273. },
  44274. },
  44275. [
  44276. {
  44277. name: "Normal",
  44278. height: math.unit(8, "feet"),
  44279. default: true
  44280. },
  44281. ]
  44282. ))
  44283. characterMakers.push(() => makeCharacter(
  44284. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44285. {
  44286. front: {
  44287. height: math.unit(8 + 5/12, "feet"),
  44288. weight: math.unit(825, "lb"),
  44289. name: "Front",
  44290. image: {
  44291. source: "./media/characters/cobalt-charizard/front.svg",
  44292. extra: 1268/1155,
  44293. bottom: 122/1390
  44294. }
  44295. },
  44296. side: {
  44297. height: math.unit(8 + 5/12, "feet"),
  44298. weight: math.unit(825, "lb"),
  44299. name: "Side",
  44300. image: {
  44301. source: "./media/characters/cobalt-charizard/side.svg",
  44302. extra: 1348/1257,
  44303. bottom: 58/1406
  44304. }
  44305. },
  44306. gMax: {
  44307. height: math.unit(134 + 11/12, "feet"),
  44308. name: "G-Max",
  44309. image: {
  44310. source: "./media/characters/cobalt-charizard/g-max.svg",
  44311. extra: 1835/1541,
  44312. bottom: 151/1986
  44313. }
  44314. },
  44315. },
  44316. [
  44317. {
  44318. name: "Normal",
  44319. height: math.unit(8 + 5/12, "feet"),
  44320. default: true
  44321. },
  44322. ]
  44323. ))
  44324. characterMakers.push(() => makeCharacter(
  44325. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44326. {
  44327. front: {
  44328. height: math.unit(6 + 3/12, "feet"),
  44329. weight: math.unit(210, "lb"),
  44330. name: "Front",
  44331. image: {
  44332. source: "./media/characters/stella/front.svg",
  44333. extra: 3549/3335,
  44334. bottom: 51/3600
  44335. }
  44336. },
  44337. },
  44338. [
  44339. {
  44340. name: "Normal",
  44341. height: math.unit(6 + 3/12, "feet"),
  44342. default: true
  44343. },
  44344. ]
  44345. ))
  44346. characterMakers.push(() => makeCharacter(
  44347. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44348. {
  44349. front: {
  44350. height: math.unit(5, "feet"),
  44351. weight: math.unit(90, "lb"),
  44352. name: "Front",
  44353. image: {
  44354. source: "./media/characters/riley-bishop/front.svg",
  44355. extra: 1450/1428,
  44356. bottom: 152/1602
  44357. }
  44358. },
  44359. },
  44360. [
  44361. {
  44362. name: "Normal",
  44363. height: math.unit(5, "feet"),
  44364. default: true
  44365. },
  44366. ]
  44367. ))
  44368. characterMakers.push(() => makeCharacter(
  44369. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44370. {
  44371. side: {
  44372. height: math.unit(8 + 2/12, "feet"),
  44373. weight: math.unit(500, "kg"),
  44374. name: "Side",
  44375. image: {
  44376. source: "./media/characters/theo-arcanine/side.svg",
  44377. extra: 1342/1074,
  44378. bottom: 111/1453
  44379. }
  44380. },
  44381. },
  44382. [
  44383. {
  44384. name: "Normal",
  44385. height: math.unit(8 + 2/12, "feet"),
  44386. default: true
  44387. },
  44388. ]
  44389. ))
  44390. characterMakers.push(() => makeCharacter(
  44391. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44392. {
  44393. front: {
  44394. height: math.unit(4, "feet"),
  44395. name: "Front",
  44396. image: {
  44397. source: "./media/characters/kali/front.svg",
  44398. extra: 1921/1357,
  44399. bottom: 70/1991
  44400. }
  44401. },
  44402. },
  44403. [
  44404. {
  44405. name: "Normal",
  44406. height: math.unit(4, "feet"),
  44407. default: true
  44408. },
  44409. {
  44410. name: "Macro",
  44411. height: math.unit(32, "meters")
  44412. },
  44413. {
  44414. name: "Macro+",
  44415. height: math.unit(150, "meters")
  44416. },
  44417. {
  44418. name: "Megamacro",
  44419. height: math.unit(7500, "meters")
  44420. },
  44421. {
  44422. name: "Megamacro+",
  44423. height: math.unit(80, "kilometers")
  44424. },
  44425. ]
  44426. ))
  44427. characterMakers.push(() => makeCharacter(
  44428. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44429. {
  44430. side: {
  44431. height: math.unit(5 + 11/12, "feet"),
  44432. weight: math.unit(236, "lb"),
  44433. name: "Side",
  44434. image: {
  44435. source: "./media/characters/gapp/side.svg",
  44436. extra: 775/340,
  44437. bottom: 58/833
  44438. }
  44439. },
  44440. mouth: {
  44441. height: math.unit(2.98, "feet"),
  44442. name: "Mouth",
  44443. image: {
  44444. source: "./media/characters/gapp/mouth.svg"
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Normal",
  44451. height: math.unit(5 + 1/12, "feet"),
  44452. default: true
  44453. },
  44454. ]
  44455. ))
  44456. characterMakers.push(() => makeCharacter(
  44457. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44458. {
  44459. front: {
  44460. height: math.unit(6, "feet"),
  44461. name: "Front",
  44462. image: {
  44463. source: "./media/characters/persephone/front.svg",
  44464. extra: 1895/1717,
  44465. bottom: 96/1991
  44466. }
  44467. },
  44468. back: {
  44469. height: math.unit(6, "feet"),
  44470. name: "Back",
  44471. image: {
  44472. source: "./media/characters/persephone/back.svg",
  44473. extra: 1868/1679,
  44474. bottom: 26/1894
  44475. }
  44476. },
  44477. casual: {
  44478. height: math.unit(6, "feet"),
  44479. name: "Casual",
  44480. image: {
  44481. source: "./media/characters/persephone/casual.svg",
  44482. extra: 1713/1541,
  44483. bottom: 76/1789
  44484. }
  44485. },
  44486. },
  44487. [
  44488. {
  44489. name: "Human Size",
  44490. height: math.unit(6, "feet")
  44491. },
  44492. {
  44493. name: "Big Steppy",
  44494. height: math.unit(600, "meters"),
  44495. default: true
  44496. },
  44497. {
  44498. name: "Galaxy Brain",
  44499. height: math.unit(1, "zettameter")
  44500. },
  44501. ]
  44502. ))
  44503. characterMakers.push(() => makeCharacter(
  44504. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44505. {
  44506. front: {
  44507. height: math.unit(1.85, "meters"),
  44508. name: "Front",
  44509. image: {
  44510. source: "./media/characters/riley-foxthing/front.svg",
  44511. extra: 1495/1354,
  44512. bottom: 122/1617
  44513. }
  44514. },
  44515. frontAlt: {
  44516. height: math.unit(1.85, "meters"),
  44517. name: "Front (Alt)",
  44518. image: {
  44519. source: "./media/characters/riley-foxthing/front-alt.svg",
  44520. extra: 1572/1389,
  44521. bottom: 116/1688
  44522. }
  44523. },
  44524. },
  44525. [
  44526. {
  44527. name: "Normal Sized",
  44528. height: math.unit(1.85, "meters"),
  44529. default: true
  44530. },
  44531. {
  44532. name: "Quite Sizable",
  44533. height: math.unit(5, "meters")
  44534. },
  44535. {
  44536. name: "Rather Large",
  44537. height: math.unit(20, "meters")
  44538. },
  44539. {
  44540. name: "Macro",
  44541. height: math.unit(450, "meters")
  44542. },
  44543. {
  44544. name: "Giga",
  44545. height: math.unit(5, "km")
  44546. },
  44547. ]
  44548. ))
  44549. characterMakers.push(() => makeCharacter(
  44550. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44551. {
  44552. front: {
  44553. height: math.unit(6, "feet"),
  44554. weight: math.unit(200, "lb"),
  44555. name: "Front",
  44556. image: {
  44557. source: "./media/characters/blizzard/front.svg",
  44558. extra: 1136/990,
  44559. bottom: 136/1272
  44560. }
  44561. },
  44562. back: {
  44563. height: math.unit(6, "feet"),
  44564. weight: math.unit(200, "lb"),
  44565. name: "Back",
  44566. image: {
  44567. source: "./media/characters/blizzard/back.svg",
  44568. extra: 1175/1034,
  44569. bottom: 97/1272
  44570. }
  44571. },
  44572. sitting: {
  44573. height: math.unit(3.725, "feet"),
  44574. weight: math.unit(200, "lb"),
  44575. name: "Sitting",
  44576. image: {
  44577. source: "./media/characters/blizzard/sitting.svg",
  44578. extra: 581/485,
  44579. bottom: 90/671
  44580. }
  44581. },
  44582. frontWizard: {
  44583. height: math.unit(7.9, "feet"),
  44584. weight: math.unit(200, "lb"),
  44585. name: "Front (Wizard)",
  44586. image: {
  44587. source: "./media/characters/blizzard/front-wizard.svg"
  44588. }
  44589. },
  44590. backWizard: {
  44591. height: math.unit(7.9, "feet"),
  44592. weight: math.unit(200, "lb"),
  44593. name: "Back (Wizard)",
  44594. image: {
  44595. source: "./media/characters/blizzard/back-wizard.svg"
  44596. }
  44597. },
  44598. frontNsfw: {
  44599. height: math.unit(6, "feet"),
  44600. weight: math.unit(200, "lb"),
  44601. name: "Front (NSFW)",
  44602. image: {
  44603. source: "./media/characters/blizzard/front-nsfw.svg",
  44604. extra: 1136/990,
  44605. bottom: 136/1272
  44606. }
  44607. },
  44608. backNsfw: {
  44609. height: math.unit(6, "feet"),
  44610. weight: math.unit(200, "lb"),
  44611. name: "Back (NSFW)",
  44612. image: {
  44613. source: "./media/characters/blizzard/back-nsfw.svg",
  44614. extra: 1175/1034,
  44615. bottom: 97/1272
  44616. }
  44617. },
  44618. sittingNsfw: {
  44619. height: math.unit(3.725, "feet"),
  44620. weight: math.unit(200, "lb"),
  44621. name: "Sitting (NSFW)",
  44622. image: {
  44623. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44624. extra: 581/485,
  44625. bottom: 90/671
  44626. }
  44627. },
  44628. wizardFrontNsfw: {
  44629. height: math.unit(7.9, "feet"),
  44630. weight: math.unit(200, "lb"),
  44631. name: "Wizard (Front, NSFW)",
  44632. image: {
  44633. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44634. }
  44635. },
  44636. },
  44637. [
  44638. {
  44639. name: "Normal",
  44640. height: math.unit(6, "feet"),
  44641. default: true
  44642. },
  44643. ]
  44644. ))
  44645. characterMakers.push(() => makeCharacter(
  44646. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44647. {
  44648. front: {
  44649. height: math.unit(5 + 2/12, "feet"),
  44650. name: "Front",
  44651. image: {
  44652. source: "./media/characters/lumi/front.svg",
  44653. extra: 1328/1268,
  44654. bottom: 103/1431
  44655. }
  44656. },
  44657. back: {
  44658. height: math.unit(5 + 2/12, "feet"),
  44659. name: "Back",
  44660. image: {
  44661. source: "./media/characters/lumi/back.svg",
  44662. extra: 1381/1327,
  44663. bottom: 43/1424
  44664. }
  44665. },
  44666. },
  44667. [
  44668. {
  44669. name: "Normal",
  44670. height: math.unit(5 + 2/12, "feet"),
  44671. default: true
  44672. },
  44673. ]
  44674. ))
  44675. characterMakers.push(() => makeCharacter(
  44676. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44677. {
  44678. front: {
  44679. height: math.unit(5 + 9/12, "feet"),
  44680. name: "Front",
  44681. image: {
  44682. source: "./media/characters/aliya-cotton/front.svg",
  44683. extra: 577/564,
  44684. bottom: 29/606
  44685. }
  44686. },
  44687. },
  44688. [
  44689. {
  44690. name: "Normal",
  44691. height: math.unit(5 + 9/12, "feet"),
  44692. default: true
  44693. },
  44694. ]
  44695. ))
  44696. characterMakers.push(() => makeCharacter(
  44697. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44698. {
  44699. front: {
  44700. height: math.unit(2.7, "meters"),
  44701. weight: math.unit(25000, "lb"),
  44702. name: "Front",
  44703. image: {
  44704. source: "./media/characters/noah-luxray/front.svg",
  44705. extra: 1644/825,
  44706. bottom: 339/1983
  44707. }
  44708. },
  44709. side: {
  44710. height: math.unit(2.97, "meters"),
  44711. weight: math.unit(25000, "lb"),
  44712. name: "Side",
  44713. image: {
  44714. source: "./media/characters/noah-luxray/side.svg",
  44715. extra: 1319/650,
  44716. bottom: 163/1482
  44717. }
  44718. },
  44719. dick: {
  44720. height: math.unit(7.4, "feet"),
  44721. weight: math.unit(2500, "lb"),
  44722. name: "Dick",
  44723. image: {
  44724. source: "./media/characters/noah-luxray/dick.svg"
  44725. }
  44726. },
  44727. dickAlt: {
  44728. height: math.unit(10.83, "feet"),
  44729. weight: math.unit(2500, "lb"),
  44730. name: "Dick-alt",
  44731. image: {
  44732. source: "./media/characters/noah-luxray/dick-alt.svg"
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "BIG",
  44739. height: math.unit(2.7, "meters"),
  44740. default: true
  44741. },
  44742. ]
  44743. ))
  44744. characterMakers.push(() => makeCharacter(
  44745. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44746. {
  44747. standing: {
  44748. height: math.unit(183, "cm"),
  44749. weight: math.unit(68, "kg"),
  44750. name: "Standing",
  44751. image: {
  44752. source: "./media/characters/arion/standing.svg",
  44753. extra: 1869/1807,
  44754. bottom: 93/1962
  44755. }
  44756. },
  44757. reclining: {
  44758. height: math.unit(70.5, "cm"),
  44759. weight: math.unit(68, "lb"),
  44760. name: "Reclining",
  44761. image: {
  44762. source: "./media/characters/arion/reclining.svg",
  44763. extra: 937/870,
  44764. bottom: 63/1000
  44765. }
  44766. },
  44767. },
  44768. [
  44769. {
  44770. name: "Colossus Size, Low",
  44771. height: math.unit(33, "meters"),
  44772. default: true
  44773. },
  44774. {
  44775. name: "Colossus Size, Mid",
  44776. height: math.unit(52, "meters")
  44777. },
  44778. {
  44779. name: "Colossus Size, High",
  44780. height: math.unit(60, "meters")
  44781. },
  44782. {
  44783. name: "Titan Size, Low",
  44784. height: math.unit(91, "meters"),
  44785. },
  44786. {
  44787. name: "Titan Size, Mid",
  44788. height: math.unit(122, "meters")
  44789. },
  44790. {
  44791. name: "Titan Size, High",
  44792. height: math.unit(162, "meters")
  44793. },
  44794. ]
  44795. ))
  44796. characterMakers.push(() => makeCharacter(
  44797. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44798. {
  44799. front: {
  44800. height: math.unit(53, "meters"),
  44801. name: "Front",
  44802. image: {
  44803. source: "./media/characters/stellar-marbey/front.svg",
  44804. extra: 1913/1805,
  44805. bottom: 92/2005
  44806. }
  44807. },
  44808. back: {
  44809. height: math.unit(53, "meters"),
  44810. name: "Back",
  44811. image: {
  44812. source: "./media/characters/stellar-marbey/back.svg",
  44813. extra: 1960/1851,
  44814. bottom: 28/1988
  44815. }
  44816. },
  44817. mouth: {
  44818. height: math.unit(3.5, "meters"),
  44819. name: "Mouth",
  44820. image: {
  44821. source: "./media/characters/stellar-marbey/mouth.svg"
  44822. }
  44823. },
  44824. },
  44825. [
  44826. {
  44827. name: "Macro",
  44828. height: math.unit(53, "meters"),
  44829. default: true
  44830. },
  44831. ]
  44832. ))
  44833. characterMakers.push(() => makeCharacter(
  44834. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44835. {
  44836. front: {
  44837. height: math.unit(8 + 1/12, "feet"),
  44838. weight: math.unit(233, "lb"),
  44839. name: "Front",
  44840. image: {
  44841. source: "./media/characters/matsu/front.svg",
  44842. extra: 832/772,
  44843. bottom: 40/872
  44844. }
  44845. },
  44846. back: {
  44847. height: math.unit(8 + 1/12, "feet"),
  44848. weight: math.unit(233, "lb"),
  44849. name: "Back",
  44850. image: {
  44851. source: "./media/characters/matsu/back.svg",
  44852. extra: 839/780,
  44853. bottom: 47/886
  44854. }
  44855. },
  44856. },
  44857. [
  44858. {
  44859. name: "Normal",
  44860. height: math.unit(8 + 1/12, "feet"),
  44861. default: true
  44862. },
  44863. ]
  44864. ))
  44865. characterMakers.push(() => makeCharacter(
  44866. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44867. {
  44868. front: {
  44869. height: math.unit(4, "feet"),
  44870. weight: math.unit(148, "lb"),
  44871. name: "Front",
  44872. image: {
  44873. source: "./media/characters/thiz/front.svg",
  44874. extra: 1913/1748,
  44875. bottom: 62/1975
  44876. }
  44877. },
  44878. },
  44879. [
  44880. {
  44881. name: "Normal",
  44882. height: math.unit(4, "feet"),
  44883. default: true
  44884. },
  44885. ]
  44886. ))
  44887. characterMakers.push(() => makeCharacter(
  44888. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44889. {
  44890. front: {
  44891. height: math.unit(7 + 6/12, "feet"),
  44892. weight: math.unit(267, "lb"),
  44893. name: "Front",
  44894. image: {
  44895. source: "./media/characters/marcel/front.svg",
  44896. extra: 1221/1096,
  44897. bottom: 76/1297
  44898. }
  44899. },
  44900. },
  44901. [
  44902. {
  44903. name: "Normal",
  44904. height: math.unit(7 + 6/12, "feet"),
  44905. default: true
  44906. },
  44907. ]
  44908. ))
  44909. characterMakers.push(() => makeCharacter(
  44910. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44911. {
  44912. side: {
  44913. height: math.unit(42, "meters"),
  44914. name: "Side",
  44915. image: {
  44916. source: "./media/characters/flake/side.svg",
  44917. extra: 1525/1306,
  44918. bottom: 209/1734
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Normal",
  44925. height: math.unit(42, "meters"),
  44926. default: true
  44927. },
  44928. ]
  44929. ))
  44930. characterMakers.push(() => makeCharacter(
  44931. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44932. {
  44933. dressed: {
  44934. height: math.unit(6 + 4/12, "feet"),
  44935. weight: math.unit(520, "lb"),
  44936. name: "Dressed",
  44937. image: {
  44938. source: "./media/characters/someonne/dressed.svg",
  44939. extra: 1020/1010,
  44940. bottom: 178/1198
  44941. }
  44942. },
  44943. undressed: {
  44944. height: math.unit(6 + 4/12, "feet"),
  44945. weight: math.unit(520, "lb"),
  44946. name: "Undressed",
  44947. image: {
  44948. source: "./media/characters/someonne/undressed.svg",
  44949. extra: 1019/1014,
  44950. bottom: 169/1188
  44951. }
  44952. },
  44953. },
  44954. [
  44955. {
  44956. name: "Normal",
  44957. height: math.unit(6 + 4/12, "feet"),
  44958. default: true
  44959. },
  44960. ]
  44961. ))
  44962. characterMakers.push(() => makeCharacter(
  44963. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44964. {
  44965. front: {
  44966. height: math.unit(3, "feet"),
  44967. weight: math.unit(30, "lb"),
  44968. name: "Front",
  44969. image: {
  44970. source: "./media/characters/till/front.svg",
  44971. extra: 892/823,
  44972. bottom: 55/947
  44973. }
  44974. },
  44975. },
  44976. [
  44977. {
  44978. name: "Normal",
  44979. height: math.unit(3, "feet"),
  44980. default: true
  44981. },
  44982. ]
  44983. ))
  44984. characterMakers.push(() => makeCharacter(
  44985. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44986. {
  44987. front: {
  44988. height: math.unit(9 + 8/12, "feet"),
  44989. weight: math.unit(800, "lb"),
  44990. name: "Front",
  44991. image: {
  44992. source: "./media/characters/sydney-heki/front.svg",
  44993. extra: 1360/1300,
  44994. bottom: 22/1382
  44995. }
  44996. },
  44997. back: {
  44998. height: math.unit(9 + 8/12, "feet"),
  44999. weight: math.unit(800, "lb"),
  45000. name: "Back",
  45001. image: {
  45002. source: "./media/characters/sydney-heki/back.svg",
  45003. extra: 1356/1293,
  45004. bottom: 12/1368
  45005. }
  45006. },
  45007. frontDressed: {
  45008. height: math.unit(9 + 8/12, "feet"),
  45009. weight: math.unit(800, "lb"),
  45010. name: "Front-dressed",
  45011. image: {
  45012. source: "./media/characters/sydney-heki/front-dressed.svg",
  45013. extra: 1360/1300,
  45014. bottom: 22/1382
  45015. }
  45016. },
  45017. },
  45018. [
  45019. {
  45020. name: "Normal",
  45021. height: math.unit(9 + 8/12, "feet"),
  45022. default: true
  45023. },
  45024. {
  45025. name: "Macro",
  45026. height: math.unit(500, "feet")
  45027. },
  45028. {
  45029. name: "Megamacro",
  45030. height: math.unit(3.6, "miles")
  45031. },
  45032. ]
  45033. ))
  45034. characterMakers.push(() => makeCharacter(
  45035. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45036. {
  45037. front: {
  45038. height: math.unit(200, "cm"),
  45039. weight: math.unit(250, "lb"),
  45040. name: "Front",
  45041. image: {
  45042. source: "./media/characters/fowler-karlsson/front.svg",
  45043. extra: 897/845,
  45044. bottom: 123/1020
  45045. }
  45046. },
  45047. back: {
  45048. height: math.unit(200, "cm"),
  45049. weight: math.unit(250, "lb"),
  45050. name: "Back",
  45051. image: {
  45052. source: "./media/characters/fowler-karlsson/back.svg",
  45053. extra: 999/944,
  45054. bottom: 26/1025
  45055. }
  45056. },
  45057. dick: {
  45058. height: math.unit(1.92, "feet"),
  45059. weight: math.unit(150, "lb"),
  45060. name: "Dick",
  45061. image: {
  45062. source: "./media/characters/fowler-karlsson/dick.svg"
  45063. }
  45064. },
  45065. },
  45066. [
  45067. {
  45068. name: "Normal",
  45069. height: math.unit(200, "cm"),
  45070. default: true
  45071. },
  45072. {
  45073. name: "Smaller Macro",
  45074. height: math.unit(90, "m")
  45075. },
  45076. {
  45077. name: "Macro",
  45078. height: math.unit(150, "m")
  45079. },
  45080. {
  45081. name: "Bigger Macro",
  45082. height: math.unit(300, "m")
  45083. },
  45084. ]
  45085. ))
  45086. characterMakers.push(() => makeCharacter(
  45087. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45088. {
  45089. side: {
  45090. height: math.unit(8 + 2/12, "feet"),
  45091. weight: math.unit(1, "tonne"),
  45092. name: "Side",
  45093. image: {
  45094. source: "./media/characters/rylide/side.svg",
  45095. extra: 1318/1034,
  45096. bottom: 106/1424
  45097. }
  45098. },
  45099. sitting: {
  45100. height: math.unit(303, "cm"),
  45101. weight: math.unit(1, "tonne"),
  45102. name: "Sitting",
  45103. image: {
  45104. source: "./media/characters/rylide/sitting.svg",
  45105. extra: 1303/1103,
  45106. bottom: 36/1339
  45107. }
  45108. },
  45109. },
  45110. [
  45111. {
  45112. name: "Normal",
  45113. height: math.unit(8 + 2/12, "feet"),
  45114. default: true
  45115. },
  45116. ]
  45117. ))
  45118. characterMakers.push(() => makeCharacter(
  45119. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45120. {
  45121. front: {
  45122. height: math.unit(5 + 10/12, "feet"),
  45123. weight: math.unit(160, "lb"),
  45124. name: "Front",
  45125. image: {
  45126. source: "./media/characters/pudask/front.svg",
  45127. extra: 1616/1590,
  45128. bottom: 161/1777
  45129. }
  45130. },
  45131. },
  45132. [
  45133. {
  45134. name: "Ferret Height",
  45135. height: math.unit(2 + 5/12, "feet")
  45136. },
  45137. {
  45138. name: "Canon Height",
  45139. height: math.unit(5 + 10/12, "feet"),
  45140. default: true
  45141. },
  45142. ]
  45143. ))
  45144. characterMakers.push(() => makeCharacter(
  45145. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45146. {
  45147. front: {
  45148. height: math.unit(3 + 6/12, "feet"),
  45149. weight: math.unit(60, "lb"),
  45150. name: "Front",
  45151. image: {
  45152. source: "./media/characters/ramita/front.svg",
  45153. extra: 1402/1232,
  45154. bottom: 62/1464
  45155. }
  45156. },
  45157. dressed: {
  45158. height: math.unit(3 + 6/12, "feet"),
  45159. weight: math.unit(60, "lb"),
  45160. name: "Dressed",
  45161. image: {
  45162. source: "./media/characters/ramita/dressed.svg",
  45163. extra: 1534/1249,
  45164. bottom: 50/1584
  45165. }
  45166. },
  45167. },
  45168. [
  45169. {
  45170. name: "Normal",
  45171. height: math.unit(3 + 6/12, "feet"),
  45172. default: true
  45173. },
  45174. ]
  45175. ))
  45176. characterMakers.push(() => makeCharacter(
  45177. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45178. {
  45179. front: {
  45180. height: math.unit(8, "feet"),
  45181. name: "Front",
  45182. image: {
  45183. source: "./media/characters/ark/front.svg",
  45184. extra: 772/693,
  45185. bottom: 45/817
  45186. }
  45187. },
  45188. },
  45189. [
  45190. {
  45191. name: "Normal",
  45192. height: math.unit(8, "feet"),
  45193. default: true
  45194. },
  45195. ]
  45196. ))
  45197. characterMakers.push(() => makeCharacter(
  45198. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45199. {
  45200. front: {
  45201. height: math.unit(6, "feet"),
  45202. weight: math.unit(250, "lb"),
  45203. volume: math.unit(5/8, "gallons"),
  45204. name: "Front",
  45205. image: {
  45206. source: "./media/characters/ludwig-horn/front.svg",
  45207. extra: 1782/1635,
  45208. bottom: 96/1878
  45209. }
  45210. },
  45211. back: {
  45212. height: math.unit(6, "feet"),
  45213. weight: math.unit(250, "lb"),
  45214. volume: math.unit(5/8, "gallons"),
  45215. name: "Back",
  45216. image: {
  45217. source: "./media/characters/ludwig-horn/back.svg",
  45218. extra: 1874/1729,
  45219. bottom: 27/1901
  45220. }
  45221. },
  45222. dick: {
  45223. height: math.unit(1.05, "feet"),
  45224. weight: math.unit(15, "lb"),
  45225. volume: math.unit(5/8, "gallons"),
  45226. name: "Dick",
  45227. image: {
  45228. source: "./media/characters/ludwig-horn/dick.svg"
  45229. }
  45230. },
  45231. },
  45232. [
  45233. {
  45234. name: "Small",
  45235. height: math.unit(6, "feet")
  45236. },
  45237. {
  45238. name: "Typical",
  45239. height: math.unit(12, "feet"),
  45240. default: true
  45241. },
  45242. {
  45243. name: "Building",
  45244. height: math.unit(80, "feet")
  45245. },
  45246. {
  45247. name: "Town",
  45248. height: math.unit(800, "feet")
  45249. },
  45250. {
  45251. name: "Kingdom",
  45252. height: math.unit(80000, "feet")
  45253. },
  45254. {
  45255. name: "Planet",
  45256. height: math.unit(8000000, "feet")
  45257. },
  45258. {
  45259. name: "Universe",
  45260. height: math.unit(8000000000, "feet")
  45261. },
  45262. {
  45263. name: "Transcended",
  45264. height: math.unit(8e27, "feet")
  45265. },
  45266. ]
  45267. ))
  45268. characterMakers.push(() => makeCharacter(
  45269. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45270. {
  45271. front: {
  45272. height: math.unit(5, "feet"),
  45273. weight: math.unit(50, "kg"),
  45274. name: "Front",
  45275. image: {
  45276. source: "./media/characters/biot-avery/front.svg",
  45277. extra: 1295/1232,
  45278. bottom: 86/1381
  45279. }
  45280. },
  45281. },
  45282. [
  45283. {
  45284. name: "Normal",
  45285. height: math.unit(5, "feet"),
  45286. default: true
  45287. },
  45288. ]
  45289. ))
  45290. characterMakers.push(() => makeCharacter(
  45291. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45292. {
  45293. front: {
  45294. height: math.unit(6, "feet"),
  45295. name: "Front",
  45296. image: {
  45297. source: "./media/characters/kitsune-kiro/front.svg",
  45298. extra: 1270/1158,
  45299. bottom: 42/1312
  45300. }
  45301. },
  45302. frontAlt: {
  45303. height: math.unit(6, "feet"),
  45304. name: "Front-alt",
  45305. image: {
  45306. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45307. extra: 1130/1081,
  45308. bottom: 36/1166
  45309. }
  45310. },
  45311. },
  45312. [
  45313. {
  45314. name: "Smol",
  45315. height: math.unit(3, "feet")
  45316. },
  45317. {
  45318. name: "Normal",
  45319. height: math.unit(6, "feet"),
  45320. default: true
  45321. },
  45322. ]
  45323. ))
  45324. characterMakers.push(() => makeCharacter(
  45325. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45326. {
  45327. front: {
  45328. height: math.unit(6, "feet"),
  45329. weight: math.unit(125, "lb"),
  45330. name: "Front",
  45331. image: {
  45332. source: "./media/characters/jack-thatcher/front.svg",
  45333. extra: 1474/1370,
  45334. bottom: 26/1500
  45335. }
  45336. },
  45337. back: {
  45338. height: math.unit(6, "feet"),
  45339. weight: math.unit(125, "lb"),
  45340. name: "Back",
  45341. image: {
  45342. source: "./media/characters/jack-thatcher/back.svg",
  45343. extra: 1489/1384,
  45344. bottom: 18/1507
  45345. }
  45346. },
  45347. },
  45348. [
  45349. {
  45350. name: "Normal",
  45351. height: math.unit(6, "feet"),
  45352. default: true
  45353. },
  45354. {
  45355. name: "Macro",
  45356. height: math.unit(75, "feet")
  45357. },
  45358. {
  45359. name: "Macro-er",
  45360. height: math.unit(250, "feet")
  45361. },
  45362. ]
  45363. ))
  45364. characterMakers.push(() => makeCharacter(
  45365. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45366. {
  45367. front: {
  45368. height: math.unit(7, "feet"),
  45369. weight: math.unit(110, "kg"),
  45370. name: "Front",
  45371. image: {
  45372. source: "./media/characters/max-hyper/front.svg",
  45373. extra: 1969/1881,
  45374. bottom: 49/2018
  45375. }
  45376. },
  45377. },
  45378. [
  45379. {
  45380. name: "Normal",
  45381. height: math.unit(7, "feet"),
  45382. default: true
  45383. },
  45384. ]
  45385. ))
  45386. characterMakers.push(() => makeCharacter(
  45387. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45388. {
  45389. front: {
  45390. height: math.unit(5 + 5/12, "feet"),
  45391. weight: math.unit(160, "lb"),
  45392. name: "Front",
  45393. image: {
  45394. source: "./media/characters/spook/front.svg",
  45395. extra: 794/791,
  45396. bottom: 54/848
  45397. }
  45398. },
  45399. back: {
  45400. height: math.unit(5 + 5/12, "feet"),
  45401. weight: math.unit(160, "lb"),
  45402. name: "Back",
  45403. image: {
  45404. source: "./media/characters/spook/back.svg",
  45405. extra: 812/798,
  45406. bottom: 32/844
  45407. }
  45408. },
  45409. },
  45410. [
  45411. {
  45412. name: "Normal",
  45413. height: math.unit(5 + 5/12, "feet"),
  45414. default: true
  45415. },
  45416. ]
  45417. ))
  45418. characterMakers.push(() => makeCharacter(
  45419. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45420. {
  45421. front: {
  45422. height: math.unit(18, "feet"),
  45423. name: "Front",
  45424. image: {
  45425. source: "./media/characters/xeaduulix/front.svg",
  45426. extra: 1380/1166,
  45427. bottom: 110/1490
  45428. }
  45429. },
  45430. back: {
  45431. height: math.unit(18, "feet"),
  45432. name: "Back",
  45433. image: {
  45434. source: "./media/characters/xeaduulix/back.svg",
  45435. extra: 1592/1170,
  45436. bottom: 128/1720
  45437. }
  45438. },
  45439. frontNsfw: {
  45440. height: math.unit(18, "feet"),
  45441. name: "Front (NSFW)",
  45442. image: {
  45443. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45444. extra: 1380/1166,
  45445. bottom: 110/1490
  45446. }
  45447. },
  45448. backNsfw: {
  45449. height: math.unit(18, "feet"),
  45450. name: "Back (NSFW)",
  45451. image: {
  45452. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45453. extra: 1592/1170,
  45454. bottom: 128/1720
  45455. }
  45456. },
  45457. },
  45458. [
  45459. {
  45460. name: "Normal",
  45461. height: math.unit(18, "feet"),
  45462. default: true
  45463. },
  45464. ]
  45465. ))
  45466. characterMakers.push(() => makeCharacter(
  45467. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45468. {
  45469. spreadWings: {
  45470. height: math.unit(20, "feet"),
  45471. name: "Spread Wings",
  45472. image: {
  45473. source: "./media/characters/fledge/spread-wings.svg",
  45474. extra: 693/635,
  45475. bottom: 26/719
  45476. }
  45477. },
  45478. front: {
  45479. height: math.unit(20, "feet"),
  45480. name: "Front",
  45481. image: {
  45482. source: "./media/characters/fledge/front.svg",
  45483. extra: 684/637,
  45484. bottom: 18/702
  45485. }
  45486. },
  45487. frontAlt: {
  45488. height: math.unit(20, "feet"),
  45489. name: "Front (Alt)",
  45490. image: {
  45491. source: "./media/characters/fledge/front-alt.svg",
  45492. extra: 708/664,
  45493. bottom: 13/721
  45494. }
  45495. },
  45496. back: {
  45497. height: math.unit(20, "feet"),
  45498. name: "Back",
  45499. image: {
  45500. source: "./media/characters/fledge/back.svg",
  45501. extra: 718/634,
  45502. bottom: 22/740
  45503. }
  45504. },
  45505. head: {
  45506. height: math.unit(5.55, "feet"),
  45507. name: "Head",
  45508. image: {
  45509. source: "./media/characters/fledge/head.svg"
  45510. }
  45511. },
  45512. headAlt: {
  45513. height: math.unit(5.1, "feet"),
  45514. name: "Head (Alt)",
  45515. image: {
  45516. source: "./media/characters/fledge/head-alt.svg"
  45517. }
  45518. },
  45519. },
  45520. [
  45521. {
  45522. name: "Small",
  45523. height: math.unit(6 + 2/12, "feet")
  45524. },
  45525. {
  45526. name: "Big",
  45527. height: math.unit(20, "feet"),
  45528. default: true
  45529. },
  45530. {
  45531. name: "Giant",
  45532. height: math.unit(100, "feet")
  45533. },
  45534. {
  45535. name: "Macro",
  45536. height: math.unit(200, "feet")
  45537. },
  45538. ]
  45539. ))
  45540. characterMakers.push(() => makeCharacter(
  45541. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45542. {
  45543. front: {
  45544. height: math.unit(1, "meter"),
  45545. name: "Front",
  45546. image: {
  45547. source: "./media/characters/atlas-morenai/front.svg",
  45548. extra: 1275/1043,
  45549. bottom: 19/1294
  45550. }
  45551. },
  45552. back: {
  45553. height: math.unit(1, "meter"),
  45554. name: "Back",
  45555. image: {
  45556. source: "./media/characters/atlas-morenai/back.svg",
  45557. extra: 1141/1001,
  45558. bottom: 25/1166
  45559. }
  45560. },
  45561. },
  45562. [
  45563. {
  45564. name: "Normal",
  45565. height: math.unit(1, "meter"),
  45566. default: true
  45567. },
  45568. {
  45569. name: "Magic-Infused",
  45570. height: math.unit(5, "meters")
  45571. },
  45572. ]
  45573. ))
  45574. characterMakers.push(() => makeCharacter(
  45575. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45576. {
  45577. front: {
  45578. height: math.unit(5, "meters"),
  45579. name: "Front",
  45580. image: {
  45581. source: "./media/characters/cintia/front.svg",
  45582. extra: 1312/1228,
  45583. bottom: 38/1350
  45584. }
  45585. },
  45586. back: {
  45587. height: math.unit(5, "meters"),
  45588. name: "Back",
  45589. image: {
  45590. source: "./media/characters/cintia/back.svg",
  45591. extra: 1260/1166,
  45592. bottom: 98/1358
  45593. }
  45594. },
  45595. frontDick: {
  45596. height: math.unit(5, "meters"),
  45597. name: "Front (Dick)",
  45598. image: {
  45599. source: "./media/characters/cintia/front-dick.svg",
  45600. extra: 1312/1228,
  45601. bottom: 38/1350
  45602. }
  45603. },
  45604. backDick: {
  45605. height: math.unit(5, "meters"),
  45606. name: "Back (Dick)",
  45607. image: {
  45608. source: "./media/characters/cintia/back-dick.svg",
  45609. extra: 1260/1166,
  45610. bottom: 98/1358
  45611. }
  45612. },
  45613. bust: {
  45614. height: math.unit(1.97, "meters"),
  45615. name: "Bust",
  45616. image: {
  45617. source: "./media/characters/cintia/bust.svg",
  45618. extra: 617/565,
  45619. bottom: 0/617
  45620. }
  45621. },
  45622. },
  45623. [
  45624. {
  45625. name: "Normal",
  45626. height: math.unit(5, "meters"),
  45627. default: true
  45628. },
  45629. ]
  45630. ))
  45631. characterMakers.push(() => makeCharacter(
  45632. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45633. {
  45634. side: {
  45635. height: math.unit(100, "feet"),
  45636. name: "Side",
  45637. image: {
  45638. source: "./media/characters/denora/side.svg",
  45639. extra: 875/803,
  45640. bottom: 9/884
  45641. }
  45642. },
  45643. },
  45644. [
  45645. {
  45646. name: "Standard",
  45647. height: math.unit(100, "feet"),
  45648. default: true
  45649. },
  45650. {
  45651. name: "Grand",
  45652. height: math.unit(1000, "feet")
  45653. },
  45654. {
  45655. name: "Conquering",
  45656. height: math.unit(10000, "feet")
  45657. },
  45658. ]
  45659. ))
  45660. characterMakers.push(() => makeCharacter(
  45661. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45662. {
  45663. dressed: {
  45664. height: math.unit(8 + 5/12, "feet"),
  45665. weight: math.unit(700, "lb"),
  45666. name: "Dressed",
  45667. image: {
  45668. source: "./media/characters/kiva/dressed.svg",
  45669. extra: 1102/1055,
  45670. bottom: 60/1162
  45671. }
  45672. },
  45673. nude: {
  45674. height: math.unit(8 + 5/12, "feet"),
  45675. weight: math.unit(700, "lb"),
  45676. name: "Nude",
  45677. image: {
  45678. source: "./media/characters/kiva/nude.svg",
  45679. extra: 1102/1055,
  45680. bottom: 60/1162
  45681. }
  45682. },
  45683. },
  45684. [
  45685. {
  45686. name: "Base Height",
  45687. height: math.unit(8 + 5/12, "feet"),
  45688. default: true
  45689. },
  45690. {
  45691. name: "Macro",
  45692. height: math.unit(100, "feet")
  45693. },
  45694. {
  45695. name: "Max",
  45696. height: math.unit(3280, "feet")
  45697. },
  45698. ]
  45699. ))
  45700. characterMakers.push(() => makeCharacter(
  45701. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45702. {
  45703. front: {
  45704. height: math.unit(6 + 8/12, "feet"),
  45705. weight: math.unit(250, "lb"),
  45706. name: "Front",
  45707. image: {
  45708. source: "./media/characters/ztragon/front.svg",
  45709. extra: 1825/1684,
  45710. bottom: 98/1923
  45711. }
  45712. },
  45713. },
  45714. [
  45715. {
  45716. name: "Normal",
  45717. height: math.unit(6 + 8/12, "feet"),
  45718. default: true
  45719. },
  45720. {
  45721. name: "Macro",
  45722. height: math.unit(80, "feet")
  45723. },
  45724. ]
  45725. ))
  45726. characterMakers.push(() => makeCharacter(
  45727. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45728. {
  45729. front: {
  45730. height: math.unit(10.4, "feet"),
  45731. weight: math.unit(2, "tons"),
  45732. name: "Front",
  45733. image: {
  45734. source: "./media/characters/yesenia/front.svg",
  45735. extra: 1479/1474,
  45736. bottom: 233/1712
  45737. }
  45738. },
  45739. },
  45740. [
  45741. {
  45742. name: "Normal",
  45743. height: math.unit(10.4, "feet"),
  45744. default: true
  45745. },
  45746. ]
  45747. ))
  45748. characterMakers.push(() => makeCharacter(
  45749. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45750. {
  45751. normal: {
  45752. height: math.unit(6 + 1/12, "feet"),
  45753. weight: math.unit(180, "lb"),
  45754. name: "Normal",
  45755. image: {
  45756. source: "./media/characters/leanne-lycheborne/normal.svg",
  45757. extra: 1748/1660,
  45758. bottom: 98/1846
  45759. }
  45760. },
  45761. were: {
  45762. height: math.unit(12, "feet"),
  45763. weight: math.unit(1600, "lb"),
  45764. name: "Were",
  45765. image: {
  45766. source: "./media/characters/leanne-lycheborne/were.svg",
  45767. extra: 1485/1432,
  45768. bottom: 66/1551
  45769. }
  45770. },
  45771. },
  45772. [
  45773. {
  45774. name: "Normal",
  45775. height: math.unit(6 + 1/12, "feet"),
  45776. default: true
  45777. },
  45778. ]
  45779. ))
  45780. characterMakers.push(() => makeCharacter(
  45781. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45782. {
  45783. side: {
  45784. height: math.unit(13, "feet"),
  45785. name: "Side",
  45786. image: {
  45787. source: "./media/characters/kira-tyler/side.svg",
  45788. extra: 693/393,
  45789. bottom: 58/751
  45790. }
  45791. },
  45792. },
  45793. [
  45794. {
  45795. name: "Normal",
  45796. height: math.unit(13, "feet"),
  45797. default: true
  45798. },
  45799. ]
  45800. ))
  45801. characterMakers.push(() => makeCharacter(
  45802. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45803. {
  45804. front: {
  45805. height: math.unit(10.3, "feet"),
  45806. weight: math.unit(150, "lb"),
  45807. name: "Front",
  45808. image: {
  45809. source: "./media/characters/blaze/front.svg",
  45810. extra: 1378/1286,
  45811. bottom: 172/1550
  45812. }
  45813. },
  45814. },
  45815. [
  45816. {
  45817. name: "Normal",
  45818. height: math.unit(10.3, "feet"),
  45819. default: true
  45820. },
  45821. ]
  45822. ))
  45823. characterMakers.push(() => makeCharacter(
  45824. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45825. {
  45826. side: {
  45827. height: math.unit(2, "meters"),
  45828. weight: math.unit(400, "kg"),
  45829. name: "Side",
  45830. image: {
  45831. source: "./media/characters/anu/side.svg",
  45832. extra: 506/394,
  45833. bottom: 18/524
  45834. }
  45835. },
  45836. },
  45837. [
  45838. {
  45839. name: "Humanoid",
  45840. height: math.unit(2, "meters")
  45841. },
  45842. {
  45843. name: "Normal",
  45844. height: math.unit(5, "meters"),
  45845. default: true
  45846. },
  45847. ]
  45848. ))
  45849. characterMakers.push(() => makeCharacter(
  45850. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45851. {
  45852. front: {
  45853. height: math.unit(5 + 5/12, "feet"),
  45854. weight: math.unit(170, "lb"),
  45855. name: "Front",
  45856. image: {
  45857. source: "./media/characters/synx-the-lynx/front.svg",
  45858. extra: 1893/1745,
  45859. bottom: 17/1910
  45860. }
  45861. },
  45862. side: {
  45863. height: math.unit(5 + 5/12, "feet"),
  45864. weight: math.unit(170, "lb"),
  45865. name: "Side",
  45866. image: {
  45867. source: "./media/characters/synx-the-lynx/side.svg",
  45868. extra: 1884/1740,
  45869. bottom: 39/1923
  45870. }
  45871. },
  45872. back: {
  45873. height: math.unit(5 + 5/12, "feet"),
  45874. weight: math.unit(170, "lb"),
  45875. name: "Back",
  45876. image: {
  45877. source: "./media/characters/synx-the-lynx/back.svg",
  45878. extra: 1903/1755,
  45879. bottom: 14/1917
  45880. }
  45881. },
  45882. },
  45883. [
  45884. {
  45885. name: "Normal",
  45886. height: math.unit(5 + 5/12, "feet"),
  45887. default: true
  45888. },
  45889. ]
  45890. ))
  45891. characterMakers.push(() => makeCharacter(
  45892. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45893. {
  45894. back: {
  45895. height: math.unit(15, "feet"),
  45896. name: "Back",
  45897. image: {
  45898. source: "./media/characters/nadezda-fex/back.svg",
  45899. extra: 1695/1481,
  45900. bottom: 25/1720
  45901. }
  45902. },
  45903. },
  45904. [
  45905. {
  45906. name: "Normal",
  45907. height: math.unit(15, "feet"),
  45908. default: true
  45909. },
  45910. {
  45911. name: "Macro",
  45912. height: math.unit(2.5, "miles")
  45913. },
  45914. {
  45915. name: "Goddess",
  45916. height: math.unit(2, "multiverses")
  45917. },
  45918. ]
  45919. ))
  45920. characterMakers.push(() => makeCharacter(
  45921. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45922. {
  45923. front: {
  45924. height: math.unit(216, "cm"),
  45925. name: "Front",
  45926. image: {
  45927. source: "./media/characters/lev/front.svg",
  45928. extra: 1728/1670,
  45929. bottom: 82/1810
  45930. }
  45931. },
  45932. back: {
  45933. height: math.unit(216, "cm"),
  45934. name: "Back",
  45935. image: {
  45936. source: "./media/characters/lev/back.svg",
  45937. extra: 1738/1675,
  45938. bottom: 24/1762
  45939. }
  45940. },
  45941. dressed: {
  45942. height: math.unit(216, "cm"),
  45943. name: "Dressed",
  45944. image: {
  45945. source: "./media/characters/lev/dressed.svg",
  45946. extra: 1397/1351,
  45947. bottom: 73/1470
  45948. }
  45949. },
  45950. head: {
  45951. height: math.unit(0.51, "meter"),
  45952. name: "Head",
  45953. image: {
  45954. source: "./media/characters/lev/head.svg"
  45955. }
  45956. },
  45957. },
  45958. [
  45959. {
  45960. name: "Normal",
  45961. height: math.unit(216, "cm"),
  45962. default: true
  45963. },
  45964. {
  45965. name: "Relatively Macro",
  45966. height: math.unit(80, "meters")
  45967. },
  45968. {
  45969. name: "Megamacro",
  45970. height: math.unit(21600, "meters")
  45971. },
  45972. {
  45973. name: "Megamacro+",
  45974. height: math.unit(64800, "meters")
  45975. },
  45976. ]
  45977. ))
  45978. characterMakers.push(() => makeCharacter(
  45979. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45980. {
  45981. front: {
  45982. height: math.unit(2, "meters"),
  45983. weight: math.unit(80, "kg"),
  45984. name: "Front",
  45985. image: {
  45986. source: "./media/characters/moka/front.svg",
  45987. extra: 1337/1255,
  45988. bottom: 58/1395
  45989. }
  45990. },
  45991. },
  45992. [
  45993. {
  45994. name: "Micro",
  45995. height: math.unit(15, "cm")
  45996. },
  45997. {
  45998. name: "Normal",
  45999. height: math.unit(2, "meters"),
  46000. default: true
  46001. },
  46002. {
  46003. name: "Macro",
  46004. height: math.unit(20, "meters"),
  46005. },
  46006. ]
  46007. ))
  46008. characterMakers.push(() => makeCharacter(
  46009. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46010. {
  46011. front: {
  46012. height: math.unit(9, "feet"),
  46013. weight: math.unit(240, "lb"),
  46014. name: "Front",
  46015. image: {
  46016. source: "./media/characters/kuzco/front.svg",
  46017. extra: 1593/1487,
  46018. bottom: 32/1625
  46019. }
  46020. },
  46021. side: {
  46022. height: math.unit(9, "feet"),
  46023. weight: math.unit(240, "lb"),
  46024. name: "Side",
  46025. image: {
  46026. source: "./media/characters/kuzco/side.svg",
  46027. extra: 1575/1485,
  46028. bottom: 30/1605
  46029. }
  46030. },
  46031. back: {
  46032. height: math.unit(9, "feet"),
  46033. weight: math.unit(240, "lb"),
  46034. name: "Back",
  46035. image: {
  46036. source: "./media/characters/kuzco/back.svg",
  46037. extra: 1603/1514,
  46038. bottom: 14/1617
  46039. }
  46040. },
  46041. },
  46042. [
  46043. {
  46044. name: "Normal",
  46045. height: math.unit(9, "feet"),
  46046. default: true
  46047. },
  46048. ]
  46049. ))
  46050. characterMakers.push(() => makeCharacter(
  46051. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46052. {
  46053. side: {
  46054. height: math.unit(2, "meters"),
  46055. weight: math.unit(300, "kg"),
  46056. name: "Side",
  46057. image: {
  46058. source: "./media/characters/ceruleus/side.svg",
  46059. extra: 1068/974,
  46060. bottom: 126/1194
  46061. }
  46062. },
  46063. },
  46064. [
  46065. {
  46066. name: "Normal",
  46067. height: math.unit(16, "meters"),
  46068. default: true
  46069. },
  46070. ]
  46071. ))
  46072. characterMakers.push(() => makeCharacter(
  46073. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46074. {
  46075. front: {
  46076. height: math.unit(9, "feet"),
  46077. weight: math.unit(500, "kg"),
  46078. name: "Front",
  46079. image: {
  46080. source: "./media/characters/acouya/front.svg",
  46081. extra: 1660/1473,
  46082. bottom: 28/1688
  46083. }
  46084. },
  46085. },
  46086. [
  46087. {
  46088. name: "Normal",
  46089. height: math.unit(9, "feet"),
  46090. default: true
  46091. },
  46092. ]
  46093. ))
  46094. characterMakers.push(() => makeCharacter(
  46095. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46096. {
  46097. front: {
  46098. height: math.unit(5 + 6/12, "feet"),
  46099. weight: math.unit(195, "lb"),
  46100. name: "Front",
  46101. image: {
  46102. source: "./media/characters/vant/front.svg",
  46103. extra: 1396/1320,
  46104. bottom: 20/1416
  46105. }
  46106. },
  46107. back: {
  46108. height: math.unit(5 + 6/12, "feet"),
  46109. weight: math.unit(195, "lb"),
  46110. name: "Back",
  46111. image: {
  46112. source: "./media/characters/vant/back.svg",
  46113. extra: 1396/1320,
  46114. bottom: 20/1416
  46115. }
  46116. },
  46117. maw: {
  46118. height: math.unit(0.75, "feet"),
  46119. name: "Maw",
  46120. image: {
  46121. source: "./media/characters/vant/maw.svg"
  46122. }
  46123. },
  46124. paw: {
  46125. height: math.unit(1.07, "feet"),
  46126. name: "Paw",
  46127. image: {
  46128. source: "./media/characters/vant/paw.svg"
  46129. }
  46130. },
  46131. },
  46132. [
  46133. {
  46134. name: "Micro",
  46135. height: math.unit(0.25, "inches")
  46136. },
  46137. {
  46138. name: "Normal",
  46139. height: math.unit(5 + 6/12, "feet"),
  46140. default: true
  46141. },
  46142. {
  46143. name: "Macro",
  46144. height: math.unit(75, "feet")
  46145. },
  46146. ]
  46147. ))
  46148. characterMakers.push(() => makeCharacter(
  46149. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46150. {
  46151. front: {
  46152. height: math.unit(30, "meters"),
  46153. weight: math.unit(363, "tons"),
  46154. name: "Front",
  46155. image: {
  46156. source: "./media/characters/ahra/front.svg",
  46157. extra: 1914/1814,
  46158. bottom: 46/1960
  46159. }
  46160. },
  46161. },
  46162. [
  46163. {
  46164. name: "Macro",
  46165. height: math.unit(30, "meters"),
  46166. default: true
  46167. },
  46168. ]
  46169. ))
  46170. characterMakers.push(() => makeCharacter(
  46171. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46172. {
  46173. undressed: {
  46174. height: math.unit(2, "m"),
  46175. weight: math.unit(250, "kg"),
  46176. name: "Undressed",
  46177. image: {
  46178. source: "./media/characters/coriander/undressed.svg",
  46179. extra: 1757/1606,
  46180. bottom: 107/1864
  46181. }
  46182. },
  46183. dressed: {
  46184. height: math.unit(2, "m"),
  46185. weight: math.unit(250, "kg"),
  46186. name: "Dressed",
  46187. image: {
  46188. source: "./media/characters/coriander/dressed.svg",
  46189. extra: 1757/1606,
  46190. bottom: 107/1864
  46191. }
  46192. },
  46193. },
  46194. [
  46195. {
  46196. name: "Normal",
  46197. height: math.unit(4, "meters"),
  46198. default: true
  46199. },
  46200. {
  46201. name: "XL",
  46202. height: math.unit(6, "meters")
  46203. },
  46204. {
  46205. name: "XXL",
  46206. height: math.unit(8, "meters")
  46207. },
  46208. ]
  46209. ))
  46210. characterMakers.push(() => makeCharacter(
  46211. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46212. {
  46213. front: {
  46214. height: math.unit(6, "feet"),
  46215. name: "Front",
  46216. image: {
  46217. source: "./media/characters/syrinx/front.svg",
  46218. extra: 1557/1259,
  46219. bottom: 171/1728
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Normal",
  46226. height: math.unit(6 + 3/12, "feet"),
  46227. default: true
  46228. },
  46229. ]
  46230. ))
  46231. characterMakers.push(() => makeCharacter(
  46232. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46233. {
  46234. front: {
  46235. height: math.unit(11 + 6/12, "feet"),
  46236. weight: math.unit(1.5, "tons"),
  46237. name: "Front",
  46238. image: {
  46239. source: "./media/characters/bor/front.svg",
  46240. extra: 1189/1109,
  46241. bottom: 170/1359
  46242. }
  46243. },
  46244. },
  46245. [
  46246. {
  46247. name: "Normal",
  46248. height: math.unit(11 + 6/12, "feet"),
  46249. default: true
  46250. },
  46251. {
  46252. name: "Macro",
  46253. height: math.unit(32 + 9/12, "feet")
  46254. },
  46255. ]
  46256. ))
  46257. characterMakers.push(() => makeCharacter(
  46258. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46259. {
  46260. anthro: {
  46261. height: math.unit(9, "feet"),
  46262. weight: math.unit(2076, "lb"),
  46263. name: "Anthro",
  46264. image: {
  46265. source: "./media/characters/abacus/anthro.svg",
  46266. extra: 1540/1494,
  46267. bottom: 233/1773
  46268. }
  46269. },
  46270. pigeon: {
  46271. height: math.unit(1, "feet"),
  46272. name: "Pigeon",
  46273. image: {
  46274. source: "./media/characters/abacus/pigeon.svg",
  46275. extra: 528/525,
  46276. bottom: 46/574
  46277. }
  46278. },
  46279. },
  46280. [
  46281. {
  46282. name: "Normal",
  46283. height: math.unit(9, "feet"),
  46284. default: true
  46285. },
  46286. ]
  46287. ))
  46288. characterMakers.push(() => makeCharacter(
  46289. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46290. {
  46291. side: {
  46292. height: math.unit(6, "feet"),
  46293. name: "Side",
  46294. image: {
  46295. source: "./media/characters/delkhan/side.svg",
  46296. extra: 1884/1786,
  46297. bottom: 308/2192
  46298. }
  46299. },
  46300. head: {
  46301. height: math.unit(3.38, "feet"),
  46302. name: "Head",
  46303. image: {
  46304. source: "./media/characters/delkhan/head.svg"
  46305. }
  46306. },
  46307. },
  46308. [
  46309. {
  46310. name: "Normal",
  46311. height: math.unit(72, "feet"),
  46312. default: true
  46313. },
  46314. {
  46315. name: "Giant",
  46316. height: math.unit(172, "feet")
  46317. },
  46318. ]
  46319. ))
  46320. characterMakers.push(() => makeCharacter(
  46321. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46322. {
  46323. standing: {
  46324. height: math.unit(6, "feet"),
  46325. name: "Standing",
  46326. image: {
  46327. source: "./media/characters/euchidat/standing.svg",
  46328. extra: 1612/1553,
  46329. bottom: 116/1728
  46330. }
  46331. },
  46332. leaning: {
  46333. height: math.unit(6, "feet"),
  46334. name: "Leaning",
  46335. image: {
  46336. source: "./media/characters/euchidat/leaning.svg",
  46337. extra: 1719/1674,
  46338. bottom: 27/1746
  46339. }
  46340. },
  46341. },
  46342. [
  46343. {
  46344. name: "Normal",
  46345. height: math.unit(175, "feet"),
  46346. default: true
  46347. },
  46348. {
  46349. name: "Megamacro",
  46350. height: math.unit(190, "miles")
  46351. },
  46352. {
  46353. name: "Gigamacro",
  46354. height: math.unit(190000, "miles")
  46355. },
  46356. ]
  46357. ))
  46358. characterMakers.push(() => makeCharacter(
  46359. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46360. {
  46361. front: {
  46362. height: math.unit(6, "feet"),
  46363. weight: math.unit(150, "lb"),
  46364. name: "Front",
  46365. image: {
  46366. source: "./media/characters/rebecca-stack/front.svg",
  46367. extra: 1256/1201,
  46368. bottom: 18/1274
  46369. }
  46370. },
  46371. },
  46372. [
  46373. {
  46374. name: "Normal",
  46375. height: math.unit(5 + 8/12, "feet"),
  46376. default: true
  46377. },
  46378. {
  46379. name: "Demolitionist",
  46380. height: math.unit(200, "feet")
  46381. },
  46382. {
  46383. name: "Out of Control",
  46384. height: math.unit(2, "miles")
  46385. },
  46386. {
  46387. name: "Giga",
  46388. height: math.unit(7200, "miles")
  46389. },
  46390. ]
  46391. ))
  46392. characterMakers.push(() => makeCharacter(
  46393. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46394. {
  46395. front: {
  46396. height: math.unit(6, "feet"),
  46397. weight: math.unit(150, "lb"),
  46398. name: "Front",
  46399. image: {
  46400. source: "./media/characters/jenny-cartwright/front.svg",
  46401. extra: 1384/1376,
  46402. bottom: 58/1442
  46403. }
  46404. },
  46405. },
  46406. [
  46407. {
  46408. name: "Normal",
  46409. height: math.unit(6 + 7/12, "feet"),
  46410. default: true
  46411. },
  46412. {
  46413. name: "Librarian",
  46414. height: math.unit(55, "feet")
  46415. },
  46416. {
  46417. name: "Sightseer",
  46418. height: math.unit(50, "miles")
  46419. },
  46420. {
  46421. name: "Giga",
  46422. height: math.unit(30000, "miles")
  46423. },
  46424. ]
  46425. ))
  46426. characterMakers.push(() => makeCharacter(
  46427. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46428. {
  46429. nude: {
  46430. height: math.unit(8, "feet"),
  46431. weight: math.unit(225, "lb"),
  46432. name: "Nude",
  46433. image: {
  46434. source: "./media/characters/marvy/nude.svg",
  46435. extra: 1900/1683,
  46436. bottom: 89/1989
  46437. }
  46438. },
  46439. dressed: {
  46440. height: math.unit(8, "feet"),
  46441. weight: math.unit(225, "lb"),
  46442. name: "Dressed",
  46443. image: {
  46444. source: "./media/characters/marvy/dressed.svg",
  46445. extra: 1900/1683,
  46446. bottom: 89/1989
  46447. }
  46448. },
  46449. head: {
  46450. height: math.unit(2.85, "feet"),
  46451. name: "Head",
  46452. image: {
  46453. source: "./media/characters/marvy/head.svg"
  46454. }
  46455. },
  46456. },
  46457. [
  46458. {
  46459. name: "Normal",
  46460. height: math.unit(8, "feet"),
  46461. default: true
  46462. },
  46463. ]
  46464. ))
  46465. characterMakers.push(() => makeCharacter(
  46466. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46467. {
  46468. front: {
  46469. height: math.unit(8, "feet"),
  46470. weight: math.unit(250, "lb"),
  46471. name: "Front",
  46472. image: {
  46473. source: "./media/characters/leah/front.svg",
  46474. extra: 1257/1149,
  46475. bottom: 109/1366
  46476. }
  46477. },
  46478. },
  46479. [
  46480. {
  46481. name: "Normal",
  46482. height: math.unit(8, "feet"),
  46483. default: true
  46484. },
  46485. {
  46486. name: "Minimacro",
  46487. height: math.unit(40, "feet")
  46488. },
  46489. {
  46490. name: "Macro",
  46491. height: math.unit(124, "feet")
  46492. },
  46493. {
  46494. name: "Megamacro",
  46495. height: math.unit(850, "feet")
  46496. },
  46497. ]
  46498. ))
  46499. characterMakers.push(() => makeCharacter(
  46500. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46501. {
  46502. side: {
  46503. height: math.unit(13 + 6/12, "feet"),
  46504. weight: math.unit(3200, "lb"),
  46505. name: "Side",
  46506. image: {
  46507. source: "./media/characters/alvir/side.svg",
  46508. extra: 896/589,
  46509. bottom: 26/922
  46510. }
  46511. },
  46512. },
  46513. [
  46514. {
  46515. name: "Normal",
  46516. height: math.unit(13 + 6/12, "feet"),
  46517. default: true
  46518. },
  46519. ]
  46520. ))
  46521. characterMakers.push(() => makeCharacter(
  46522. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46523. {
  46524. front: {
  46525. height: math.unit(5 + 4/12, "feet"),
  46526. weight: math.unit(236, "lb"),
  46527. name: "Front",
  46528. image: {
  46529. source: "./media/characters/zaina-khalil/front.svg",
  46530. extra: 1533/1485,
  46531. bottom: 94/1627
  46532. }
  46533. },
  46534. side: {
  46535. height: math.unit(5 + 4/12, "feet"),
  46536. weight: math.unit(236, "lb"),
  46537. name: "Side",
  46538. image: {
  46539. source: "./media/characters/zaina-khalil/side.svg",
  46540. extra: 1537/1498,
  46541. bottom: 66/1603
  46542. }
  46543. },
  46544. back: {
  46545. height: math.unit(5 + 4/12, "feet"),
  46546. weight: math.unit(236, "lb"),
  46547. name: "Back",
  46548. image: {
  46549. source: "./media/characters/zaina-khalil/back.svg",
  46550. extra: 1546/1494,
  46551. bottom: 89/1635
  46552. }
  46553. },
  46554. },
  46555. [
  46556. {
  46557. name: "Normal",
  46558. height: math.unit(5 + 4/12, "feet"),
  46559. default: true
  46560. },
  46561. ]
  46562. ))
  46563. characterMakers.push(() => makeCharacter(
  46564. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46565. {
  46566. side: {
  46567. height: math.unit(12, "feet"),
  46568. weight: math.unit(4000, "lb"),
  46569. name: "Side",
  46570. image: {
  46571. source: "./media/characters/terry/side.svg",
  46572. extra: 1518/1439,
  46573. bottom: 149/1667
  46574. }
  46575. },
  46576. },
  46577. [
  46578. {
  46579. name: "Normal",
  46580. height: math.unit(12, "feet"),
  46581. default: true
  46582. },
  46583. ]
  46584. ))
  46585. characterMakers.push(() => makeCharacter(
  46586. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46587. {
  46588. front: {
  46589. height: math.unit(12, "feet"),
  46590. weight: math.unit(1500, "lb"),
  46591. name: "Front",
  46592. image: {
  46593. source: "./media/characters/kahea/front.svg",
  46594. extra: 1722/1617,
  46595. bottom: 179/1901
  46596. }
  46597. },
  46598. },
  46599. [
  46600. {
  46601. name: "Normal",
  46602. height: math.unit(12, "feet"),
  46603. default: true
  46604. },
  46605. ]
  46606. ))
  46607. characterMakers.push(() => makeCharacter(
  46608. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46609. {
  46610. demonFront: {
  46611. height: math.unit(36, "feet"),
  46612. name: "Front",
  46613. image: {
  46614. source: "./media/characters/alex-xuria/demon-front.svg",
  46615. extra: 1705/1673,
  46616. bottom: 198/1903
  46617. },
  46618. form: "demon",
  46619. default: true
  46620. },
  46621. demonBack: {
  46622. height: math.unit(36, "feet"),
  46623. name: "Back",
  46624. image: {
  46625. source: "./media/characters/alex-xuria/demon-back.svg",
  46626. extra: 1725/1693,
  46627. bottom: 70/1795
  46628. },
  46629. form: "demon"
  46630. },
  46631. demonHead: {
  46632. height: math.unit(2.14, "meters"),
  46633. name: "Head",
  46634. image: {
  46635. source: "./media/characters/alex-xuria/demon-head.svg"
  46636. },
  46637. form: "demon"
  46638. },
  46639. demonHand: {
  46640. height: math.unit(1.61, "meters"),
  46641. name: "Hand",
  46642. image: {
  46643. source: "./media/characters/alex-xuria/demon-hand.svg"
  46644. },
  46645. form: "demon"
  46646. },
  46647. demonPaw: {
  46648. height: math.unit(1.35, "meters"),
  46649. name: "Paw",
  46650. image: {
  46651. source: "./media/characters/alex-xuria/demon-paw.svg"
  46652. },
  46653. form: "demon"
  46654. },
  46655. demonFoot: {
  46656. height: math.unit(2.2, "meters"),
  46657. name: "Foot",
  46658. image: {
  46659. source: "./media/characters/alex-xuria/demon-foot.svg"
  46660. },
  46661. form: "demon"
  46662. },
  46663. demonCock: {
  46664. height: math.unit(1.74, "meters"),
  46665. name: "Cock",
  46666. image: {
  46667. source: "./media/characters/alex-xuria/demon-cock.svg"
  46668. },
  46669. form: "demon"
  46670. },
  46671. demonTailClosed: {
  46672. height: math.unit(1.47, "meters"),
  46673. name: "Tail (Closed)",
  46674. image: {
  46675. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46676. },
  46677. form: "demon"
  46678. },
  46679. demonTailOpen: {
  46680. height: math.unit(2.85, "meters"),
  46681. name: "Tail (Open)",
  46682. image: {
  46683. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46684. },
  46685. form: "demon"
  46686. },
  46687. incubusFront: {
  46688. height: math.unit(12, "feet"),
  46689. name: "Front",
  46690. image: {
  46691. source: "./media/characters/alex-xuria/incubus-front.svg",
  46692. extra: 1754/1677,
  46693. bottom: 125/1879
  46694. },
  46695. form: "incubus",
  46696. default: true
  46697. },
  46698. incubusBack: {
  46699. height: math.unit(12, "feet"),
  46700. name: "Back",
  46701. image: {
  46702. source: "./media/characters/alex-xuria/incubus-back.svg",
  46703. extra: 1702/1647,
  46704. bottom: 30/1732
  46705. },
  46706. form: "incubus"
  46707. },
  46708. incubusHead: {
  46709. height: math.unit(3.45, "feet"),
  46710. name: "Head",
  46711. image: {
  46712. source: "./media/characters/alex-xuria/incubus-head.svg"
  46713. },
  46714. form: "incubus"
  46715. },
  46716. rabbitFront: {
  46717. height: math.unit(6, "feet"),
  46718. name: "Front",
  46719. image: {
  46720. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46721. extra: 1369/1349,
  46722. bottom: 45/1414
  46723. },
  46724. form: "rabbit",
  46725. default: true
  46726. },
  46727. rabbitSide: {
  46728. height: math.unit(6, "feet"),
  46729. name: "Side",
  46730. image: {
  46731. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46732. extra: 1370/1356,
  46733. bottom: 37/1407
  46734. },
  46735. form: "rabbit"
  46736. },
  46737. rabbitBack: {
  46738. height: math.unit(6, "feet"),
  46739. name: "Back",
  46740. image: {
  46741. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46742. extra: 1375/1358,
  46743. bottom: 43/1418
  46744. },
  46745. form: "rabbit"
  46746. },
  46747. },
  46748. [
  46749. {
  46750. name: "Normal",
  46751. height: math.unit(6, "feet"),
  46752. default: true,
  46753. form: "rabbit"
  46754. },
  46755. {
  46756. name: "Incubus",
  46757. height: math.unit(12, "feet"),
  46758. default: true,
  46759. form: "incubus"
  46760. },
  46761. {
  46762. name: "Demon",
  46763. height: math.unit(36, "feet"),
  46764. default: true,
  46765. form: "demon"
  46766. }
  46767. ],
  46768. {
  46769. "demon": {
  46770. name: "Demon",
  46771. default: true
  46772. },
  46773. "incubus": {
  46774. name: "Incubus",
  46775. },
  46776. "rabbit": {
  46777. name: "Rabbit"
  46778. }
  46779. }
  46780. ))
  46781. characterMakers.push(() => makeCharacter(
  46782. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46783. {
  46784. front: {
  46785. height: math.unit(7 + 5/12, "feet"),
  46786. weight: math.unit(510, "lb"),
  46787. name: "Front",
  46788. image: {
  46789. source: "./media/characters/syrup/front.svg",
  46790. extra: 932/916,
  46791. bottom: 26/958
  46792. }
  46793. },
  46794. },
  46795. [
  46796. {
  46797. name: "Normal",
  46798. height: math.unit(7 + 5/12, "feet"),
  46799. default: true
  46800. },
  46801. {
  46802. name: "Big",
  46803. height: math.unit(50, "feet")
  46804. },
  46805. {
  46806. name: "Macro",
  46807. height: math.unit(300, "feet")
  46808. },
  46809. {
  46810. name: "Megamacro",
  46811. height: math.unit(1, "mile")
  46812. },
  46813. ]
  46814. ))
  46815. characterMakers.push(() => makeCharacter(
  46816. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46817. {
  46818. front: {
  46819. height: math.unit(6 + 9/12, "feet"),
  46820. name: "Front",
  46821. image: {
  46822. source: "./media/characters/zeimne/front.svg",
  46823. extra: 1969/1806,
  46824. bottom: 53/2022
  46825. }
  46826. },
  46827. },
  46828. [
  46829. {
  46830. name: "Normal",
  46831. height: math.unit(6 + 9/12, "feet"),
  46832. default: true
  46833. },
  46834. {
  46835. name: "Giant",
  46836. height: math.unit(550, "feet")
  46837. },
  46838. {
  46839. name: "Mega",
  46840. height: math.unit(3, "miles")
  46841. },
  46842. {
  46843. name: "Giga",
  46844. height: math.unit(250, "miles")
  46845. },
  46846. {
  46847. name: "Tera",
  46848. height: math.unit(1, "AU")
  46849. },
  46850. ]
  46851. ))
  46852. characterMakers.push(() => makeCharacter(
  46853. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46854. {
  46855. front: {
  46856. height: math.unit(5 + 2/12, "feet"),
  46857. name: "Front",
  46858. image: {
  46859. source: "./media/characters/grar/front.svg",
  46860. extra: 1331/1119,
  46861. bottom: 60/1391
  46862. }
  46863. },
  46864. back: {
  46865. height: math.unit(5 + 2/12, "feet"),
  46866. name: "Back",
  46867. image: {
  46868. source: "./media/characters/grar/back.svg",
  46869. extra: 1385/1169,
  46870. bottom: 23/1408
  46871. }
  46872. },
  46873. },
  46874. [
  46875. {
  46876. name: "Normal",
  46877. height: math.unit(5 + 2/12, "feet"),
  46878. default: true
  46879. },
  46880. ]
  46881. ))
  46882. characterMakers.push(() => makeCharacter(
  46883. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46884. {
  46885. front: {
  46886. height: math.unit(13 + 7/12, "feet"),
  46887. weight: math.unit(2200, "lb"),
  46888. name: "Front",
  46889. image: {
  46890. source: "./media/characters/endraya/front.svg",
  46891. extra: 1289/1215,
  46892. bottom: 50/1339
  46893. }
  46894. },
  46895. nude: {
  46896. height: math.unit(13 + 7/12, "feet"),
  46897. weight: math.unit(2200, "lb"),
  46898. name: "Nude",
  46899. image: {
  46900. source: "./media/characters/endraya/nude.svg",
  46901. extra: 1247/1171,
  46902. bottom: 40/1287
  46903. }
  46904. },
  46905. head: {
  46906. height: math.unit(2.6, "feet"),
  46907. name: "Head",
  46908. image: {
  46909. source: "./media/characters/endraya/head.svg"
  46910. }
  46911. },
  46912. slit: {
  46913. height: math.unit(3.4, "feet"),
  46914. name: "Slit",
  46915. image: {
  46916. source: "./media/characters/endraya/slit.svg"
  46917. }
  46918. },
  46919. },
  46920. [
  46921. {
  46922. name: "Normal",
  46923. height: math.unit(13 + 7/12, "feet"),
  46924. default: true
  46925. },
  46926. {
  46927. name: "Macro",
  46928. height: math.unit(200, "feet")
  46929. },
  46930. ]
  46931. ))
  46932. characterMakers.push(() => makeCharacter(
  46933. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46934. {
  46935. front: {
  46936. height: math.unit(1.81, "meters"),
  46937. weight: math.unit(69, "kg"),
  46938. name: "Front",
  46939. image: {
  46940. source: "./media/characters/rodryana/front.svg",
  46941. extra: 2002/1921,
  46942. bottom: 53/2055
  46943. }
  46944. },
  46945. back: {
  46946. height: math.unit(1.81, "meters"),
  46947. weight: math.unit(69, "kg"),
  46948. name: "Back",
  46949. image: {
  46950. source: "./media/characters/rodryana/back.svg",
  46951. extra: 1993/1926,
  46952. bottom: 48/2041
  46953. }
  46954. },
  46955. maw: {
  46956. height: math.unit(0.19769417475, "meters"),
  46957. name: "Maw",
  46958. image: {
  46959. source: "./media/characters/rodryana/maw.svg"
  46960. }
  46961. },
  46962. slit: {
  46963. height: math.unit(0.31631067961, "meters"),
  46964. name: "Slit",
  46965. image: {
  46966. source: "./media/characters/rodryana/slit.svg"
  46967. }
  46968. },
  46969. },
  46970. [
  46971. {
  46972. name: "Normal",
  46973. height: math.unit(1.81, "meters")
  46974. },
  46975. {
  46976. name: "Mini Macro",
  46977. height: math.unit(181, "meters")
  46978. },
  46979. {
  46980. name: "Macro",
  46981. height: math.unit(452, "meters"),
  46982. default: true
  46983. },
  46984. {
  46985. name: "Mega Macro",
  46986. height: math.unit(1.375, "km")
  46987. },
  46988. {
  46989. name: "Giga Macro",
  46990. height: math.unit(13.575, "km")
  46991. },
  46992. ]
  46993. ))
  46994. characterMakers.push(() => makeCharacter(
  46995. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46996. {
  46997. front: {
  46998. height: math.unit(6, "feet"),
  46999. weight: math.unit(1000, "lb"),
  47000. name: "Front",
  47001. image: {
  47002. source: "./media/characters/asaya/front.svg",
  47003. extra: 1460/1200,
  47004. bottom: 71/1531
  47005. }
  47006. },
  47007. },
  47008. [
  47009. {
  47010. name: "Normal",
  47011. height: math.unit(8, "km"),
  47012. default: true
  47013. },
  47014. ]
  47015. ))
  47016. characterMakers.push(() => makeCharacter(
  47017. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47018. {
  47019. front: {
  47020. height: math.unit(3.5, "meters"),
  47021. name: "Front",
  47022. image: {
  47023. source: "./media/characters/sarzu-and-israz/front.svg",
  47024. extra: 1570/1558,
  47025. bottom: 150/1720
  47026. },
  47027. },
  47028. back: {
  47029. height: math.unit(3.5, "meters"),
  47030. name: "Back",
  47031. image: {
  47032. source: "./media/characters/sarzu-and-israz/back.svg",
  47033. extra: 1523/1509,
  47034. bottom: 132/1655
  47035. },
  47036. },
  47037. frontFemale: {
  47038. height: math.unit(3.5, "meters"),
  47039. name: "Front (Female)",
  47040. image: {
  47041. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47042. extra: 1570/1558,
  47043. bottom: 150/1720
  47044. },
  47045. },
  47046. frontHerm: {
  47047. height: math.unit(3.5, "meters"),
  47048. name: "Front (Herm)",
  47049. image: {
  47050. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47051. extra: 1570/1558,
  47052. bottom: 150/1720
  47053. },
  47054. },
  47055. },
  47056. [
  47057. {
  47058. name: "Normal",
  47059. height: math.unit(3.5, "meters"),
  47060. default: true,
  47061. },
  47062. {
  47063. name: "Macro",
  47064. height: math.unit(65.5, "meters"),
  47065. },
  47066. ],
  47067. ))
  47068. characterMakers.push(() => makeCharacter(
  47069. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47070. {
  47071. front: {
  47072. height: math.unit(6, "feet"),
  47073. weight: math.unit(250, "lb"),
  47074. name: "Front",
  47075. image: {
  47076. source: "./media/characters/zenimma/front.svg",
  47077. extra: 1346/1320,
  47078. bottom: 58/1404
  47079. }
  47080. },
  47081. back: {
  47082. height: math.unit(6, "feet"),
  47083. weight: math.unit(250, "lb"),
  47084. name: "Back",
  47085. image: {
  47086. source: "./media/characters/zenimma/back.svg",
  47087. extra: 1324/1308,
  47088. bottom: 44/1368
  47089. }
  47090. },
  47091. dick: {
  47092. height: math.unit(1.44, "feet"),
  47093. name: "Dick",
  47094. image: {
  47095. source: "./media/characters/zenimma/dick.svg"
  47096. }
  47097. },
  47098. },
  47099. [
  47100. {
  47101. name: "Canon Height",
  47102. height: math.unit(66, "miles"),
  47103. default: true
  47104. },
  47105. ]
  47106. ))
  47107. characterMakers.push(() => makeCharacter(
  47108. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47109. {
  47110. nude: {
  47111. height: math.unit(6, "feet"),
  47112. weight: math.unit(150, "lb"),
  47113. name: "Nude",
  47114. image: {
  47115. source: "./media/characters/shavon/nude.svg",
  47116. extra: 1242/1096,
  47117. bottom: 98/1340
  47118. }
  47119. },
  47120. dressed: {
  47121. height: math.unit(6, "feet"),
  47122. weight: math.unit(150, "lb"),
  47123. name: "Dressed",
  47124. image: {
  47125. source: "./media/characters/shavon/dressed.svg",
  47126. extra: 1242/1096,
  47127. bottom: 98/1340
  47128. }
  47129. },
  47130. },
  47131. [
  47132. {
  47133. name: "Macro",
  47134. height: math.unit(255, "feet"),
  47135. default: true
  47136. },
  47137. ]
  47138. ))
  47139. characterMakers.push(() => makeCharacter(
  47140. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47141. {
  47142. front: {
  47143. height: math.unit(6, "feet"),
  47144. name: "Front",
  47145. image: {
  47146. source: "./media/characters/steph/front.svg",
  47147. extra: 1430/1330,
  47148. bottom: 54/1484
  47149. }
  47150. },
  47151. },
  47152. [
  47153. {
  47154. name: "Normal",
  47155. height: math.unit(6, "feet"),
  47156. default: true
  47157. },
  47158. ]
  47159. ))
  47160. characterMakers.push(() => makeCharacter(
  47161. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47162. {
  47163. front: {
  47164. height: math.unit(9, "feet"),
  47165. weight: math.unit(400, "lb"),
  47166. name: "Front",
  47167. image: {
  47168. source: "./media/characters/kil'aman/front.svg",
  47169. extra: 1210/1159,
  47170. bottom: 109/1319
  47171. }
  47172. },
  47173. head: {
  47174. height: math.unit(2.14, "feet"),
  47175. name: "Head",
  47176. image: {
  47177. source: "./media/characters/kil'aman/head.svg"
  47178. }
  47179. },
  47180. maw: {
  47181. height: math.unit(1.21, "feet"),
  47182. name: "Maw",
  47183. image: {
  47184. source: "./media/characters/kil'aman/maw.svg"
  47185. }
  47186. },
  47187. foot: {
  47188. height: math.unit(1.7, "feet"),
  47189. name: "Foot",
  47190. image: {
  47191. source: "./media/characters/kil'aman/foot.svg"
  47192. }
  47193. },
  47194. dick: {
  47195. height: math.unit(2.1, "feet"),
  47196. name: "Dick",
  47197. image: {
  47198. source: "./media/characters/kil'aman/dick.svg"
  47199. }
  47200. },
  47201. },
  47202. [
  47203. {
  47204. name: "Normal",
  47205. height: math.unit(9, "feet")
  47206. },
  47207. {
  47208. name: "Canon Height",
  47209. height: math.unit(10, "miles"),
  47210. default: true
  47211. },
  47212. {
  47213. name: "Maximum",
  47214. height: math.unit(6e9, "miles")
  47215. },
  47216. ]
  47217. ))
  47218. characterMakers.push(() => makeCharacter(
  47219. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47220. {
  47221. front: {
  47222. height: math.unit(90, "feet"),
  47223. weight: math.unit(675000, "lb"),
  47224. name: "Front",
  47225. image: {
  47226. source: "./media/characters/qadan/front.svg",
  47227. extra: 1012/1004,
  47228. bottom: 78/1090
  47229. }
  47230. },
  47231. back: {
  47232. height: math.unit(90, "feet"),
  47233. weight: math.unit(675000, "lb"),
  47234. name: "Back",
  47235. image: {
  47236. source: "./media/characters/qadan/back.svg",
  47237. extra: 1042/1031,
  47238. bottom: 55/1097
  47239. }
  47240. },
  47241. armored: {
  47242. height: math.unit(90, "feet"),
  47243. weight: math.unit(675000, "lb"),
  47244. name: "Armored",
  47245. image: {
  47246. source: "./media/characters/qadan/armored.svg",
  47247. extra: 1047/1037,
  47248. bottom: 48/1095
  47249. }
  47250. },
  47251. },
  47252. [
  47253. {
  47254. name: "Normal",
  47255. height: math.unit(90, "feet"),
  47256. default: true
  47257. },
  47258. ]
  47259. ))
  47260. characterMakers.push(() => makeCharacter(
  47261. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47262. {
  47263. front: {
  47264. height: math.unit(6, "feet"),
  47265. weight: math.unit(225, "lb"),
  47266. name: "Front",
  47267. image: {
  47268. source: "./media/characters/brooke/front.svg",
  47269. extra: 1050/1010,
  47270. bottom: 66/1116
  47271. }
  47272. },
  47273. back: {
  47274. height: math.unit(6, "feet"),
  47275. weight: math.unit(225, "lb"),
  47276. name: "Back",
  47277. image: {
  47278. source: "./media/characters/brooke/back.svg",
  47279. extra: 1053/1013,
  47280. bottom: 41/1094
  47281. }
  47282. },
  47283. dressed: {
  47284. height: math.unit(6, "feet"),
  47285. weight: math.unit(225, "lb"),
  47286. name: "Dressed",
  47287. image: {
  47288. source: "./media/characters/brooke/dressed.svg",
  47289. extra: 1050/1010,
  47290. bottom: 66/1116
  47291. }
  47292. },
  47293. },
  47294. [
  47295. {
  47296. name: "Canon Height",
  47297. height: math.unit(500, "miles"),
  47298. default: true
  47299. },
  47300. ]
  47301. ))
  47302. characterMakers.push(() => makeCharacter(
  47303. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47304. {
  47305. front: {
  47306. height: math.unit(6 + 2/12, "feet"),
  47307. weight: math.unit(210, "lb"),
  47308. name: "Front",
  47309. image: {
  47310. source: "./media/characters/wubs/front.svg",
  47311. extra: 1345/1325,
  47312. bottom: 70/1415
  47313. }
  47314. },
  47315. back: {
  47316. height: math.unit(6 + 2/12, "feet"),
  47317. weight: math.unit(210, "lb"),
  47318. name: "Back",
  47319. image: {
  47320. source: "./media/characters/wubs/back.svg",
  47321. extra: 1296/1275,
  47322. bottom: 58/1354
  47323. }
  47324. },
  47325. },
  47326. [
  47327. {
  47328. name: "Normal",
  47329. height: math.unit(6 + 2/12, "feet"),
  47330. default: true
  47331. },
  47332. {
  47333. name: "Macro",
  47334. height: math.unit(1000, "feet")
  47335. },
  47336. {
  47337. name: "Megamacro",
  47338. height: math.unit(1, "mile")
  47339. },
  47340. ]
  47341. ))
  47342. characterMakers.push(() => makeCharacter(
  47343. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47344. {
  47345. front: {
  47346. height: math.unit(4, "feet"),
  47347. weight: math.unit(120, "lb"),
  47348. name: "Front",
  47349. image: {
  47350. source: "./media/characters/blue/front.svg",
  47351. extra: 1636/1525,
  47352. bottom: 43/1679
  47353. }
  47354. },
  47355. back: {
  47356. height: math.unit(4, "feet"),
  47357. weight: math.unit(120, "lb"),
  47358. name: "Back",
  47359. image: {
  47360. source: "./media/characters/blue/back.svg",
  47361. extra: 1660/1560,
  47362. bottom: 57/1717
  47363. }
  47364. },
  47365. paws: {
  47366. height: math.unit(0.826, "feet"),
  47367. name: "Paws",
  47368. image: {
  47369. source: "./media/characters/blue/paws.svg"
  47370. }
  47371. },
  47372. },
  47373. [
  47374. {
  47375. name: "Micro",
  47376. height: math.unit(3, "inches")
  47377. },
  47378. {
  47379. name: "Normal",
  47380. height: math.unit(4, "feet"),
  47381. default: true
  47382. },
  47383. {
  47384. name: "Femenine Form",
  47385. height: math.unit(14, "feet")
  47386. },
  47387. {
  47388. name: "Werebat Form",
  47389. height: math.unit(18, "feet")
  47390. },
  47391. ]
  47392. ))
  47393. characterMakers.push(() => makeCharacter(
  47394. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47395. {
  47396. female: {
  47397. height: math.unit(7 + 4/12, "feet"),
  47398. weight: math.unit(243, "lb"),
  47399. name: "Female",
  47400. image: {
  47401. source: "./media/characters/kaya/female.svg",
  47402. extra: 975/898,
  47403. bottom: 34/1009
  47404. }
  47405. },
  47406. herm: {
  47407. height: math.unit(7 + 4/12, "feet"),
  47408. weight: math.unit(243, "lb"),
  47409. name: "Herm",
  47410. image: {
  47411. source: "./media/characters/kaya/herm.svg",
  47412. extra: 975/898,
  47413. bottom: 34/1009
  47414. }
  47415. },
  47416. },
  47417. [
  47418. {
  47419. name: "Normal",
  47420. height: math.unit(7 + 4/12, "feet"),
  47421. default: true
  47422. },
  47423. ]
  47424. ))
  47425. characterMakers.push(() => makeCharacter(
  47426. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47427. {
  47428. female: {
  47429. height: math.unit(9 + 4/12, "feet"),
  47430. weight: math.unit(398, "lb"),
  47431. name: "Female",
  47432. image: {
  47433. source: "./media/characters/kassandra/female.svg",
  47434. extra: 908/839,
  47435. bottom: 61/969
  47436. }
  47437. },
  47438. intersex: {
  47439. height: math.unit(9 + 4/12, "feet"),
  47440. weight: math.unit(398, "lb"),
  47441. name: "Intersex",
  47442. image: {
  47443. source: "./media/characters/kassandra/intersex.svg",
  47444. extra: 908/839,
  47445. bottom: 61/969
  47446. }
  47447. },
  47448. },
  47449. [
  47450. {
  47451. name: "Normal",
  47452. height: math.unit(9 + 4/12, "feet"),
  47453. default: true
  47454. },
  47455. ]
  47456. ))
  47457. characterMakers.push(() => makeCharacter(
  47458. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47459. {
  47460. front: {
  47461. height: math.unit(3, "meters"),
  47462. name: "Front",
  47463. image: {
  47464. source: "./media/characters/amy/front.svg",
  47465. extra: 1380/1343,
  47466. bottom: 70/1450
  47467. }
  47468. },
  47469. back: {
  47470. height: math.unit(3, "meters"),
  47471. name: "Back",
  47472. image: {
  47473. source: "./media/characters/amy/back.svg",
  47474. extra: 1380/1347,
  47475. bottom: 66/1446
  47476. }
  47477. },
  47478. },
  47479. [
  47480. {
  47481. name: "Normal",
  47482. height: math.unit(3, "meters"),
  47483. default: true
  47484. },
  47485. ]
  47486. ))
  47487. characterMakers.push(() => makeCharacter(
  47488. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47489. {
  47490. side: {
  47491. height: math.unit(47, "cm"),
  47492. weight: math.unit(10.8, "kg"),
  47493. name: "Side",
  47494. image: {
  47495. source: "./media/characters/alphaschakal/side.svg",
  47496. extra: 1058/568,
  47497. bottom: 62/1120
  47498. }
  47499. },
  47500. back: {
  47501. height: math.unit(78, "cm"),
  47502. weight: math.unit(10.8, "kg"),
  47503. name: "Back",
  47504. image: {
  47505. source: "./media/characters/alphaschakal/back.svg",
  47506. extra: 1102/942,
  47507. bottom: 185/1287
  47508. }
  47509. },
  47510. head: {
  47511. height: math.unit(28, "cm"),
  47512. name: "Head",
  47513. image: {
  47514. source: "./media/characters/alphaschakal/head.svg",
  47515. extra: 696/508,
  47516. bottom: 0/696
  47517. }
  47518. },
  47519. paw: {
  47520. height: math.unit(16, "cm"),
  47521. name: "Paw",
  47522. image: {
  47523. source: "./media/characters/alphaschakal/paw.svg"
  47524. }
  47525. },
  47526. },
  47527. [
  47528. {
  47529. name: "Normal",
  47530. height: math.unit(47, "cm"),
  47531. default: true
  47532. },
  47533. {
  47534. name: "Macro",
  47535. height: math.unit(340, "cm")
  47536. },
  47537. ]
  47538. ))
  47539. characterMakers.push(() => makeCharacter(
  47540. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47541. {
  47542. front: {
  47543. height: math.unit(36, "earths"),
  47544. name: "Front",
  47545. image: {
  47546. source: "./media/characters/ecobyss/front.svg",
  47547. extra: 1282/1215,
  47548. bottom: 11/1293
  47549. }
  47550. },
  47551. back: {
  47552. height: math.unit(36, "earths"),
  47553. name: "Back",
  47554. image: {
  47555. source: "./media/characters/ecobyss/back.svg",
  47556. extra: 1291/1222,
  47557. bottom: 8/1299
  47558. }
  47559. },
  47560. },
  47561. [
  47562. {
  47563. name: "Normal",
  47564. height: math.unit(36, "earths"),
  47565. default: true
  47566. },
  47567. ]
  47568. ))
  47569. characterMakers.push(() => makeCharacter(
  47570. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47571. {
  47572. front: {
  47573. height: math.unit(12, "feet"),
  47574. name: "Front",
  47575. image: {
  47576. source: "./media/characters/vasuk/front.svg",
  47577. extra: 1326/1207,
  47578. bottom: 64/1390
  47579. }
  47580. },
  47581. },
  47582. [
  47583. {
  47584. name: "Normal",
  47585. height: math.unit(12, "feet"),
  47586. default: true
  47587. },
  47588. ]
  47589. ))
  47590. characterMakers.push(() => makeCharacter(
  47591. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47592. {
  47593. side: {
  47594. height: math.unit(100, "feet"),
  47595. name: "Side",
  47596. image: {
  47597. source: "./media/characters/linneaus/side.svg",
  47598. extra: 987/807,
  47599. bottom: 47/1034
  47600. }
  47601. },
  47602. },
  47603. [
  47604. {
  47605. name: "Macro",
  47606. height: math.unit(100, "feet"),
  47607. default: true
  47608. },
  47609. ]
  47610. ))
  47611. characterMakers.push(() => makeCharacter(
  47612. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47613. {
  47614. front: {
  47615. height: math.unit(8, "feet"),
  47616. weight: math.unit(1200, "lb"),
  47617. name: "Front",
  47618. image: {
  47619. source: "./media/characters/nyterious-daligdig/front.svg",
  47620. extra: 1284/1094,
  47621. bottom: 84/1368
  47622. }
  47623. },
  47624. back: {
  47625. height: math.unit(8, "feet"),
  47626. weight: math.unit(1200, "lb"),
  47627. name: "Back",
  47628. image: {
  47629. source: "./media/characters/nyterious-daligdig/back.svg",
  47630. extra: 1301/1121,
  47631. bottom: 129/1430
  47632. }
  47633. },
  47634. mouth: {
  47635. height: math.unit(1.464, "feet"),
  47636. name: "Mouth",
  47637. image: {
  47638. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47639. }
  47640. },
  47641. },
  47642. [
  47643. {
  47644. name: "Small",
  47645. height: math.unit(8, "feet"),
  47646. default: true
  47647. },
  47648. {
  47649. name: "Normal",
  47650. height: math.unit(15, "feet")
  47651. },
  47652. {
  47653. name: "Macro",
  47654. height: math.unit(90, "feet")
  47655. },
  47656. ]
  47657. ))
  47658. characterMakers.push(() => makeCharacter(
  47659. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47660. {
  47661. front: {
  47662. height: math.unit(7 + 4/12, "feet"),
  47663. weight: math.unit(252, "lb"),
  47664. name: "Front",
  47665. image: {
  47666. source: "./media/characters/bandel/front.svg",
  47667. extra: 1946/1775,
  47668. bottom: 26/1972
  47669. }
  47670. },
  47671. back: {
  47672. height: math.unit(7 + 4/12, "feet"),
  47673. weight: math.unit(252, "lb"),
  47674. name: "Back",
  47675. image: {
  47676. source: "./media/characters/bandel/back.svg",
  47677. extra: 1940/1770,
  47678. bottom: 25/1965
  47679. }
  47680. },
  47681. maw: {
  47682. height: math.unit(2.15, "feet"),
  47683. name: "Maw",
  47684. image: {
  47685. source: "./media/characters/bandel/maw.svg"
  47686. }
  47687. },
  47688. stomach: {
  47689. height: math.unit(1.95, "feet"),
  47690. name: "Stomach",
  47691. image: {
  47692. source: "./media/characters/bandel/stomach.svg"
  47693. }
  47694. },
  47695. },
  47696. [
  47697. {
  47698. name: "Normal",
  47699. height: math.unit(7 + 4/12, "feet"),
  47700. default: true
  47701. },
  47702. ]
  47703. ))
  47704. characterMakers.push(() => makeCharacter(
  47705. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47706. {
  47707. front: {
  47708. height: math.unit(10 + 5/12, "feet"),
  47709. weight: math.unit(773.5, "kg"),
  47710. name: "Front",
  47711. image: {
  47712. source: "./media/characters/zed/front.svg",
  47713. extra: 987/941,
  47714. bottom: 52/1039
  47715. }
  47716. },
  47717. },
  47718. [
  47719. {
  47720. name: "Short",
  47721. height: math.unit(5 + 4/12, "feet")
  47722. },
  47723. {
  47724. name: "Average",
  47725. height: math.unit(10 + 5/12, "feet"),
  47726. default: true
  47727. },
  47728. {
  47729. name: "Mini-Macro",
  47730. height: math.unit(24 + 9/12, "feet")
  47731. },
  47732. {
  47733. name: "Macro",
  47734. height: math.unit(249, "feet")
  47735. },
  47736. {
  47737. name: "Mega-Macro",
  47738. height: math.unit(12490, "feet")
  47739. },
  47740. {
  47741. name: "Giga-Macro",
  47742. height: math.unit(24.9, "miles")
  47743. },
  47744. {
  47745. name: "Tera-Macro",
  47746. height: math.unit(24900, "miles")
  47747. },
  47748. {
  47749. name: "Cosmic Scale",
  47750. height: math.unit(38.9, "lightyears")
  47751. },
  47752. {
  47753. name: "Universal Scale",
  47754. height: math.unit(138e12, "lightyears")
  47755. },
  47756. ]
  47757. ))
  47758. characterMakers.push(() => makeCharacter(
  47759. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47760. {
  47761. front: {
  47762. height: math.unit(1561, "inches"),
  47763. name: "Front",
  47764. image: {
  47765. source: "./media/characters/ivan/front.svg",
  47766. extra: 1126/1071,
  47767. bottom: 26/1152
  47768. }
  47769. },
  47770. back: {
  47771. height: math.unit(1561, "inches"),
  47772. name: "Back",
  47773. image: {
  47774. source: "./media/characters/ivan/back.svg",
  47775. extra: 1134/1079,
  47776. bottom: 30/1164
  47777. }
  47778. },
  47779. },
  47780. [
  47781. {
  47782. name: "Normal",
  47783. height: math.unit(1561, "inches"),
  47784. default: true
  47785. },
  47786. ]
  47787. ))
  47788. characterMakers.push(() => makeCharacter(
  47789. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47790. {
  47791. front: {
  47792. height: math.unit(5 + 7/12, "feet"),
  47793. weight: math.unit(150, "lb"),
  47794. name: "Front",
  47795. image: {
  47796. source: "./media/characters/robin-arctic-hare/front.svg",
  47797. extra: 1148/974,
  47798. bottom: 20/1168
  47799. }
  47800. },
  47801. },
  47802. [
  47803. {
  47804. name: "Normal",
  47805. height: math.unit(5 + 7/12, "feet"),
  47806. default: true
  47807. },
  47808. ]
  47809. ))
  47810. characterMakers.push(() => makeCharacter(
  47811. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47812. {
  47813. side: {
  47814. height: math.unit(5, "feet"),
  47815. name: "Side",
  47816. image: {
  47817. source: "./media/characters/birch/side.svg",
  47818. extra: 985/796,
  47819. bottom: 111/1096
  47820. }
  47821. },
  47822. },
  47823. [
  47824. {
  47825. name: "Normal",
  47826. height: math.unit(5, "feet"),
  47827. default: true
  47828. },
  47829. ]
  47830. ))
  47831. characterMakers.push(() => makeCharacter(
  47832. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47833. {
  47834. front: {
  47835. height: math.unit(4, "feet"),
  47836. name: "Front",
  47837. image: {
  47838. source: "./media/characters/rasp/front.svg",
  47839. extra: 561/478,
  47840. bottom: 74/635
  47841. }
  47842. },
  47843. },
  47844. [
  47845. {
  47846. name: "Normal",
  47847. height: math.unit(4, "feet"),
  47848. default: true
  47849. },
  47850. ]
  47851. ))
  47852. characterMakers.push(() => makeCharacter(
  47853. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47854. {
  47855. front: {
  47856. height: math.unit(4 + 6/12, "feet"),
  47857. name: "Front",
  47858. image: {
  47859. source: "./media/characters/agatha/front.svg",
  47860. extra: 947/933,
  47861. bottom: 42/989
  47862. }
  47863. },
  47864. back: {
  47865. height: math.unit(4 + 6/12, "feet"),
  47866. name: "Back",
  47867. image: {
  47868. source: "./media/characters/agatha/back.svg",
  47869. extra: 935/922,
  47870. bottom: 48/983
  47871. }
  47872. },
  47873. },
  47874. [
  47875. {
  47876. name: "Normal",
  47877. height: math.unit(4 + 6 /12, "feet"),
  47878. default: true
  47879. },
  47880. {
  47881. name: "Max Size",
  47882. height: math.unit(500, "feet")
  47883. },
  47884. ]
  47885. ))
  47886. characterMakers.push(() => makeCharacter(
  47887. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47888. {
  47889. side: {
  47890. height: math.unit(30, "feet"),
  47891. name: "Side",
  47892. image: {
  47893. source: "./media/characters/roggy/side.svg",
  47894. extra: 909/643,
  47895. bottom: 63/972
  47896. }
  47897. },
  47898. lounging: {
  47899. height: math.unit(20, "feet"),
  47900. name: "Lounging",
  47901. image: {
  47902. source: "./media/characters/roggy/lounging.svg",
  47903. extra: 643/479,
  47904. bottom: 145/788
  47905. }
  47906. },
  47907. handpaw: {
  47908. height: math.unit(13.1, "feet"),
  47909. name: "Handpaw",
  47910. image: {
  47911. source: "./media/characters/roggy/handpaw.svg"
  47912. }
  47913. },
  47914. footpaw: {
  47915. height: math.unit(15.8, "feet"),
  47916. name: "Footpaw",
  47917. image: {
  47918. source: "./media/characters/roggy/footpaw.svg"
  47919. }
  47920. },
  47921. },
  47922. [
  47923. {
  47924. name: "Menacing",
  47925. height: math.unit(30, "feet"),
  47926. default: true
  47927. },
  47928. ]
  47929. ))
  47930. characterMakers.push(() => makeCharacter(
  47931. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47932. {
  47933. front: {
  47934. height: math.unit(5 + 7/12, "feet"),
  47935. weight: math.unit(135, "lb"),
  47936. name: "Front",
  47937. image: {
  47938. source: "./media/characters/naomi/front.svg",
  47939. extra: 1209/1154,
  47940. bottom: 129/1338
  47941. }
  47942. },
  47943. back: {
  47944. height: math.unit(5 + 7/12, "feet"),
  47945. weight: math.unit(135, "lb"),
  47946. name: "Back",
  47947. image: {
  47948. source: "./media/characters/naomi/back.svg",
  47949. extra: 1252/1190,
  47950. bottom: 23/1275
  47951. }
  47952. },
  47953. },
  47954. [
  47955. {
  47956. name: "Normal",
  47957. height: math.unit(5 + 7 /12, "feet"),
  47958. default: true
  47959. },
  47960. ]
  47961. ))
  47962. characterMakers.push(() => makeCharacter(
  47963. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47964. {
  47965. side: {
  47966. height: math.unit(35, "meters"),
  47967. name: "Side",
  47968. image: {
  47969. source: "./media/characters/kimpi/side.svg",
  47970. extra: 419/382,
  47971. bottom: 63/482
  47972. }
  47973. },
  47974. hand: {
  47975. height: math.unit(8.96, "meters"),
  47976. name: "Hand",
  47977. image: {
  47978. source: "./media/characters/kimpi/hand.svg"
  47979. }
  47980. },
  47981. },
  47982. [
  47983. {
  47984. name: "Normal",
  47985. height: math.unit(35, "meters"),
  47986. default: true
  47987. },
  47988. ]
  47989. ))
  47990. characterMakers.push(() => makeCharacter(
  47991. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47992. {
  47993. front: {
  47994. height: math.unit(4 + 4/12, "feet"),
  47995. name: "Front",
  47996. image: {
  47997. source: "./media/characters/pepper-purrloin/front.svg",
  47998. extra: 1141/1024,
  47999. bottom: 21/1162
  48000. }
  48001. },
  48002. },
  48003. [
  48004. {
  48005. name: "Normal",
  48006. height: math.unit(4 + 4/12, "feet"),
  48007. default: true
  48008. },
  48009. ]
  48010. ))
  48011. characterMakers.push(() => makeCharacter(
  48012. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48013. {
  48014. front: {
  48015. height: math.unit(6 + 2/12, "feet"),
  48016. name: "Front",
  48017. image: {
  48018. source: "./media/characters/raphael/front.svg",
  48019. extra: 1101/962,
  48020. bottom: 59/1160
  48021. }
  48022. },
  48023. },
  48024. [
  48025. {
  48026. name: "Normal",
  48027. height: math.unit(6 + 2/12, "feet"),
  48028. default: true
  48029. },
  48030. ]
  48031. ))
  48032. characterMakers.push(() => makeCharacter(
  48033. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48034. {
  48035. front: {
  48036. height: math.unit(6, "feet"),
  48037. weight: math.unit(150, "lb"),
  48038. name: "Front",
  48039. image: {
  48040. source: "./media/characters/victor-williams/front.svg",
  48041. extra: 1894/1825,
  48042. bottom: 67/1961
  48043. }
  48044. },
  48045. },
  48046. [
  48047. {
  48048. name: "Normal",
  48049. height: math.unit(6, "feet"),
  48050. default: true
  48051. },
  48052. ]
  48053. ))
  48054. characterMakers.push(() => makeCharacter(
  48055. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48056. {
  48057. front: {
  48058. height: math.unit(5 + 8/12, "feet"),
  48059. weight: math.unit(150, "lb"),
  48060. name: "Front",
  48061. image: {
  48062. source: "./media/characters/rachel/front.svg",
  48063. extra: 1902/1787,
  48064. bottom: 46/1948
  48065. }
  48066. },
  48067. },
  48068. [
  48069. {
  48070. name: "Base Height",
  48071. height: math.unit(5 + 8/12, "feet"),
  48072. default: true
  48073. },
  48074. {
  48075. name: "Macro",
  48076. height: math.unit(200, "feet")
  48077. },
  48078. {
  48079. name: "Mega Macro",
  48080. height: math.unit(1, "mile")
  48081. },
  48082. {
  48083. name: "Giga Macro",
  48084. height: math.unit(1500, "miles")
  48085. },
  48086. {
  48087. name: "Tera Macro",
  48088. height: math.unit(8000, "miles")
  48089. },
  48090. {
  48091. name: "Tera Macro+",
  48092. height: math.unit(2e5, "miles")
  48093. },
  48094. ]
  48095. ))
  48096. characterMakers.push(() => makeCharacter(
  48097. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48098. {
  48099. front: {
  48100. height: math.unit(6.5, "feet"),
  48101. name: "Front",
  48102. image: {
  48103. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48104. extra: 860/819,
  48105. bottom: 307/1167
  48106. }
  48107. },
  48108. back: {
  48109. height: math.unit(6.5, "feet"),
  48110. name: "Back",
  48111. image: {
  48112. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48113. extra: 880/837,
  48114. bottom: 395/1275
  48115. }
  48116. },
  48117. sleeping: {
  48118. height: math.unit(2.79, "feet"),
  48119. name: "Sleeping",
  48120. image: {
  48121. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48122. extra: 465/383,
  48123. bottom: 263/728
  48124. }
  48125. },
  48126. maw: {
  48127. height: math.unit(2.52, "feet"),
  48128. name: "Maw",
  48129. image: {
  48130. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48131. }
  48132. },
  48133. },
  48134. [
  48135. {
  48136. name: "Normal",
  48137. height: math.unit(6.5, "feet"),
  48138. default: true
  48139. },
  48140. ]
  48141. ))
  48142. characterMakers.push(() => makeCharacter(
  48143. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48144. {
  48145. front: {
  48146. height: math.unit(5, "feet"),
  48147. name: "Front",
  48148. image: {
  48149. source: "./media/characters/nova-nerium/front.svg",
  48150. extra: 1548/1392,
  48151. bottom: 374/1922
  48152. }
  48153. },
  48154. back: {
  48155. height: math.unit(5, "feet"),
  48156. name: "Back",
  48157. image: {
  48158. source: "./media/characters/nova-nerium/back.svg",
  48159. extra: 1658/1468,
  48160. bottom: 257/1915
  48161. }
  48162. },
  48163. },
  48164. [
  48165. {
  48166. name: "Normal",
  48167. height: math.unit(5, "feet"),
  48168. default: true
  48169. },
  48170. ]
  48171. ))
  48172. characterMakers.push(() => makeCharacter(
  48173. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48174. {
  48175. front: {
  48176. height: math.unit(5 + 4/12, "feet"),
  48177. name: "Front",
  48178. image: {
  48179. source: "./media/characters/ashe-pyriph/front.svg",
  48180. extra: 1935/1747,
  48181. bottom: 60/1995
  48182. }
  48183. },
  48184. },
  48185. [
  48186. {
  48187. name: "Normal",
  48188. height: math.unit(5 + 4/12, "feet"),
  48189. default: true
  48190. },
  48191. ]
  48192. ))
  48193. characterMakers.push(() => makeCharacter(
  48194. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48195. {
  48196. front: {
  48197. height: math.unit(8.7, "feet"),
  48198. name: "Front",
  48199. image: {
  48200. source: "./media/characters/flicker-wisp/front.svg",
  48201. extra: 1835/1613,
  48202. bottom: 449/2284
  48203. }
  48204. },
  48205. side: {
  48206. height: math.unit(8.7, "feet"),
  48207. name: "Side",
  48208. image: {
  48209. source: "./media/characters/flicker-wisp/side.svg",
  48210. extra: 1841/1642,
  48211. bottom: 336/2177
  48212. },
  48213. default: true
  48214. },
  48215. maw: {
  48216. height: math.unit(3.35, "feet"),
  48217. name: "Maw",
  48218. image: {
  48219. source: "./media/characters/flicker-wisp/maw.svg",
  48220. extra: 2338/1506,
  48221. bottom: 0/2338
  48222. }
  48223. },
  48224. ovipositor: {
  48225. height: math.unit(4.95, "feet"),
  48226. name: "Ovipositor",
  48227. image: {
  48228. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48229. }
  48230. },
  48231. egg: {
  48232. height: math.unit(0.385, "feet"),
  48233. weight: math.unit(2, "lb"),
  48234. name: "Egg",
  48235. image: {
  48236. source: "./media/characters/flicker-wisp/egg.svg"
  48237. }
  48238. },
  48239. },
  48240. [
  48241. {
  48242. name: "Normal",
  48243. height: math.unit(8.7, "feet"),
  48244. default: true
  48245. },
  48246. ]
  48247. ))
  48248. characterMakers.push(() => makeCharacter(
  48249. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48250. {
  48251. side: {
  48252. height: math.unit(11, "feet"),
  48253. name: "Side",
  48254. image: {
  48255. source: "./media/characters/faefnul/side.svg",
  48256. extra: 1100/1007,
  48257. bottom: 0/1100
  48258. }
  48259. },
  48260. },
  48261. [
  48262. {
  48263. name: "Normal",
  48264. height: math.unit(11, "feet"),
  48265. default: true
  48266. },
  48267. ]
  48268. ))
  48269. characterMakers.push(() => makeCharacter(
  48270. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48271. {
  48272. front: {
  48273. height: math.unit(6 + 2/12, "feet"),
  48274. name: "Front",
  48275. image: {
  48276. source: "./media/characters/shady/front.svg",
  48277. extra: 502/461,
  48278. bottom: 9/511
  48279. }
  48280. },
  48281. kneeling: {
  48282. height: math.unit(4.6, "feet"),
  48283. name: "Kneeling",
  48284. image: {
  48285. source: "./media/characters/shady/kneeling.svg",
  48286. extra: 1328/1219,
  48287. bottom: 117/1445
  48288. }
  48289. },
  48290. maw: {
  48291. height: math.unit(2, "feet"),
  48292. name: "Maw",
  48293. image: {
  48294. source: "./media/characters/shady/maw.svg"
  48295. }
  48296. },
  48297. },
  48298. [
  48299. {
  48300. name: "Nano",
  48301. height: math.unit(1, "mm")
  48302. },
  48303. {
  48304. name: "Micro",
  48305. height: math.unit(12, "mm")
  48306. },
  48307. {
  48308. name: "Tiny",
  48309. height: math.unit(3, "inches")
  48310. },
  48311. {
  48312. name: "Normal",
  48313. height: math.unit(6 + 2/12, "feet"),
  48314. default: true
  48315. },
  48316. {
  48317. name: "Big",
  48318. height: math.unit(15, "feet")
  48319. },
  48320. {
  48321. name: "Macro",
  48322. height: math.unit(150, "feet")
  48323. },
  48324. {
  48325. name: "Titanic",
  48326. height: math.unit(500, "feet")
  48327. },
  48328. ]
  48329. ))
  48330. characterMakers.push(() => makeCharacter(
  48331. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48332. {
  48333. front: {
  48334. height: math.unit(12, "feet"),
  48335. name: "Front",
  48336. image: {
  48337. source: "./media/characters/fenrir/front.svg",
  48338. extra: 968/875,
  48339. bottom: 22/990
  48340. }
  48341. },
  48342. },
  48343. [
  48344. {
  48345. name: "Big",
  48346. height: math.unit(12, "feet"),
  48347. default: true
  48348. },
  48349. ]
  48350. ))
  48351. characterMakers.push(() => makeCharacter(
  48352. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48353. {
  48354. front: {
  48355. height: math.unit(5 + 4/12, "feet"),
  48356. name: "Front",
  48357. image: {
  48358. source: "./media/characters/makar/front.svg",
  48359. extra: 1181/1112,
  48360. bottom: 78/1259
  48361. }
  48362. },
  48363. },
  48364. [
  48365. {
  48366. name: "Normal",
  48367. height: math.unit(5 + 4/12, "feet"),
  48368. default: true
  48369. },
  48370. ]
  48371. ))
  48372. characterMakers.push(() => makeCharacter(
  48373. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48374. {
  48375. front: {
  48376. height: math.unit(5 + 7/12, "feet"),
  48377. name: "Front",
  48378. image: {
  48379. source: "./media/characters/callow/front.svg",
  48380. extra: 1482/1304,
  48381. bottom: 23/1505
  48382. }
  48383. },
  48384. back: {
  48385. height: math.unit(5 + 7/12, "feet"),
  48386. name: "Back",
  48387. image: {
  48388. source: "./media/characters/callow/back.svg",
  48389. extra: 1484/1296,
  48390. bottom: 25/1509
  48391. }
  48392. },
  48393. },
  48394. [
  48395. {
  48396. name: "Micro",
  48397. height: math.unit(3, "inches"),
  48398. default: true
  48399. },
  48400. {
  48401. name: "Normal",
  48402. height: math.unit(5 + 7/12, "feet")
  48403. },
  48404. ]
  48405. ))
  48406. characterMakers.push(() => makeCharacter(
  48407. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48408. {
  48409. front: {
  48410. height: math.unit(6 + 2/12, "feet"),
  48411. name: "Front",
  48412. image: {
  48413. source: "./media/characters/natel/front.svg",
  48414. extra: 1833/1692,
  48415. bottom: 166/1999
  48416. }
  48417. },
  48418. },
  48419. [
  48420. {
  48421. name: "Normal",
  48422. height: math.unit(6 + 2/12, "feet"),
  48423. default: true
  48424. },
  48425. ]
  48426. ))
  48427. characterMakers.push(() => makeCharacter(
  48428. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48429. {
  48430. front: {
  48431. height: math.unit(1.75, "meters"),
  48432. name: "Front",
  48433. image: {
  48434. source: "./media/characters/misu/front.svg",
  48435. extra: 1690/1558,
  48436. bottom: 234/1924
  48437. }
  48438. },
  48439. back: {
  48440. height: math.unit(1.75, "meters"),
  48441. name: "Back",
  48442. image: {
  48443. source: "./media/characters/misu/back.svg",
  48444. extra: 1762/1618,
  48445. bottom: 146/1908
  48446. }
  48447. },
  48448. frontNude: {
  48449. height: math.unit(1.75, "meters"),
  48450. name: "Front (Nude)",
  48451. image: {
  48452. source: "./media/characters/misu/front-nude.svg",
  48453. extra: 1690/1558,
  48454. bottom: 234/1924
  48455. }
  48456. },
  48457. backNude: {
  48458. height: math.unit(1.75, "meters"),
  48459. name: "Back (Nude)",
  48460. image: {
  48461. source: "./media/characters/misu/back-nude.svg",
  48462. extra: 1762/1618,
  48463. bottom: 146/1908
  48464. }
  48465. },
  48466. frontErect: {
  48467. height: math.unit(1.75, "meters"),
  48468. name: "Front (Erect)",
  48469. image: {
  48470. source: "./media/characters/misu/front-erect.svg",
  48471. extra: 1690/1558,
  48472. bottom: 234/1924
  48473. }
  48474. },
  48475. maw: {
  48476. height: math.unit(0.47, "meters"),
  48477. name: "Maw",
  48478. image: {
  48479. source: "./media/characters/misu/maw.svg"
  48480. }
  48481. },
  48482. head: {
  48483. height: math.unit(0.35, "meters"),
  48484. name: "Head",
  48485. image: {
  48486. source: "./media/characters/misu/head.svg"
  48487. }
  48488. },
  48489. rear: {
  48490. height: math.unit(0.47, "meters"),
  48491. name: "Rear",
  48492. image: {
  48493. source: "./media/characters/misu/rear.svg"
  48494. }
  48495. },
  48496. },
  48497. [
  48498. {
  48499. name: "Normal",
  48500. height: math.unit(1.75, "meters")
  48501. },
  48502. {
  48503. name: "Not good for the people",
  48504. height: math.unit(42, "meters")
  48505. },
  48506. {
  48507. name: "Not good for the neighborhood",
  48508. height: math.unit(135, "meters")
  48509. },
  48510. {
  48511. name: "Bit bigger problem",
  48512. height: math.unit(380, "meters"),
  48513. default: true
  48514. },
  48515. {
  48516. name: "Not good for the city",
  48517. height: math.unit(1.5, "km")
  48518. },
  48519. {
  48520. name: "Not good for the county",
  48521. height: math.unit(5.5, "km")
  48522. },
  48523. {
  48524. name: "Not good for the state",
  48525. height: math.unit(25, "km")
  48526. },
  48527. {
  48528. name: "Not good for the country",
  48529. height: math.unit(125, "km")
  48530. },
  48531. {
  48532. name: "Not good for the continent",
  48533. height: math.unit(2100, "km")
  48534. },
  48535. {
  48536. name: "Not good for the planet",
  48537. height: math.unit(35000, "km")
  48538. },
  48539. {
  48540. name: "Just no",
  48541. height: math.unit(8.5e18, "km")
  48542. },
  48543. ]
  48544. ))
  48545. characterMakers.push(() => makeCharacter(
  48546. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48547. {
  48548. front: {
  48549. height: math.unit(6.5, "feet"),
  48550. name: "Front",
  48551. image: {
  48552. source: "./media/characters/poppy/front.svg",
  48553. extra: 1878/1812,
  48554. bottom: 43/1921
  48555. }
  48556. },
  48557. feet: {
  48558. height: math.unit(1.06, "feet"),
  48559. name: "Feet",
  48560. image: {
  48561. source: "./media/characters/poppy/feet.svg",
  48562. extra: 1083/1083,
  48563. bottom: 87/1170
  48564. }
  48565. },
  48566. },
  48567. [
  48568. {
  48569. name: "Human",
  48570. height: math.unit(6.5, "feet")
  48571. },
  48572. {
  48573. name: "Default",
  48574. height: math.unit(300, "feet"),
  48575. default: true
  48576. },
  48577. {
  48578. name: "Huge",
  48579. height: math.unit(850, "feet")
  48580. },
  48581. {
  48582. name: "Mega",
  48583. height: math.unit(8000, "feet")
  48584. },
  48585. {
  48586. name: "Giga",
  48587. height: math.unit(300, "miles")
  48588. },
  48589. ]
  48590. ))
  48591. characterMakers.push(() => makeCharacter(
  48592. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48593. {
  48594. bipedal: {
  48595. height: math.unit(7, "feet"),
  48596. name: "Bipedal",
  48597. image: {
  48598. source: "./media/characters/zener/bipedal.svg",
  48599. extra: 874/805,
  48600. bottom: 109/983
  48601. }
  48602. },
  48603. quadrupedal: {
  48604. height: math.unit(4.64, "feet"),
  48605. name: "Quadrupedal",
  48606. image: {
  48607. source: "./media/characters/zener/quadrupedal.svg",
  48608. extra: 638/507,
  48609. bottom: 190/828
  48610. }
  48611. },
  48612. cock: {
  48613. height: math.unit(18, "inches"),
  48614. name: "Cock",
  48615. image: {
  48616. source: "./media/characters/zener/cock.svg"
  48617. }
  48618. },
  48619. },
  48620. [
  48621. {
  48622. name: "Normal",
  48623. height: math.unit(7, "feet"),
  48624. default: true
  48625. },
  48626. ]
  48627. ))
  48628. characterMakers.push(() => makeCharacter(
  48629. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48630. {
  48631. nude: {
  48632. height: math.unit(5 + 6/12, "feet"),
  48633. name: "Nude",
  48634. image: {
  48635. source: "./media/characters/charlie-dog/nude.svg",
  48636. extra: 768/734,
  48637. bottom: 26/794
  48638. }
  48639. },
  48640. dressed: {
  48641. height: math.unit(5 + 6/12, "feet"),
  48642. name: "Dressed",
  48643. image: {
  48644. source: "./media/characters/charlie-dog/dressed.svg",
  48645. extra: 768/734,
  48646. bottom: 26/794
  48647. }
  48648. },
  48649. },
  48650. [
  48651. {
  48652. name: "Normal",
  48653. height: math.unit(5 + 6/12, "feet"),
  48654. default: true
  48655. },
  48656. ]
  48657. ))
  48658. characterMakers.push(() => makeCharacter(
  48659. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48660. {
  48661. front: {
  48662. height: math.unit(6 + 4/12, "feet"),
  48663. name: "Front",
  48664. image: {
  48665. source: "./media/characters/ir'istrasz/front.svg",
  48666. extra: 1014/977,
  48667. bottom: 65/1079
  48668. }
  48669. },
  48670. back: {
  48671. height: math.unit(6 + 4/12, "feet"),
  48672. name: "Back",
  48673. image: {
  48674. source: "./media/characters/ir'istrasz/back.svg",
  48675. extra: 1024/992,
  48676. bottom: 34/1058
  48677. }
  48678. },
  48679. },
  48680. [
  48681. {
  48682. name: "Normal",
  48683. height: math.unit(6 + 4/12, "feet"),
  48684. default: true
  48685. },
  48686. ]
  48687. ))
  48688. characterMakers.push(() => makeCharacter(
  48689. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48690. {
  48691. front: {
  48692. height: math.unit(5 + 8/12, "feet"),
  48693. name: "Front",
  48694. image: {
  48695. source: "./media/characters/dee-ditto/front.svg",
  48696. extra: 1874/1785,
  48697. bottom: 68/1942
  48698. }
  48699. },
  48700. back: {
  48701. height: math.unit(5 + 8/12, "feet"),
  48702. name: "Back",
  48703. image: {
  48704. source: "./media/characters/dee-ditto/back.svg",
  48705. extra: 1870/1783,
  48706. bottom: 77/1947
  48707. }
  48708. },
  48709. },
  48710. [
  48711. {
  48712. name: "Normal",
  48713. height: math.unit(5 + 8/12, "feet"),
  48714. default: true
  48715. },
  48716. ]
  48717. ))
  48718. characterMakers.push(() => makeCharacter(
  48719. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48720. {
  48721. front: {
  48722. height: math.unit(7 + 6/12, "feet"),
  48723. name: "Front",
  48724. image: {
  48725. source: "./media/characters/fey/front.svg",
  48726. extra: 995/979,
  48727. bottom: 30/1025
  48728. }
  48729. },
  48730. back: {
  48731. height: math.unit(7 + 6/12, "feet"),
  48732. name: "Back",
  48733. image: {
  48734. source: "./media/characters/fey/back.svg",
  48735. extra: 1079/1008,
  48736. bottom: 5/1084
  48737. }
  48738. },
  48739. dressed: {
  48740. height: math.unit(7 + 6/12, "feet"),
  48741. name: "Dressed",
  48742. image: {
  48743. source: "./media/characters/fey/dressed.svg",
  48744. extra: 995/979,
  48745. bottom: 30/1025
  48746. }
  48747. },
  48748. },
  48749. [
  48750. {
  48751. name: "Normal",
  48752. height: math.unit(7 + 6/12, "feet"),
  48753. default: true
  48754. },
  48755. ]
  48756. ))
  48757. characterMakers.push(() => makeCharacter(
  48758. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48759. {
  48760. standing: {
  48761. height: math.unit(17, "feet"),
  48762. name: "Standing",
  48763. image: {
  48764. source: "./media/characters/aster/standing.svg",
  48765. extra: 1798/1598,
  48766. bottom: 117/1915
  48767. }
  48768. },
  48769. },
  48770. [
  48771. {
  48772. name: "Normal",
  48773. height: math.unit(17, "feet"),
  48774. default: true
  48775. },
  48776. {
  48777. name: "Homewrecker",
  48778. height: math.unit(95, "feet")
  48779. },
  48780. {
  48781. name: "Planet Devourer",
  48782. height: math.unit(1008000, "miles")
  48783. },
  48784. ]
  48785. ))
  48786. characterMakers.push(() => makeCharacter(
  48787. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48788. {
  48789. front: {
  48790. height: math.unit(6 + 5/12, "feet"),
  48791. weight: math.unit(265, "lb"),
  48792. name: "Front",
  48793. image: {
  48794. source: "./media/characters/devon-childs/front.svg",
  48795. extra: 1795/1721,
  48796. bottom: 41/1836
  48797. }
  48798. },
  48799. side: {
  48800. height: math.unit(6 + 5/12, "feet"),
  48801. weight: math.unit(265, "lb"),
  48802. name: "Side",
  48803. image: {
  48804. source: "./media/characters/devon-childs/side.svg",
  48805. extra: 1812/1738,
  48806. bottom: 30/1842
  48807. }
  48808. },
  48809. back: {
  48810. height: math.unit(6 + 5/12, "feet"),
  48811. weight: math.unit(265, "lb"),
  48812. name: "Back",
  48813. image: {
  48814. source: "./media/characters/devon-childs/back.svg",
  48815. extra: 1808/1735,
  48816. bottom: 23/1831
  48817. }
  48818. },
  48819. hand: {
  48820. height: math.unit(1.464, "feet"),
  48821. name: "Hand",
  48822. image: {
  48823. source: "./media/characters/devon-childs/hand.svg"
  48824. }
  48825. },
  48826. foot: {
  48827. height: math.unit(1.6, "feet"),
  48828. name: "Foot",
  48829. image: {
  48830. source: "./media/characters/devon-childs/foot.svg"
  48831. }
  48832. },
  48833. },
  48834. [
  48835. {
  48836. name: "Micro",
  48837. height: math.unit(7, "cm")
  48838. },
  48839. {
  48840. name: "Normal",
  48841. height: math.unit(6 + 5/12, "feet"),
  48842. default: true
  48843. },
  48844. {
  48845. name: "Macro",
  48846. height: math.unit(154, "feet")
  48847. },
  48848. ]
  48849. ))
  48850. characterMakers.push(() => makeCharacter(
  48851. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48852. {
  48853. front: {
  48854. height: math.unit(6, "feet"),
  48855. weight: math.unit(180, "lb"),
  48856. name: "Front",
  48857. image: {
  48858. source: "./media/characters/lydemox-vir/front.svg",
  48859. extra: 1632/1435,
  48860. bottom: 58/1690
  48861. }
  48862. },
  48863. frontSFW: {
  48864. height: math.unit(6, "feet"),
  48865. weight: math.unit(180, "lb"),
  48866. name: "Front (SFW)",
  48867. image: {
  48868. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48869. extra: 1632/1435,
  48870. bottom: 58/1690
  48871. }
  48872. },
  48873. back: {
  48874. height: math.unit(6, "feet"),
  48875. weight: math.unit(180, "lb"),
  48876. name: "Back",
  48877. image: {
  48878. source: "./media/characters/lydemox-vir/back.svg",
  48879. extra: 1593/1408,
  48880. bottom: 31/1624
  48881. }
  48882. },
  48883. paw: {
  48884. height: math.unit(1.85, "feet"),
  48885. name: "Paw",
  48886. image: {
  48887. source: "./media/characters/lydemox-vir/paw.svg"
  48888. }
  48889. },
  48890. dick: {
  48891. height: math.unit(1.8, "feet"),
  48892. name: "Dick",
  48893. image: {
  48894. source: "./media/characters/lydemox-vir/dick.svg"
  48895. }
  48896. },
  48897. },
  48898. [
  48899. {
  48900. name: "Macro",
  48901. height: math.unit(100, "feet"),
  48902. default: true
  48903. },
  48904. {
  48905. name: "Teramacro",
  48906. height: math.unit(1, "earth")
  48907. },
  48908. {
  48909. name: "Planetary",
  48910. height: math.unit(20, "earths")
  48911. },
  48912. ]
  48913. ))
  48914. characterMakers.push(() => makeCharacter(
  48915. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48916. {
  48917. front: {
  48918. height: math.unit(15 + 8/12, "feet"),
  48919. weight: math.unit(1237, "kg"),
  48920. name: "Front",
  48921. image: {
  48922. source: "./media/characters/mia/front.svg",
  48923. extra: 1573/1446,
  48924. bottom: 58/1631
  48925. }
  48926. },
  48927. },
  48928. [
  48929. {
  48930. name: "Small",
  48931. height: math.unit(9 + 5/12, "feet")
  48932. },
  48933. {
  48934. name: "Normal",
  48935. height: math.unit(15 + 8/12, "feet"),
  48936. default: true
  48937. },
  48938. ]
  48939. ))
  48940. characterMakers.push(() => makeCharacter(
  48941. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48942. {
  48943. front: {
  48944. height: math.unit(10 + 6/12, "feet"),
  48945. weight: math.unit(1.3, "tons"),
  48946. name: "Front",
  48947. image: {
  48948. source: "./media/characters/mr-graves/front.svg",
  48949. extra: 1779/1695,
  48950. bottom: 198/1977
  48951. }
  48952. },
  48953. },
  48954. [
  48955. {
  48956. name: "Normal",
  48957. height: math.unit(10 + 6 /12, "feet"),
  48958. default: true
  48959. },
  48960. ]
  48961. ))
  48962. characterMakers.push(() => makeCharacter(
  48963. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48964. {
  48965. dressedFront: {
  48966. height: math.unit(5 + 8/12, "feet"),
  48967. weight: math.unit(125, "lb"),
  48968. name: "Dressed (Front)",
  48969. image: {
  48970. source: "./media/characters/jess/dressed-front.svg",
  48971. extra: 1176/1152,
  48972. bottom: 42/1218
  48973. }
  48974. },
  48975. dressedSide: {
  48976. height: math.unit(5 + 8/12, "feet"),
  48977. weight: math.unit(125, "lb"),
  48978. name: "Dressed (Side)",
  48979. image: {
  48980. source: "./media/characters/jess/dressed-side.svg",
  48981. extra: 1204/1190,
  48982. bottom: 6/1210
  48983. }
  48984. },
  48985. nudeFront: {
  48986. height: math.unit(5 + 8/12, "feet"),
  48987. weight: math.unit(125, "lb"),
  48988. name: "Nude (Front)",
  48989. image: {
  48990. source: "./media/characters/jess/nude-front.svg",
  48991. extra: 1176/1152,
  48992. bottom: 42/1218
  48993. }
  48994. },
  48995. nudeSide: {
  48996. height: math.unit(5 + 8/12, "feet"),
  48997. weight: math.unit(125, "lb"),
  48998. name: "Nude (Side)",
  48999. image: {
  49000. source: "./media/characters/jess/nude-side.svg",
  49001. extra: 1204/1190,
  49002. bottom: 6/1210
  49003. }
  49004. },
  49005. organsFront: {
  49006. height: math.unit(2.83799342105, "feet"),
  49007. name: "Organs (Front)",
  49008. image: {
  49009. source: "./media/characters/jess/organs-front.svg"
  49010. }
  49011. },
  49012. organsSide: {
  49013. height: math.unit(2.64225290474, "feet"),
  49014. name: "Organs (Side)",
  49015. image: {
  49016. source: "./media/characters/jess/organs-side.svg"
  49017. }
  49018. },
  49019. digestiveTractFront: {
  49020. height: math.unit(2.8106580871, "feet"),
  49021. name: "Digestive Tract (Front)",
  49022. image: {
  49023. source: "./media/characters/jess/digestive-tract-front.svg"
  49024. }
  49025. },
  49026. digestiveTractSide: {
  49027. height: math.unit(2.54365045014, "feet"),
  49028. name: "Digestive Tract (Side)",
  49029. image: {
  49030. source: "./media/characters/jess/digestive-tract-side.svg"
  49031. }
  49032. },
  49033. respiratorySystemFront: {
  49034. height: math.unit(1.11196233456, "feet"),
  49035. name: "Respiratory System (Front)",
  49036. image: {
  49037. source: "./media/characters/jess/respiratory-system-front.svg"
  49038. }
  49039. },
  49040. respiratorySystemSide: {
  49041. height: math.unit(0.89327966297, "feet"),
  49042. name: "Respiratory System (Side)",
  49043. image: {
  49044. source: "./media/characters/jess/respiratory-system-side.svg"
  49045. }
  49046. },
  49047. urinaryTractFront: {
  49048. height: math.unit(1.16126356186, "feet"),
  49049. name: "Urinary Tract (Front)",
  49050. image: {
  49051. source: "./media/characters/jess/urinary-tract-front.svg"
  49052. }
  49053. },
  49054. urinaryTractSide: {
  49055. height: math.unit(1.20910039627, "feet"),
  49056. name: "Urinary Tract (Side)",
  49057. image: {
  49058. source: "./media/characters/jess/urinary-tract-side.svg"
  49059. }
  49060. },
  49061. reproductiveOrgansFront: {
  49062. height: math.unit(0.48422591566, "feet"),
  49063. name: "Reproductive Organs (Front)",
  49064. image: {
  49065. source: "./media/characters/jess/reproductive-organs-front.svg"
  49066. }
  49067. },
  49068. reproductiveOrgansSide: {
  49069. height: math.unit(0.61553314481, "feet"),
  49070. name: "Reproductive Organs (Side)",
  49071. image: {
  49072. source: "./media/characters/jess/reproductive-organs-side.svg"
  49073. }
  49074. },
  49075. breastsFront: {
  49076. height: math.unit(0.47690395121, "feet"),
  49077. name: "Breasts (Front)",
  49078. image: {
  49079. source: "./media/characters/jess/breasts-front.svg"
  49080. }
  49081. },
  49082. breastsSide: {
  49083. height: math.unit(0.30556998307, "feet"),
  49084. name: "Breasts (Side)",
  49085. image: {
  49086. source: "./media/characters/jess/breasts-side.svg"
  49087. }
  49088. },
  49089. heartFront: {
  49090. height: math.unit(0.53011022622, "feet"),
  49091. name: "Heart (Front)",
  49092. image: {
  49093. source: "./media/characters/jess/heart-front.svg"
  49094. }
  49095. },
  49096. heartSide: {
  49097. height: math.unit(0.51790695213, "feet"),
  49098. name: "Heart (Side)",
  49099. image: {
  49100. source: "./media/characters/jess/heart-side.svg"
  49101. }
  49102. },
  49103. earsAndNoseFront: {
  49104. height: math.unit(0.29385483995, "feet"),
  49105. name: "Ears and Nose (Front)",
  49106. image: {
  49107. source: "./media/characters/jess/ears-and-nose-front.svg"
  49108. }
  49109. },
  49110. earsAndNoseSide: {
  49111. height: math.unit(0.18109658741, "feet"),
  49112. name: "Ears and Nose (Side)",
  49113. image: {
  49114. source: "./media/characters/jess/ears-and-nose-side.svg"
  49115. }
  49116. },
  49117. },
  49118. [
  49119. {
  49120. name: "Normal",
  49121. height: math.unit(5 + 8/12, "feet"),
  49122. default: true
  49123. },
  49124. ]
  49125. ))
  49126. characterMakers.push(() => makeCharacter(
  49127. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49128. {
  49129. front: {
  49130. height: math.unit(6, "feet"),
  49131. weight: math.unit(6.64467e-7, "grams"),
  49132. name: "Front",
  49133. image: {
  49134. source: "./media/characters/wimpering/front.svg",
  49135. extra: 597/587,
  49136. bottom: 34/631
  49137. }
  49138. },
  49139. },
  49140. [
  49141. {
  49142. name: "Micro",
  49143. height: math.unit(0.4, "mm"),
  49144. default: true
  49145. },
  49146. ]
  49147. ))
  49148. characterMakers.push(() => makeCharacter(
  49149. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49150. {
  49151. front: {
  49152. height: math.unit(5 + 2/12, "feet"),
  49153. weight: math.unit(110, "lb"),
  49154. name: "Front",
  49155. image: {
  49156. source: "./media/characters/keltre/front.svg",
  49157. extra: 1099/1057,
  49158. bottom: 22/1121
  49159. }
  49160. },
  49161. back: {
  49162. height: math.unit(5 + 2/12, "feet"),
  49163. weight: math.unit(110, "lb"),
  49164. name: "Back",
  49165. image: {
  49166. source: "./media/characters/keltre/back.svg",
  49167. extra: 1095/1053,
  49168. bottom: 17/1112
  49169. }
  49170. },
  49171. dressed: {
  49172. height: math.unit(5 + 2/12, "feet"),
  49173. weight: math.unit(110, "lb"),
  49174. name: "Dressed",
  49175. image: {
  49176. source: "./media/characters/keltre/dressed.svg",
  49177. extra: 1099/1057,
  49178. bottom: 22/1121
  49179. }
  49180. },
  49181. winter: {
  49182. height: math.unit(5 + 2/12, "feet"),
  49183. weight: math.unit(110, "lb"),
  49184. name: "Winter",
  49185. image: {
  49186. source: "./media/characters/keltre/winter.svg",
  49187. extra: 1099/1057,
  49188. bottom: 22/1121
  49189. }
  49190. },
  49191. head: {
  49192. height: math.unit(1.61 * 0.86, "feet"),
  49193. name: "Head",
  49194. image: {
  49195. source: "./media/characters/keltre/head.svg",
  49196. extra: 534/421,
  49197. bottom: 0/534
  49198. }
  49199. },
  49200. hand: {
  49201. height: math.unit(1.3 * 0.86, "feet"),
  49202. name: "Hand",
  49203. image: {
  49204. source: "./media/characters/keltre/hand.svg"
  49205. }
  49206. },
  49207. foot: {
  49208. height: math.unit(1.8 * 0.86, "feet"),
  49209. name: "Foot",
  49210. image: {
  49211. source: "./media/characters/keltre/foot.svg"
  49212. }
  49213. },
  49214. },
  49215. [
  49216. {
  49217. name: "Fine",
  49218. height: math.unit(1, "inch")
  49219. },
  49220. {
  49221. name: "Dimnutive",
  49222. height: math.unit(4, "inches")
  49223. },
  49224. {
  49225. name: "Tiny",
  49226. height: math.unit(1, "foot")
  49227. },
  49228. {
  49229. name: "Small",
  49230. height: math.unit(3, "feet")
  49231. },
  49232. {
  49233. name: "Normal",
  49234. height: math.unit(5 + 2/12, "feet"),
  49235. default: true
  49236. },
  49237. ]
  49238. ))
  49239. characterMakers.push(() => makeCharacter(
  49240. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49241. {
  49242. front: {
  49243. height: math.unit(6 + 2/12, "feet"),
  49244. name: "Front",
  49245. image: {
  49246. source: "./media/characters/nox/front.svg",
  49247. extra: 1917/1830,
  49248. bottom: 74/1991
  49249. }
  49250. },
  49251. back: {
  49252. height: math.unit(6 + 2/12, "feet"),
  49253. name: "Back",
  49254. image: {
  49255. source: "./media/characters/nox/back.svg",
  49256. extra: 1896/1815,
  49257. bottom: 21/1917
  49258. }
  49259. },
  49260. head: {
  49261. height: math.unit(1.1, "feet"),
  49262. name: "Head",
  49263. image: {
  49264. source: "./media/characters/nox/head.svg",
  49265. extra: 874/704,
  49266. bottom: 0/874
  49267. }
  49268. },
  49269. tattoo: {
  49270. height: math.unit(0.729, "feet"),
  49271. name: "Tattoo",
  49272. image: {
  49273. source: "./media/characters/nox/tattoo.svg"
  49274. }
  49275. },
  49276. },
  49277. [
  49278. {
  49279. name: "Normal",
  49280. height: math.unit(6 + 2/12, "feet")
  49281. },
  49282. {
  49283. name: "Gigamacro",
  49284. height: math.unit(2, "earths"),
  49285. default: true
  49286. },
  49287. {
  49288. name: "Cosmic",
  49289. height: math.unit(867, "yottameters")
  49290. },
  49291. ]
  49292. ))
  49293. characterMakers.push(() => makeCharacter(
  49294. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49295. {
  49296. front: {
  49297. height: math.unit(6, "feet"),
  49298. weight: math.unit(150, "lb"),
  49299. name: "Front",
  49300. image: {
  49301. source: "./media/characters/caspian/front.svg",
  49302. extra: 1443/1359,
  49303. bottom: 0/1443
  49304. }
  49305. },
  49306. back: {
  49307. height: math.unit(6, "feet"),
  49308. weight: math.unit(150, "lb"),
  49309. name: "Back",
  49310. image: {
  49311. source: "./media/characters/caspian/back.svg",
  49312. extra: 1379/1309,
  49313. bottom: 0/1379
  49314. }
  49315. },
  49316. head: {
  49317. height: math.unit(0.9, "feet"),
  49318. name: "Head",
  49319. image: {
  49320. source: "./media/characters/caspian/head.svg",
  49321. extra: 692/492,
  49322. bottom: 0/692
  49323. }
  49324. },
  49325. headAlt: {
  49326. height: math.unit(0.95, "feet"),
  49327. name: "Head (Alt)",
  49328. image: {
  49329. source: "./media/characters/caspian/head-alt.svg",
  49330. extra: 668/508,
  49331. bottom: 0/668
  49332. }
  49333. },
  49334. hand: {
  49335. height: math.unit(0.8, "feet"),
  49336. name: "Hand",
  49337. image: {
  49338. source: "./media/characters/caspian/hand.svg"
  49339. }
  49340. },
  49341. paw: {
  49342. height: math.unit(0.95, "feet"),
  49343. name: "Paw",
  49344. image: {
  49345. source: "./media/characters/caspian/paw.svg"
  49346. }
  49347. },
  49348. },
  49349. [
  49350. {
  49351. name: "Normal",
  49352. height: math.unit(162, "feet"),
  49353. default: true
  49354. },
  49355. ]
  49356. ))
  49357. characterMakers.push(() => makeCharacter(
  49358. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49359. {
  49360. front: {
  49361. height: math.unit(6, "feet"),
  49362. name: "Front",
  49363. image: {
  49364. source: "./media/characters/myra-aisling/front.svg",
  49365. extra: 1268/1166,
  49366. bottom: 73/1341
  49367. }
  49368. },
  49369. back: {
  49370. height: math.unit(6, "feet"),
  49371. name: "Back",
  49372. image: {
  49373. source: "./media/characters/myra-aisling/back.svg",
  49374. extra: 1249/1149,
  49375. bottom: 79/1328
  49376. }
  49377. },
  49378. dressed: {
  49379. height: math.unit(6, "feet"),
  49380. name: "Dressed",
  49381. image: {
  49382. source: "./media/characters/myra-aisling/dressed.svg",
  49383. extra: 1290/1189,
  49384. bottom: 47/1337
  49385. }
  49386. },
  49387. hand: {
  49388. height: math.unit(1.1, "feet"),
  49389. name: "Hand",
  49390. image: {
  49391. source: "./media/characters/myra-aisling/hand.svg"
  49392. }
  49393. },
  49394. paw: {
  49395. height: math.unit(1.23, "feet"),
  49396. name: "Paw",
  49397. image: {
  49398. source: "./media/characters/myra-aisling/paw.svg"
  49399. }
  49400. },
  49401. },
  49402. [
  49403. {
  49404. name: "Normal",
  49405. height: math.unit(160, "feet"),
  49406. default: true
  49407. },
  49408. ]
  49409. ))
  49410. characterMakers.push(() => makeCharacter(
  49411. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49412. {
  49413. front: {
  49414. height: math.unit(6, "feet"),
  49415. name: "Front",
  49416. image: {
  49417. source: "./media/characters/tenley-sidero/front.svg",
  49418. extra: 1365/1276,
  49419. bottom: 47/1412
  49420. }
  49421. },
  49422. back: {
  49423. height: math.unit(6, "feet"),
  49424. name: "Back",
  49425. image: {
  49426. source: "./media/characters/tenley-sidero/back.svg",
  49427. extra: 1383/1283,
  49428. bottom: 35/1418
  49429. }
  49430. },
  49431. dressed: {
  49432. height: math.unit(6, "feet"),
  49433. name: "Dressed",
  49434. image: {
  49435. source: "./media/characters/tenley-sidero/dressed.svg",
  49436. extra: 1364/1275,
  49437. bottom: 42/1406
  49438. }
  49439. },
  49440. head: {
  49441. height: math.unit(1.47, "feet"),
  49442. name: "Head",
  49443. image: {
  49444. source: "./media/characters/tenley-sidero/head.svg",
  49445. extra: 610/490,
  49446. bottom: 0/610
  49447. }
  49448. },
  49449. },
  49450. [
  49451. {
  49452. name: "Normal",
  49453. height: math.unit(154, "feet"),
  49454. default: true
  49455. },
  49456. ]
  49457. ))
  49458. characterMakers.push(() => makeCharacter(
  49459. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49460. {
  49461. front: {
  49462. height: math.unit(5, "inches"),
  49463. name: "Front",
  49464. image: {
  49465. source: "./media/characters/mallory/front.svg",
  49466. extra: 1919/1678,
  49467. bottom: 29/1948
  49468. }
  49469. },
  49470. hand: {
  49471. height: math.unit(0.73, "inches"),
  49472. name: "Hand",
  49473. image: {
  49474. source: "./media/characters/mallory/hand.svg"
  49475. }
  49476. },
  49477. paw: {
  49478. height: math.unit(0.68, "inches"),
  49479. name: "Paw",
  49480. image: {
  49481. source: "./media/characters/mallory/paw.svg"
  49482. }
  49483. },
  49484. },
  49485. [
  49486. {
  49487. name: "Small",
  49488. height: math.unit(5, "inches"),
  49489. default: true
  49490. },
  49491. ]
  49492. ))
  49493. characterMakers.push(() => makeCharacter(
  49494. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49495. {
  49496. naked: {
  49497. height: math.unit(6, "feet"),
  49498. name: "Naked",
  49499. image: {
  49500. source: "./media/characters/mab/naked.svg",
  49501. extra: 1855/1757,
  49502. bottom: 208/2063
  49503. }
  49504. },
  49505. outside: {
  49506. height: math.unit(6, "feet"),
  49507. name: "Outside",
  49508. image: {
  49509. source: "./media/characters/mab/outside.svg",
  49510. extra: 1855/1757,
  49511. bottom: 208/2063
  49512. }
  49513. },
  49514. party: {
  49515. height: math.unit(6, "feet"),
  49516. name: "Party",
  49517. image: {
  49518. source: "./media/characters/mab/party.svg",
  49519. extra: 1855/1757,
  49520. bottom: 208/2063
  49521. }
  49522. },
  49523. },
  49524. [
  49525. {
  49526. name: "Normal",
  49527. height: math.unit(165, "feet"),
  49528. default: true
  49529. },
  49530. ]
  49531. ))
  49532. characterMakers.push(() => makeCharacter(
  49533. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49534. {
  49535. feral: {
  49536. height: math.unit(12, "feet"),
  49537. weight: math.unit(20000, "lb"),
  49538. name: "Side",
  49539. image: {
  49540. source: "./media/characters/winter/feral.svg",
  49541. extra: 1286/943,
  49542. bottom: 112/1398
  49543. },
  49544. form: "feral",
  49545. default: true
  49546. },
  49547. feralNsfw: {
  49548. height: math.unit(12, "feet"),
  49549. weight: math.unit(20000, "lb"),
  49550. name: "Side (NSFW)",
  49551. image: {
  49552. source: "./media/characters/winter/feral-nsfw.svg",
  49553. extra: 1286/943,
  49554. bottom: 112/1398
  49555. },
  49556. form: "feral"
  49557. },
  49558. dick: {
  49559. height: math.unit(3.79, "feet"),
  49560. name: "Dick",
  49561. image: {
  49562. source: "./media/characters/winter/dick.svg"
  49563. },
  49564. form: "feral"
  49565. },
  49566. anthro: {
  49567. height: math.unit(12, "feet"),
  49568. weight: math.unit(10, "tons"),
  49569. name: "Anthro",
  49570. image: {
  49571. source: "./media/characters/winter/anthro.svg",
  49572. extra: 1701/1553,
  49573. bottom: 64/1765
  49574. },
  49575. form: "anthro",
  49576. default: true
  49577. },
  49578. },
  49579. [
  49580. {
  49581. name: "Big",
  49582. height: math.unit(12, "feet"),
  49583. default: true,
  49584. form: "feral"
  49585. },
  49586. {
  49587. name: "Big",
  49588. height: math.unit(12, "feet"),
  49589. default: true,
  49590. form: "anthro"
  49591. },
  49592. ],
  49593. {
  49594. "feral": {
  49595. name: "Feral",
  49596. default: true
  49597. },
  49598. "anthro": {
  49599. name: "Anthro"
  49600. }
  49601. }
  49602. ))
  49603. characterMakers.push(() => makeCharacter(
  49604. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49605. {
  49606. front: {
  49607. height: math.unit(4.1, "inches"),
  49608. name: "Front",
  49609. image: {
  49610. source: "./media/characters/alto/front.svg",
  49611. extra: 736/627,
  49612. bottom: 90/826
  49613. }
  49614. },
  49615. },
  49616. [
  49617. {
  49618. name: "Normal",
  49619. height: math.unit(4.1, "inches"),
  49620. default: true
  49621. },
  49622. ]
  49623. ))
  49624. characterMakers.push(() => makeCharacter(
  49625. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49626. {
  49627. sitting: {
  49628. height: math.unit(3, "feet"),
  49629. name: "Sitting",
  49630. image: {
  49631. source: "./media/characters/ratstrid-v/sitting.svg",
  49632. extra: 355/310,
  49633. bottom: 136/491
  49634. }
  49635. },
  49636. },
  49637. [
  49638. {
  49639. name: "Normal",
  49640. height: math.unit(3, "feet"),
  49641. default: true
  49642. },
  49643. ]
  49644. ))
  49645. characterMakers.push(() => makeCharacter(
  49646. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49647. {
  49648. back: {
  49649. height: math.unit(6, "feet"),
  49650. weight: math.unit(350, "lb"),
  49651. name: "Back",
  49652. image: {
  49653. source: "./media/characters/siz/back.svg",
  49654. extra: 1449/1274,
  49655. bottom: 13/1462
  49656. }
  49657. },
  49658. },
  49659. [
  49660. {
  49661. name: "Over-Overcompressed",
  49662. height: math.unit(8, "feet")
  49663. },
  49664. {
  49665. name: "Overcompressed",
  49666. height: math.unit(32, "feet")
  49667. },
  49668. {
  49669. name: "Compressed",
  49670. height: math.unit(128, "feet"),
  49671. default: true
  49672. },
  49673. {
  49674. name: "Half-Compressed",
  49675. height: math.unit(512, "feet")
  49676. },
  49677. {
  49678. name: "Quarter-Compressed",
  49679. height: math.unit(2048, "feet")
  49680. },
  49681. {
  49682. name: "Uncompressed?",
  49683. height: math.unit(8192, "feet")
  49684. },
  49685. ]
  49686. ))
  49687. characterMakers.push(() => makeCharacter(
  49688. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49689. {
  49690. front: {
  49691. height: math.unit(5 + 9/12, "feet"),
  49692. weight: math.unit(150, "lb"),
  49693. name: "Front",
  49694. image: {
  49695. source: "./media/characters/ven/front.svg",
  49696. extra: 1372/1320,
  49697. bottom: 73/1445
  49698. }
  49699. },
  49700. side: {
  49701. height: math.unit(5 + 9/12, "feet"),
  49702. weight: math.unit(1150, "lb"),
  49703. name: "Side",
  49704. image: {
  49705. source: "./media/characters/ven/side.svg",
  49706. extra: 1119/1070,
  49707. bottom: 42/1161
  49708. },
  49709. default: true
  49710. },
  49711. },
  49712. [
  49713. {
  49714. name: "Normal",
  49715. height: math.unit(5 + 9/12, "feet"),
  49716. default: true
  49717. },
  49718. ]
  49719. ))
  49720. characterMakers.push(() => makeCharacter(
  49721. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49722. {
  49723. front: {
  49724. height: math.unit(12, "feet"),
  49725. weight: math.unit(1000, "kg"),
  49726. name: "Front",
  49727. image: {
  49728. source: "./media/characters/maple/front.svg",
  49729. extra: 1193/1081,
  49730. bottom: 22/1215
  49731. }
  49732. },
  49733. },
  49734. [
  49735. {
  49736. name: "Compressed",
  49737. height: math.unit(7, "feet")
  49738. },
  49739. {
  49740. name: "Normal",
  49741. height: math.unit(12, "feet"),
  49742. default: true
  49743. },
  49744. ]
  49745. ))
  49746. characterMakers.push(() => makeCharacter(
  49747. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49748. {
  49749. front: {
  49750. height: math.unit(9, "feet"),
  49751. weight: math.unit(1500, "lb"),
  49752. name: "Front",
  49753. image: {
  49754. source: "./media/characters/nora/front.svg",
  49755. extra: 1348/1286,
  49756. bottom: 218/1566
  49757. }
  49758. },
  49759. erect: {
  49760. height: math.unit(9, "feet"),
  49761. weight: math.unit(11500, "lb"),
  49762. name: "Erect",
  49763. image: {
  49764. source: "./media/characters/nora/erect.svg",
  49765. extra: 1488/1433,
  49766. bottom: 133/1621
  49767. }
  49768. },
  49769. },
  49770. [
  49771. {
  49772. name: "Normal",
  49773. height: math.unit(9, "feet"),
  49774. default: true
  49775. },
  49776. ]
  49777. ))
  49778. characterMakers.push(() => makeCharacter(
  49779. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49780. {
  49781. front: {
  49782. height: math.unit(25, "feet"),
  49783. weight: math.unit(27500, "lb"),
  49784. name: "Front",
  49785. image: {
  49786. source: "./media/characters/north-caudin/front.svg",
  49787. extra: 1184/1082,
  49788. bottom: 23/1207
  49789. }
  49790. },
  49791. },
  49792. [
  49793. {
  49794. name: "Compressed",
  49795. height: math.unit(10, "feet")
  49796. },
  49797. {
  49798. name: "Normal",
  49799. height: math.unit(25, "feet"),
  49800. default: true
  49801. },
  49802. ]
  49803. ))
  49804. characterMakers.push(() => makeCharacter(
  49805. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49806. {
  49807. front: {
  49808. height: math.unit(9, "feet"),
  49809. weight: math.unit(1250, "lb"),
  49810. name: "Front",
  49811. image: {
  49812. source: "./media/characters/merrian/front.svg",
  49813. extra: 2393/2304,
  49814. bottom: 40/2433
  49815. }
  49816. },
  49817. },
  49818. [
  49819. {
  49820. name: "Normal",
  49821. height: math.unit(9, "feet"),
  49822. default: true
  49823. },
  49824. ]
  49825. ))
  49826. characterMakers.push(() => makeCharacter(
  49827. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49828. {
  49829. front: {
  49830. height: math.unit(9, "feet"),
  49831. weight: math.unit(1000, "lb"),
  49832. name: "Front",
  49833. image: {
  49834. source: "./media/characters/hazel/front.svg",
  49835. extra: 2351/2298,
  49836. bottom: 38/2389
  49837. }
  49838. },
  49839. },
  49840. [
  49841. {
  49842. name: "Normal",
  49843. height: math.unit(9, "feet"),
  49844. default: true
  49845. },
  49846. ]
  49847. ))
  49848. characterMakers.push(() => makeCharacter(
  49849. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49850. {
  49851. front: {
  49852. height: math.unit(13, "feet"),
  49853. weight: math.unit(3200, "lb"),
  49854. name: "Front",
  49855. image: {
  49856. source: "./media/characters/emma/front.svg",
  49857. extra: 2263/2029,
  49858. bottom: 68/2331
  49859. }
  49860. },
  49861. },
  49862. [
  49863. {
  49864. name: "Normal",
  49865. height: math.unit(13, "feet"),
  49866. default: true
  49867. },
  49868. ]
  49869. ))
  49870. characterMakers.push(() => makeCharacter(
  49871. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49872. {
  49873. front: {
  49874. height: math.unit(11 + 9/12, "feet"),
  49875. weight: math.unit(2500, "lb"),
  49876. name: "Front",
  49877. image: {
  49878. source: "./media/characters/ilumina/front.svg",
  49879. extra: 2248/2209,
  49880. bottom: 164/2412
  49881. }
  49882. },
  49883. },
  49884. [
  49885. {
  49886. name: "Normal",
  49887. height: math.unit(11 + 9/12, "feet"),
  49888. default: true
  49889. },
  49890. ]
  49891. ))
  49892. characterMakers.push(() => makeCharacter(
  49893. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49894. {
  49895. front: {
  49896. height: math.unit(8 + 10/12, "feet"),
  49897. weight: math.unit(1350, "lb"),
  49898. name: "Front",
  49899. image: {
  49900. source: "./media/characters/moonshine/front.svg",
  49901. extra: 2395/2288,
  49902. bottom: 40/2435
  49903. }
  49904. },
  49905. },
  49906. [
  49907. {
  49908. name: "Normal",
  49909. height: math.unit(8 + 10/12, "feet"),
  49910. default: true
  49911. },
  49912. ]
  49913. ))
  49914. characterMakers.push(() => makeCharacter(
  49915. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49916. {
  49917. front: {
  49918. height: math.unit(14, "feet"),
  49919. weight: math.unit(3400, "lb"),
  49920. name: "Front",
  49921. image: {
  49922. source: "./media/characters/aletia/front.svg",
  49923. extra: 1185/1052,
  49924. bottom: 21/1206
  49925. }
  49926. },
  49927. },
  49928. [
  49929. {
  49930. name: "Compressed",
  49931. height: math.unit(8, "feet")
  49932. },
  49933. {
  49934. name: "Normal",
  49935. height: math.unit(14, "feet"),
  49936. default: true
  49937. },
  49938. ]
  49939. ))
  49940. characterMakers.push(() => makeCharacter(
  49941. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49942. {
  49943. front: {
  49944. height: math.unit(17, "feet"),
  49945. weight: math.unit(6500, "lb"),
  49946. name: "Front",
  49947. image: {
  49948. source: "./media/characters/deidra/front.svg",
  49949. extra: 1201/1081,
  49950. bottom: 16/1217
  49951. }
  49952. },
  49953. },
  49954. [
  49955. {
  49956. name: "Compressed",
  49957. height: math.unit(9 + 6/12, "feet")
  49958. },
  49959. {
  49960. name: "Normal",
  49961. height: math.unit(17, "feet"),
  49962. default: true
  49963. },
  49964. ]
  49965. ))
  49966. characterMakers.push(() => makeCharacter(
  49967. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49968. {
  49969. front: {
  49970. height: math.unit(7 + 4/12, "feet"),
  49971. weight: math.unit(280, "lb"),
  49972. name: "Front",
  49973. image: {
  49974. source: "./media/characters/freki-yrmori/front.svg",
  49975. extra: 1286/1182,
  49976. bottom: 29/1315
  49977. }
  49978. },
  49979. maw: {
  49980. height: math.unit(0.9, "feet"),
  49981. name: "Maw",
  49982. image: {
  49983. source: "./media/characters/freki-yrmori/maw.svg"
  49984. }
  49985. },
  49986. },
  49987. [
  49988. {
  49989. name: "Normal",
  49990. height: math.unit(7 + 4/12, "feet"),
  49991. default: true
  49992. },
  49993. {
  49994. name: "Macro",
  49995. height: math.unit(38.5, "meters")
  49996. },
  49997. ]
  49998. ))
  49999. characterMakers.push(() => makeCharacter(
  50000. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50001. {
  50002. side: {
  50003. height: math.unit(47.2, "meters"),
  50004. weight: math.unit(10000, "tons"),
  50005. name: "Side",
  50006. image: {
  50007. source: "./media/characters/aetherios/side.svg",
  50008. extra: 2363/642,
  50009. bottom: 221/2584
  50010. }
  50011. },
  50012. top: {
  50013. height: math.unit(240, "meters"),
  50014. weight: math.unit(10000, "tons"),
  50015. name: "Top",
  50016. image: {
  50017. source: "./media/characters/aetherios/top.svg"
  50018. }
  50019. },
  50020. bottom: {
  50021. height: math.unit(240, "meters"),
  50022. weight: math.unit(10000, "tons"),
  50023. name: "Bottom",
  50024. image: {
  50025. source: "./media/characters/aetherios/bottom.svg"
  50026. }
  50027. },
  50028. head: {
  50029. height: math.unit(38.6, "meters"),
  50030. name: "Head",
  50031. image: {
  50032. source: "./media/characters/aetherios/head.svg",
  50033. extra: 1335/1112,
  50034. bottom: 0/1335
  50035. }
  50036. },
  50037. front: {
  50038. height: math.unit(29, "meters"),
  50039. name: "Front",
  50040. image: {
  50041. source: "./media/characters/aetherios/front.svg",
  50042. extra: 1266/953,
  50043. bottom: 158/1424
  50044. }
  50045. },
  50046. maw: {
  50047. height: math.unit(16.37, "meters"),
  50048. name: "Maw",
  50049. image: {
  50050. source: "./media/characters/aetherios/maw.svg",
  50051. extra: 748/637,
  50052. bottom: 0/748
  50053. },
  50054. extraAttributes: {
  50055. preyCapacity: {
  50056. name: "Capacity",
  50057. power: 3,
  50058. type: "volume",
  50059. base: math.unit(1000, "people")
  50060. },
  50061. tongueSize: {
  50062. name: "Tongue Size",
  50063. power: 2,
  50064. type: "area",
  50065. base: math.unit(21, "m^2")
  50066. }
  50067. }
  50068. },
  50069. forepaw: {
  50070. height: math.unit(18, "meters"),
  50071. name: "Forepaw",
  50072. image: {
  50073. source: "./media/characters/aetherios/forepaw.svg"
  50074. }
  50075. },
  50076. hindpaw: {
  50077. height: math.unit(23, "meters"),
  50078. name: "Hindpaw",
  50079. image: {
  50080. source: "./media/characters/aetherios/hindpaw.svg"
  50081. }
  50082. },
  50083. genitals: {
  50084. height: math.unit(42, "meters"),
  50085. name: "Genitals",
  50086. image: {
  50087. source: "./media/characters/aetherios/genitals.svg"
  50088. }
  50089. },
  50090. },
  50091. [
  50092. {
  50093. name: "Normal",
  50094. height: math.unit(47.2, "meters"),
  50095. default: true
  50096. },
  50097. {
  50098. name: "Macro",
  50099. height: math.unit(160, "meters")
  50100. },
  50101. {
  50102. name: "Mega",
  50103. height: math.unit(1.87, "km")
  50104. },
  50105. {
  50106. name: "Giga",
  50107. height: math.unit(40000, "km")
  50108. },
  50109. {
  50110. name: "Stellar",
  50111. height: math.unit(158000000, "km")
  50112. },
  50113. {
  50114. name: "Cosmic",
  50115. height: math.unit(9.46e12, "km")
  50116. },
  50117. ]
  50118. ))
  50119. characterMakers.push(() => makeCharacter(
  50120. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50121. {
  50122. front: {
  50123. height: math.unit(5 + 4/12, "feet"),
  50124. weight: math.unit(80, "lb"),
  50125. name: "Front",
  50126. image: {
  50127. source: "./media/characters/mizu-gieeg/front.svg",
  50128. extra: 850/709,
  50129. bottom: 52/902
  50130. }
  50131. },
  50132. back: {
  50133. height: math.unit(5 + 4/12, "feet"),
  50134. weight: math.unit(80, "lb"),
  50135. name: "Back",
  50136. image: {
  50137. source: "./media/characters/mizu-gieeg/back.svg",
  50138. extra: 882/745,
  50139. bottom: 25/907
  50140. }
  50141. },
  50142. },
  50143. [
  50144. {
  50145. name: "Normal",
  50146. height: math.unit(5 + 4/12, "feet"),
  50147. default: true
  50148. },
  50149. ]
  50150. ))
  50151. characterMakers.push(() => makeCharacter(
  50152. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50153. {
  50154. front: {
  50155. height: math.unit(6, "feet"),
  50156. name: "Front",
  50157. image: {
  50158. source: "./media/characters/roselle-st-papier/front.svg",
  50159. extra: 1430/1280,
  50160. bottom: 37/1467
  50161. }
  50162. },
  50163. back: {
  50164. height: math.unit(6, "feet"),
  50165. name: "Back",
  50166. image: {
  50167. source: "./media/characters/roselle-st-papier/back.svg",
  50168. extra: 1491/1296,
  50169. bottom: 23/1514
  50170. }
  50171. },
  50172. ear: {
  50173. height: math.unit(1.26, "feet"),
  50174. name: "Ear",
  50175. image: {
  50176. source: "./media/characters/roselle-st-papier/ear.svg"
  50177. }
  50178. },
  50179. },
  50180. [
  50181. {
  50182. name: "Normal",
  50183. height: math.unit(150, "feet"),
  50184. default: true
  50185. },
  50186. ]
  50187. ))
  50188. characterMakers.push(() => makeCharacter(
  50189. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50190. {
  50191. front: {
  50192. height: math.unit(1, "inches"),
  50193. name: "Front",
  50194. image: {
  50195. source: "./media/characters/valargent/front.svg",
  50196. extra: 1825/1694,
  50197. bottom: 62/1887
  50198. }
  50199. },
  50200. back: {
  50201. height: math.unit(1, "inches"),
  50202. name: "Back",
  50203. image: {
  50204. source: "./media/characters/valargent/back.svg",
  50205. extra: 1775/1682,
  50206. bottom: 88/1863
  50207. }
  50208. },
  50209. },
  50210. [
  50211. {
  50212. name: "Micro",
  50213. height: math.unit(1, "inch"),
  50214. default: true
  50215. },
  50216. ]
  50217. ))
  50218. characterMakers.push(() => makeCharacter(
  50219. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50220. {
  50221. front: {
  50222. height: math.unit(3.4, "meters"),
  50223. name: "Front",
  50224. image: {
  50225. source: "./media/characters/zarina/front.svg",
  50226. extra: 1733/1425,
  50227. bottom: 93/1826
  50228. }
  50229. },
  50230. squatting: {
  50231. height: math.unit(2.14, "meters"),
  50232. name: "Squatting",
  50233. image: {
  50234. source: "./media/characters/zarina/squatting.svg",
  50235. extra: 1073/788,
  50236. bottom: 63/1136
  50237. }
  50238. },
  50239. back: {
  50240. height: math.unit(2.14, "meters"),
  50241. name: "Back",
  50242. image: {
  50243. source: "./media/characters/zarina/back.svg",
  50244. extra: 1128/885,
  50245. bottom: 0/1128
  50246. }
  50247. },
  50248. },
  50249. [
  50250. {
  50251. name: "Normal",
  50252. height: math.unit(3.4, "meters"),
  50253. default: true
  50254. },
  50255. {
  50256. name: "Big",
  50257. height: math.unit(5, "meters")
  50258. },
  50259. {
  50260. name: "Macro",
  50261. height: math.unit(110, "meters")
  50262. },
  50263. ]
  50264. ))
  50265. characterMakers.push(() => makeCharacter(
  50266. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50267. {
  50268. front: {
  50269. height: math.unit(7, "feet"),
  50270. name: "Front",
  50271. image: {
  50272. source: "./media/characters/ventus-astro-fox/front.svg",
  50273. extra: 1792/1623,
  50274. bottom: 28/1820
  50275. }
  50276. },
  50277. back: {
  50278. height: math.unit(7, "feet"),
  50279. name: "Back",
  50280. image: {
  50281. source: "./media/characters/ventus-astro-fox/back.svg",
  50282. extra: 1789/1620,
  50283. bottom: 31/1820
  50284. }
  50285. },
  50286. outfit: {
  50287. height: math.unit(7, "feet"),
  50288. name: "Outfit",
  50289. image: {
  50290. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50291. extra: 1054/925,
  50292. bottom: 15/1069
  50293. }
  50294. },
  50295. head: {
  50296. height: math.unit(1.12, "feet"),
  50297. name: "Head",
  50298. image: {
  50299. source: "./media/characters/ventus-astro-fox/head.svg",
  50300. extra: 866/504,
  50301. bottom: 0/866
  50302. }
  50303. },
  50304. hand: {
  50305. height: math.unit(1, "feet"),
  50306. name: "Hand",
  50307. image: {
  50308. source: "./media/characters/ventus-astro-fox/hand.svg"
  50309. }
  50310. },
  50311. paw: {
  50312. height: math.unit(1.5, "feet"),
  50313. name: "Paw",
  50314. image: {
  50315. source: "./media/characters/ventus-astro-fox/paw.svg"
  50316. }
  50317. },
  50318. },
  50319. [
  50320. {
  50321. name: "Normal",
  50322. height: math.unit(7, "feet"),
  50323. default: true
  50324. },
  50325. {
  50326. name: "Macro",
  50327. height: math.unit(200, "feet")
  50328. },
  50329. {
  50330. name: "Cosmic",
  50331. height: math.unit(3, "universes")
  50332. },
  50333. ]
  50334. ))
  50335. characterMakers.push(() => makeCharacter(
  50336. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50337. {
  50338. front: {
  50339. height: math.unit(3, "meters"),
  50340. weight: math.unit(7000, "lb"),
  50341. name: "Front",
  50342. image: {
  50343. source: "./media/characters/core-t/front.svg",
  50344. extra: 5729/4941,
  50345. bottom: 1129/6858
  50346. }
  50347. },
  50348. },
  50349. [
  50350. {
  50351. name: "Big",
  50352. height: math.unit(3, "meters"),
  50353. default: true
  50354. },
  50355. ]
  50356. ))
  50357. characterMakers.push(() => makeCharacter(
  50358. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50359. {
  50360. normal: {
  50361. height: math.unit(6 + 6/12, "feet"),
  50362. weight: math.unit(275, "lb"),
  50363. name: "Front",
  50364. image: {
  50365. source: "./media/characters/cadbunny/normal.svg",
  50366. extra: 1129/947,
  50367. bottom: 93/1222
  50368. },
  50369. default: true,
  50370. form: "normal"
  50371. },
  50372. gigantamax: {
  50373. height: math.unit(26, "feet"),
  50374. weight: math.unit(16000, "lb"),
  50375. name: "Front",
  50376. image: {
  50377. source: "./media/characters/cadbunny/gigantamax.svg",
  50378. extra: 1133/944,
  50379. bottom: 90/1223
  50380. },
  50381. default: true,
  50382. form: "gigantamax"
  50383. },
  50384. },
  50385. [
  50386. {
  50387. name: "Normal",
  50388. height: math.unit(6 + 6/12, "feet"),
  50389. default: true,
  50390. form: "normal"
  50391. },
  50392. {
  50393. name: "Small",
  50394. height: math.unit(26, "feet"),
  50395. default: true,
  50396. form: "gigantamax"
  50397. },
  50398. {
  50399. name: "Large",
  50400. height: math.unit(78, "feet"),
  50401. form: "gigantamax"
  50402. },
  50403. ],
  50404. {
  50405. "normal": {
  50406. name: "Normal",
  50407. default: true
  50408. },
  50409. "gigantamax": {
  50410. name: "Gigantamax"
  50411. }
  50412. }
  50413. ))
  50414. characterMakers.push(() => makeCharacter(
  50415. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50416. {
  50417. anthroFront: {
  50418. height: math.unit(8, "feet"),
  50419. weight: math.unit(300, "lb"),
  50420. name: "Front",
  50421. image: {
  50422. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50423. extra: 1272/1176,
  50424. bottom: 53/1325
  50425. },
  50426. form: "anthro",
  50427. default: true
  50428. },
  50429. feralSide: {
  50430. height: math.unit(4, "feet"),
  50431. weight: math.unit(250, "lb"),
  50432. name: "Side",
  50433. image: {
  50434. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50435. extra: 731/621,
  50436. bottom: 0/731
  50437. },
  50438. form: "feral",
  50439. default: true
  50440. },
  50441. },
  50442. [
  50443. {
  50444. name: "Regular",
  50445. height: math.unit(8, "feet"),
  50446. form: "anthro"
  50447. },
  50448. {
  50449. name: "Macro",
  50450. height: math.unit(250, "feet"),
  50451. form: "anthro",
  50452. default: true
  50453. },
  50454. {
  50455. name: "Regular",
  50456. height: math.unit(4, "feet"),
  50457. form: "feral"
  50458. },
  50459. {
  50460. name: "Macro",
  50461. height: math.unit(125, "feet"),
  50462. form: "feral",
  50463. default: true
  50464. },
  50465. ],
  50466. {
  50467. "anthro": {
  50468. name: "Anthro",
  50469. default: true
  50470. },
  50471. "feral": {
  50472. name: "Feral",
  50473. },
  50474. }
  50475. ))
  50476. characterMakers.push(() => makeCharacter(
  50477. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50478. {
  50479. front: {
  50480. height: math.unit(11 + 10/12, "feet"),
  50481. weight: math.unit(1587, "kg"),
  50482. name: "Front",
  50483. image: {
  50484. source: "./media/characters/maple-javira-dragon/front.svg",
  50485. extra: 1136/744,
  50486. bottom: 73/1209
  50487. }
  50488. },
  50489. side: {
  50490. height: math.unit(11 + 10/12, "feet"),
  50491. weight: math.unit(1587, "kg"),
  50492. name: "Side",
  50493. image: {
  50494. source: "./media/characters/maple-javira-dragon/side.svg",
  50495. extra: 712/505,
  50496. bottom: 17/729
  50497. }
  50498. },
  50499. head: {
  50500. height: math.unit(8.05, "feet"),
  50501. name: "Head",
  50502. image: {
  50503. source: "./media/characters/maple-javira-dragon/head.svg",
  50504. extra: 1420/1344,
  50505. bottom: 0/1420
  50506. }
  50507. },
  50508. },
  50509. [
  50510. {
  50511. name: "Normal",
  50512. height: math.unit(11 + 10/12, "feet"),
  50513. default: true
  50514. },
  50515. ]
  50516. ))
  50517. characterMakers.push(() => makeCharacter(
  50518. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50519. {
  50520. front: {
  50521. height: math.unit(117, "cm"),
  50522. weight: math.unit(50, "kg"),
  50523. name: "Front",
  50524. image: {
  50525. source: "./media/characters/sonia-wyverntail/front.svg",
  50526. extra: 708/592,
  50527. bottom: 25/733
  50528. }
  50529. },
  50530. },
  50531. [
  50532. {
  50533. name: "Normal",
  50534. height: math.unit(117, "cm"),
  50535. default: true
  50536. },
  50537. ]
  50538. ))
  50539. characterMakers.push(() => makeCharacter(
  50540. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50541. {
  50542. front: {
  50543. height: math.unit(6 + 5/12, "feet"),
  50544. name: "Front",
  50545. image: {
  50546. source: "./media/characters/micah/front.svg",
  50547. extra: 1758/1546,
  50548. bottom: 214/1972
  50549. }
  50550. },
  50551. },
  50552. [
  50553. {
  50554. name: "Normal",
  50555. height: math.unit(6 + 5/12, "feet"),
  50556. default: true
  50557. },
  50558. ]
  50559. ))
  50560. characterMakers.push(() => makeCharacter(
  50561. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50562. {
  50563. front: {
  50564. height: math.unit(5 + 10/12, "feet"),
  50565. weight: math.unit(220, "lb"),
  50566. name: "Front",
  50567. image: {
  50568. source: "./media/characters/zarya/front.svg",
  50569. extra: 593/572,
  50570. bottom: 50/643
  50571. }
  50572. },
  50573. back: {
  50574. height: math.unit(5 + 10/12, "feet"),
  50575. weight: math.unit(220, "lb"),
  50576. name: "Back",
  50577. image: {
  50578. source: "./media/characters/zarya/back.svg",
  50579. extra: 603/582,
  50580. bottom: 38/641
  50581. }
  50582. },
  50583. },
  50584. [
  50585. {
  50586. name: "Normal",
  50587. height: math.unit(5 + 10/12, "feet"),
  50588. default: true
  50589. },
  50590. ]
  50591. ))
  50592. characterMakers.push(() => makeCharacter(
  50593. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50594. {
  50595. front: {
  50596. height: math.unit(7.5, "feet"),
  50597. name: "Front",
  50598. image: {
  50599. source: "./media/characters/sven-hatisson/front.svg",
  50600. extra: 917/857,
  50601. bottom: 42/959
  50602. }
  50603. },
  50604. back: {
  50605. height: math.unit(7.5, "feet"),
  50606. name: "Back",
  50607. image: {
  50608. source: "./media/characters/sven-hatisson/back.svg",
  50609. extra: 903/856,
  50610. bottom: 15/918
  50611. }
  50612. },
  50613. },
  50614. [
  50615. {
  50616. name: "Base Height",
  50617. height: math.unit(7.5, "feet")
  50618. },
  50619. {
  50620. name: "Usual Height",
  50621. height: math.unit(13.5, "feet"),
  50622. default: true
  50623. },
  50624. {
  50625. name: "Smaller Macro",
  50626. height: math.unit(85, "feet")
  50627. },
  50628. {
  50629. name: "Moderate Macro",
  50630. height: math.unit(320, "feet")
  50631. },
  50632. {
  50633. name: "Large Macro",
  50634. height: math.unit(1000, "feet")
  50635. },
  50636. {
  50637. name: "Largest Size",
  50638. height: math.unit(2, "miles")
  50639. },
  50640. ]
  50641. ))
  50642. characterMakers.push(() => makeCharacter(
  50643. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50644. {
  50645. side: {
  50646. height: math.unit(1.8, "meters"),
  50647. weight: math.unit(275, "kg"),
  50648. name: "Side",
  50649. image: {
  50650. source: "./media/characters/terra/side.svg",
  50651. extra: 1273/1147,
  50652. bottom: 0/1273
  50653. }
  50654. },
  50655. },
  50656. [
  50657. {
  50658. name: "Normal",
  50659. height: math.unit(16.2, "meters"),
  50660. default: true
  50661. },
  50662. ]
  50663. ))
  50664. characterMakers.push(() => makeCharacter(
  50665. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50666. {
  50667. borzoiFront: {
  50668. height: math.unit(6 + 9/12, "feet"),
  50669. name: "Front",
  50670. image: {
  50671. source: "./media/characters/rae/borzoi-front.svg",
  50672. extra: 1161/1098,
  50673. bottom: 31/1192
  50674. },
  50675. form: "borzoi",
  50676. default: true
  50677. },
  50678. werewolfFront: {
  50679. height: math.unit(8 + 7/12, "feet"),
  50680. name: "Front",
  50681. image: {
  50682. source: "./media/characters/rae/werewolf-front.svg",
  50683. extra: 1411/1334,
  50684. bottom: 127/1538
  50685. },
  50686. form: "werewolf",
  50687. default: true
  50688. },
  50689. },
  50690. [
  50691. {
  50692. name: "Normal",
  50693. height: math.unit(6 + 9/12, "feet"),
  50694. default: true,
  50695. form: "borzoi"
  50696. },
  50697. {
  50698. name: "Normal",
  50699. height: math.unit(8 + 7/12, "feet"),
  50700. default: true,
  50701. form: "werewolf"
  50702. },
  50703. ],
  50704. {
  50705. "borzoi": {
  50706. name: "Borzoi",
  50707. default: true
  50708. },
  50709. "werewolf": {
  50710. name: "Werewolf",
  50711. },
  50712. }
  50713. ))
  50714. characterMakers.push(() => makeCharacter(
  50715. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50716. {
  50717. front: {
  50718. height: math.unit(8 + 7/12, "feet"),
  50719. weight: math.unit(482, "lb"),
  50720. name: "Front",
  50721. image: {
  50722. source: "./media/characters/kit/front.svg",
  50723. extra: 1247/1103,
  50724. bottom: 41/1288
  50725. }
  50726. },
  50727. back: {
  50728. height: math.unit(8 + 7/12, "feet"),
  50729. weight: math.unit(482, "lb"),
  50730. name: "Back",
  50731. image: {
  50732. source: "./media/characters/kit/back.svg",
  50733. extra: 1252/1123,
  50734. bottom: 21/1273
  50735. }
  50736. },
  50737. paw: {
  50738. height: math.unit(1.46, "feet"),
  50739. name: "Paw",
  50740. image: {
  50741. source: "./media/characters/kit/paw.svg"
  50742. }
  50743. },
  50744. },
  50745. [
  50746. {
  50747. name: "Normal",
  50748. height: math.unit(2.61, "meters"),
  50749. default: true
  50750. },
  50751. {
  50752. name: "\"Tall\"",
  50753. height: math.unit(8.21, "meters")
  50754. },
  50755. {
  50756. name: "Tall",
  50757. height: math.unit(19.6, "meters")
  50758. },
  50759. {
  50760. name: "Very Tall",
  50761. height: math.unit(57.91, "meters")
  50762. },
  50763. {
  50764. name: "Semi-Macro",
  50765. height: math.unit(138.64, "meters")
  50766. },
  50767. {
  50768. name: "Macro",
  50769. height: math.unit(831.99, "meters")
  50770. },
  50771. {
  50772. name: "EX-Macro",
  50773. height: math.unit(96451121, "meters")
  50774. },
  50775. {
  50776. name: "S1-Omnipotent",
  50777. height: math.unit(4.42074e+9, "meters")
  50778. },
  50779. {
  50780. name: "S2-Omnipotent",
  50781. height: math.unit(9.42074e+17, "meters")
  50782. },
  50783. {
  50784. name: "Omnipotent",
  50785. height: math.unit(4.23112e+24, "meters")
  50786. },
  50787. {
  50788. name: "Hypergod",
  50789. height: math.unit(5.05176e+27, "meters")
  50790. },
  50791. {
  50792. name: "Hypergod-EX",
  50793. height: math.unit(9.45532e+49, "meters")
  50794. },
  50795. {
  50796. name: "Hypergod-SP",
  50797. height: math.unit(9.45532e+195, "meters")
  50798. },
  50799. ]
  50800. ))
  50801. characterMakers.push(() => makeCharacter(
  50802. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50803. {
  50804. side: {
  50805. height: math.unit(0.6, "meters"),
  50806. weight: math.unit(24, "kg"),
  50807. name: "Side",
  50808. image: {
  50809. source: "./media/characters/celeste/side.svg",
  50810. extra: 810/517,
  50811. bottom: 53/863
  50812. }
  50813. },
  50814. },
  50815. [
  50816. {
  50817. name: "Velociraptor",
  50818. height: math.unit(0.6, "meters"),
  50819. default: true
  50820. },
  50821. {
  50822. name: "Utahraptor",
  50823. height: math.unit(1.8, "meters")
  50824. },
  50825. {
  50826. name: "Gallimimus",
  50827. height: math.unit(4.0, "meters")
  50828. },
  50829. {
  50830. name: "Large",
  50831. height: math.unit(20, "meters")
  50832. },
  50833. {
  50834. name: "Planetary",
  50835. height: math.unit(50, "megameters")
  50836. },
  50837. {
  50838. name: "Stellar",
  50839. height: math.unit(1.5, "gigameters")
  50840. },
  50841. {
  50842. name: "Galactic",
  50843. height: math.unit(100, "exameters")
  50844. },
  50845. ]
  50846. ))
  50847. characterMakers.push(() => makeCharacter(
  50848. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50849. {
  50850. front: {
  50851. height: math.unit(6, "feet"),
  50852. weight: math.unit(210, "lb"),
  50853. name: "Front",
  50854. image: {
  50855. source: "./media/characters/glacia/front.svg",
  50856. extra: 958/901,
  50857. bottom: 45/1003
  50858. }
  50859. },
  50860. },
  50861. [
  50862. {
  50863. name: "Macro",
  50864. height: math.unit(1000, "meters"),
  50865. default: true
  50866. },
  50867. ]
  50868. ))
  50869. characterMakers.push(() => makeCharacter(
  50870. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50871. {
  50872. front: {
  50873. height: math.unit(4, "meters"),
  50874. name: "Front",
  50875. image: {
  50876. source: "./media/characters/giri/front.svg",
  50877. extra: 966/894,
  50878. bottom: 21/987
  50879. }
  50880. },
  50881. },
  50882. [
  50883. {
  50884. name: "Normal",
  50885. height: math.unit(4, "meters"),
  50886. default: true
  50887. },
  50888. ]
  50889. ))
  50890. characterMakers.push(() => makeCharacter(
  50891. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50892. {
  50893. back: {
  50894. height: math.unit(4, "feet"),
  50895. weight: math.unit(37, "lb"),
  50896. name: "Back",
  50897. image: {
  50898. source: "./media/characters/tin/back.svg",
  50899. extra: 845/780,
  50900. bottom: 28/873
  50901. }
  50902. },
  50903. },
  50904. [
  50905. {
  50906. name: "Normal",
  50907. height: math.unit(4, "feet"),
  50908. default: true
  50909. },
  50910. ]
  50911. ))
  50912. characterMakers.push(() => makeCharacter(
  50913. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50914. {
  50915. front: {
  50916. height: math.unit(25, "feet"),
  50917. name: "Front",
  50918. image: {
  50919. source: "./media/characters/cadenza-vivace/front.svg",
  50920. extra: 1842/1578,
  50921. bottom: 30/1872
  50922. }
  50923. },
  50924. },
  50925. [
  50926. {
  50927. name: "Macro",
  50928. height: math.unit(25, "feet"),
  50929. default: true
  50930. },
  50931. ]
  50932. ))
  50933. characterMakers.push(() => makeCharacter(
  50934. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50935. {
  50936. front: {
  50937. height: math.unit(10, "feet"),
  50938. weight: math.unit(625, "kg"),
  50939. name: "Front",
  50940. image: {
  50941. source: "./media/characters/zain/front.svg",
  50942. extra: 1682/1498,
  50943. bottom: 223/1905
  50944. }
  50945. },
  50946. back: {
  50947. height: math.unit(10, "feet"),
  50948. weight: math.unit(625, "kg"),
  50949. name: "Back",
  50950. image: {
  50951. source: "./media/characters/zain/back.svg",
  50952. extra: 1814/1657,
  50953. bottom: 152/1966
  50954. }
  50955. },
  50956. head: {
  50957. height: math.unit(10, "feet"),
  50958. weight: math.unit(625, "kg"),
  50959. name: "Head",
  50960. image: {
  50961. source: "./media/characters/zain/head.svg",
  50962. extra: 1059/762,
  50963. bottom: 0/1059
  50964. }
  50965. },
  50966. },
  50967. [
  50968. {
  50969. name: "Normal",
  50970. height: math.unit(10, "feet"),
  50971. default: true
  50972. },
  50973. ]
  50974. ))
  50975. characterMakers.push(() => makeCharacter(
  50976. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50977. {
  50978. front: {
  50979. height: math.unit(6 + 5/12, "feet"),
  50980. weight: math.unit(750, "lb"),
  50981. name: "Front",
  50982. image: {
  50983. source: "./media/characters/ruchex/front.svg",
  50984. extra: 877/820,
  50985. bottom: 17/894
  50986. },
  50987. extraAttributes: {
  50988. "width": {
  50989. name: "Width",
  50990. power: 1,
  50991. type: "length",
  50992. base: math.unit(4.757, "feet")
  50993. },
  50994. }
  50995. },
  50996. },
  50997. [
  50998. {
  50999. name: "Normal",
  51000. height: math.unit(6 + 5/12, "feet"),
  51001. default: true
  51002. },
  51003. ]
  51004. ))
  51005. characterMakers.push(() => makeCharacter(
  51006. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51007. {
  51008. dressedFront: {
  51009. height: math.unit(191, "cm"),
  51010. weight: math.unit(80, "kg"),
  51011. name: "Front",
  51012. image: {
  51013. source: "./media/characters/buster/dressed-front.svg",
  51014. extra: 1022/973,
  51015. bottom: 69/1091
  51016. }
  51017. },
  51018. dressedBack: {
  51019. height: math.unit(191, "cm"),
  51020. weight: math.unit(80, "kg"),
  51021. name: "Back",
  51022. image: {
  51023. source: "./media/characters/buster/dressed-back.svg",
  51024. extra: 1018/970,
  51025. bottom: 55/1073
  51026. }
  51027. },
  51028. nudeFront: {
  51029. height: math.unit(191, "cm"),
  51030. weight: math.unit(80, "kg"),
  51031. name: "Front (Nude)",
  51032. image: {
  51033. source: "./media/characters/buster/nude-front.svg",
  51034. extra: 1022/973,
  51035. bottom: 69/1091
  51036. }
  51037. },
  51038. nudeBack: {
  51039. height: math.unit(191, "cm"),
  51040. weight: math.unit(80, "kg"),
  51041. name: "Back (Nude)",
  51042. image: {
  51043. source: "./media/characters/buster/nude-back.svg",
  51044. extra: 1018/970,
  51045. bottom: 55/1073
  51046. }
  51047. },
  51048. dick: {
  51049. height: math.unit(2.59, "feet"),
  51050. name: "Dick",
  51051. image: {
  51052. source: "./media/characters/buster/dick.svg"
  51053. }
  51054. },
  51055. ass: {
  51056. height: math.unit(1.2, "feet"),
  51057. name: "Ass",
  51058. image: {
  51059. source: "./media/characters/buster/ass.svg"
  51060. }
  51061. },
  51062. },
  51063. [
  51064. {
  51065. name: "Normal",
  51066. height: math.unit(191, "cm"),
  51067. default: true
  51068. },
  51069. ]
  51070. ))
  51071. characterMakers.push(() => makeCharacter(
  51072. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51073. {
  51074. side: {
  51075. height: math.unit(8.1, "feet"),
  51076. weight: math.unit(3500, "lb"),
  51077. name: "Side",
  51078. image: {
  51079. source: "./media/characters/sonya/side.svg",
  51080. extra: 1730/1317,
  51081. bottom: 86/1816
  51082. }
  51083. },
  51084. },
  51085. [
  51086. {
  51087. name: "Normal",
  51088. height: math.unit(8.1, "feet"),
  51089. default: true
  51090. },
  51091. ]
  51092. ))
  51093. characterMakers.push(() => makeCharacter(
  51094. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51095. {
  51096. front: {
  51097. height: math.unit(6, "feet"),
  51098. weight: math.unit(150, "lb"),
  51099. name: "Front",
  51100. image: {
  51101. source: "./media/characters/cadence-andrysiak/front.svg",
  51102. extra: 1164/1121,
  51103. bottom: 60/1224
  51104. }
  51105. },
  51106. back: {
  51107. height: math.unit(6, "feet"),
  51108. weight: math.unit(150, "lb"),
  51109. name: "Back",
  51110. image: {
  51111. source: "./media/characters/cadence-andrysiak/back.svg",
  51112. extra: 1200/1165,
  51113. bottom: 9/1209
  51114. }
  51115. },
  51116. dressed: {
  51117. height: math.unit(6, "feet"),
  51118. weight: math.unit(150, "lb"),
  51119. name: "Dressed",
  51120. image: {
  51121. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51122. extra: 1164/1121,
  51123. bottom: 60/1224
  51124. }
  51125. },
  51126. },
  51127. [
  51128. {
  51129. name: "Micro",
  51130. height: math.unit(1, "mm")
  51131. },
  51132. {
  51133. name: "Normal",
  51134. height: math.unit(6, "feet"),
  51135. default: true
  51136. },
  51137. ]
  51138. ))
  51139. characterMakers.push(() => makeCharacter(
  51140. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51141. {
  51142. front: {
  51143. height: math.unit(60, "inches"),
  51144. weight: math.unit(16, "lb"),
  51145. preyCapacity: math.unit(80, "liters"),
  51146. name: "Front",
  51147. image: {
  51148. source: "./media/characters/penny-lynx/front.svg",
  51149. extra: 1959/1769,
  51150. bottom: 49/2008
  51151. }
  51152. },
  51153. },
  51154. [
  51155. {
  51156. name: "Nokia",
  51157. height: math.unit(2, "inches")
  51158. },
  51159. {
  51160. name: "Desktop",
  51161. height: math.unit(24, "inches")
  51162. },
  51163. {
  51164. name: "TV",
  51165. height: math.unit(60, "inches")
  51166. },
  51167. {
  51168. name: "Jumbotron",
  51169. height: math.unit(12, "feet")
  51170. },
  51171. {
  51172. name: "Billboard",
  51173. height: math.unit(48, "feet"),
  51174. default: true
  51175. },
  51176. {
  51177. name: "IMAX",
  51178. height: math.unit(96, "feet")
  51179. },
  51180. {
  51181. name: "SINGULARITY",
  51182. height: math.unit(864938, "miles")
  51183. },
  51184. ]
  51185. ))
  51186. characterMakers.push(() => makeCharacter(
  51187. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51188. {
  51189. front: {
  51190. height: math.unit(5 + 4/12, "feet"),
  51191. weight: math.unit(230, "lb"),
  51192. name: "Front",
  51193. image: {
  51194. source: "./media/characters/sukebe/front.svg",
  51195. extra: 2130/2038,
  51196. bottom: 90/2220
  51197. }
  51198. },
  51199. back: {
  51200. height: math.unit(3.48, "feet"),
  51201. weight: math.unit(230, "lb"),
  51202. name: "Back",
  51203. image: {
  51204. source: "./media/characters/sukebe/back.svg",
  51205. extra: 1670/1604,
  51206. bottom: 0/1670
  51207. }
  51208. },
  51209. },
  51210. [
  51211. {
  51212. name: "Normal",
  51213. height: math.unit(5 + 4/12, "feet"),
  51214. default: true
  51215. },
  51216. ]
  51217. ))
  51218. characterMakers.push(() => makeCharacter(
  51219. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51220. {
  51221. front: {
  51222. height: math.unit(6, "feet"),
  51223. name: "Front",
  51224. image: {
  51225. source: "./media/characters/nylla/front.svg",
  51226. extra: 1868/1699,
  51227. bottom: 97/1965
  51228. }
  51229. },
  51230. back: {
  51231. height: math.unit(6, "feet"),
  51232. name: "Back",
  51233. image: {
  51234. source: "./media/characters/nylla/back.svg",
  51235. extra: 1889/1712,
  51236. bottom: 93/1982
  51237. }
  51238. },
  51239. frontNsfw: {
  51240. height: math.unit(6, "feet"),
  51241. name: "Front (NSFW)",
  51242. image: {
  51243. source: "./media/characters/nylla/front-nsfw.svg",
  51244. extra: 1868/1699,
  51245. bottom: 97/1965
  51246. },
  51247. extraAttributes: {
  51248. "dickLength": {
  51249. name: "Dick Length",
  51250. power: 1,
  51251. type: "length",
  51252. base: math.unit(1.4, "feet")
  51253. },
  51254. "cumVolume": {
  51255. name: "Cum Volume",
  51256. power: 3,
  51257. type: "volume",
  51258. base: math.unit(100, "mL")
  51259. },
  51260. }
  51261. },
  51262. backNsfw: {
  51263. height: math.unit(6, "feet"),
  51264. name: "Back (NSFW)",
  51265. image: {
  51266. source: "./media/characters/nylla/back-nsfw.svg",
  51267. extra: 1889/1712,
  51268. bottom: 93/1982
  51269. }
  51270. },
  51271. maw: {
  51272. height: math.unit(2.10, "feet"),
  51273. name: "Maw",
  51274. image: {
  51275. source: "./media/characters/nylla/maw.svg"
  51276. }
  51277. },
  51278. paws: {
  51279. height: math.unit(2.06, "feet"),
  51280. name: "Paws",
  51281. image: {
  51282. source: "./media/characters/nylla/paws.svg"
  51283. }
  51284. },
  51285. muzzle: {
  51286. height: math.unit(0.61, "feet"),
  51287. name: "Muzzle",
  51288. image: {
  51289. source: "./media/characters/nylla/muzzle.svg"
  51290. }
  51291. },
  51292. sheath: {
  51293. height: math.unit(1.305, "feet"),
  51294. name: "Sheath",
  51295. image: {
  51296. source: "./media/characters/nylla/sheath.svg"
  51297. }
  51298. },
  51299. },
  51300. [
  51301. {
  51302. name: "Micro",
  51303. height: math.unit(7.5, "inches")
  51304. },
  51305. {
  51306. name: "Normal",
  51307. height: math.unit(7, "feet"),
  51308. default: true
  51309. },
  51310. {
  51311. name: "Macro",
  51312. height: math.unit(60, "feet")
  51313. },
  51314. {
  51315. name: "Mega",
  51316. height: math.unit(200, "feet")
  51317. },
  51318. ]
  51319. ))
  51320. characterMakers.push(() => makeCharacter(
  51321. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51322. {
  51323. front: {
  51324. height: math.unit(10, "feet"),
  51325. weight: math.unit(2300, "lb"),
  51326. name: "Front",
  51327. image: {
  51328. source: "./media/characters/hunt3r/front.svg",
  51329. extra: 1909/1742,
  51330. bottom: 46/1955
  51331. }
  51332. },
  51333. },
  51334. [
  51335. {
  51336. name: "Normal",
  51337. height: math.unit(10, "feet"),
  51338. default: true
  51339. },
  51340. ]
  51341. ))
  51342. characterMakers.push(() => makeCharacter(
  51343. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51344. {
  51345. dressed: {
  51346. height: math.unit(11, "feet"),
  51347. weight: math.unit(18500, "lb"),
  51348. preyCapacity: math.unit(9, "people"),
  51349. name: "Dressed",
  51350. image: {
  51351. source: "./media/characters/cylphis/dressed.svg",
  51352. extra: 1028/1003,
  51353. bottom: 75/1103
  51354. },
  51355. },
  51356. undressed: {
  51357. height: math.unit(11, "feet"),
  51358. weight: math.unit(18500, "lb"),
  51359. preyCapacity: math.unit(9, "people"),
  51360. name: "Undressed",
  51361. image: {
  51362. source: "./media/characters/cylphis/undressed.svg",
  51363. extra: 1028/1003,
  51364. bottom: 75/1103
  51365. }
  51366. },
  51367. full: {
  51368. height: math.unit(11, "feet"),
  51369. weight: math.unit(18500 + 150*9, "lb"),
  51370. preyCapacity: math.unit(9, "people"),
  51371. name: "Full",
  51372. image: {
  51373. source: "./media/characters/cylphis/full.svg",
  51374. extra: 1028/1003,
  51375. bottom: 75/1103
  51376. }
  51377. },
  51378. },
  51379. [
  51380. {
  51381. name: "Small",
  51382. height: math.unit(8, "feet")
  51383. },
  51384. {
  51385. name: "Normal",
  51386. height: math.unit(11, "feet"),
  51387. default: true
  51388. },
  51389. ]
  51390. ))
  51391. characterMakers.push(() => makeCharacter(
  51392. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51393. {
  51394. front: {
  51395. height: math.unit(2 + 7/12, "feet"),
  51396. name: "Front",
  51397. image: {
  51398. source: "./media/characters/orishan/front.svg",
  51399. extra: 1058/1023,
  51400. bottom: 23/1081
  51401. }
  51402. },
  51403. back: {
  51404. height: math.unit(2 + 7/12, "feet"),
  51405. name: "Back",
  51406. image: {
  51407. source: "./media/characters/orishan/back.svg",
  51408. extra: 1058/1023,
  51409. bottom: 23/1081
  51410. }
  51411. },
  51412. },
  51413. [
  51414. {
  51415. name: "Micro",
  51416. height: math.unit(2, "cm")
  51417. },
  51418. {
  51419. name: "Normal",
  51420. height: math.unit(2 + 7/12, "feet"),
  51421. default: true
  51422. },
  51423. ]
  51424. ))
  51425. characterMakers.push(() => makeCharacter(
  51426. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51427. {
  51428. front: {
  51429. height: math.unit(3, "meters"),
  51430. weight: math.unit(508, "kg"),
  51431. name: "Front",
  51432. image: {
  51433. source: "./media/characters/seranis/front.svg",
  51434. extra: 1478/1454,
  51435. bottom: 41/1519
  51436. }
  51437. },
  51438. },
  51439. [
  51440. {
  51441. name: "Normal",
  51442. height: math.unit(3, "meters"),
  51443. default: true
  51444. },
  51445. {
  51446. name: "Macro",
  51447. height: math.unit(108, "meters")
  51448. },
  51449. {
  51450. name: "Megamacro",
  51451. height: math.unit(1250, "meters")
  51452. },
  51453. ]
  51454. ))
  51455. characterMakers.push(() => makeCharacter(
  51456. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51457. {
  51458. undressed: {
  51459. height: math.unit(5 + 3/12, "feet"),
  51460. name: "Undressed",
  51461. image: {
  51462. source: "./media/characters/ankou/undressed.svg",
  51463. extra: 1301/1213,
  51464. bottom: 87/1388
  51465. }
  51466. },
  51467. dressed: {
  51468. height: math.unit(5 + 3/12, "feet"),
  51469. name: "Dressed",
  51470. image: {
  51471. source: "./media/characters/ankou/dressed.svg",
  51472. extra: 1301/1213,
  51473. bottom: 87/1388
  51474. }
  51475. },
  51476. head: {
  51477. height: math.unit(1.61, "feet"),
  51478. name: "Head",
  51479. image: {
  51480. source: "./media/characters/ankou/head.svg"
  51481. }
  51482. },
  51483. },
  51484. [
  51485. {
  51486. name: "Normal",
  51487. height: math.unit(5 + 3/12, "feet"),
  51488. default: true
  51489. },
  51490. ]
  51491. ))
  51492. characterMakers.push(() => makeCharacter(
  51493. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51494. {
  51495. side: {
  51496. height: math.unit(6 + 3/12, "feet"),
  51497. weight: math.unit(200, "kg"),
  51498. name: "Side",
  51499. image: {
  51500. source: "./media/characters/juniper-skunktaur/side.svg",
  51501. extra: 1574/1229,
  51502. bottom: 38/1612
  51503. }
  51504. },
  51505. front: {
  51506. height: math.unit(6 + 3/12, "feet"),
  51507. weight: math.unit(200, "kg"),
  51508. name: "Front",
  51509. image: {
  51510. source: "./media/characters/juniper-skunktaur/front.svg",
  51511. extra: 1337/1278,
  51512. bottom: 22/1359
  51513. }
  51514. },
  51515. back: {
  51516. height: math.unit(6 + 3/12, "feet"),
  51517. weight: math.unit(200, "kg"),
  51518. name: "Back",
  51519. image: {
  51520. source: "./media/characters/juniper-skunktaur/back.svg",
  51521. extra: 1618/1273,
  51522. bottom: 13/1631
  51523. }
  51524. },
  51525. top: {
  51526. height: math.unit(2.62, "feet"),
  51527. weight: math.unit(200, "kg"),
  51528. name: "Top",
  51529. image: {
  51530. source: "./media/characters/juniper-skunktaur/top.svg"
  51531. }
  51532. },
  51533. },
  51534. [
  51535. {
  51536. name: "Normal",
  51537. height: math.unit(6 + 3/12, "feet"),
  51538. default: true
  51539. },
  51540. ]
  51541. ))
  51542. characterMakers.push(() => makeCharacter(
  51543. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51544. {
  51545. front: {
  51546. height: math.unit(20.5, "feet"),
  51547. name: "Front",
  51548. image: {
  51549. source: "./media/characters/rei/front.svg",
  51550. extra: 1349/1195,
  51551. bottom: 31/1380
  51552. }
  51553. },
  51554. back: {
  51555. height: math.unit(20.5, "feet"),
  51556. name: "Back",
  51557. image: {
  51558. source: "./media/characters/rei/back.svg",
  51559. extra: 1358/1204,
  51560. bottom: 22/1380
  51561. }
  51562. },
  51563. pawsDigi: {
  51564. height: math.unit(3.45, "feet"),
  51565. name: "Paws (Digi)",
  51566. image: {
  51567. source: "./media/characters/rei/paws-digi.svg"
  51568. }
  51569. },
  51570. pawsPlanti: {
  51571. height: math.unit(3.45, "feet"),
  51572. name: "Paws (Planti)",
  51573. image: {
  51574. source: "./media/characters/rei/paws-planti.svg"
  51575. }
  51576. },
  51577. },
  51578. [
  51579. {
  51580. name: "Normal",
  51581. height: math.unit(20.5, "feet"),
  51582. default: true
  51583. },
  51584. ]
  51585. ))
  51586. characterMakers.push(() => makeCharacter(
  51587. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51588. {
  51589. front: {
  51590. height: math.unit(5 + 11/12, "feet"),
  51591. name: "Front",
  51592. image: {
  51593. source: "./media/characters/carina/front.svg",
  51594. extra: 1720/1449,
  51595. bottom: 14/1734
  51596. }
  51597. },
  51598. back: {
  51599. height: math.unit(5 + 11/12, "feet"),
  51600. name: "Back",
  51601. image: {
  51602. source: "./media/characters/carina/back.svg",
  51603. extra: 1493/1445,
  51604. bottom: 17/1510
  51605. }
  51606. },
  51607. paw: {
  51608. height: math.unit(0.92, "feet"),
  51609. name: "Paw",
  51610. image: {
  51611. source: "./media/characters/carina/paw.svg"
  51612. }
  51613. },
  51614. },
  51615. [
  51616. {
  51617. name: "Normal",
  51618. height: math.unit(5 + 11/12, "feet"),
  51619. default: true
  51620. },
  51621. ]
  51622. ))
  51623. characterMakers.push(() => makeCharacter(
  51624. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51625. {
  51626. front: {
  51627. height: math.unit(4.88, "meters"),
  51628. name: "Front",
  51629. image: {
  51630. source: "./media/characters/maya/front.svg",
  51631. extra: 1222/1145,
  51632. bottom: 57/1279
  51633. }
  51634. },
  51635. },
  51636. [
  51637. {
  51638. name: "Normal",
  51639. height: math.unit(4.88, "meters"),
  51640. default: true
  51641. },
  51642. {
  51643. name: "Macro",
  51644. height: math.unit(38.1, "meters")
  51645. },
  51646. {
  51647. name: "Macro+",
  51648. height: math.unit(152.4, "meters")
  51649. },
  51650. {
  51651. name: "Macro++",
  51652. height: math.unit(16.09, "km")
  51653. },
  51654. {
  51655. name: "Mega-macro",
  51656. height: math.unit(700, "megameters")
  51657. },
  51658. ]
  51659. ))
  51660. characterMakers.push(() => makeCharacter(
  51661. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51662. {
  51663. front: {
  51664. height: math.unit(6 + 2/12, "feet"),
  51665. weight: math.unit(500, "lb"),
  51666. preyCapacity: math.unit(4, "people"),
  51667. name: "Front",
  51668. image: {
  51669. source: "./media/characters/yepir/front.svg"
  51670. }
  51671. },
  51672. side: {
  51673. height: math.unit(6 + 2/12, "feet"),
  51674. weight: math.unit(500, "lb"),
  51675. preyCapacity: math.unit(4, "people"),
  51676. name: "Side",
  51677. image: {
  51678. source: "./media/characters/yepir/side.svg"
  51679. }
  51680. },
  51681. paw: {
  51682. height: math.unit(1.05, "feet"),
  51683. name: "Paw",
  51684. image: {
  51685. source: "./media/characters/yepir/paw.svg"
  51686. }
  51687. },
  51688. },
  51689. [
  51690. {
  51691. name: "Normal",
  51692. height: math.unit(6 + 2/12, "feet"),
  51693. default: true
  51694. },
  51695. ]
  51696. ))
  51697. characterMakers.push(() => makeCharacter(
  51698. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51699. {
  51700. front: {
  51701. height: math.unit(5 + 4/12, "feet"),
  51702. name: "Front",
  51703. image: {
  51704. source: "./media/characters/russec/front.svg",
  51705. extra: 1926/1626,
  51706. bottom: 72/1998
  51707. }
  51708. },
  51709. back: {
  51710. height: math.unit(5 + 4/12, "feet"),
  51711. name: "Back",
  51712. image: {
  51713. source: "./media/characters/russec/back.svg",
  51714. extra: 1910/1591,
  51715. bottom: 48/1958
  51716. }
  51717. },
  51718. },
  51719. [
  51720. {
  51721. name: "Small",
  51722. height: math.unit(5 + 4/12, "feet")
  51723. },
  51724. {
  51725. name: "Normal",
  51726. height: math.unit(72, "feet"),
  51727. default: true
  51728. },
  51729. ]
  51730. ))
  51731. characterMakers.push(() => makeCharacter(
  51732. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51733. {
  51734. side: {
  51735. height: math.unit(12, "feet"),
  51736. name: "Side",
  51737. image: {
  51738. source: "./media/characters/cianus/side.svg",
  51739. extra: 808/526,
  51740. bottom: 61/869
  51741. }
  51742. },
  51743. },
  51744. [
  51745. {
  51746. name: "Normal",
  51747. height: math.unit(12, "feet"),
  51748. default: true
  51749. },
  51750. ]
  51751. ))
  51752. characterMakers.push(() => makeCharacter(
  51753. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51754. {
  51755. front: {
  51756. height: math.unit(9 + 6/12, "feet"),
  51757. weight: math.unit(300, "lb"),
  51758. name: "Front",
  51759. image: {
  51760. source: "./media/characters/ahab/front.svg",
  51761. extra: 1897/1868,
  51762. bottom: 121/2018
  51763. }
  51764. },
  51765. frontNsfw: {
  51766. height: math.unit(9 + 6/12, "feet"),
  51767. weight: math.unit(300, "lb"),
  51768. name: "Front-nsfw",
  51769. image: {
  51770. source: "./media/characters/ahab/front-nsfw.svg",
  51771. extra: 1897/1868,
  51772. bottom: 121/2018
  51773. }
  51774. },
  51775. },
  51776. [
  51777. {
  51778. name: "Normal",
  51779. height: math.unit(9 + 6/12, "feet")
  51780. },
  51781. {
  51782. name: "Macro",
  51783. height: math.unit(657, "feet"),
  51784. default: true
  51785. },
  51786. ]
  51787. ))
  51788. characterMakers.push(() => makeCharacter(
  51789. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51790. {
  51791. front: {
  51792. height: math.unit(2.69, "meters"),
  51793. weight: math.unit(132, "kg"),
  51794. name: "Front",
  51795. image: {
  51796. source: "./media/characters/aarkus/front.svg",
  51797. extra: 1400/1231,
  51798. bottom: 34/1434
  51799. }
  51800. },
  51801. back: {
  51802. height: math.unit(2.69, "meters"),
  51803. weight: math.unit(132, "kg"),
  51804. name: "Back",
  51805. image: {
  51806. source: "./media/characters/aarkus/back.svg",
  51807. extra: 1381/1218,
  51808. bottom: 30/1411
  51809. }
  51810. },
  51811. frontNsfw: {
  51812. height: math.unit(2.69, "meters"),
  51813. weight: math.unit(132, "kg"),
  51814. name: "Front (NSFW)",
  51815. image: {
  51816. source: "./media/characters/aarkus/front-nsfw.svg",
  51817. extra: 1400/1231,
  51818. bottom: 34/1434
  51819. }
  51820. },
  51821. foot: {
  51822. height: math.unit(1.45, "feet"),
  51823. name: "Foot",
  51824. image: {
  51825. source: "./media/characters/aarkus/foot.svg"
  51826. }
  51827. },
  51828. head: {
  51829. height: math.unit(2.85, "feet"),
  51830. name: "Head",
  51831. image: {
  51832. source: "./media/characters/aarkus/head.svg"
  51833. }
  51834. },
  51835. headAlt: {
  51836. height: math.unit(3.07, "feet"),
  51837. name: "Head (Alt)",
  51838. image: {
  51839. source: "./media/characters/aarkus/head-alt.svg"
  51840. }
  51841. },
  51842. mouth: {
  51843. height: math.unit(1.25, "feet"),
  51844. name: "Mouth",
  51845. image: {
  51846. source: "./media/characters/aarkus/mouth.svg"
  51847. }
  51848. },
  51849. dick: {
  51850. height: math.unit(1.77, "feet"),
  51851. name: "Dick",
  51852. image: {
  51853. source: "./media/characters/aarkus/dick.svg"
  51854. }
  51855. },
  51856. },
  51857. [
  51858. {
  51859. name: "Normal",
  51860. height: math.unit(2.69, "meters"),
  51861. default: true
  51862. },
  51863. {
  51864. name: "Macro",
  51865. height: math.unit(269, "meters")
  51866. },
  51867. {
  51868. name: "Macro+",
  51869. height: math.unit(672.5, "meters")
  51870. },
  51871. {
  51872. name: "Megamacro",
  51873. height: math.unit(2.017, "km")
  51874. },
  51875. ]
  51876. ))
  51877. characterMakers.push(() => makeCharacter(
  51878. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  51879. {
  51880. front: {
  51881. height: math.unit(23.47, "cm"),
  51882. weight: math.unit(600, "grams"),
  51883. name: "Front",
  51884. image: {
  51885. source: "./media/characters/diode/front.svg",
  51886. extra: 1778/1396,
  51887. bottom: 95/1873
  51888. }
  51889. },
  51890. side: {
  51891. height: math.unit(23.47, "cm"),
  51892. weight: math.unit(600, "grams"),
  51893. name: "Side",
  51894. image: {
  51895. source: "./media/characters/diode/side.svg",
  51896. extra: 1831/1404,
  51897. bottom: 86/1917
  51898. }
  51899. },
  51900. wings: {
  51901. height: math.unit(0.683, "feet"),
  51902. name: "Wings",
  51903. image: {
  51904. source: "./media/characters/diode/wings.svg"
  51905. }
  51906. },
  51907. },
  51908. [
  51909. {
  51910. name: "Normal",
  51911. height: math.unit(23.47, "cm"),
  51912. default: true
  51913. },
  51914. ]
  51915. ))
  51916. characterMakers.push(() => makeCharacter(
  51917. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  51918. {
  51919. front: {
  51920. height: math.unit(6 + 3/12, "feet"),
  51921. weight: math.unit(250, "lb"),
  51922. name: "Front",
  51923. image: {
  51924. source: "./media/characters/reika/front.svg",
  51925. extra: 1120/1078,
  51926. bottom: 86/1206
  51927. }
  51928. },
  51929. },
  51930. [
  51931. {
  51932. name: "Normal",
  51933. height: math.unit(6 + 3/12, "feet"),
  51934. default: true
  51935. },
  51936. ]
  51937. ))
  51938. characterMakers.push(() => makeCharacter(
  51939. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  51940. {
  51941. front: {
  51942. height: math.unit(16 + 8/12, "feet"),
  51943. weight: math.unit(9000, "lb"),
  51944. name: "Front",
  51945. image: {
  51946. source: "./media/characters/lokuto-takama/front.svg",
  51947. extra: 1774/1632,
  51948. bottom: 147/1921
  51949. },
  51950. extraAttributes: {
  51951. "bustWidth": {
  51952. name: "Bust Width",
  51953. power: 1,
  51954. type: "length",
  51955. base: math.unit(2.4, "meters")
  51956. },
  51957. "breastWeight": {
  51958. name: "Breast Weight",
  51959. power: 3,
  51960. type: "mass",
  51961. base: math.unit(1000, "kg")
  51962. },
  51963. }
  51964. },
  51965. },
  51966. [
  51967. {
  51968. name: "Normal",
  51969. height: math.unit(16 + 8/12, "feet"),
  51970. default: true
  51971. },
  51972. ]
  51973. ))
  51974. characterMakers.push(() => makeCharacter(
  51975. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  51976. {
  51977. front: {
  51978. height: math.unit(10, "cm"),
  51979. weight: math.unit(850, "grams"),
  51980. name: "Front",
  51981. image: {
  51982. source: "./media/characters/owak-bone/front.svg",
  51983. extra: 1965/1801,
  51984. bottom: 31/1996
  51985. }
  51986. },
  51987. },
  51988. [
  51989. {
  51990. name: "Normal",
  51991. height: math.unit(10, "cm"),
  51992. default: true
  51993. },
  51994. ]
  51995. ))
  51996. characterMakers.push(() => makeCharacter(
  51997. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  51998. {
  51999. front: {
  52000. height: math.unit(2 + 6/12, "feet"),
  52001. weight: math.unit(9, "lb"),
  52002. name: "Front",
  52003. image: {
  52004. source: "./media/characters/muffin/front.svg",
  52005. extra: 1220/1195,
  52006. bottom: 84/1304
  52007. }
  52008. },
  52009. },
  52010. [
  52011. {
  52012. name: "Normal",
  52013. height: math.unit(2 + 6/12, "feet"),
  52014. default: true
  52015. },
  52016. ]
  52017. ))
  52018. characterMakers.push(() => makeCharacter(
  52019. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52020. {
  52021. front: {
  52022. height: math.unit(7, "feet"),
  52023. name: "Front",
  52024. image: {
  52025. source: "./media/characters/chimera/front.svg",
  52026. extra: 1752/1614,
  52027. bottom: 68/1820
  52028. }
  52029. },
  52030. },
  52031. [
  52032. {
  52033. name: "Normal",
  52034. height: math.unit(7, "feet")
  52035. },
  52036. {
  52037. name: "Gigamacro",
  52038. height: math.unit(2.9, "gigameters"),
  52039. default: true
  52040. },
  52041. {
  52042. name: "Universal",
  52043. height: math.unit(1.56e26, "yottameters")
  52044. },
  52045. ]
  52046. ))
  52047. characterMakers.push(() => makeCharacter(
  52048. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52049. {
  52050. front: {
  52051. height: math.unit(3, "feet"),
  52052. weight: math.unit(20, "lb"),
  52053. name: "Front",
  52054. image: {
  52055. source: "./media/characters/kit-fennec-fox/front.svg",
  52056. extra: 1027/932,
  52057. bottom: 16/1043
  52058. }
  52059. },
  52060. back: {
  52061. height: math.unit(3, "feet"),
  52062. weight: math.unit(20, "lb"),
  52063. name: "Back",
  52064. image: {
  52065. source: "./media/characters/kit-fennec-fox/back.svg",
  52066. extra: 1027/932,
  52067. bottom: 16/1043
  52068. }
  52069. },
  52070. },
  52071. [
  52072. {
  52073. name: "Normal",
  52074. height: math.unit(3, "feet"),
  52075. default: true
  52076. },
  52077. ]
  52078. ))
  52079. characterMakers.push(() => makeCharacter(
  52080. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52081. {
  52082. front: {
  52083. height: math.unit(167, "cm"),
  52084. name: "Front",
  52085. image: {
  52086. source: "./media/characters/blue-otter/front.svg",
  52087. extra: 1951/1920,
  52088. bottom: 31/1982
  52089. }
  52090. },
  52091. },
  52092. [
  52093. {
  52094. name: "Otter-Sized",
  52095. height: math.unit(100, "cm")
  52096. },
  52097. {
  52098. name: "Normal",
  52099. height: math.unit(167, "cm"),
  52100. default: true
  52101. },
  52102. ]
  52103. ))
  52104. characterMakers.push(() => makeCharacter(
  52105. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52106. {
  52107. front: {
  52108. height: math.unit(4 + 4/12, "feet"),
  52109. name: "Front",
  52110. image: {
  52111. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52112. extra: 1072/1067,
  52113. bottom: 117/1189
  52114. }
  52115. },
  52116. back: {
  52117. height: math.unit(4 + 4/12, "feet"),
  52118. name: "Back",
  52119. image: {
  52120. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52121. extra: 1135/1129,
  52122. bottom: 57/1192
  52123. }
  52124. },
  52125. head: {
  52126. height: math.unit(1.77, "feet"),
  52127. name: "Head",
  52128. image: {
  52129. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52130. }
  52131. },
  52132. },
  52133. [
  52134. {
  52135. name: "Normal",
  52136. height: math.unit(4 + 4/12, "feet"),
  52137. default: true
  52138. },
  52139. ]
  52140. ))
  52141. characterMakers.push(() => makeCharacter(
  52142. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52143. {
  52144. front: {
  52145. height: math.unit(2, "inches"),
  52146. name: "Front",
  52147. image: {
  52148. source: "./media/characters/carley-hartford/front.svg",
  52149. extra: 1035/988,
  52150. bottom: 23/1058
  52151. }
  52152. },
  52153. back: {
  52154. height: math.unit(2, "inches"),
  52155. name: "Back",
  52156. image: {
  52157. source: "./media/characters/carley-hartford/back.svg",
  52158. extra: 1035/988,
  52159. bottom: 23/1058
  52160. }
  52161. },
  52162. dressed: {
  52163. height: math.unit(2, "inches"),
  52164. name: "Dressed",
  52165. image: {
  52166. source: "./media/characters/carley-hartford/dressed.svg",
  52167. extra: 651/620,
  52168. bottom: 0/651
  52169. }
  52170. },
  52171. },
  52172. [
  52173. {
  52174. name: "Micro",
  52175. height: math.unit(2, "inches"),
  52176. default: true
  52177. },
  52178. {
  52179. name: "Macro",
  52180. height: math.unit(6 + 3/12, "feet")
  52181. },
  52182. ]
  52183. ))
  52184. characterMakers.push(() => makeCharacter(
  52185. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52186. {
  52187. front: {
  52188. height: math.unit(2 + 3/12, "feet"),
  52189. weight: math.unit(15 + 7/16, "lb"),
  52190. name: "Front",
  52191. image: {
  52192. source: "./media/characters/duke/front.svg",
  52193. extra: 910/815,
  52194. bottom: 30/940
  52195. }
  52196. },
  52197. },
  52198. [
  52199. {
  52200. name: "Normal",
  52201. height: math.unit(2 + 3/12, "feet"),
  52202. default: true
  52203. },
  52204. ]
  52205. ))
  52206. characterMakers.push(() => makeCharacter(
  52207. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52208. {
  52209. front: {
  52210. height: math.unit(5 + 4/12, "feet"),
  52211. weight: math.unit(156, "lb"),
  52212. name: "Front",
  52213. image: {
  52214. source: "./media/characters/dein/front.svg",
  52215. extra: 855/815,
  52216. bottom: 48/903
  52217. }
  52218. },
  52219. side: {
  52220. height: math.unit(5 + 4/12, "feet"),
  52221. weight: math.unit(156, "lb"),
  52222. name: "side",
  52223. image: {
  52224. source: "./media/characters/dein/side.svg",
  52225. extra: 846/803,
  52226. bottom: 25/871
  52227. }
  52228. },
  52229. maw: {
  52230. height: math.unit(1.45, "feet"),
  52231. name: "Maw",
  52232. image: {
  52233. source: "./media/characters/dein/maw.svg"
  52234. }
  52235. },
  52236. },
  52237. [
  52238. {
  52239. name: "Ferret Sized",
  52240. height: math.unit(2 + 5/12, "feet")
  52241. },
  52242. {
  52243. name: "Normal",
  52244. height: math.unit(5 + 4/12, "feet"),
  52245. default: true
  52246. },
  52247. ]
  52248. ))
  52249. characterMakers.push(() => makeCharacter(
  52250. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52251. {
  52252. front: {
  52253. height: math.unit(84 + 8/12, "feet"),
  52254. weight: math.unit(942180, "lb"),
  52255. name: "Front",
  52256. image: {
  52257. source: "./media/characters/daurine-arima/front.svg",
  52258. extra: 1989/1782,
  52259. bottom: 37/2026
  52260. }
  52261. },
  52262. side: {
  52263. height: math.unit(84 + 8/12, "feet"),
  52264. weight: math.unit(942180, "lb"),
  52265. name: "Side",
  52266. image: {
  52267. source: "./media/characters/daurine-arima/side.svg",
  52268. extra: 1997/1790,
  52269. bottom: 21/2018
  52270. }
  52271. },
  52272. back: {
  52273. height: math.unit(84 + 8/12, "feet"),
  52274. weight: math.unit(942180, "lb"),
  52275. name: "Back",
  52276. image: {
  52277. source: "./media/characters/daurine-arima/back.svg",
  52278. extra: 1992/1800,
  52279. bottom: 12/2004
  52280. }
  52281. },
  52282. head: {
  52283. height: math.unit(15.5, "feet"),
  52284. name: "Head",
  52285. image: {
  52286. source: "./media/characters/daurine-arima/head.svg"
  52287. }
  52288. },
  52289. headAlt: {
  52290. height: math.unit(19.19, "feet"),
  52291. name: "Head (Alt)",
  52292. image: {
  52293. source: "./media/characters/daurine-arima/head-alt.svg"
  52294. }
  52295. },
  52296. },
  52297. [
  52298. {
  52299. name: "Minimum height",
  52300. height: math.unit(8 + 10/12, "feet")
  52301. },
  52302. {
  52303. name: "Comfort height",
  52304. height: math.unit(19 + 6 /12, "feet")
  52305. },
  52306. {
  52307. name: "\"Normal\" height",
  52308. height: math.unit(28 + 10/12, "feet")
  52309. },
  52310. {
  52311. name: "Base height",
  52312. height: math.unit(84 + 8/12, "feet"),
  52313. default: true
  52314. },
  52315. {
  52316. name: "Mini-macro",
  52317. height: math.unit(2360, "feet")
  52318. },
  52319. {
  52320. name: "Macro",
  52321. height: math.unit(10, "miles")
  52322. },
  52323. {
  52324. name: "Goddess",
  52325. height: math.unit(9.99e40, "yottameters")
  52326. },
  52327. ]
  52328. ))
  52329. characterMakers.push(() => makeCharacter(
  52330. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52331. {
  52332. front: {
  52333. height: math.unit(2.3, "meters"),
  52334. name: "Front",
  52335. image: {
  52336. source: "./media/characters/cilenomon/front.svg",
  52337. extra: 1963/1778,
  52338. bottom: 54/2017
  52339. }
  52340. },
  52341. },
  52342. [
  52343. {
  52344. name: "Normal",
  52345. height: math.unit(2.3, "meters"),
  52346. default: true
  52347. },
  52348. {
  52349. name: "Big",
  52350. height: math.unit(5, "meters")
  52351. },
  52352. {
  52353. name: "Macro",
  52354. height: math.unit(30, "meters")
  52355. },
  52356. {
  52357. name: "True",
  52358. height: math.unit(1, "universe")
  52359. },
  52360. ]
  52361. ))
  52362. characterMakers.push(() => makeCharacter(
  52363. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52364. {
  52365. front: {
  52366. height: math.unit(5, "feet"),
  52367. name: "Front",
  52368. image: {
  52369. source: "./media/characters/sen-mink/front.svg",
  52370. extra: 1727/1675,
  52371. bottom: 35/1762
  52372. }
  52373. },
  52374. },
  52375. [
  52376. {
  52377. name: "Normal",
  52378. height: math.unit(5, "feet"),
  52379. default: true
  52380. },
  52381. ]
  52382. ))
  52383. characterMakers.push(() => makeCharacter(
  52384. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52385. {
  52386. front: {
  52387. height: math.unit(5.42999, "feet"),
  52388. weight: math.unit(100, "lb"),
  52389. name: "Front",
  52390. image: {
  52391. source: "./media/characters/ophois/front.svg",
  52392. extra: 1429/1286,
  52393. bottom: 60/1489
  52394. }
  52395. },
  52396. },
  52397. [
  52398. {
  52399. name: "Normal",
  52400. height: math.unit(5.42999, "feet"),
  52401. default: true
  52402. },
  52403. ]
  52404. ))
  52405. characterMakers.push(() => makeCharacter(
  52406. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52407. {
  52408. front: {
  52409. height: math.unit(2, "meters"),
  52410. name: "Front",
  52411. image: {
  52412. source: "./media/characters/riley/front.svg",
  52413. extra: 1779/1754,
  52414. bottom: 139/1918
  52415. }
  52416. },
  52417. },
  52418. [
  52419. {
  52420. name: "Normal",
  52421. height: math.unit(2, "meters"),
  52422. default: true
  52423. },
  52424. ]
  52425. ))
  52426. characterMakers.push(() => makeCharacter(
  52427. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52428. {
  52429. front: {
  52430. height: math.unit(6 + 2/12, "feet"),
  52431. weight: math.unit(195, "lb"),
  52432. preyCapacity: math.unit(6, "people"),
  52433. name: "Front",
  52434. image: {
  52435. source: "./media/characters/shuken-flash/front.svg",
  52436. extra: 1905/1739,
  52437. bottom: 65/1970
  52438. }
  52439. },
  52440. back: {
  52441. height: math.unit(6 + 2/12, "feet"),
  52442. weight: math.unit(195, "lb"),
  52443. preyCapacity: math.unit(6, "people"),
  52444. name: "Back",
  52445. image: {
  52446. source: "./media/characters/shuken-flash/back.svg",
  52447. extra: 1912/1751,
  52448. bottom: 13/1925
  52449. }
  52450. },
  52451. },
  52452. [
  52453. {
  52454. name: "Normal",
  52455. height: math.unit(6 + 2/12, "feet"),
  52456. default: true
  52457. },
  52458. ]
  52459. ))
  52460. characterMakers.push(() => makeCharacter(
  52461. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52462. {
  52463. front: {
  52464. height: math.unit(5 + 9/12, "feet"),
  52465. weight: math.unit(150, "lb"),
  52466. name: "Front",
  52467. image: {
  52468. source: "./media/characters/plat/front.svg",
  52469. extra: 1816/1703,
  52470. bottom: 43/1859
  52471. }
  52472. },
  52473. side: {
  52474. height: math.unit(5 + 9/12, "feet"),
  52475. weight: math.unit(300, "lb"),
  52476. name: "Side",
  52477. image: {
  52478. source: "./media/characters/plat/side.svg",
  52479. extra: 1824/1699,
  52480. bottom: 18/1842
  52481. }
  52482. },
  52483. },
  52484. [
  52485. {
  52486. name: "Normal",
  52487. height: math.unit(5 + 9/12, "feet"),
  52488. default: true
  52489. },
  52490. ]
  52491. ))
  52492. characterMakers.push(() => makeCharacter(
  52493. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52494. {
  52495. front: {
  52496. height: math.unit(9, "feet"),
  52497. weight: math.unit(1800, "lb"),
  52498. name: "Front",
  52499. image: {
  52500. source: "./media/characters/elaine/front.svg",
  52501. extra: 1833/1354,
  52502. bottom: 25/1858
  52503. }
  52504. },
  52505. back: {
  52506. height: math.unit(8.8, "feet"),
  52507. weight: math.unit(1800, "lb"),
  52508. name: "Back",
  52509. image: {
  52510. source: "./media/characters/elaine/back.svg",
  52511. extra: 1641/1233,
  52512. bottom: 53/1694
  52513. }
  52514. },
  52515. },
  52516. [
  52517. {
  52518. name: "Normal",
  52519. height: math.unit(9, "feet"),
  52520. default: true
  52521. },
  52522. ]
  52523. ))
  52524. characterMakers.push(() => makeCharacter(
  52525. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52526. {
  52527. front: {
  52528. height: math.unit(17 + 9/12, "feet"),
  52529. weight: math.unit(8000, "lb"),
  52530. name: "Front",
  52531. image: {
  52532. source: "./media/characters/vera-raven/front.svg",
  52533. extra: 1457/1412,
  52534. bottom: 121/1578
  52535. }
  52536. },
  52537. side: {
  52538. height: math.unit(17 + 9/12, "feet"),
  52539. weight: math.unit(8000, "lb"),
  52540. name: "Side",
  52541. image: {
  52542. source: "./media/characters/vera-raven/side.svg",
  52543. extra: 1510/1464,
  52544. bottom: 54/1564
  52545. }
  52546. },
  52547. },
  52548. [
  52549. {
  52550. name: "Normal",
  52551. height: math.unit(17 + 9/12, "feet"),
  52552. default: true
  52553. },
  52554. ]
  52555. ))
  52556. //characters
  52557. function makeCharacters() {
  52558. const results = [];
  52559. characterMakers.forEach(character => {
  52560. results.push(character());
  52561. });
  52562. return results;
  52563. }