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.
 
 
 

37829 lines
951 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  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. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound", "demon"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["mammal"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mammal"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "T Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. }
  1623. //species
  1624. function getSpeciesInfo(speciesList) {
  1625. let result = new Set();
  1626. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1627. result.add(entry)
  1628. });
  1629. return Array.from(result);
  1630. };
  1631. function getSpeciesInfoHelper(species) {
  1632. if (!speciesData[species]) {
  1633. console.warn(species + " doesn't exist");
  1634. return [];
  1635. }
  1636. if (speciesData[species].parents) {
  1637. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1638. } else {
  1639. return [species];
  1640. }
  1641. }
  1642. characterMakers.push(() => makeCharacter(
  1643. {
  1644. name: "Fen",
  1645. species: ["crux"],
  1646. description: {
  1647. title: "Bio",
  1648. text: "Very furry. Sheds on everything."
  1649. },
  1650. tags: [
  1651. "anthro",
  1652. "goo"
  1653. ]
  1654. },
  1655. {
  1656. back: {
  1657. height: math.unit(2.2428, "meter"),
  1658. weight: math.unit(124.738, "kg"),
  1659. name: "Back",
  1660. image: {
  1661. source: "./media/characters/fen/back.svg",
  1662. extra: 2024 / 1867,
  1663. bottom: 13 / 2037
  1664. },
  1665. info: {
  1666. description: {
  1667. mode: "append",
  1668. text: "\n\nHe is not currently looking at you."
  1669. }
  1670. }
  1671. },
  1672. full: {
  1673. height: math.unit(1.34, "meter"),
  1674. weight: math.unit(225, "kg"),
  1675. name: "Full",
  1676. image: {
  1677. source: "./media/characters/fen/full.svg"
  1678. },
  1679. info: {
  1680. description: {
  1681. mode: "append",
  1682. text: "\n\nMunch."
  1683. }
  1684. }
  1685. },
  1686. kneeling: {
  1687. height: math.unit(5.4, "feet"),
  1688. weight: math.unit(124.738, "kg"),
  1689. name: "Kneeling",
  1690. image: {
  1691. source: "./media/characters/fen/kneeling.svg",
  1692. extra: 563 / 507
  1693. }
  1694. },
  1695. goo: {
  1696. height: math.unit(2.8, "feet"),
  1697. weight: math.unit(125, "kg"),
  1698. capacity: math.unit(1, "people"),
  1699. name: "Goo",
  1700. image: {
  1701. source: "./media/characters/fen/goo.svg",
  1702. bottom: 116 / 613
  1703. }
  1704. },
  1705. lounging: {
  1706. height: math.unit(6.5, "feet"),
  1707. weight: math.unit(125, "kg"),
  1708. name: "Lounging",
  1709. image: {
  1710. source: "./media/characters/fen/lounging.svg"
  1711. }
  1712. },
  1713. },
  1714. [
  1715. {
  1716. name: "Normal",
  1717. height: math.unit(2.2428, "meter")
  1718. },
  1719. {
  1720. name: "Big",
  1721. height: math.unit(12, "feet")
  1722. },
  1723. {
  1724. name: "Minimacro",
  1725. height: math.unit(40, "feet"),
  1726. default: true,
  1727. info: {
  1728. description: {
  1729. mode: "append",
  1730. text: "\n\nTOO DAMN BIG"
  1731. }
  1732. }
  1733. },
  1734. {
  1735. name: "Macro",
  1736. height: math.unit(100, "feet"),
  1737. info: {
  1738. description: {
  1739. mode: "append",
  1740. text: "\n\nTOO DAMN BIG"
  1741. }
  1742. }
  1743. },
  1744. {
  1745. name: "Macro+",
  1746. height: math.unit(300, "feet")
  1747. },
  1748. {
  1749. name: "Megamacro",
  1750. height: math.unit(2, "miles")
  1751. }
  1752. ]
  1753. ))
  1754. characterMakers.push(() => makeCharacter(
  1755. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1756. {
  1757. front: {
  1758. height: math.unit(183, "cm"),
  1759. weight: math.unit(80, "kg"),
  1760. name: "Front",
  1761. image: {
  1762. source: "./media/characters/sofia-fluttertail/front.svg",
  1763. bottom: 0.01,
  1764. extra: 2154 / 2081
  1765. }
  1766. },
  1767. frontAlt: {
  1768. height: math.unit(183, "cm"),
  1769. weight: math.unit(80, "kg"),
  1770. name: "Front (alt)",
  1771. image: {
  1772. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1773. }
  1774. },
  1775. back: {
  1776. height: math.unit(183, "cm"),
  1777. weight: math.unit(80, "kg"),
  1778. name: "Back",
  1779. image: {
  1780. source: "./media/characters/sofia-fluttertail/back.svg"
  1781. }
  1782. },
  1783. kneeling: {
  1784. height: math.unit(125, "cm"),
  1785. weight: math.unit(80, "kg"),
  1786. name: "Kneeling",
  1787. image: {
  1788. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1789. extra: 1033 / 977,
  1790. bottom: 23.7 / 1057
  1791. }
  1792. },
  1793. maw: {
  1794. height: math.unit(183 / 5, "cm"),
  1795. name: "Maw",
  1796. image: {
  1797. source: "./media/characters/sofia-fluttertail/maw.svg"
  1798. }
  1799. },
  1800. mawcloseup: {
  1801. height: math.unit(183 / 5 * 0.41, "cm"),
  1802. name: "Maw (Closeup)",
  1803. image: {
  1804. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1805. }
  1806. },
  1807. paws: {
  1808. height: math.unit(1.17, "feet"),
  1809. name: "Paws",
  1810. image: {
  1811. source: "./media/characters/sofia-fluttertail/paws.svg",
  1812. extra: 851 / 851,
  1813. bottom: 17 / 868
  1814. }
  1815. },
  1816. },
  1817. [
  1818. {
  1819. name: "Normal",
  1820. height: math.unit(1.83, "meter")
  1821. },
  1822. {
  1823. name: "Size Thief",
  1824. height: math.unit(18, "feet")
  1825. },
  1826. {
  1827. name: "50 Foot Collie",
  1828. height: math.unit(50, "feet")
  1829. },
  1830. {
  1831. name: "Macro",
  1832. height: math.unit(96, "feet"),
  1833. default: true
  1834. },
  1835. {
  1836. name: "Megamerger",
  1837. height: math.unit(650, "feet")
  1838. },
  1839. ]
  1840. ))
  1841. characterMakers.push(() => makeCharacter(
  1842. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1843. {
  1844. front: {
  1845. height: math.unit(7, "feet"),
  1846. weight: math.unit(100, "kg"),
  1847. name: "Front",
  1848. image: {
  1849. source: "./media/characters/march/front.svg",
  1850. extra: 1,
  1851. bottom: 0.015
  1852. }
  1853. },
  1854. foot: {
  1855. height: math.unit(0.9, "feet"),
  1856. name: "Foot",
  1857. image: {
  1858. source: "./media/characters/march/foot.svg"
  1859. }
  1860. },
  1861. },
  1862. [
  1863. {
  1864. name: "Normal",
  1865. height: math.unit(7.9, "feet")
  1866. },
  1867. {
  1868. name: "Macro",
  1869. height: math.unit(220, "meters")
  1870. },
  1871. {
  1872. name: "Megamacro",
  1873. height: math.unit(2.98, "km"),
  1874. default: true
  1875. },
  1876. {
  1877. name: "Gigamacro",
  1878. height: math.unit(15963, "km")
  1879. },
  1880. {
  1881. name: "Teramacro",
  1882. height: math.unit(2980000000, "km")
  1883. },
  1884. {
  1885. name: "Examacro",
  1886. height: math.unit(250, "parsecs")
  1887. },
  1888. ]
  1889. ))
  1890. characterMakers.push(() => makeCharacter(
  1891. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1892. {
  1893. front: {
  1894. height: math.unit(6, "feet"),
  1895. weight: math.unit(60, "kg"),
  1896. name: "Front",
  1897. image: {
  1898. source: "./media/characters/noir/front.svg",
  1899. extra: 1,
  1900. bottom: 0.032
  1901. }
  1902. },
  1903. },
  1904. [
  1905. {
  1906. name: "Normal",
  1907. height: math.unit(6.6, "feet")
  1908. },
  1909. {
  1910. name: "Macro",
  1911. height: math.unit(500, "feet")
  1912. },
  1913. {
  1914. name: "Megamacro",
  1915. height: math.unit(2.5, "km"),
  1916. default: true
  1917. },
  1918. {
  1919. name: "Gigamacro",
  1920. height: math.unit(22500, "km")
  1921. },
  1922. {
  1923. name: "Teramacro",
  1924. height: math.unit(2500000000, "km")
  1925. },
  1926. {
  1927. name: "Examacro",
  1928. height: math.unit(200, "parsecs")
  1929. },
  1930. ]
  1931. ))
  1932. characterMakers.push(() => makeCharacter(
  1933. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1934. {
  1935. front: {
  1936. height: math.unit(7, "feet"),
  1937. weight: math.unit(100, "kg"),
  1938. name: "Front",
  1939. image: {
  1940. source: "./media/characters/okuri/front.svg",
  1941. extra: 1,
  1942. bottom: 0.037
  1943. }
  1944. },
  1945. back: {
  1946. height: math.unit(7, "feet"),
  1947. weight: math.unit(100, "kg"),
  1948. name: "Back",
  1949. image: {
  1950. source: "./media/characters/okuri/back.svg",
  1951. extra: 1,
  1952. bottom: 0.007
  1953. }
  1954. },
  1955. },
  1956. [
  1957. {
  1958. name: "Megamacro",
  1959. height: math.unit(100, "miles"),
  1960. default: true
  1961. },
  1962. ]
  1963. ))
  1964. characterMakers.push(() => makeCharacter(
  1965. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1966. {
  1967. front: {
  1968. height: math.unit(7, "feet"),
  1969. weight: math.unit(100, "kg"),
  1970. name: "Front",
  1971. image: {
  1972. source: "./media/characters/manny/front.svg",
  1973. extra: 1,
  1974. bottom: 0.06
  1975. }
  1976. },
  1977. back: {
  1978. height: math.unit(7, "feet"),
  1979. weight: math.unit(100, "kg"),
  1980. name: "Back",
  1981. image: {
  1982. source: "./media/characters/manny/back.svg",
  1983. extra: 1,
  1984. bottom: 0.014
  1985. }
  1986. },
  1987. },
  1988. [
  1989. {
  1990. name: "Normal",
  1991. height: math.unit(7, "feet"),
  1992. },
  1993. {
  1994. name: "Macro",
  1995. height: math.unit(78, "feet"),
  1996. default: true
  1997. },
  1998. {
  1999. name: "Macro+",
  2000. height: math.unit(300, "meters")
  2001. },
  2002. {
  2003. name: "Macro++",
  2004. height: math.unit(2400, "meters")
  2005. },
  2006. {
  2007. name: "Megamacro",
  2008. height: math.unit(5167, "meters")
  2009. },
  2010. {
  2011. name: "Gigamacro",
  2012. height: math.unit(41769, "miles")
  2013. },
  2014. ]
  2015. ))
  2016. characterMakers.push(() => makeCharacter(
  2017. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2018. {
  2019. front: {
  2020. height: math.unit(7, "feet"),
  2021. weight: math.unit(100, "kg"),
  2022. name: "Front",
  2023. image: {
  2024. source: "./media/characters/adake/front-1.svg"
  2025. }
  2026. },
  2027. frontAlt: {
  2028. height: math.unit(7, "feet"),
  2029. weight: math.unit(100, "kg"),
  2030. name: "Front (Alt)",
  2031. image: {
  2032. source: "./media/characters/adake/front-2.svg",
  2033. extra: 1,
  2034. bottom: 0.01
  2035. }
  2036. },
  2037. back: {
  2038. height: math.unit(7, "feet"),
  2039. weight: math.unit(100, "kg"),
  2040. name: "Back",
  2041. image: {
  2042. source: "./media/characters/adake/back.svg",
  2043. }
  2044. },
  2045. kneel: {
  2046. height: math.unit(5.385, "feet"),
  2047. weight: math.unit(100, "kg"),
  2048. name: "Kneeling",
  2049. image: {
  2050. source: "./media/characters/adake/kneel.svg",
  2051. bottom: 0.052
  2052. }
  2053. },
  2054. },
  2055. [
  2056. {
  2057. name: "Normal",
  2058. height: math.unit(7, "feet"),
  2059. },
  2060. {
  2061. name: "Macro",
  2062. height: math.unit(78, "feet"),
  2063. default: true
  2064. },
  2065. {
  2066. name: "Macro+",
  2067. height: math.unit(300, "meters")
  2068. },
  2069. {
  2070. name: "Macro++",
  2071. height: math.unit(2400, "meters")
  2072. },
  2073. {
  2074. name: "Megamacro",
  2075. height: math.unit(5167, "meters")
  2076. },
  2077. {
  2078. name: "Gigamacro",
  2079. height: math.unit(41769, "miles")
  2080. },
  2081. ]
  2082. ))
  2083. characterMakers.push(() => makeCharacter(
  2084. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2085. {
  2086. front: {
  2087. height: math.unit(1.65, "meters"),
  2088. weight: math.unit(50, "kg"),
  2089. name: "Front",
  2090. image: {
  2091. source: "./media/characters/elijah/front.svg",
  2092. extra: 858 / 830,
  2093. bottom: 95.5 / 953.8559
  2094. }
  2095. },
  2096. back: {
  2097. height: math.unit(1.65, "meters"),
  2098. weight: math.unit(50, "kg"),
  2099. name: "Back",
  2100. image: {
  2101. source: "./media/characters/elijah/back.svg",
  2102. extra: 895 / 850,
  2103. bottom: 5.3 / 897.956
  2104. }
  2105. },
  2106. frontNsfw: {
  2107. height: math.unit(1.65, "meters"),
  2108. weight: math.unit(50, "kg"),
  2109. name: "Front (NSFW)",
  2110. image: {
  2111. source: "./media/characters/elijah/front-nsfw.svg",
  2112. extra: 858 / 830,
  2113. bottom: 95.5 / 953.8559
  2114. }
  2115. },
  2116. backNsfw: {
  2117. height: math.unit(1.65, "meters"),
  2118. weight: math.unit(50, "kg"),
  2119. name: "Back (NSFW)",
  2120. image: {
  2121. source: "./media/characters/elijah/back-nsfw.svg",
  2122. extra: 895 / 850,
  2123. bottom: 5.3 / 897.956
  2124. }
  2125. },
  2126. dick: {
  2127. height: math.unit(1, "feet"),
  2128. name: "Dick",
  2129. image: {
  2130. source: "./media/characters/elijah/dick.svg"
  2131. }
  2132. },
  2133. beakOpen: {
  2134. height: math.unit(1.25, "feet"),
  2135. name: "Beak (Open)",
  2136. image: {
  2137. source: "./media/characters/elijah/beak-open.svg"
  2138. }
  2139. },
  2140. beakShut: {
  2141. height: math.unit(1.25, "feet"),
  2142. name: "Beak (Shut)",
  2143. image: {
  2144. source: "./media/characters/elijah/beak-shut.svg"
  2145. }
  2146. },
  2147. footFlexing: {
  2148. height: math.unit(1.61, "feet"),
  2149. name: "Foot (Flexing)",
  2150. image: {
  2151. source: "./media/characters/elijah/foot-flexing.svg"
  2152. }
  2153. },
  2154. footStepping: {
  2155. height: math.unit(1.44, "feet"),
  2156. name: "Foot (Stepping)",
  2157. image: {
  2158. source: "./media/characters/elijah/foot-stepping.svg"
  2159. }
  2160. },
  2161. plantigradeLeg: {
  2162. height: math.unit(2.34, "feet"),
  2163. name: "Plantigrade Leg",
  2164. image: {
  2165. source: "./media/characters/elijah/plantigrade-leg.svg"
  2166. }
  2167. },
  2168. plantigradeFootLeft: {
  2169. height: math.unit(0.9, "feet"),
  2170. name: "Plantigrade Foot (Left)",
  2171. image: {
  2172. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2173. }
  2174. },
  2175. plantigradeFootRight: {
  2176. height: math.unit(0.9, "feet"),
  2177. name: "Plantigrade Foot (Right)",
  2178. image: {
  2179. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Normal",
  2186. height: math.unit(1.65, "meters")
  2187. },
  2188. {
  2189. name: "Macro",
  2190. height: math.unit(55, "meters"),
  2191. default: true
  2192. },
  2193. {
  2194. name: "Macro+",
  2195. height: math.unit(105, "meters")
  2196. },
  2197. ]
  2198. ))
  2199. characterMakers.push(() => makeCharacter(
  2200. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2201. {
  2202. front: {
  2203. height: math.unit(11, "feet"),
  2204. weight: math.unit(320, "kg"),
  2205. name: "Front",
  2206. image: {
  2207. source: "./media/characters/rai/front.svg",
  2208. extra: 1802/1696,
  2209. bottom: 68/1870
  2210. }
  2211. },
  2212. frontDressed: {
  2213. height: math.unit(11, "feet"),
  2214. weight: math.unit(320, "kg"),
  2215. name: "Front (Dressed)",
  2216. image: {
  2217. source: "./media/characters/rai/front-dressed.svg",
  2218. extra: 1802/1696,
  2219. bottom: 68/1870
  2220. }
  2221. },
  2222. side: {
  2223. height: math.unit(11, "feet"),
  2224. weight: math.unit(320, "kg"),
  2225. name: "Side",
  2226. image: {
  2227. source: "./media/characters/rai/side.svg",
  2228. extra: 1789/1710,
  2229. bottom: 115/1904
  2230. }
  2231. },
  2232. back: {
  2233. height: math.unit(11, "feet"),
  2234. weight: math.unit(320, "kg"),
  2235. name: "Back",
  2236. image: {
  2237. source: "./media/characters/rai/back.svg",
  2238. extra: 1770/1707,
  2239. bottom: 28/1798
  2240. }
  2241. },
  2242. feral: {
  2243. height: math.unit(11, "feet"),
  2244. weight: math.unit(640, "kg"),
  2245. name: "Feral",
  2246. image: {
  2247. source: "./media/characters/rai/feral.svg",
  2248. extra: 1035/642,
  2249. bottom: 86/1121
  2250. }
  2251. },
  2252. dragon: {
  2253. height: math.unit(23, "feet"),
  2254. weight: math.unit(50000, "lb"),
  2255. name: "Dragon",
  2256. image: {
  2257. source: "./media/characters/rai/dragon.svg",
  2258. extra: 2498 / 2030,
  2259. bottom: 85.2 / 2584
  2260. }
  2261. },
  2262. maw: {
  2263. height: math.unit(6 / 3.81416, "feet"),
  2264. name: "Maw",
  2265. image: {
  2266. source: "./media/characters/rai/maw.svg"
  2267. }
  2268. },
  2269. },
  2270. [
  2271. {
  2272. name: "Normal",
  2273. height: math.unit(11, "feet")
  2274. },
  2275. {
  2276. name: "Macro",
  2277. height: math.unit(302, "feet"),
  2278. default: true
  2279. },
  2280. ]
  2281. ))
  2282. characterMakers.push(() => makeCharacter(
  2283. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2284. {
  2285. frontDressed: {
  2286. height: math.unit(216, "feet"),
  2287. weight: math.unit(7000000, "lb"),
  2288. name: "Front (Dressed)",
  2289. image: {
  2290. source: "./media/characters/jazzy/front-dressed.svg",
  2291. extra: 2738 / 2651,
  2292. bottom: 41.8 / 2786
  2293. }
  2294. },
  2295. backDressed: {
  2296. height: math.unit(216, "feet"),
  2297. weight: math.unit(7000000, "lb"),
  2298. name: "Back (Dressed)",
  2299. image: {
  2300. source: "./media/characters/jazzy/back-dressed.svg",
  2301. extra: 2775 / 2673,
  2302. bottom: 36.8 / 2817
  2303. }
  2304. },
  2305. front: {
  2306. height: math.unit(216, "feet"),
  2307. weight: math.unit(7000000, "lb"),
  2308. name: "Front",
  2309. image: {
  2310. source: "./media/characters/jazzy/front.svg",
  2311. extra: 2738 / 2651,
  2312. bottom: 41.8 / 2786
  2313. }
  2314. },
  2315. back: {
  2316. height: math.unit(216, "feet"),
  2317. weight: math.unit(7000000, "lb"),
  2318. name: "Back",
  2319. image: {
  2320. source: "./media/characters/jazzy/back.svg",
  2321. extra: 2775 / 2673,
  2322. bottom: 36.8 / 2817
  2323. }
  2324. },
  2325. maw: {
  2326. height: math.unit(20, "feet"),
  2327. name: "Maw",
  2328. image: {
  2329. source: "./media/characters/jazzy/maw.svg"
  2330. }
  2331. },
  2332. paws: {
  2333. height: math.unit(27.5, "feet"),
  2334. name: "Paws",
  2335. image: {
  2336. source: "./media/characters/jazzy/paws.svg"
  2337. }
  2338. },
  2339. eye: {
  2340. height: math.unit(4.4, "feet"),
  2341. name: "Eye",
  2342. image: {
  2343. source: "./media/characters/jazzy/eye.svg"
  2344. }
  2345. },
  2346. droneOffense: {
  2347. height: math.unit(9.5, "inches"),
  2348. name: "Drone (Offense)",
  2349. image: {
  2350. source: "./media/characters/jazzy/drone-offense.svg"
  2351. }
  2352. },
  2353. droneRecon: {
  2354. height: math.unit(9.5, "inches"),
  2355. name: "Drone (Recon)",
  2356. image: {
  2357. source: "./media/characters/jazzy/drone-recon.svg"
  2358. }
  2359. },
  2360. droneDefense: {
  2361. height: math.unit(9.5, "inches"),
  2362. name: "Drone (Defense)",
  2363. image: {
  2364. source: "./media/characters/jazzy/drone-defense.svg"
  2365. }
  2366. },
  2367. },
  2368. [
  2369. {
  2370. name: "Macro",
  2371. height: math.unit(216, "feet"),
  2372. default: true
  2373. },
  2374. ]
  2375. ))
  2376. characterMakers.push(() => makeCharacter(
  2377. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2378. {
  2379. front: {
  2380. height: math.unit(9 + 6/12, "feet"),
  2381. weight: math.unit(700, "lb"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/flamm/front.svg",
  2385. extra: 1751/1632,
  2386. bottom: 46/1797
  2387. }
  2388. },
  2389. buff: {
  2390. height: math.unit(9 + 6/12, "feet"),
  2391. weight: math.unit(950, "lb"),
  2392. name: "Buff",
  2393. image: {
  2394. source: "./media/characters/flamm/buff.svg",
  2395. extra: 3018/2874,
  2396. bottom: 221/3239
  2397. }
  2398. },
  2399. },
  2400. [
  2401. {
  2402. name: "Normal",
  2403. height: math.unit(9.5, "feet")
  2404. },
  2405. {
  2406. name: "Macro",
  2407. height: math.unit(200, "feet"),
  2408. default: true
  2409. },
  2410. ]
  2411. ))
  2412. characterMakers.push(() => makeCharacter(
  2413. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2414. {
  2415. front: {
  2416. height: math.unit(5 + 3/12, "feet"),
  2417. weight: math.unit(60, "kg"),
  2418. name: "Front",
  2419. image: {
  2420. source: "./media/characters/zephiro/front.svg",
  2421. extra: 2309 / 2162,
  2422. bottom: 0.069
  2423. }
  2424. },
  2425. side: {
  2426. height: math.unit(5 + 3/12, "feet"),
  2427. weight: math.unit(60, "kg"),
  2428. name: "Side",
  2429. image: {
  2430. source: "./media/characters/zephiro/side.svg",
  2431. extra: 2403 / 2279,
  2432. bottom: 0.015
  2433. }
  2434. },
  2435. back: {
  2436. height: math.unit(5 + 3/12, "feet"),
  2437. weight: math.unit(60, "kg"),
  2438. name: "Back",
  2439. image: {
  2440. source: "./media/characters/zephiro/back.svg",
  2441. extra: 2373 / 2244,
  2442. bottom: 0.013
  2443. }
  2444. },
  2445. hand: {
  2446. height: math.unit(0.68, "feet"),
  2447. name: "Hand",
  2448. image: {
  2449. source: "./media/characters/zephiro/hand.svg"
  2450. }
  2451. },
  2452. paw: {
  2453. height: math.unit(1, "feet"),
  2454. name: "Paw",
  2455. image: {
  2456. source: "./media/characters/zephiro/paw.svg"
  2457. }
  2458. },
  2459. beans: {
  2460. height: math.unit(0.93, "feet"),
  2461. name: "Beans",
  2462. image: {
  2463. source: "./media/characters/zephiro/beans.svg"
  2464. }
  2465. },
  2466. },
  2467. [
  2468. {
  2469. name: "Micro",
  2470. height: math.unit(3, "inches")
  2471. },
  2472. {
  2473. name: "Normal",
  2474. height: math.unit(5 + 3 / 12, "feet"),
  2475. default: true
  2476. },
  2477. {
  2478. name: "Macro",
  2479. height: math.unit(118, "feet")
  2480. },
  2481. ]
  2482. ))
  2483. characterMakers.push(() => makeCharacter(
  2484. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2485. {
  2486. front: {
  2487. height: math.unit(5, "feet"),
  2488. weight: math.unit(90, "kg"),
  2489. name: "Front",
  2490. image: {
  2491. source: "./media/characters/fory/front.svg",
  2492. extra: 2862 / 2674,
  2493. bottom: 180 / 3043.8
  2494. }
  2495. },
  2496. back: {
  2497. height: math.unit(5, "feet"),
  2498. weight: math.unit(90, "kg"),
  2499. name: "Back",
  2500. image: {
  2501. source: "./media/characters/fory/back.svg",
  2502. extra: 2962 / 2791,
  2503. bottom: 106 / 3071.8
  2504. }
  2505. },
  2506. foot: {
  2507. height: math.unit(2.14, "feet"),
  2508. name: "Foot",
  2509. image: {
  2510. source: "./media/characters/fory/foot.svg"
  2511. }
  2512. },
  2513. },
  2514. [
  2515. {
  2516. name: "Normal",
  2517. height: math.unit(5, "feet")
  2518. },
  2519. {
  2520. name: "Macro",
  2521. height: math.unit(50, "feet"),
  2522. default: true
  2523. },
  2524. {
  2525. name: "Megamacro",
  2526. height: math.unit(10, "miles")
  2527. },
  2528. {
  2529. name: "Gigamacro",
  2530. height: math.unit(5, "earths")
  2531. },
  2532. ]
  2533. ))
  2534. characterMakers.push(() => makeCharacter(
  2535. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2536. {
  2537. front: {
  2538. height: math.unit(7, "feet"),
  2539. weight: math.unit(90, "kg"),
  2540. name: "Front",
  2541. image: {
  2542. source: "./media/characters/kurrikage/front.svg",
  2543. extra: 1,
  2544. bottom: 0.035
  2545. }
  2546. },
  2547. back: {
  2548. height: math.unit(7, "feet"),
  2549. weight: math.unit(90, "lb"),
  2550. name: "Back",
  2551. image: {
  2552. source: "./media/characters/kurrikage/back.svg"
  2553. }
  2554. },
  2555. paw: {
  2556. height: math.unit(1.5, "feet"),
  2557. name: "Paw",
  2558. image: {
  2559. source: "./media/characters/kurrikage/paw.svg"
  2560. }
  2561. },
  2562. staff: {
  2563. height: math.unit(6.7, "feet"),
  2564. name: "Staff",
  2565. image: {
  2566. source: "./media/characters/kurrikage/staff.svg"
  2567. }
  2568. },
  2569. peek: {
  2570. height: math.unit(1.05, "feet"),
  2571. name: "Peeking",
  2572. image: {
  2573. source: "./media/characters/kurrikage/peek.svg",
  2574. bottom: 0.08
  2575. }
  2576. },
  2577. },
  2578. [
  2579. {
  2580. name: "Normal",
  2581. height: math.unit(12, "feet"),
  2582. default: true
  2583. },
  2584. {
  2585. name: "Big",
  2586. height: math.unit(20, "feet")
  2587. },
  2588. {
  2589. name: "Macro",
  2590. height: math.unit(500, "feet")
  2591. },
  2592. {
  2593. name: "Megamacro",
  2594. height: math.unit(20, "miles")
  2595. },
  2596. ]
  2597. ))
  2598. characterMakers.push(() => makeCharacter(
  2599. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2600. {
  2601. front: {
  2602. height: math.unit(6, "feet"),
  2603. weight: math.unit(75, "kg"),
  2604. name: "Front",
  2605. image: {
  2606. source: "./media/characters/shingo/front.svg",
  2607. extra: 706/681,
  2608. bottom: 11/717
  2609. }
  2610. },
  2611. frontAlt: {
  2612. height: math.unit(6, "feet"),
  2613. weight: math.unit(75, "kg"),
  2614. name: "Front (Alt)",
  2615. image: {
  2616. source: "./media/characters/shingo/front-alt.svg",
  2617. extra: 3511 / 3338,
  2618. bottom: 0.005
  2619. }
  2620. },
  2621. paw: {
  2622. height: math.unit(1, "feet"),
  2623. name: "Paw",
  2624. image: {
  2625. source: "./media/characters/shingo/paw.svg"
  2626. }
  2627. },
  2628. },
  2629. [
  2630. {
  2631. name: "Micro",
  2632. height: math.unit(4, "inches")
  2633. },
  2634. {
  2635. name: "Normal",
  2636. height: math.unit(6, "feet"),
  2637. default: true
  2638. },
  2639. {
  2640. name: "Macro",
  2641. height: math.unit(108, "feet")
  2642. },
  2643. {
  2644. name: "Macro+",
  2645. height: math.unit(1500, "feet")
  2646. },
  2647. ]
  2648. ))
  2649. characterMakers.push(() => makeCharacter(
  2650. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2651. {
  2652. side: {
  2653. height: math.unit(6, "feet"),
  2654. weight: math.unit(75, "kg"),
  2655. name: "Side",
  2656. image: {
  2657. source: "./media/characters/aigey/side.svg"
  2658. }
  2659. },
  2660. },
  2661. [
  2662. {
  2663. name: "Macro",
  2664. height: math.unit(200, "feet"),
  2665. default: true
  2666. },
  2667. {
  2668. name: "Megamacro",
  2669. height: math.unit(100, "miles")
  2670. },
  2671. ]
  2672. )
  2673. )
  2674. characterMakers.push(() => makeCharacter(
  2675. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2676. {
  2677. front: {
  2678. height: math.unit(5 + 5 / 12, "feet"),
  2679. weight: math.unit(75, "kg"),
  2680. name: "Front",
  2681. image: {
  2682. source: "./media/characters/natasha/front.svg",
  2683. extra: 859 / 824,
  2684. bottom: 23 / 879.6
  2685. }
  2686. },
  2687. frontNsfw: {
  2688. height: math.unit(5 + 5 / 12, "feet"),
  2689. weight: math.unit(75, "kg"),
  2690. name: "Front (NSFW)",
  2691. image: {
  2692. source: "./media/characters/natasha/front-nsfw.svg",
  2693. extra: 859 / 824,
  2694. bottom: 23 / 879.6
  2695. }
  2696. },
  2697. frontErect: {
  2698. height: math.unit(5 + 5 / 12, "feet"),
  2699. weight: math.unit(75, "kg"),
  2700. name: "Front (Erect)",
  2701. image: {
  2702. source: "./media/characters/natasha/front-erect.svg",
  2703. extra: 859 / 824,
  2704. bottom: 23 / 879.6
  2705. }
  2706. },
  2707. back: {
  2708. height: math.unit(5 + 5 / 12, "feet"),
  2709. weight: math.unit(75, "kg"),
  2710. name: "Back",
  2711. image: {
  2712. source: "./media/characters/natasha/back.svg",
  2713. extra: 887.9 / 852.6,
  2714. bottom: 9.7 / 896.4
  2715. }
  2716. },
  2717. backAlt: {
  2718. height: math.unit(5 + 5 / 12, "feet"),
  2719. weight: math.unit(75, "kg"),
  2720. name: "Back (Alt)",
  2721. image: {
  2722. source: "./media/characters/natasha/back-alt.svg",
  2723. extra: 1236.7 / 1192,
  2724. bottom: 22.3 / 1258.2
  2725. }
  2726. },
  2727. dick: {
  2728. height: math.unit(1.772, "feet"),
  2729. name: "Dick",
  2730. image: {
  2731. source: "./media/characters/natasha/dick.svg"
  2732. }
  2733. },
  2734. paw: {
  2735. height: math.unit(0.250, "meters"),
  2736. name: "Paw",
  2737. image: {
  2738. source: "./media/characters/natasha/paw.svg"
  2739. }
  2740. },
  2741. },
  2742. [
  2743. {
  2744. name: "Normal",
  2745. height: math.unit(5 + 5 / 12, "feet")
  2746. },
  2747. {
  2748. name: "Large",
  2749. height: math.unit(12, "feet")
  2750. },
  2751. {
  2752. name: "Macro",
  2753. height: math.unit(100, "feet"),
  2754. default: true
  2755. },
  2756. {
  2757. name: "Macro+",
  2758. height: math.unit(260, "feet")
  2759. },
  2760. {
  2761. name: "Macro++",
  2762. height: math.unit(1, "mile")
  2763. },
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2768. {
  2769. front: {
  2770. height: math.unit(6, "feet"),
  2771. weight: math.unit(75, "kg"),
  2772. name: "Front",
  2773. image: {
  2774. source: "./media/characters/malik/front.svg"
  2775. }
  2776. },
  2777. side: {
  2778. height: math.unit(6, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Side",
  2781. image: {
  2782. source: "./media/characters/malik/side.svg",
  2783. extra: 1.1539
  2784. }
  2785. },
  2786. back: {
  2787. height: math.unit(6, "feet"),
  2788. weight: math.unit(75, "kg"),
  2789. name: "Back",
  2790. image: {
  2791. source: "./media/characters/malik/back.svg"
  2792. }
  2793. },
  2794. },
  2795. [
  2796. {
  2797. name: "Macro",
  2798. height: math.unit(156, "feet"),
  2799. default: true
  2800. },
  2801. {
  2802. name: "Macro+",
  2803. height: math.unit(1188, "feet")
  2804. },
  2805. ]
  2806. ))
  2807. characterMakers.push(() => makeCharacter(
  2808. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2809. {
  2810. front: {
  2811. height: math.unit(6, "feet"),
  2812. weight: math.unit(75, "kg"),
  2813. name: "Front",
  2814. image: {
  2815. source: "./media/characters/sefer/front.svg",
  2816. extra: 848 / 659,
  2817. bottom: 28.3 / 876.442
  2818. }
  2819. },
  2820. back: {
  2821. height: math.unit(6, "feet"),
  2822. weight: math.unit(75, "kg"),
  2823. name: "Back",
  2824. image: {
  2825. source: "./media/characters/sefer/back.svg",
  2826. extra: 864 / 695,
  2827. bottom: 10 / 871
  2828. }
  2829. },
  2830. frontDressed: {
  2831. height: math.unit(6, "feet"),
  2832. weight: math.unit(75, "kg"),
  2833. name: "Front (Dressed)",
  2834. image: {
  2835. source: "./media/characters/sefer/front-dressed.svg",
  2836. extra: 839 / 653,
  2837. bottom: 37.6 / 878
  2838. }
  2839. },
  2840. },
  2841. [
  2842. {
  2843. name: "Normal",
  2844. height: math.unit(6, "feet"),
  2845. default: true
  2846. },
  2847. ]
  2848. ))
  2849. characterMakers.push(() => makeCharacter(
  2850. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2851. {
  2852. body: {
  2853. height: math.unit(2.2428, "meter"),
  2854. weight: math.unit(124.738, "kg"),
  2855. name: "Body",
  2856. image: {
  2857. extra: 1225 / 1050,
  2858. source: "./media/characters/north/front.svg"
  2859. }
  2860. }
  2861. },
  2862. [
  2863. {
  2864. name: "Micro",
  2865. height: math.unit(4, "inches")
  2866. },
  2867. {
  2868. name: "Macro",
  2869. height: math.unit(63, "meters")
  2870. },
  2871. {
  2872. name: "Megamacro",
  2873. height: math.unit(101, "miles"),
  2874. default: true
  2875. }
  2876. ]
  2877. ))
  2878. characterMakers.push(() => makeCharacter(
  2879. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2880. {
  2881. angled: {
  2882. height: math.unit(4, "meter"),
  2883. weight: math.unit(150, "kg"),
  2884. name: "Angled",
  2885. image: {
  2886. source: "./media/characters/talan/angled-sfw.svg",
  2887. bottom: 29 / 3734
  2888. }
  2889. },
  2890. angledNsfw: {
  2891. height: math.unit(4, "meter"),
  2892. weight: math.unit(150, "kg"),
  2893. name: "Angled (NSFW)",
  2894. image: {
  2895. source: "./media/characters/talan/angled-nsfw.svg",
  2896. bottom: 29 / 3734
  2897. }
  2898. },
  2899. frontNsfw: {
  2900. height: math.unit(4, "meter"),
  2901. weight: math.unit(150, "kg"),
  2902. name: "Front (NSFW)",
  2903. image: {
  2904. source: "./media/characters/talan/front-nsfw.svg",
  2905. bottom: 29 / 3734
  2906. }
  2907. },
  2908. sideNsfw: {
  2909. height: math.unit(4, "meter"),
  2910. weight: math.unit(150, "kg"),
  2911. name: "Side (NSFW)",
  2912. image: {
  2913. source: "./media/characters/talan/side-nsfw.svg",
  2914. bottom: 29 / 3734
  2915. }
  2916. },
  2917. back: {
  2918. height: math.unit(4, "meter"),
  2919. weight: math.unit(150, "kg"),
  2920. name: "Back",
  2921. image: {
  2922. source: "./media/characters/talan/back.svg"
  2923. }
  2924. },
  2925. dickBottom: {
  2926. height: math.unit(0.621, "meter"),
  2927. name: "Dick (Bottom)",
  2928. image: {
  2929. source: "./media/characters/talan/dick-bottom.svg"
  2930. }
  2931. },
  2932. dickTop: {
  2933. height: math.unit(0.621, "meter"),
  2934. name: "Dick (Top)",
  2935. image: {
  2936. source: "./media/characters/talan/dick-top.svg"
  2937. }
  2938. },
  2939. dickSide: {
  2940. height: math.unit(0.305, "meter"),
  2941. name: "Dick (Side)",
  2942. image: {
  2943. source: "./media/characters/talan/dick-side.svg"
  2944. }
  2945. },
  2946. dickFront: {
  2947. height: math.unit(0.305, "meter"),
  2948. name: "Dick (Front)",
  2949. image: {
  2950. source: "./media/characters/talan/dick-front.svg"
  2951. }
  2952. },
  2953. },
  2954. [
  2955. {
  2956. name: "Normal",
  2957. height: math.unit(4, "meters")
  2958. },
  2959. {
  2960. name: "Macro",
  2961. height: math.unit(100, "meters")
  2962. },
  2963. {
  2964. name: "Megamacro",
  2965. height: math.unit(2, "miles"),
  2966. default: true
  2967. },
  2968. {
  2969. name: "Gigamacro",
  2970. height: math.unit(5000, "miles")
  2971. },
  2972. {
  2973. name: "Teramacro",
  2974. height: math.unit(100, "parsecs")
  2975. }
  2976. ]
  2977. ))
  2978. characterMakers.push(() => makeCharacter(
  2979. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2980. {
  2981. front: {
  2982. height: math.unit(2, "meter"),
  2983. weight: math.unit(90, "kg"),
  2984. name: "Front",
  2985. image: {
  2986. source: "./media/characters/gael'rathus/front.svg"
  2987. }
  2988. },
  2989. frontAlt: {
  2990. height: math.unit(2, "meter"),
  2991. weight: math.unit(90, "kg"),
  2992. name: "Front (alt)",
  2993. image: {
  2994. source: "./media/characters/gael'rathus/front-alt.svg"
  2995. }
  2996. },
  2997. frontAlt2: {
  2998. height: math.unit(2, "meter"),
  2999. weight: math.unit(90, "kg"),
  3000. name: "Front (alt 2)",
  3001. image: {
  3002. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3003. }
  3004. }
  3005. },
  3006. [
  3007. {
  3008. name: "Normal",
  3009. height: math.unit(9, "feet"),
  3010. default: true
  3011. },
  3012. {
  3013. name: "Large",
  3014. height: math.unit(25, "feet")
  3015. },
  3016. {
  3017. name: "Macro",
  3018. height: math.unit(0.25, "miles")
  3019. },
  3020. {
  3021. name: "Megamacro",
  3022. height: math.unit(10, "miles")
  3023. }
  3024. ]
  3025. ))
  3026. characterMakers.push(() => makeCharacter(
  3027. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3028. {
  3029. side: {
  3030. height: math.unit(2, "meter"),
  3031. weight: math.unit(140, "kg"),
  3032. name: "Side",
  3033. image: {
  3034. source: "./media/characters/sosha/side.svg",
  3035. bottom: 0.042
  3036. }
  3037. },
  3038. },
  3039. [
  3040. {
  3041. name: "Normal",
  3042. height: math.unit(12, "feet"),
  3043. default: true
  3044. }
  3045. ]
  3046. ))
  3047. characterMakers.push(() => makeCharacter(
  3048. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3049. {
  3050. side: {
  3051. height: math.unit(5 + 5 / 12, "feet"),
  3052. weight: math.unit(170, "kg"),
  3053. name: "Side",
  3054. image: {
  3055. source: "./media/characters/runnola/side.svg",
  3056. extra: 741 / 448,
  3057. bottom: 0.05
  3058. }
  3059. },
  3060. },
  3061. [
  3062. {
  3063. name: "Small",
  3064. height: math.unit(3, "feet")
  3065. },
  3066. {
  3067. name: "Normal",
  3068. height: math.unit(5 + 5 / 12, "feet"),
  3069. default: true
  3070. },
  3071. {
  3072. name: "Big",
  3073. height: math.unit(10, "feet")
  3074. },
  3075. ]
  3076. ))
  3077. characterMakers.push(() => makeCharacter(
  3078. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3079. {
  3080. front: {
  3081. height: math.unit(2, "meter"),
  3082. weight: math.unit(50, "kg"),
  3083. name: "Front",
  3084. image: {
  3085. source: "./media/characters/kurribird/front.svg",
  3086. bottom: 0.015
  3087. }
  3088. },
  3089. frontAlt: {
  3090. height: math.unit(1.5, "meter"),
  3091. weight: math.unit(50, "kg"),
  3092. name: "Front (Alt)",
  3093. image: {
  3094. source: "./media/characters/kurribird/front-alt.svg",
  3095. extra: 1.45
  3096. }
  3097. },
  3098. },
  3099. [
  3100. {
  3101. name: "Normal",
  3102. height: math.unit(7, "feet")
  3103. },
  3104. {
  3105. name: "Big",
  3106. height: math.unit(12, "feet"),
  3107. default: true
  3108. },
  3109. {
  3110. name: "Macro",
  3111. height: math.unit(1500, "feet")
  3112. },
  3113. {
  3114. name: "Megamacro",
  3115. height: math.unit(2, "miles")
  3116. }
  3117. ]
  3118. ))
  3119. characterMakers.push(() => makeCharacter(
  3120. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3121. {
  3122. front: {
  3123. height: math.unit(2, "meter"),
  3124. weight: math.unit(80, "kg"),
  3125. name: "Front",
  3126. image: {
  3127. source: "./media/characters/elbial/front.svg",
  3128. extra: 1643 / 1556,
  3129. bottom: 60.2 / 1696
  3130. }
  3131. },
  3132. side: {
  3133. height: math.unit(2, "meter"),
  3134. weight: math.unit(80, "kg"),
  3135. name: "Side",
  3136. image: {
  3137. source: "./media/characters/elbial/side.svg",
  3138. extra: 1630 / 1565,
  3139. bottom: 71.5 / 1697
  3140. }
  3141. },
  3142. back: {
  3143. height: math.unit(2, "meter"),
  3144. weight: math.unit(80, "kg"),
  3145. name: "Back",
  3146. image: {
  3147. source: "./media/characters/elbial/back.svg",
  3148. extra: 1668 / 1595,
  3149. bottom: 5.6 / 1672
  3150. }
  3151. },
  3152. frontDressed: {
  3153. height: math.unit(2, "meter"),
  3154. weight: math.unit(80, "kg"),
  3155. name: "Front (Dressed)",
  3156. image: {
  3157. source: "./media/characters/elbial/front-dressed.svg",
  3158. extra: 1653 / 1584,
  3159. bottom: 57 / 1708
  3160. }
  3161. },
  3162. genitals: {
  3163. height: math.unit(2 / 3.367, "meter"),
  3164. name: "Genitals",
  3165. image: {
  3166. source: "./media/characters/elbial/genitals.svg"
  3167. }
  3168. },
  3169. },
  3170. [
  3171. {
  3172. name: "Large",
  3173. height: math.unit(100, "feet")
  3174. },
  3175. {
  3176. name: "Macro",
  3177. height: math.unit(500, "feet"),
  3178. default: true
  3179. },
  3180. {
  3181. name: "Megamacro",
  3182. height: math.unit(10, "miles")
  3183. },
  3184. {
  3185. name: "Gigamacro",
  3186. height: math.unit(25000, "miles")
  3187. },
  3188. {
  3189. name: "Full-Size",
  3190. height: math.unit(8000000, "gigaparsecs")
  3191. }
  3192. ]
  3193. ))
  3194. characterMakers.push(() => makeCharacter(
  3195. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3196. {
  3197. front: {
  3198. height: math.unit(2, "meter"),
  3199. weight: math.unit(60, "kg"),
  3200. name: "Front",
  3201. image: {
  3202. source: "./media/characters/noah/front.svg"
  3203. }
  3204. },
  3205. talons: {
  3206. height: math.unit(0.315, "meter"),
  3207. name: "Talons",
  3208. image: {
  3209. source: "./media/characters/noah/talons.svg"
  3210. }
  3211. }
  3212. },
  3213. [
  3214. {
  3215. name: "Large",
  3216. height: math.unit(50, "feet")
  3217. },
  3218. {
  3219. name: "Macro",
  3220. height: math.unit(750, "feet"),
  3221. default: true
  3222. },
  3223. {
  3224. name: "Megamacro",
  3225. height: math.unit(50, "miles")
  3226. },
  3227. {
  3228. name: "Gigamacro",
  3229. height: math.unit(100000, "miles")
  3230. },
  3231. {
  3232. name: "Full-Size",
  3233. height: math.unit(3000000000, "miles")
  3234. }
  3235. ]
  3236. ))
  3237. characterMakers.push(() => makeCharacter(
  3238. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3239. {
  3240. front: {
  3241. height: math.unit(2, "meter"),
  3242. weight: math.unit(80, "kg"),
  3243. name: "Front",
  3244. image: {
  3245. source: "./media/characters/natalya/front.svg"
  3246. }
  3247. },
  3248. back: {
  3249. height: math.unit(2, "meter"),
  3250. weight: math.unit(80, "kg"),
  3251. name: "Back",
  3252. image: {
  3253. source: "./media/characters/natalya/back.svg"
  3254. }
  3255. }
  3256. },
  3257. [
  3258. {
  3259. name: "Normal",
  3260. height: math.unit(150, "feet"),
  3261. default: true
  3262. },
  3263. {
  3264. name: "Megamacro",
  3265. height: math.unit(5, "miles")
  3266. },
  3267. {
  3268. name: "Full-Size",
  3269. height: math.unit(600, "kiloparsecs")
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3275. {
  3276. front: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(50, "kg"),
  3279. name: "Front",
  3280. image: {
  3281. source: "./media/characters/erestrebah/front.svg",
  3282. extra: 208 / 193,
  3283. bottom: 0.055
  3284. }
  3285. },
  3286. back: {
  3287. height: math.unit(2, "meter"),
  3288. weight: math.unit(50, "kg"),
  3289. name: "Back",
  3290. image: {
  3291. source: "./media/characters/erestrebah/back.svg",
  3292. extra: 1.3
  3293. }
  3294. }
  3295. },
  3296. [
  3297. {
  3298. name: "Normal",
  3299. height: math.unit(10, "feet")
  3300. },
  3301. {
  3302. name: "Large",
  3303. height: math.unit(50, "feet"),
  3304. default: true
  3305. },
  3306. {
  3307. name: "Macro",
  3308. height: math.unit(300, "feet")
  3309. },
  3310. {
  3311. name: "Macro+",
  3312. height: math.unit(750, "feet")
  3313. },
  3314. {
  3315. name: "Megamacro",
  3316. height: math.unit(3, "miles")
  3317. }
  3318. ]
  3319. ))
  3320. characterMakers.push(() => makeCharacter(
  3321. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3322. {
  3323. front: {
  3324. height: math.unit(2, "meter"),
  3325. weight: math.unit(80, "kg"),
  3326. name: "Front",
  3327. image: {
  3328. source: "./media/characters/jennifer/front.svg",
  3329. bottom: 0.11,
  3330. extra: 1.16
  3331. }
  3332. },
  3333. frontAlt: {
  3334. height: math.unit(2, "meter"),
  3335. weight: math.unit(80, "kg"),
  3336. name: "Front (Alt)",
  3337. image: {
  3338. source: "./media/characters/jennifer/front-alt.svg"
  3339. }
  3340. }
  3341. },
  3342. [
  3343. {
  3344. name: "Canon Height",
  3345. height: math.unit(120, "feet"),
  3346. default: true
  3347. },
  3348. {
  3349. name: "Macro+",
  3350. height: math.unit(300, "feet")
  3351. },
  3352. {
  3353. name: "Megamacro",
  3354. height: math.unit(20000, "feet")
  3355. }
  3356. ]
  3357. ))
  3358. characterMakers.push(() => makeCharacter(
  3359. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3360. {
  3361. front: {
  3362. height: math.unit(2, "meter"),
  3363. weight: math.unit(50, "kg"),
  3364. name: "Front",
  3365. image: {
  3366. source: "./media/characters/kalista/front.svg",
  3367. extra: 1947 / 1700,
  3368. bottom: 76.6 / 1412.98
  3369. }
  3370. },
  3371. back: {
  3372. height: math.unit(2, "meter"),
  3373. weight: math.unit(50, "kg"),
  3374. name: "Back",
  3375. image: {
  3376. source: "./media/characters/kalista/back.svg",
  3377. extra: 1366 / 1156,
  3378. bottom: 33.9 / 1362.78
  3379. }
  3380. }
  3381. },
  3382. [
  3383. {
  3384. name: "Uncomfortably Small",
  3385. height: math.unit(10, "feet")
  3386. },
  3387. {
  3388. name: "Small",
  3389. height: math.unit(30, "feet")
  3390. },
  3391. {
  3392. name: "Macro",
  3393. height: math.unit(100, "feet"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Macro+",
  3398. height: math.unit(2000, "feet")
  3399. },
  3400. {
  3401. name: "True Form",
  3402. height: math.unit(8924, "miles")
  3403. }
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(2, "meter"),
  3411. weight: math.unit(120, "kg"),
  3412. name: "Front",
  3413. image: {
  3414. source: "./media/characters/ggv/front.svg"
  3415. }
  3416. },
  3417. side: {
  3418. height: math.unit(2, "meter"),
  3419. weight: math.unit(120, "kg"),
  3420. name: "Side",
  3421. image: {
  3422. source: "./media/characters/ggv/side.svg"
  3423. }
  3424. }
  3425. },
  3426. [
  3427. {
  3428. name: "Extremely Puny",
  3429. height: math.unit(9 + 5 / 12, "feet")
  3430. },
  3431. {
  3432. name: "Horribly Small",
  3433. height: math.unit(47.7, "miles"),
  3434. default: true
  3435. },
  3436. {
  3437. name: "Reasonably Sized",
  3438. height: math.unit(25000, "parsecs")
  3439. },
  3440. {
  3441. name: "Slightly Uncompressed",
  3442. height: math.unit(7.77e31, "parsecs")
  3443. },
  3444. {
  3445. name: "Omniversal",
  3446. height: math.unit(1e300, "meters")
  3447. },
  3448. ]
  3449. ))
  3450. characterMakers.push(() => makeCharacter(
  3451. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3452. {
  3453. front: {
  3454. height: math.unit(2, "meter"),
  3455. weight: math.unit(75, "lb"),
  3456. name: "Front",
  3457. image: {
  3458. source: "./media/characters/napalm/front.svg"
  3459. }
  3460. },
  3461. back: {
  3462. height: math.unit(2, "meter"),
  3463. weight: math.unit(75, "lb"),
  3464. name: "Back",
  3465. image: {
  3466. source: "./media/characters/napalm/back.svg"
  3467. }
  3468. }
  3469. },
  3470. [
  3471. {
  3472. name: "Standard",
  3473. height: math.unit(55, "feet"),
  3474. default: true
  3475. }
  3476. ]
  3477. ))
  3478. characterMakers.push(() => makeCharacter(
  3479. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3480. {
  3481. front: {
  3482. height: math.unit(7 + 5 / 6, "feet"),
  3483. weight: math.unit(325, "lb"),
  3484. name: "Front",
  3485. image: {
  3486. source: "./media/characters/asana/front.svg",
  3487. extra: 1133 / 1060,
  3488. bottom: 15.2 / 1148.6
  3489. }
  3490. },
  3491. back: {
  3492. height: math.unit(7 + 5 / 6, "feet"),
  3493. weight: math.unit(325, "lb"),
  3494. name: "Back",
  3495. image: {
  3496. source: "./media/characters/asana/back.svg",
  3497. extra: 1114 / 1043,
  3498. bottom: 5 / 1120
  3499. }
  3500. },
  3501. dressedDark: {
  3502. height: math.unit(7 + 5 / 6, "feet"),
  3503. weight: math.unit(325, "lb"),
  3504. name: "Dressed (Dark)",
  3505. image: {
  3506. source: "./media/characters/asana/dressed-dark.svg",
  3507. extra: 1133 / 1060,
  3508. bottom: 15.2 / 1148.6
  3509. }
  3510. },
  3511. dressedLight: {
  3512. height: math.unit(7 + 5 / 6, "feet"),
  3513. weight: math.unit(325, "lb"),
  3514. name: "Dressed (Light)",
  3515. image: {
  3516. source: "./media/characters/asana/dressed-light.svg",
  3517. extra: 1133 / 1060,
  3518. bottom: 15.2 / 1148.6
  3519. }
  3520. },
  3521. },
  3522. [
  3523. {
  3524. name: "Standard",
  3525. height: math.unit(7 + 5 / 6, "feet"),
  3526. default: true
  3527. },
  3528. {
  3529. name: "Large",
  3530. height: math.unit(10, "meters")
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(2500, "meters")
  3535. },
  3536. {
  3537. name: "Megamacro",
  3538. height: math.unit(5e6, "meters")
  3539. },
  3540. {
  3541. name: "Examacro",
  3542. height: math.unit(5e12, "lightyears")
  3543. },
  3544. {
  3545. name: "Max Size",
  3546. height: math.unit(1e31, "lightyears")
  3547. }
  3548. ]
  3549. ))
  3550. characterMakers.push(() => makeCharacter(
  3551. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3552. {
  3553. front: {
  3554. height: math.unit(2, "meter"),
  3555. weight: math.unit(60, "kg"),
  3556. name: "Front",
  3557. image: {
  3558. source: "./media/characters/ebony/front.svg",
  3559. bottom: 0.03,
  3560. extra: 1045 / 810 + 0.03
  3561. }
  3562. },
  3563. side: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(60, "kg"),
  3566. name: "Side",
  3567. image: {
  3568. source: "./media/characters/ebony/side.svg",
  3569. bottom: 0.03,
  3570. extra: 1045 / 810 + 0.03
  3571. }
  3572. },
  3573. back: {
  3574. height: math.unit(2, "meter"),
  3575. weight: math.unit(60, "kg"),
  3576. name: "Back",
  3577. image: {
  3578. source: "./media/characters/ebony/back.svg",
  3579. bottom: 0.01,
  3580. extra: 1045 / 810 + 0.01
  3581. }
  3582. },
  3583. },
  3584. [
  3585. // TODO check why I did this lol
  3586. {
  3587. name: "Standard",
  3588. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3589. default: true
  3590. },
  3591. {
  3592. name: "Macro",
  3593. height: math.unit(200, "feet")
  3594. },
  3595. {
  3596. name: "Gigamacro",
  3597. height: math.unit(13000, "km")
  3598. }
  3599. ]
  3600. ))
  3601. characterMakers.push(() => makeCharacter(
  3602. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3603. {
  3604. front: {
  3605. height: math.unit(6, "feet"),
  3606. weight: math.unit(175, "lb"),
  3607. name: "Front",
  3608. image: {
  3609. source: "./media/characters/mountain/front.svg",
  3610. extra: 972 / 955,
  3611. bottom: 64 / 1036.6
  3612. }
  3613. },
  3614. back: {
  3615. height: math.unit(6, "feet"),
  3616. weight: math.unit(175, "lb"),
  3617. name: "Back",
  3618. image: {
  3619. source: "./media/characters/mountain/back.svg",
  3620. extra: 970 / 950,
  3621. bottom: 28.25 / 999
  3622. }
  3623. },
  3624. },
  3625. [
  3626. {
  3627. name: "Large",
  3628. height: math.unit(20, "meters")
  3629. },
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(300, "meters")
  3633. },
  3634. {
  3635. name: "Gigamacro",
  3636. height: math.unit(10000, "km"),
  3637. default: true
  3638. },
  3639. {
  3640. name: "Examacro",
  3641. height: math.unit(10e9, "lightyears")
  3642. }
  3643. ]
  3644. ))
  3645. characterMakers.push(() => makeCharacter(
  3646. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3647. {
  3648. front: {
  3649. height: math.unit(8, "feet"),
  3650. weight: math.unit(500, "lb"),
  3651. name: "Front",
  3652. image: {
  3653. source: "./media/characters/rick/front.svg"
  3654. }
  3655. }
  3656. },
  3657. [
  3658. {
  3659. name: "Normal",
  3660. height: math.unit(8, "feet"),
  3661. default: true
  3662. },
  3663. {
  3664. name: "Macro",
  3665. height: math.unit(5, "km")
  3666. }
  3667. ]
  3668. ))
  3669. characterMakers.push(() => makeCharacter(
  3670. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3671. {
  3672. front: {
  3673. height: math.unit(8, "feet"),
  3674. weight: math.unit(120, "lb"),
  3675. name: "Front",
  3676. image: {
  3677. source: "./media/characters/ona/front.svg"
  3678. }
  3679. },
  3680. frontAlt: {
  3681. height: math.unit(8, "feet"),
  3682. weight: math.unit(120, "lb"),
  3683. name: "Front (Alt)",
  3684. image: {
  3685. source: "./media/characters/ona/front-alt.svg"
  3686. }
  3687. },
  3688. back: {
  3689. height: math.unit(8, "feet"),
  3690. weight: math.unit(120, "lb"),
  3691. name: "Back",
  3692. image: {
  3693. source: "./media/characters/ona/back.svg"
  3694. }
  3695. },
  3696. foot: {
  3697. height: math.unit(1.1, "feet"),
  3698. name: "Foot",
  3699. image: {
  3700. source: "./media/characters/ona/foot.svg"
  3701. }
  3702. }
  3703. },
  3704. [
  3705. {
  3706. name: "Megamacro",
  3707. height: math.unit(70, "km"),
  3708. default: true
  3709. },
  3710. {
  3711. name: "Gigamacro",
  3712. height: math.unit(681818, "miles")
  3713. },
  3714. {
  3715. name: "Examacro",
  3716. height: math.unit(3800000, "lightyears")
  3717. },
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3722. {
  3723. front: {
  3724. height: math.unit(12, "feet"),
  3725. weight: math.unit(3000, "lb"),
  3726. name: "Front",
  3727. image: {
  3728. source: "./media/characters/mech/front.svg",
  3729. extra: 2900 / 2770,
  3730. bottom: 110 / 3010
  3731. }
  3732. },
  3733. back: {
  3734. height: math.unit(12, "feet"),
  3735. weight: math.unit(3000, "lb"),
  3736. name: "Back",
  3737. image: {
  3738. source: "./media/characters/mech/back.svg",
  3739. extra: 3011 / 2890,
  3740. bottom: 94 / 3105
  3741. }
  3742. },
  3743. maw: {
  3744. height: math.unit(3.07, "feet"),
  3745. name: "Maw",
  3746. image: {
  3747. source: "./media/characters/mech/maw.svg"
  3748. }
  3749. },
  3750. head: {
  3751. height: math.unit(2.82, "feet"),
  3752. name: "Head",
  3753. image: {
  3754. source: "./media/characters/mech/head.svg"
  3755. }
  3756. },
  3757. dick: {
  3758. height: math.unit(1.43, "feet"),
  3759. name: "Dick",
  3760. image: {
  3761. source: "./media/characters/mech/dick.svg"
  3762. }
  3763. },
  3764. },
  3765. [
  3766. {
  3767. name: "Normal",
  3768. height: math.unit(12, "feet")
  3769. },
  3770. {
  3771. name: "Macro",
  3772. height: math.unit(300, "feet"),
  3773. default: true
  3774. },
  3775. {
  3776. name: "Macro+",
  3777. height: math.unit(1500, "feet")
  3778. },
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(1.3, "meter"),
  3786. weight: math.unit(30, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/gregory/front.svg",
  3790. }
  3791. }
  3792. },
  3793. [
  3794. {
  3795. name: "Normal",
  3796. height: math.unit(1.3, "meter"),
  3797. default: true
  3798. },
  3799. {
  3800. name: "Macro",
  3801. height: math.unit(20, "meter")
  3802. }
  3803. ]
  3804. ))
  3805. characterMakers.push(() => makeCharacter(
  3806. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3807. {
  3808. front: {
  3809. height: math.unit(2.8, "meter"),
  3810. weight: math.unit(200, "kg"),
  3811. name: "Front",
  3812. image: {
  3813. source: "./media/characters/elory/front.svg",
  3814. }
  3815. }
  3816. },
  3817. [
  3818. {
  3819. name: "Normal",
  3820. height: math.unit(2.8, "meter"),
  3821. default: true
  3822. },
  3823. {
  3824. name: "Macro",
  3825. height: math.unit(38, "meter")
  3826. }
  3827. ]
  3828. ))
  3829. characterMakers.push(() => makeCharacter(
  3830. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3831. {
  3832. front: {
  3833. height: math.unit(470, "feet"),
  3834. weight: math.unit(924, "tons"),
  3835. name: "Front",
  3836. image: {
  3837. source: "./media/characters/angelpatamon/front.svg",
  3838. }
  3839. }
  3840. },
  3841. [
  3842. {
  3843. name: "Normal",
  3844. height: math.unit(470, "feet"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "Deity Size I",
  3849. height: math.unit(28651.2, "km")
  3850. },
  3851. {
  3852. name: "Deity Size II",
  3853. height: math.unit(171907.2, "km")
  3854. }
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3859. {
  3860. side: {
  3861. height: math.unit(7.2, "meter"),
  3862. weight: math.unit(8.2, "tons"),
  3863. name: "Side",
  3864. image: {
  3865. source: "./media/characters/cryae/side.svg",
  3866. extra: 3500 / 1500
  3867. }
  3868. }
  3869. },
  3870. [
  3871. {
  3872. name: "Normal",
  3873. height: math.unit(7.2, "meter"),
  3874. default: true
  3875. }
  3876. ]
  3877. ))
  3878. characterMakers.push(() => makeCharacter(
  3879. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3880. {
  3881. front: {
  3882. height: math.unit(6, "feet"),
  3883. weight: math.unit(175, "lb"),
  3884. name: "Front",
  3885. image: {
  3886. source: "./media/characters/xera/front.svg",
  3887. extra: 2377 / 1972,
  3888. bottom: 75.5 / 2452
  3889. }
  3890. },
  3891. side: {
  3892. height: math.unit(6, "feet"),
  3893. weight: math.unit(175, "lb"),
  3894. name: "Side",
  3895. image: {
  3896. source: "./media/characters/xera/side.svg",
  3897. extra: 2345 / 2019,
  3898. bottom: 39.7 / 2384
  3899. }
  3900. },
  3901. back: {
  3902. height: math.unit(6, "feet"),
  3903. weight: math.unit(175, "lb"),
  3904. name: "Back",
  3905. image: {
  3906. source: "./media/characters/xera/back.svg",
  3907. extra: 2095 / 1984,
  3908. bottom: 67 / 2166
  3909. }
  3910. },
  3911. },
  3912. [
  3913. {
  3914. name: "Small",
  3915. height: math.unit(10, "feet")
  3916. },
  3917. {
  3918. name: "Macro",
  3919. height: math.unit(500, "meters"),
  3920. default: true
  3921. },
  3922. {
  3923. name: "Macro+",
  3924. height: math.unit(10, "km")
  3925. },
  3926. {
  3927. name: "Gigamacro",
  3928. height: math.unit(25000, "km")
  3929. },
  3930. {
  3931. name: "Teramacro",
  3932. height: math.unit(3e6, "km")
  3933. }
  3934. ]
  3935. ))
  3936. characterMakers.push(() => makeCharacter(
  3937. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3938. {
  3939. front: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(175, "lb"),
  3942. name: "Front",
  3943. image: {
  3944. source: "./media/characters/nebula/front.svg",
  3945. extra: 2566 / 2362,
  3946. bottom: 81 / 2644
  3947. }
  3948. }
  3949. },
  3950. [
  3951. {
  3952. name: "Small",
  3953. height: math.unit(4.5, "meters")
  3954. },
  3955. {
  3956. name: "Macro",
  3957. height: math.unit(1500, "meters"),
  3958. default: true
  3959. },
  3960. {
  3961. name: "Megamacro",
  3962. height: math.unit(150, "km")
  3963. },
  3964. {
  3965. name: "Gigamacro",
  3966. height: math.unit(27000, "km")
  3967. }
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3972. {
  3973. front: {
  3974. height: math.unit(6, "feet"),
  3975. weight: math.unit(225, "lb"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/abysgar/front.svg"
  3979. }
  3980. }
  3981. },
  3982. [
  3983. {
  3984. name: "Small",
  3985. height: math.unit(4.5, "meters")
  3986. },
  3987. {
  3988. name: "Macro",
  3989. height: math.unit(1250, "meters"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Megamacro",
  3994. height: math.unit(125, "km")
  3995. },
  3996. {
  3997. name: "Gigamacro",
  3998. height: math.unit(26000, "km")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4004. {
  4005. front: {
  4006. height: math.unit(6, "feet"),
  4007. weight: math.unit(180, "lb"),
  4008. name: "Front",
  4009. image: {
  4010. source: "./media/characters/yakuz/front.svg"
  4011. }
  4012. }
  4013. },
  4014. [
  4015. {
  4016. name: "Small",
  4017. height: math.unit(5, "meters")
  4018. },
  4019. {
  4020. name: "Macro",
  4021. height: math.unit(1500, "meters"),
  4022. default: true
  4023. },
  4024. {
  4025. name: "Megamacro",
  4026. height: math.unit(200, "km")
  4027. },
  4028. {
  4029. name: "Gigamacro",
  4030. height: math.unit(100000, "km")
  4031. }
  4032. ]
  4033. ))
  4034. characterMakers.push(() => makeCharacter(
  4035. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4036. {
  4037. front: {
  4038. height: math.unit(6, "feet"),
  4039. weight: math.unit(175, "lb"),
  4040. name: "Front",
  4041. image: {
  4042. source: "./media/characters/mirova/front.svg",
  4043. extra: 3334 / 3071,
  4044. bottom: 42 / 3375.6
  4045. }
  4046. }
  4047. },
  4048. [
  4049. {
  4050. name: "Small",
  4051. height: math.unit(5, "meters")
  4052. },
  4053. {
  4054. name: "Macro",
  4055. height: math.unit(900, "meters"),
  4056. default: true
  4057. },
  4058. {
  4059. name: "Megamacro",
  4060. height: math.unit(135, "km")
  4061. },
  4062. {
  4063. name: "Gigamacro",
  4064. height: math.unit(20000, "km")
  4065. }
  4066. ]
  4067. ))
  4068. characterMakers.push(() => makeCharacter(
  4069. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4070. {
  4071. side: {
  4072. height: math.unit(28.35, "feet"),
  4073. weight: math.unit(99.75, "tons"),
  4074. name: "Side",
  4075. image: {
  4076. source: "./media/characters/asana-mech/side.svg",
  4077. extra: 923 / 699,
  4078. bottom: 50 / 975
  4079. }
  4080. },
  4081. chaingun: {
  4082. height: math.unit(7, "feet"),
  4083. weight: math.unit(2400, "lb"),
  4084. name: "Chaingun",
  4085. image: {
  4086. source: "./media/characters/asana-mech/chaingun.svg"
  4087. }
  4088. },
  4089. laser: {
  4090. height: math.unit(7.12, "feet"),
  4091. weight: math.unit(2000, "lb"),
  4092. name: "Laser",
  4093. image: {
  4094. source: "./media/characters/asana-mech/laser.svg"
  4095. }
  4096. },
  4097. },
  4098. [
  4099. {
  4100. name: "Normal",
  4101. height: math.unit(28.35, "feet"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Macro",
  4106. height: math.unit(2500, "feet")
  4107. },
  4108. {
  4109. name: "Megamacro",
  4110. height: math.unit(25, "miles")
  4111. },
  4112. {
  4113. name: "Examacro",
  4114. height: math.unit(6e8, "lightyears")
  4115. },
  4116. ]
  4117. ))
  4118. characterMakers.push(() => makeCharacter(
  4119. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4120. {
  4121. front: {
  4122. height: math.unit(5, "meters"),
  4123. weight: math.unit(1000, "kg"),
  4124. name: "Front",
  4125. image: {
  4126. source: "./media/characters/asche/front.svg",
  4127. extra: 1258 / 1190,
  4128. bottom: 47 / 1305
  4129. }
  4130. },
  4131. frontUnderwear: {
  4132. height: math.unit(5, "meters"),
  4133. weight: math.unit(1000, "kg"),
  4134. name: "Front (Underwear)",
  4135. image: {
  4136. source: "./media/characters/asche/front-underwear.svg",
  4137. extra: 1258 / 1190,
  4138. bottom: 47 / 1305
  4139. }
  4140. },
  4141. frontDressed: {
  4142. height: math.unit(5, "meters"),
  4143. weight: math.unit(1000, "kg"),
  4144. name: "Front (Dressed)",
  4145. image: {
  4146. source: "./media/characters/asche/front-dressed.svg",
  4147. extra: 1258 / 1190,
  4148. bottom: 47 / 1305
  4149. }
  4150. },
  4151. frontArmor: {
  4152. height: math.unit(5, "meters"),
  4153. weight: math.unit(1000, "kg"),
  4154. name: "Front (Armored)",
  4155. image: {
  4156. source: "./media/characters/asche/front-armored.svg",
  4157. extra: 1374 / 1308,
  4158. bottom: 23 / 1397
  4159. }
  4160. },
  4161. mp724: {
  4162. height: math.unit(0.96, "meters"),
  4163. weight: math.unit(38, "kg"),
  4164. name: "H&K MP724",
  4165. image: {
  4166. source: "./media/characters/asche/h&k-mp724.svg"
  4167. }
  4168. },
  4169. side: {
  4170. height: math.unit(5, "meters"),
  4171. weight: math.unit(1000, "kg"),
  4172. name: "Side",
  4173. image: {
  4174. source: "./media/characters/asche/side.svg",
  4175. extra: 1717 / 1609,
  4176. bottom: 0.005
  4177. }
  4178. },
  4179. back: {
  4180. height: math.unit(5, "meters"),
  4181. weight: math.unit(1000, "kg"),
  4182. name: "Back",
  4183. image: {
  4184. source: "./media/characters/asche/back.svg",
  4185. extra: 1570 / 1501
  4186. }
  4187. },
  4188. },
  4189. [
  4190. {
  4191. name: "DEFCON 5",
  4192. height: math.unit(5, "meters")
  4193. },
  4194. {
  4195. name: "DEFCON 4",
  4196. height: math.unit(500, "meters"),
  4197. default: true
  4198. },
  4199. {
  4200. name: "DEFCON 3",
  4201. height: math.unit(5, "km")
  4202. },
  4203. {
  4204. name: "DEFCON 2",
  4205. height: math.unit(500, "km")
  4206. },
  4207. {
  4208. name: "DEFCON 1",
  4209. height: math.unit(500000, "km")
  4210. },
  4211. {
  4212. name: "DEFCON 0",
  4213. height: math.unit(3, "gigaparsecs")
  4214. },
  4215. ]
  4216. ))
  4217. characterMakers.push(() => makeCharacter(
  4218. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4219. {
  4220. front: {
  4221. height: math.unit(2, "meters"),
  4222. weight: math.unit(76, "kg"),
  4223. name: "Front",
  4224. image: {
  4225. source: "./media/characters/gale/front.svg"
  4226. }
  4227. },
  4228. frontAlt1: {
  4229. height: math.unit(2, "meters"),
  4230. weight: math.unit(76, "kg"),
  4231. name: "Front (Alt 1)",
  4232. image: {
  4233. source: "./media/characters/gale/front-alt-1.svg"
  4234. }
  4235. },
  4236. frontAlt2: {
  4237. height: math.unit(2, "meters"),
  4238. weight: math.unit(76, "kg"),
  4239. name: "Front (Alt 2)",
  4240. image: {
  4241. source: "./media/characters/gale/front-alt-2.svg"
  4242. }
  4243. },
  4244. },
  4245. [
  4246. {
  4247. name: "Normal",
  4248. height: math.unit(7, "feet")
  4249. },
  4250. {
  4251. name: "Macro",
  4252. height: math.unit(150, "feet"),
  4253. default: true
  4254. },
  4255. {
  4256. name: "Macro+",
  4257. height: math.unit(300, "feet")
  4258. },
  4259. ]
  4260. ))
  4261. characterMakers.push(() => makeCharacter(
  4262. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4263. {
  4264. front: {
  4265. height: math.unit(2, "meters"),
  4266. weight: math.unit(76, "kg"),
  4267. name: "Front",
  4268. image: {
  4269. source: "./media/characters/draylen/front.svg"
  4270. }
  4271. }
  4272. },
  4273. [
  4274. {
  4275. name: "Macro",
  4276. height: math.unit(150, "feet"),
  4277. default: true
  4278. }
  4279. ]
  4280. ))
  4281. characterMakers.push(() => makeCharacter(
  4282. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4283. {
  4284. front: {
  4285. height: math.unit(7 + 9 / 12, "feet"),
  4286. weight: math.unit(379, "lbs"),
  4287. name: "Front",
  4288. image: {
  4289. source: "./media/characters/chez/front.svg"
  4290. }
  4291. },
  4292. side: {
  4293. height: math.unit(7 + 9 / 12, "feet"),
  4294. weight: math.unit(379, "lbs"),
  4295. name: "Side",
  4296. image: {
  4297. source: "./media/characters/chez/side.svg"
  4298. }
  4299. }
  4300. },
  4301. [
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(7 + 9 / 12, "feet"),
  4305. default: true
  4306. },
  4307. {
  4308. name: "God King",
  4309. height: math.unit(9750000, "meters")
  4310. }
  4311. ]
  4312. ))
  4313. characterMakers.push(() => makeCharacter(
  4314. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4315. {
  4316. front: {
  4317. height: math.unit(6, "feet"),
  4318. weight: math.unit(275, "lbs"),
  4319. name: "Front",
  4320. image: {
  4321. source: "./media/characters/kaylum/front.svg",
  4322. bottom: 0.01,
  4323. extra: 1166 / 1031
  4324. }
  4325. },
  4326. frontWingless: {
  4327. height: math.unit(6, "feet"),
  4328. weight: math.unit(275, "lbs"),
  4329. name: "Front (Wingless)",
  4330. image: {
  4331. source: "./media/characters/kaylum/front-wingless.svg",
  4332. bottom: 0.01,
  4333. extra: 1117 / 1031
  4334. }
  4335. }
  4336. },
  4337. [
  4338. {
  4339. name: "Normal",
  4340. height: math.unit(3.05, "meters")
  4341. },
  4342. {
  4343. name: "Master",
  4344. height: math.unit(5.5, "meters")
  4345. },
  4346. {
  4347. name: "Rampage",
  4348. height: math.unit(19, "meters")
  4349. },
  4350. {
  4351. name: "Macro Lite",
  4352. height: math.unit(37, "meters")
  4353. },
  4354. {
  4355. name: "Hyper Predator",
  4356. height: math.unit(61, "meters")
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(138, "meters"),
  4361. default: true
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4367. {
  4368. front: {
  4369. height: math.unit(6, "feet"),
  4370. weight: math.unit(150, "lbs"),
  4371. name: "Front",
  4372. image: {
  4373. source: "./media/characters/geta/front.svg"
  4374. }
  4375. }
  4376. },
  4377. [
  4378. {
  4379. name: "Micro",
  4380. height: math.unit(3, "inches"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Normal",
  4385. height: math.unit(5 + 5 / 12, "feet")
  4386. }
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4391. {
  4392. front: {
  4393. height: math.unit(6, "feet"),
  4394. weight: math.unit(300, "lbs"),
  4395. name: "Front",
  4396. image: {
  4397. source: "./media/characters/tyrnn/front.svg"
  4398. }
  4399. }
  4400. },
  4401. [
  4402. {
  4403. name: "Main Height",
  4404. height: math.unit(355, "feet"),
  4405. default: true
  4406. },
  4407. {
  4408. name: "Fave. Height",
  4409. height: math.unit(2400, "feet")
  4410. }
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4415. {
  4416. front: {
  4417. height: math.unit(6, "feet"),
  4418. weight: math.unit(300, "lbs"),
  4419. name: "Front",
  4420. image: {
  4421. source: "./media/characters/appledectomy/front.svg"
  4422. }
  4423. }
  4424. },
  4425. [
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(2500, "feet")
  4429. },
  4430. {
  4431. name: "Megamacro",
  4432. height: math.unit(50, "miles"),
  4433. default: true
  4434. },
  4435. {
  4436. name: "Gigamacro",
  4437. height: math.unit(5000, "miles")
  4438. },
  4439. {
  4440. name: "Teramacro",
  4441. height: math.unit(250000, "miles")
  4442. },
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4447. {
  4448. front: {
  4449. height: math.unit(6, "feet"),
  4450. weight: math.unit(200, "lbs"),
  4451. name: "Front",
  4452. image: {
  4453. source: "./media/characters/vulpes/front.svg",
  4454. extra: 573 / 543,
  4455. bottom: 0.033
  4456. }
  4457. },
  4458. side: {
  4459. height: math.unit(6, "feet"),
  4460. weight: math.unit(200, "lbs"),
  4461. name: "Side",
  4462. image: {
  4463. source: "./media/characters/vulpes/side.svg",
  4464. extra: 577 / 549,
  4465. bottom: 11 / 588
  4466. }
  4467. },
  4468. back: {
  4469. height: math.unit(6, "feet"),
  4470. weight: math.unit(200, "lbs"),
  4471. name: "Back",
  4472. image: {
  4473. source: "./media/characters/vulpes/back.svg",
  4474. extra: 573 / 549,
  4475. bottom: 20 / 593
  4476. }
  4477. },
  4478. feet: {
  4479. height: math.unit(1.276, "feet"),
  4480. name: "Feet",
  4481. image: {
  4482. source: "./media/characters/vulpes/feet.svg"
  4483. }
  4484. },
  4485. maw: {
  4486. height: math.unit(1.18, "feet"),
  4487. name: "Maw",
  4488. image: {
  4489. source: "./media/characters/vulpes/maw.svg"
  4490. }
  4491. },
  4492. },
  4493. [
  4494. {
  4495. name: "Micro",
  4496. height: math.unit(2, "inches")
  4497. },
  4498. {
  4499. name: "Normal",
  4500. height: math.unit(6.3, "feet")
  4501. },
  4502. {
  4503. name: "Macro",
  4504. height: math.unit(850, "feet")
  4505. },
  4506. {
  4507. name: "Megamacro",
  4508. height: math.unit(7500, "feet"),
  4509. default: true
  4510. },
  4511. {
  4512. name: "Gigamacro",
  4513. height: math.unit(570000, "miles")
  4514. }
  4515. ]
  4516. ))
  4517. characterMakers.push(() => makeCharacter(
  4518. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4519. {
  4520. front: {
  4521. height: math.unit(6, "feet"),
  4522. weight: math.unit(210, "lbs"),
  4523. name: "Front",
  4524. image: {
  4525. source: "./media/characters/rain-fallen/front.svg"
  4526. }
  4527. },
  4528. side: {
  4529. height: math.unit(6, "feet"),
  4530. weight: math.unit(210, "lbs"),
  4531. name: "Side",
  4532. image: {
  4533. source: "./media/characters/rain-fallen/side.svg"
  4534. }
  4535. },
  4536. back: {
  4537. height: math.unit(6, "feet"),
  4538. weight: math.unit(210, "lbs"),
  4539. name: "Back",
  4540. image: {
  4541. source: "./media/characters/rain-fallen/back.svg"
  4542. }
  4543. },
  4544. feral: {
  4545. height: math.unit(9, "feet"),
  4546. weight: math.unit(700, "lbs"),
  4547. name: "Feral",
  4548. image: {
  4549. source: "./media/characters/rain-fallen/feral.svg"
  4550. }
  4551. },
  4552. },
  4553. [
  4554. {
  4555. name: "Meddling with Mortals",
  4556. height: math.unit(8 + 8/12, "feet")
  4557. },
  4558. {
  4559. name: "Normal",
  4560. height: math.unit(5, "meter")
  4561. },
  4562. {
  4563. name: "Macro",
  4564. height: math.unit(150, "meter"),
  4565. default: true
  4566. },
  4567. {
  4568. name: "Megamacro",
  4569. height: math.unit(278e6, "meter")
  4570. },
  4571. {
  4572. name: "Gigamacro",
  4573. height: math.unit(2e9, "meter")
  4574. },
  4575. {
  4576. name: "Teramacro",
  4577. height: math.unit(8e12, "meter")
  4578. },
  4579. {
  4580. name: "Devourer",
  4581. height: math.unit(14, "zettameters")
  4582. },
  4583. {
  4584. name: "Scarlet King",
  4585. height: math.unit(18, "yottameters")
  4586. },
  4587. {
  4588. name: "Void",
  4589. height: math.unit(1e88, "yottameters")
  4590. }
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4595. {
  4596. standing: {
  4597. height: math.unit(6, "feet"),
  4598. weight: math.unit(180, "lbs"),
  4599. name: "Standing",
  4600. image: {
  4601. source: "./media/characters/zaakira/standing.svg",
  4602. extra: 1599/1504,
  4603. bottom: 39/1638
  4604. }
  4605. },
  4606. laying: {
  4607. height: math.unit(3, "feet"),
  4608. weight: math.unit(180, "lbs"),
  4609. name: "Laying",
  4610. image: {
  4611. source: "./media/characters/zaakira/laying.svg"
  4612. }
  4613. },
  4614. },
  4615. [
  4616. {
  4617. name: "Normal",
  4618. height: math.unit(12, "feet")
  4619. },
  4620. {
  4621. name: "Macro",
  4622. height: math.unit(279, "feet"),
  4623. default: true
  4624. }
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4629. {
  4630. femSfw: {
  4631. height: math.unit(8, "feet"),
  4632. weight: math.unit(350, "lb"),
  4633. name: "Fem",
  4634. image: {
  4635. source: "./media/characters/sigvald/fem-sfw.svg",
  4636. extra: 182 / 164,
  4637. bottom: 8.7 / 190.5
  4638. }
  4639. },
  4640. femNsfw: {
  4641. height: math.unit(8, "feet"),
  4642. weight: math.unit(350, "lb"),
  4643. name: "Fem (NSFW)",
  4644. image: {
  4645. source: "./media/characters/sigvald/fem-nsfw.svg",
  4646. extra: 182 / 164,
  4647. bottom: 8.7 / 190.5
  4648. }
  4649. },
  4650. maleNsfw: {
  4651. height: math.unit(8, "feet"),
  4652. weight: math.unit(350, "lb"),
  4653. name: "Male (NSFW)",
  4654. image: {
  4655. source: "./media/characters/sigvald/male-nsfw.svg",
  4656. extra: 182 / 164,
  4657. bottom: 8.7 / 190.5
  4658. }
  4659. },
  4660. hermNsfw: {
  4661. height: math.unit(8, "feet"),
  4662. weight: math.unit(350, "lb"),
  4663. name: "Herm (NSFW)",
  4664. image: {
  4665. source: "./media/characters/sigvald/herm-nsfw.svg",
  4666. extra: 182 / 164,
  4667. bottom: 8.7 / 190.5
  4668. }
  4669. },
  4670. dick: {
  4671. height: math.unit(2.36, "feet"),
  4672. name: "Dick",
  4673. image: {
  4674. source: "./media/characters/sigvald/dick.svg"
  4675. }
  4676. },
  4677. eye: {
  4678. height: math.unit(0.31, "feet"),
  4679. name: "Eye",
  4680. image: {
  4681. source: "./media/characters/sigvald/eye.svg"
  4682. }
  4683. },
  4684. mouth: {
  4685. height: math.unit(0.92, "feet"),
  4686. name: "Mouth",
  4687. image: {
  4688. source: "./media/characters/sigvald/mouth.svg"
  4689. }
  4690. },
  4691. paws: {
  4692. height: math.unit(2.2, "feet"),
  4693. name: "Paws",
  4694. image: {
  4695. source: "./media/characters/sigvald/paws.svg"
  4696. }
  4697. }
  4698. },
  4699. [
  4700. {
  4701. name: "Normal",
  4702. height: math.unit(8, "feet")
  4703. },
  4704. {
  4705. name: "Large",
  4706. height: math.unit(12, "feet")
  4707. },
  4708. {
  4709. name: "Larger",
  4710. height: math.unit(20, "feet")
  4711. },
  4712. {
  4713. name: "Macro",
  4714. height: math.unit(150, "feet")
  4715. },
  4716. {
  4717. name: "Macro+",
  4718. height: math.unit(200, "feet"),
  4719. default: true
  4720. },
  4721. ]
  4722. ))
  4723. characterMakers.push(() => makeCharacter(
  4724. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4725. {
  4726. side: {
  4727. height: math.unit(12, "feet"),
  4728. weight: math.unit(2000, "kg"),
  4729. name: "Side",
  4730. image: {
  4731. source: "./media/characters/scott/side.svg",
  4732. extra: 754 / 724,
  4733. bottom: 0.069
  4734. }
  4735. },
  4736. upright: {
  4737. height: math.unit(12, "feet"),
  4738. weight: math.unit(2000, "kg"),
  4739. name: "Upright",
  4740. image: {
  4741. source: "./media/characters/scott/upright.svg",
  4742. extra: 3881 / 3722,
  4743. bottom: 0.05
  4744. }
  4745. },
  4746. },
  4747. [
  4748. {
  4749. name: "Normal",
  4750. height: math.unit(12, "feet"),
  4751. default: true
  4752. },
  4753. ]
  4754. ))
  4755. characterMakers.push(() => makeCharacter(
  4756. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4757. {
  4758. side: {
  4759. height: math.unit(8, "meters"),
  4760. weight: math.unit(84755, "lbs"),
  4761. name: "Side",
  4762. image: {
  4763. source: "./media/characters/tobias/side.svg",
  4764. extra: 1474 / 1096,
  4765. bottom: 38.9 / 1513.1235
  4766. }
  4767. },
  4768. },
  4769. [
  4770. {
  4771. name: "Normal",
  4772. height: math.unit(8, "meters"),
  4773. default: true
  4774. },
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4779. {
  4780. front: {
  4781. height: math.unit(5.5, "feet"),
  4782. weight: math.unit(400, "lbs"),
  4783. name: "Front",
  4784. image: {
  4785. source: "./media/characters/kieran/front.svg",
  4786. extra: 2694 / 2364,
  4787. bottom: 217 / 2908
  4788. }
  4789. },
  4790. side: {
  4791. height: math.unit(5.5, "feet"),
  4792. weight: math.unit(400, "lbs"),
  4793. name: "Side",
  4794. image: {
  4795. source: "./media/characters/kieran/side.svg",
  4796. extra: 875 / 777,
  4797. bottom: 84.6 / 959
  4798. }
  4799. },
  4800. },
  4801. [
  4802. {
  4803. name: "Normal",
  4804. height: math.unit(5.5, "feet"),
  4805. default: true
  4806. },
  4807. ]
  4808. ))
  4809. characterMakers.push(() => makeCharacter(
  4810. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4811. {
  4812. side: {
  4813. height: math.unit(2, "meters"),
  4814. weight: math.unit(70, "kg"),
  4815. name: "Side",
  4816. image: {
  4817. source: "./media/characters/sanya/side.svg",
  4818. bottom: 0.02,
  4819. extra: 1.02
  4820. }
  4821. },
  4822. },
  4823. [
  4824. {
  4825. name: "Small",
  4826. height: math.unit(2, "meters")
  4827. },
  4828. {
  4829. name: "Normal",
  4830. height: math.unit(3, "meters")
  4831. },
  4832. {
  4833. name: "Macro",
  4834. height: math.unit(16, "meters"),
  4835. default: true
  4836. },
  4837. ]
  4838. ))
  4839. characterMakers.push(() => makeCharacter(
  4840. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4841. {
  4842. front: {
  4843. height: math.unit(2, "meters"),
  4844. weight: math.unit(120, "kg"),
  4845. name: "Front",
  4846. image: {
  4847. source: "./media/characters/miranda/front.svg",
  4848. extra: 195 / 185,
  4849. bottom: 10.9 / 206.5
  4850. }
  4851. },
  4852. back: {
  4853. height: math.unit(2, "meters"),
  4854. weight: math.unit(120, "kg"),
  4855. name: "Back",
  4856. image: {
  4857. source: "./media/characters/miranda/back.svg",
  4858. extra: 201 / 193,
  4859. bottom: 2.3 / 203.7
  4860. }
  4861. },
  4862. },
  4863. [
  4864. {
  4865. name: "Normal",
  4866. height: math.unit(10, "feet"),
  4867. default: true
  4868. }
  4869. ]
  4870. ))
  4871. characterMakers.push(() => makeCharacter(
  4872. { name: "James", species: ["deer"], tags: ["anthro"] },
  4873. {
  4874. side: {
  4875. height: math.unit(2, "meters"),
  4876. weight: math.unit(100, "kg"),
  4877. name: "Front",
  4878. image: {
  4879. source: "./media/characters/james/front.svg",
  4880. extra: 10 / 8.5
  4881. }
  4882. },
  4883. },
  4884. [
  4885. {
  4886. name: "Normal",
  4887. height: math.unit(8.5, "feet"),
  4888. default: true
  4889. }
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4894. {
  4895. side: {
  4896. height: math.unit(9.5, "feet"),
  4897. weight: math.unit(2500, "lbs"),
  4898. name: "Side",
  4899. image: {
  4900. source: "./media/characters/heather/side.svg"
  4901. }
  4902. },
  4903. },
  4904. [
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(9.5, "feet"),
  4908. default: true
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4914. {
  4915. side: {
  4916. height: math.unit(6.5, "feet"),
  4917. weight: math.unit(400, "lbs"),
  4918. name: "Side",
  4919. image: {
  4920. source: "./media/characters/lukas/side.svg",
  4921. extra: 7.25 / 6.5
  4922. }
  4923. },
  4924. },
  4925. [
  4926. {
  4927. name: "Normal",
  4928. height: math.unit(6.5, "feet"),
  4929. default: true
  4930. }
  4931. ]
  4932. ))
  4933. characterMakers.push(() => makeCharacter(
  4934. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4935. {
  4936. side: {
  4937. height: math.unit(5, "feet"),
  4938. weight: math.unit(3000, "lbs"),
  4939. name: "Side",
  4940. image: {
  4941. source: "./media/characters/louise/side.svg"
  4942. }
  4943. },
  4944. },
  4945. [
  4946. {
  4947. name: "Normal",
  4948. height: math.unit(5, "feet"),
  4949. default: true
  4950. }
  4951. ]
  4952. ))
  4953. characterMakers.push(() => makeCharacter(
  4954. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4955. {
  4956. side: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(150, "lbs"),
  4959. name: "Side",
  4960. image: {
  4961. source: "./media/characters/ramona/side.svg"
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(5.3, "meters"),
  4969. default: true
  4970. },
  4971. {
  4972. name: "Macro",
  4973. height: math.unit(20, "stories")
  4974. },
  4975. {
  4976. name: "Macro+",
  4977. height: math.unit(50, "stories")
  4978. },
  4979. ]
  4980. ))
  4981. characterMakers.push(() => makeCharacter(
  4982. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4983. {
  4984. standing: {
  4985. height: math.unit(5.75, "feet"),
  4986. weight: math.unit(160, "lbs"),
  4987. name: "Standing",
  4988. image: {
  4989. source: "./media/characters/deerpuff/standing.svg",
  4990. extra: 682 / 624
  4991. }
  4992. },
  4993. sitting: {
  4994. height: math.unit(5.75 / 1.79, "feet"),
  4995. weight: math.unit(160, "lbs"),
  4996. name: "Sitting",
  4997. image: {
  4998. source: "./media/characters/deerpuff/sitting.svg",
  4999. bottom: 44 / 400,
  5000. extra: 1
  5001. }
  5002. },
  5003. taurLaying: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(400, "lbs"),
  5006. name: "Taur (Laying)",
  5007. image: {
  5008. source: "./media/characters/deerpuff/taur-laying.svg"
  5009. }
  5010. },
  5011. },
  5012. [
  5013. {
  5014. name: "Puffball",
  5015. height: math.unit(6, "inches")
  5016. },
  5017. {
  5018. name: "Normalpuff",
  5019. height: math.unit(5.75, "feet")
  5020. },
  5021. {
  5022. name: "Macropuff",
  5023. height: math.unit(1500, "feet"),
  5024. default: true
  5025. },
  5026. {
  5027. name: "Megapuff",
  5028. height: math.unit(500, "miles")
  5029. },
  5030. {
  5031. name: "Gigapuff",
  5032. height: math.unit(250000, "miles")
  5033. },
  5034. {
  5035. name: "Omegapuff",
  5036. height: math.unit(1000, "lightyears")
  5037. },
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5042. {
  5043. stomping: {
  5044. height: math.unit(6, "feet"),
  5045. weight: math.unit(170, "lbs"),
  5046. name: "Stomping",
  5047. image: {
  5048. source: "./media/characters/vivian/stomping.svg"
  5049. }
  5050. },
  5051. sitting: {
  5052. height: math.unit(6 / 1.75, "feet"),
  5053. weight: math.unit(170, "lbs"),
  5054. name: "Sitting",
  5055. image: {
  5056. source: "./media/characters/vivian/sitting.svg",
  5057. bottom: 1 / 6.4,
  5058. extra: 1,
  5059. }
  5060. },
  5061. },
  5062. [
  5063. {
  5064. name: "Normal",
  5065. height: math.unit(7, "feet"),
  5066. default: true
  5067. },
  5068. {
  5069. name: "Macro",
  5070. height: math.unit(10, "stories")
  5071. },
  5072. {
  5073. name: "Macro+",
  5074. height: math.unit(30, "stories")
  5075. },
  5076. {
  5077. name: "Megamacro",
  5078. height: math.unit(10, "miles")
  5079. },
  5080. {
  5081. name: "Megamacro+",
  5082. height: math.unit(2750000, "meters")
  5083. },
  5084. ]
  5085. ))
  5086. characterMakers.push(() => makeCharacter(
  5087. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5088. {
  5089. front: {
  5090. height: math.unit(6, "feet"),
  5091. weight: math.unit(160, "lbs"),
  5092. name: "Front",
  5093. image: {
  5094. source: "./media/characters/prince/front.svg",
  5095. extra: 3400 / 3000
  5096. }
  5097. },
  5098. jumping: {
  5099. height: math.unit(6, "feet"),
  5100. weight: math.unit(160, "lbs"),
  5101. name: "Jumping",
  5102. image: {
  5103. source: "./media/characters/prince/jump.svg",
  5104. extra: 2555 / 2134
  5105. }
  5106. },
  5107. },
  5108. [
  5109. {
  5110. name: "Normal",
  5111. height: math.unit(7.75, "feet"),
  5112. default: true
  5113. },
  5114. {
  5115. name: "Not cute",
  5116. height: math.unit(17, "feet")
  5117. },
  5118. {
  5119. name: "I said NOT",
  5120. height: math.unit(91, "feet")
  5121. },
  5122. {
  5123. name: "Please stop",
  5124. height: math.unit(560, "feet")
  5125. },
  5126. {
  5127. name: "What have you done",
  5128. height: math.unit(2200, "feet")
  5129. },
  5130. {
  5131. name: "Deer God",
  5132. height: math.unit(3.6, "miles")
  5133. },
  5134. ]
  5135. ))
  5136. characterMakers.push(() => makeCharacter(
  5137. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5138. {
  5139. standing: {
  5140. height: math.unit(6, "feet"),
  5141. weight: math.unit(300, "lbs"),
  5142. name: "Standing",
  5143. image: {
  5144. source: "./media/characters/psymon/standing.svg",
  5145. extra: 1888 / 1810,
  5146. bottom: 0.05
  5147. }
  5148. },
  5149. slithering: {
  5150. height: math.unit(6, "feet"),
  5151. weight: math.unit(300, "lbs"),
  5152. name: "Slithering",
  5153. image: {
  5154. source: "./media/characters/psymon/slithering.svg",
  5155. extra: 1330 / 1224
  5156. }
  5157. },
  5158. slitheringAlt: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(300, "lbs"),
  5161. name: "Slithering (Alt)",
  5162. image: {
  5163. source: "./media/characters/psymon/slithering-alt.svg",
  5164. extra: 1330 / 1224
  5165. }
  5166. },
  5167. },
  5168. [
  5169. {
  5170. name: "Normal",
  5171. height: math.unit(11.25, "feet"),
  5172. default: true
  5173. },
  5174. {
  5175. name: "Large",
  5176. height: math.unit(27, "feet")
  5177. },
  5178. {
  5179. name: "Giant",
  5180. height: math.unit(87, "feet")
  5181. },
  5182. {
  5183. name: "Macro",
  5184. height: math.unit(365, "feet")
  5185. },
  5186. {
  5187. name: "Megamacro",
  5188. height: math.unit(3, "miles")
  5189. },
  5190. {
  5191. name: "World Serpent",
  5192. height: math.unit(8000, "miles")
  5193. },
  5194. ]
  5195. ))
  5196. characterMakers.push(() => makeCharacter(
  5197. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5198. {
  5199. front: {
  5200. height: math.unit(6, "feet"),
  5201. weight: math.unit(180, "lbs"),
  5202. name: "Front",
  5203. image: {
  5204. source: "./media/characters/daimos/front.svg",
  5205. extra: 4160 / 3897,
  5206. bottom: 0.021
  5207. }
  5208. }
  5209. },
  5210. [
  5211. {
  5212. name: "Normal",
  5213. height: math.unit(8, "feet"),
  5214. default: true
  5215. },
  5216. {
  5217. name: "Big Dog",
  5218. height: math.unit(22, "feet")
  5219. },
  5220. {
  5221. name: "Macro",
  5222. height: math.unit(127, "feet")
  5223. },
  5224. {
  5225. name: "Megamacro",
  5226. height: math.unit(3600, "feet")
  5227. },
  5228. ]
  5229. ))
  5230. characterMakers.push(() => makeCharacter(
  5231. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5232. {
  5233. side: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(180, "lbs"),
  5236. name: "Side",
  5237. image: {
  5238. source: "./media/characters/blake/side.svg",
  5239. extra: 1212 / 1120,
  5240. bottom: 0.05
  5241. }
  5242. },
  5243. crouched: {
  5244. height: math.unit(6 * 0.57, "feet"),
  5245. weight: math.unit(180, "lbs"),
  5246. name: "Crouched",
  5247. image: {
  5248. source: "./media/characters/blake/crouched.svg",
  5249. extra: 840 / 587,
  5250. bottom: 0.04
  5251. }
  5252. },
  5253. bent: {
  5254. height: math.unit(6 * 0.75, "feet"),
  5255. weight: math.unit(180, "lbs"),
  5256. name: "Bent",
  5257. image: {
  5258. source: "./media/characters/blake/bent.svg",
  5259. extra: 592 / 544,
  5260. bottom: 0.035
  5261. }
  5262. },
  5263. },
  5264. [
  5265. {
  5266. name: "Normal",
  5267. height: math.unit(8 + 1 / 6, "feet"),
  5268. default: true
  5269. },
  5270. {
  5271. name: "Big Backside",
  5272. height: math.unit(37, "feet")
  5273. },
  5274. {
  5275. name: "Subway Shredder",
  5276. height: math.unit(72, "feet")
  5277. },
  5278. {
  5279. name: "City Carver",
  5280. height: math.unit(1675, "feet")
  5281. },
  5282. {
  5283. name: "Tectonic Tweaker",
  5284. height: math.unit(2300, "miles")
  5285. },
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5290. {
  5291. front: {
  5292. height: math.unit(6, "feet"),
  5293. weight: math.unit(180, "lbs"),
  5294. name: "Front",
  5295. image: {
  5296. source: "./media/characters/guisetto/front.svg",
  5297. extra: 856 / 817,
  5298. bottom: 0.06
  5299. }
  5300. },
  5301. airborne: {
  5302. height: math.unit(6, "feet"),
  5303. weight: math.unit(180, "lbs"),
  5304. name: "Airborne",
  5305. image: {
  5306. source: "./media/characters/guisetto/airborne.svg",
  5307. extra: 584 / 525
  5308. }
  5309. },
  5310. },
  5311. [
  5312. {
  5313. name: "Normal",
  5314. height: math.unit(10 + 11 / 12, "feet"),
  5315. default: true
  5316. },
  5317. {
  5318. name: "Large",
  5319. height: math.unit(35, "feet")
  5320. },
  5321. {
  5322. name: "Macro",
  5323. height: math.unit(475, "feet")
  5324. },
  5325. ]
  5326. ))
  5327. characterMakers.push(() => makeCharacter(
  5328. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5329. {
  5330. front: {
  5331. height: math.unit(6, "feet"),
  5332. weight: math.unit(180, "lbs"),
  5333. name: "Front",
  5334. image: {
  5335. source: "./media/characters/luxor/front.svg",
  5336. extra: 2940 / 2152
  5337. }
  5338. },
  5339. back: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(180, "lbs"),
  5342. name: "Back",
  5343. image: {
  5344. source: "./media/characters/luxor/back.svg",
  5345. extra: 1083 / 960
  5346. }
  5347. },
  5348. },
  5349. [
  5350. {
  5351. name: "Normal",
  5352. height: math.unit(5 + 5 / 6, "feet"),
  5353. default: true
  5354. },
  5355. {
  5356. name: "Lamp",
  5357. height: math.unit(50, "feet")
  5358. },
  5359. {
  5360. name: "Lämp",
  5361. height: math.unit(300, "feet")
  5362. },
  5363. {
  5364. name: "The sun is a lamp",
  5365. height: math.unit(250000, "miles")
  5366. },
  5367. ]
  5368. ))
  5369. characterMakers.push(() => makeCharacter(
  5370. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5371. {
  5372. front: {
  5373. height: math.unit(6, "feet"),
  5374. weight: math.unit(50, "lbs"),
  5375. name: "Front",
  5376. image: {
  5377. source: "./media/characters/huoyan/front.svg"
  5378. }
  5379. },
  5380. side: {
  5381. height: math.unit(6, "feet"),
  5382. weight: math.unit(180, "lbs"),
  5383. name: "Side",
  5384. image: {
  5385. source: "./media/characters/huoyan/side.svg"
  5386. }
  5387. },
  5388. },
  5389. [
  5390. {
  5391. name: "Chef",
  5392. height: math.unit(9, "feet")
  5393. },
  5394. {
  5395. name: "Normal",
  5396. height: math.unit(65, "feet"),
  5397. default: true
  5398. },
  5399. {
  5400. name: "Macro",
  5401. height: math.unit(780, "feet")
  5402. },
  5403. {
  5404. name: "Flaming Mountain",
  5405. height: math.unit(4.8, "miles")
  5406. },
  5407. {
  5408. name: "Celestial",
  5409. height: math.unit(765000, "miles")
  5410. },
  5411. ]
  5412. ))
  5413. characterMakers.push(() => makeCharacter(
  5414. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5415. {
  5416. front: {
  5417. height: math.unit(5 + 3 / 4, "feet"),
  5418. weight: math.unit(120, "lbs"),
  5419. name: "Front",
  5420. image: {
  5421. source: "./media/characters/tails/front.svg"
  5422. }
  5423. }
  5424. },
  5425. [
  5426. {
  5427. name: "Normal",
  5428. height: math.unit(5 + 3 / 4, "feet"),
  5429. default: true
  5430. }
  5431. ]
  5432. ))
  5433. characterMakers.push(() => makeCharacter(
  5434. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5435. {
  5436. front: {
  5437. height: math.unit(4, "feet"),
  5438. weight: math.unit(50, "lbs"),
  5439. name: "Front",
  5440. image: {
  5441. source: "./media/characters/rainy/front.svg"
  5442. }
  5443. }
  5444. },
  5445. [
  5446. {
  5447. name: "Macro",
  5448. height: math.unit(800, "feet"),
  5449. default: true
  5450. }
  5451. ]
  5452. ))
  5453. characterMakers.push(() => makeCharacter(
  5454. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5455. {
  5456. front: {
  5457. height: math.unit(6, "feet"),
  5458. weight: math.unit(150, "lbs"),
  5459. name: "Front",
  5460. image: {
  5461. source: "./media/characters/rainier/front.svg"
  5462. }
  5463. }
  5464. },
  5465. [
  5466. {
  5467. name: "Micro",
  5468. height: math.unit(2, "mm"),
  5469. default: true
  5470. }
  5471. ]
  5472. ))
  5473. characterMakers.push(() => makeCharacter(
  5474. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5475. {
  5476. front: {
  5477. height: math.unit(8 + 4/12, "feet"),
  5478. name: "Front",
  5479. image: {
  5480. source: "./media/characters/andy-renard/front.svg",
  5481. extra: 1839/1726,
  5482. bottom: 134/1973
  5483. }
  5484. },
  5485. back: {
  5486. height: math.unit(8 + 4/12, "feet"),
  5487. name: "Back",
  5488. image: {
  5489. source: "./media/characters/andy-renard/back.svg",
  5490. extra: 1838/1710,
  5491. bottom: 105/1943
  5492. }
  5493. },
  5494. },
  5495. [
  5496. {
  5497. name: "Tall",
  5498. height: math.unit(8 + 4/12, "feet")
  5499. },
  5500. {
  5501. name: "Mini Macro",
  5502. height: math.unit(15, "feet"),
  5503. default: true
  5504. },
  5505. {
  5506. name: "Macro",
  5507. height: math.unit(100, "feet")
  5508. },
  5509. {
  5510. name: "Mega Macro",
  5511. height: math.unit(1000, "feet")
  5512. },
  5513. {
  5514. name: "Giga Macro",
  5515. height: math.unit(10, "miles")
  5516. },
  5517. {
  5518. name: "God Macro",
  5519. height: math.unit(1, "multiverse")
  5520. },
  5521. ]
  5522. ))
  5523. characterMakers.push(() => makeCharacter(
  5524. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5525. {
  5526. front: {
  5527. height: math.unit(6, "feet"),
  5528. weight: math.unit(210, "lbs"),
  5529. name: "Front",
  5530. image: {
  5531. source: "./media/characters/cimmaron/front-sfw.svg",
  5532. extra: 701 / 676,
  5533. bottom: 0.046
  5534. }
  5535. },
  5536. back: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(210, "lbs"),
  5539. name: "Back",
  5540. image: {
  5541. source: "./media/characters/cimmaron/back-sfw.svg",
  5542. extra: 701 / 676,
  5543. bottom: 0.046
  5544. }
  5545. },
  5546. frontNsfw: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(210, "lbs"),
  5549. name: "Front (NSFW)",
  5550. image: {
  5551. source: "./media/characters/cimmaron/front-nsfw.svg",
  5552. extra: 701 / 676,
  5553. bottom: 0.046
  5554. }
  5555. },
  5556. backNsfw: {
  5557. height: math.unit(6, "feet"),
  5558. weight: math.unit(210, "lbs"),
  5559. name: "Back (NSFW)",
  5560. image: {
  5561. source: "./media/characters/cimmaron/back-nsfw.svg",
  5562. extra: 701 / 676,
  5563. bottom: 0.046
  5564. }
  5565. },
  5566. dick: {
  5567. height: math.unit(1.714, "feet"),
  5568. name: "Dick",
  5569. image: {
  5570. source: "./media/characters/cimmaron/dick.svg"
  5571. }
  5572. },
  5573. },
  5574. [
  5575. {
  5576. name: "Normal",
  5577. height: math.unit(6, "feet"),
  5578. default: true
  5579. },
  5580. {
  5581. name: "Macro Mayor",
  5582. height: math.unit(350, "meters")
  5583. },
  5584. ]
  5585. ))
  5586. characterMakers.push(() => makeCharacter(
  5587. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5588. {
  5589. front: {
  5590. height: math.unit(6, "feet"),
  5591. weight: math.unit(200, "lbs"),
  5592. name: "Front",
  5593. image: {
  5594. source: "./media/characters/akari/front.svg",
  5595. extra: 962 / 901,
  5596. bottom: 0.04
  5597. }
  5598. }
  5599. },
  5600. [
  5601. {
  5602. name: "Micro",
  5603. height: math.unit(5, "inches"),
  5604. default: true
  5605. },
  5606. {
  5607. name: "Normal",
  5608. height: math.unit(7, "feet")
  5609. },
  5610. ]
  5611. ))
  5612. characterMakers.push(() => makeCharacter(
  5613. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5614. {
  5615. front: {
  5616. height: math.unit(6, "feet"),
  5617. weight: math.unit(140, "lbs"),
  5618. name: "Front",
  5619. image: {
  5620. source: "./media/characters/cynosura/front.svg",
  5621. extra: 896 / 847
  5622. }
  5623. },
  5624. back: {
  5625. height: math.unit(6, "feet"),
  5626. weight: math.unit(140, "lbs"),
  5627. name: "Back",
  5628. image: {
  5629. source: "./media/characters/cynosura/back.svg",
  5630. extra: 1365 / 1250
  5631. }
  5632. },
  5633. },
  5634. [
  5635. {
  5636. name: "Micro",
  5637. height: math.unit(4, "inches")
  5638. },
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(5.75, "feet"),
  5642. default: true
  5643. },
  5644. {
  5645. name: "Tall",
  5646. height: math.unit(10, "feet")
  5647. },
  5648. {
  5649. name: "Big",
  5650. height: math.unit(20, "feet")
  5651. },
  5652. {
  5653. name: "Macro",
  5654. height: math.unit(50, "feet")
  5655. },
  5656. ]
  5657. ))
  5658. characterMakers.push(() => makeCharacter(
  5659. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5660. {
  5661. front: {
  5662. height: math.unit(13 + 2/12, "feet"),
  5663. weight: math.unit(800, "kg"),
  5664. name: "Front",
  5665. image: {
  5666. source: "./media/characters/gin/front.svg",
  5667. extra: 1312/1191,
  5668. bottom: 45/1357
  5669. }
  5670. },
  5671. mouth: {
  5672. height: math.unit(2.39 * 1.8, "feet"),
  5673. name: "Mouth",
  5674. image: {
  5675. source: "./media/characters/gin/mouth.svg"
  5676. }
  5677. },
  5678. hand: {
  5679. height: math.unit(1.57 * 2.19, "feet"),
  5680. name: "Hand",
  5681. image: {
  5682. source: "./media/characters/gin/hand.svg"
  5683. }
  5684. },
  5685. foot: {
  5686. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5687. name: "Foot",
  5688. image: {
  5689. source: "./media/characters/gin/foot.svg"
  5690. }
  5691. },
  5692. sole: {
  5693. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5694. name: "Sole",
  5695. image: {
  5696. source: "./media/characters/gin/sole.svg"
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Very Small",
  5703. height: math.unit(13 + 2 / 12, "feet")
  5704. },
  5705. {
  5706. name: "Micro",
  5707. height: math.unit(600, "miles")
  5708. },
  5709. {
  5710. name: "Regular",
  5711. height: math.unit(20, "earths"),
  5712. default: true
  5713. },
  5714. {
  5715. name: "Macro",
  5716. height: math.unit(2.2, "solarradii")
  5717. },
  5718. {
  5719. name: "Teramacro",
  5720. height: math.unit(1.2, "galaxies")
  5721. },
  5722. {
  5723. name: "Omegamacro",
  5724. height: math.unit(200, "universes")
  5725. },
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5730. {
  5731. front: {
  5732. height: math.unit(6 + 1 / 6, "feet"),
  5733. weight: math.unit(178, "lbs"),
  5734. name: "Front",
  5735. image: {
  5736. source: "./media/characters/guy/front.svg"
  5737. }
  5738. }
  5739. },
  5740. [
  5741. {
  5742. name: "Normal",
  5743. height: math.unit(6 + 1 / 6, "feet"),
  5744. default: true
  5745. },
  5746. {
  5747. name: "Large",
  5748. height: math.unit(25 + 7 / 12, "feet")
  5749. },
  5750. {
  5751. name: "Macro",
  5752. height: math.unit(60 + 9 / 12, "feet")
  5753. },
  5754. {
  5755. name: "Macro+",
  5756. height: math.unit(246, "feet")
  5757. },
  5758. {
  5759. name: "Macro++",
  5760. height: math.unit(878, "feet")
  5761. }
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5766. {
  5767. front: {
  5768. height: math.unit(9, "feet"),
  5769. weight: math.unit(800, "lbs"),
  5770. name: "Front",
  5771. image: {
  5772. source: "./media/characters/tiberius/front.svg",
  5773. extra: 2295 / 2071
  5774. }
  5775. },
  5776. back: {
  5777. height: math.unit(9, "feet"),
  5778. weight: math.unit(800, "lbs"),
  5779. name: "Back",
  5780. image: {
  5781. source: "./media/characters/tiberius/back.svg",
  5782. extra: 2373 / 2160
  5783. }
  5784. },
  5785. },
  5786. [
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(9, "feet"),
  5790. default: true
  5791. }
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5796. {
  5797. front: {
  5798. height: math.unit(6, "feet"),
  5799. weight: math.unit(600, "lbs"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/surgo/front.svg",
  5803. extra: 3591 / 2227
  5804. }
  5805. },
  5806. back: {
  5807. height: math.unit(6, "feet"),
  5808. weight: math.unit(600, "lbs"),
  5809. name: "Back",
  5810. image: {
  5811. source: "./media/characters/surgo/back.svg",
  5812. extra: 3557 / 2228
  5813. }
  5814. },
  5815. laying: {
  5816. height: math.unit(6 * 0.85, "feet"),
  5817. weight: math.unit(600, "lbs"),
  5818. name: "Laying",
  5819. image: {
  5820. source: "./media/characters/surgo/laying.svg"
  5821. }
  5822. },
  5823. },
  5824. [
  5825. {
  5826. name: "Normal",
  5827. height: math.unit(6, "feet"),
  5828. default: true
  5829. }
  5830. ]
  5831. ))
  5832. characterMakers.push(() => makeCharacter(
  5833. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5834. {
  5835. side: {
  5836. height: math.unit(6, "feet"),
  5837. weight: math.unit(150, "lbs"),
  5838. name: "Side",
  5839. image: {
  5840. source: "./media/characters/cibus/side.svg",
  5841. extra: 800 / 400
  5842. }
  5843. },
  5844. },
  5845. [
  5846. {
  5847. name: "Normal",
  5848. height: math.unit(6, "feet"),
  5849. default: true
  5850. }
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5855. {
  5856. front: {
  5857. height: math.unit(6, "feet"),
  5858. weight: math.unit(240, "lbs"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/nibbles/front.svg"
  5862. }
  5863. },
  5864. side: {
  5865. height: math.unit(6, "feet"),
  5866. weight: math.unit(240, "lbs"),
  5867. name: "Side",
  5868. image: {
  5869. source: "./media/characters/nibbles/side.svg"
  5870. }
  5871. },
  5872. },
  5873. [
  5874. {
  5875. name: "Normal",
  5876. height: math.unit(9, "feet"),
  5877. default: true
  5878. }
  5879. ]
  5880. ))
  5881. characterMakers.push(() => makeCharacter(
  5882. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5883. {
  5884. side: {
  5885. height: math.unit(5 + 1 / 6, "feet"),
  5886. weight: math.unit(130, "lbs"),
  5887. name: "Side",
  5888. image: {
  5889. source: "./media/characters/rikky/side.svg",
  5890. extra: 851 / 801
  5891. }
  5892. },
  5893. },
  5894. [
  5895. {
  5896. name: "Normal",
  5897. height: math.unit(5 + 1 / 6, "feet")
  5898. },
  5899. {
  5900. name: "Macro",
  5901. height: math.unit(152, "feet"),
  5902. default: true
  5903. },
  5904. {
  5905. name: "Megamacro",
  5906. height: math.unit(7, "miles")
  5907. }
  5908. ]
  5909. ))
  5910. characterMakers.push(() => makeCharacter(
  5911. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5912. {
  5913. side: {
  5914. height: math.unit(370, "cm"),
  5915. weight: math.unit(350, "lbs"),
  5916. name: "Side",
  5917. image: {
  5918. source: "./media/characters/malfressa/side.svg"
  5919. }
  5920. },
  5921. walking: {
  5922. height: math.unit(370, "cm"),
  5923. weight: math.unit(350, "lbs"),
  5924. name: "Walking",
  5925. image: {
  5926. source: "./media/characters/malfressa/walking.svg"
  5927. }
  5928. },
  5929. feral: {
  5930. height: math.unit(2500, "cm"),
  5931. weight: math.unit(100000, "lbs"),
  5932. name: "Feral",
  5933. image: {
  5934. source: "./media/characters/malfressa/feral.svg",
  5935. extra: 2108 / 837,
  5936. bottom: 0.02
  5937. }
  5938. },
  5939. },
  5940. [
  5941. {
  5942. name: "Normal",
  5943. height: math.unit(370, "cm")
  5944. },
  5945. {
  5946. name: "Macro",
  5947. height: math.unit(300, "meters"),
  5948. default: true
  5949. }
  5950. ]
  5951. ))
  5952. characterMakers.push(() => makeCharacter(
  5953. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5954. {
  5955. front: {
  5956. height: math.unit(6, "feet"),
  5957. weight: math.unit(60, "kg"),
  5958. name: "Front",
  5959. image: {
  5960. source: "./media/characters/jaro/front.svg"
  5961. }
  5962. },
  5963. back: {
  5964. height: math.unit(6, "feet"),
  5965. weight: math.unit(60, "kg"),
  5966. name: "Back",
  5967. image: {
  5968. source: "./media/characters/jaro/back.svg"
  5969. }
  5970. },
  5971. },
  5972. [
  5973. {
  5974. name: "Micro",
  5975. height: math.unit(7, "inches")
  5976. },
  5977. {
  5978. name: "Normal",
  5979. height: math.unit(5.5, "feet"),
  5980. default: true
  5981. },
  5982. {
  5983. name: "Minimacro",
  5984. height: math.unit(20, "feet")
  5985. },
  5986. {
  5987. name: "Macro",
  5988. height: math.unit(200, "meters")
  5989. }
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5994. {
  5995. front: {
  5996. height: math.unit(6, "feet"),
  5997. weight: math.unit(195, "lb"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/rogue/front.svg"
  6001. }
  6002. },
  6003. },
  6004. [
  6005. {
  6006. name: "Macro",
  6007. height: math.unit(90, "feet"),
  6008. default: true
  6009. },
  6010. ]
  6011. ))
  6012. characterMakers.push(() => makeCharacter(
  6013. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6014. {
  6015. front: {
  6016. height: math.unit(5 + 8 / 12, "feet"),
  6017. weight: math.unit(140, "lb"),
  6018. name: "Front",
  6019. image: {
  6020. source: "./media/characters/piper/front.svg",
  6021. extra: 3948/3655,
  6022. bottom: 0/3948
  6023. }
  6024. },
  6025. },
  6026. [
  6027. {
  6028. name: "Micro",
  6029. height: math.unit(2, "inches")
  6030. },
  6031. {
  6032. name: "Normal",
  6033. height: math.unit(5 + 8 / 12, "feet")
  6034. },
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(250, "feet"),
  6038. default: true
  6039. },
  6040. {
  6041. name: "Megamacro",
  6042. height: math.unit(7, "miles")
  6043. },
  6044. ]
  6045. ))
  6046. characterMakers.push(() => makeCharacter(
  6047. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6048. {
  6049. front: {
  6050. height: math.unit(6, "feet"),
  6051. weight: math.unit(220, "lb"),
  6052. name: "Front",
  6053. image: {
  6054. source: "./media/characters/gemini/front.svg"
  6055. }
  6056. },
  6057. back: {
  6058. height: math.unit(6, "feet"),
  6059. weight: math.unit(220, "lb"),
  6060. name: "Back",
  6061. image: {
  6062. source: "./media/characters/gemini/back.svg"
  6063. }
  6064. },
  6065. kneeling: {
  6066. height: math.unit(6 / 1.5, "feet"),
  6067. weight: math.unit(220, "lb"),
  6068. name: "Kneeling",
  6069. image: {
  6070. source: "./media/characters/gemini/kneeling.svg",
  6071. bottom: 0.02
  6072. }
  6073. },
  6074. },
  6075. [
  6076. {
  6077. name: "Macro",
  6078. height: math.unit(300, "meters"),
  6079. default: true
  6080. },
  6081. {
  6082. name: "Megamacro",
  6083. height: math.unit(6900, "meters")
  6084. },
  6085. ]
  6086. ))
  6087. characterMakers.push(() => makeCharacter(
  6088. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6089. {
  6090. anthro: {
  6091. height: math.unit(2.35, "meters"),
  6092. weight: math.unit(73, "kg"),
  6093. name: "Anthro",
  6094. image: {
  6095. source: "./media/characters/alicia/anthro.svg",
  6096. extra: 2571 / 2385,
  6097. bottom: 75 / 2648
  6098. }
  6099. },
  6100. paw: {
  6101. height: math.unit(1.32, "feet"),
  6102. name: "Paw",
  6103. image: {
  6104. source: "./media/characters/alicia/paw.svg"
  6105. }
  6106. },
  6107. feral: {
  6108. height: math.unit(1.69, "meters"),
  6109. weight: math.unit(73, "kg"),
  6110. name: "Feral",
  6111. image: {
  6112. source: "./media/characters/alicia/feral.svg",
  6113. extra: 2123 / 1715,
  6114. bottom: 222 / 2349
  6115. }
  6116. },
  6117. },
  6118. [
  6119. {
  6120. name: "Normal",
  6121. height: math.unit(2.35, "meters")
  6122. },
  6123. {
  6124. name: "Macro",
  6125. height: math.unit(60, "meters"),
  6126. default: true
  6127. },
  6128. {
  6129. name: "Megamacro",
  6130. height: math.unit(10000, "kilometers")
  6131. },
  6132. ]
  6133. ))
  6134. characterMakers.push(() => makeCharacter(
  6135. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6136. {
  6137. front: {
  6138. height: math.unit(7, "feet"),
  6139. weight: math.unit(250, "lbs"),
  6140. name: "Front",
  6141. image: {
  6142. source: "./media/characters/archy/front.svg"
  6143. }
  6144. }
  6145. },
  6146. [
  6147. {
  6148. name: "Micro",
  6149. height: math.unit(1, "inch")
  6150. },
  6151. {
  6152. name: "Shorty",
  6153. height: math.unit(5, "feet")
  6154. },
  6155. {
  6156. name: "Normal",
  6157. height: math.unit(7, "feet")
  6158. },
  6159. {
  6160. name: "Macro",
  6161. height: math.unit(600, "meters"),
  6162. default: true
  6163. },
  6164. {
  6165. name: "Megamacro",
  6166. height: math.unit(1, "mile")
  6167. },
  6168. ]
  6169. ))
  6170. characterMakers.push(() => makeCharacter(
  6171. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6172. {
  6173. front: {
  6174. height: math.unit(1.65, "meters"),
  6175. weight: math.unit(74, "kg"),
  6176. name: "Front",
  6177. image: {
  6178. source: "./media/characters/berri/front.svg",
  6179. extra: 857 / 837,
  6180. bottom: 18 / 877
  6181. }
  6182. },
  6183. bum: {
  6184. height: math.unit(1.46, "feet"),
  6185. name: "Bum",
  6186. image: {
  6187. source: "./media/characters/berri/bum.svg"
  6188. }
  6189. },
  6190. mouth: {
  6191. height: math.unit(0.44, "feet"),
  6192. name: "Mouth",
  6193. image: {
  6194. source: "./media/characters/berri/mouth.svg"
  6195. }
  6196. },
  6197. paw: {
  6198. height: math.unit(0.826, "feet"),
  6199. name: "Paw",
  6200. image: {
  6201. source: "./media/characters/berri/paw.svg"
  6202. }
  6203. },
  6204. },
  6205. [
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(1.65, "meters")
  6209. },
  6210. {
  6211. name: "Macro",
  6212. height: math.unit(60, "m"),
  6213. default: true
  6214. },
  6215. {
  6216. name: "Megamacro",
  6217. height: math.unit(9.213, "km")
  6218. },
  6219. {
  6220. name: "Planet Eater",
  6221. height: math.unit(489, "megameters")
  6222. },
  6223. {
  6224. name: "Teramacro",
  6225. height: math.unit(2471635000000, "meters")
  6226. },
  6227. {
  6228. name: "Examacro",
  6229. height: math.unit(8.0624e+26, "meters")
  6230. }
  6231. ]
  6232. ))
  6233. characterMakers.push(() => makeCharacter(
  6234. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6235. {
  6236. front: {
  6237. height: math.unit(1.72, "meters"),
  6238. weight: math.unit(68, "kg"),
  6239. name: "Front",
  6240. image: {
  6241. source: "./media/characters/lexi/front.svg"
  6242. }
  6243. }
  6244. },
  6245. [
  6246. {
  6247. name: "Very Smol",
  6248. height: math.unit(10, "mm")
  6249. },
  6250. {
  6251. name: "Micro",
  6252. height: math.unit(6.8, "cm"),
  6253. default: true
  6254. },
  6255. {
  6256. name: "Normal",
  6257. height: math.unit(1.72, "m")
  6258. }
  6259. ]
  6260. ))
  6261. characterMakers.push(() => makeCharacter(
  6262. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6263. {
  6264. front: {
  6265. height: math.unit(1.69, "meters"),
  6266. weight: math.unit(68, "kg"),
  6267. name: "Front",
  6268. image: {
  6269. source: "./media/characters/martin/front.svg",
  6270. extra: 596 / 581
  6271. }
  6272. }
  6273. },
  6274. [
  6275. {
  6276. name: "Micro",
  6277. height: math.unit(6.85, "cm"),
  6278. default: true
  6279. },
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(1.69, "m")
  6283. }
  6284. ]
  6285. ))
  6286. characterMakers.push(() => makeCharacter(
  6287. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6288. {
  6289. front: {
  6290. height: math.unit(1.69, "meters"),
  6291. weight: math.unit(68, "kg"),
  6292. name: "Front",
  6293. image: {
  6294. source: "./media/characters/juno/front.svg"
  6295. }
  6296. }
  6297. },
  6298. [
  6299. {
  6300. name: "Micro",
  6301. height: math.unit(7, "cm")
  6302. },
  6303. {
  6304. name: "Normal",
  6305. height: math.unit(1.89, "m")
  6306. },
  6307. {
  6308. name: "Macro",
  6309. height: math.unit(353, "meters"),
  6310. default: true
  6311. }
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6316. {
  6317. front: {
  6318. height: math.unit(1.93, "meters"),
  6319. weight: math.unit(83, "kg"),
  6320. name: "Front",
  6321. image: {
  6322. source: "./media/characters/samantha/front.svg"
  6323. }
  6324. },
  6325. frontClothed: {
  6326. height: math.unit(1.93, "meters"),
  6327. weight: math.unit(83, "kg"),
  6328. name: "Front (Clothed)",
  6329. image: {
  6330. source: "./media/characters/samantha/front-clothed.svg"
  6331. }
  6332. },
  6333. back: {
  6334. height: math.unit(1.93, "meters"),
  6335. weight: math.unit(83, "kg"),
  6336. name: "Back",
  6337. image: {
  6338. source: "./media/characters/samantha/back.svg"
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Normal",
  6345. height: math.unit(1.93, "m")
  6346. },
  6347. {
  6348. name: "Macro",
  6349. height: math.unit(74, "meters"),
  6350. default: true
  6351. },
  6352. {
  6353. name: "Macro+",
  6354. height: math.unit(223, "meters"),
  6355. },
  6356. {
  6357. name: "Megamacro",
  6358. height: math.unit(8381, "meters"),
  6359. },
  6360. {
  6361. name: "Megamacro+",
  6362. height: math.unit(12000, "kilometers")
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6368. {
  6369. front: {
  6370. height: math.unit(1.92, "meters"),
  6371. weight: math.unit(80, "kg"),
  6372. name: "Front",
  6373. image: {
  6374. source: "./media/characters/dr-clay/front.svg"
  6375. }
  6376. },
  6377. frontClothed: {
  6378. height: math.unit(1.92, "meters"),
  6379. weight: math.unit(80, "kg"),
  6380. name: "Front (Clothed)",
  6381. image: {
  6382. source: "./media/characters/dr-clay/front-clothed.svg"
  6383. }
  6384. }
  6385. },
  6386. [
  6387. {
  6388. name: "Normal",
  6389. height: math.unit(1.92, "m")
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(214, "meters"),
  6394. default: true
  6395. },
  6396. {
  6397. name: "Macro+",
  6398. height: math.unit(12.237, "meters"),
  6399. },
  6400. {
  6401. name: "Megamacro",
  6402. height: math.unit(557, "megameters"),
  6403. },
  6404. {
  6405. name: "Unimaginable",
  6406. height: math.unit(120e9, "lightyears")
  6407. },
  6408. ]
  6409. ))
  6410. characterMakers.push(() => makeCharacter(
  6411. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6412. {
  6413. front: {
  6414. height: math.unit(2, "meters"),
  6415. weight: math.unit(80, "kg"),
  6416. name: "Front",
  6417. image: {
  6418. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6419. }
  6420. }
  6421. },
  6422. [
  6423. {
  6424. name: "Teramacro",
  6425. height: math.unit(500000, "lightyears"),
  6426. default: true
  6427. },
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6432. {
  6433. front: {
  6434. height: math.unit(2, "meters"),
  6435. weight: math.unit(150, "kg"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/vemus/front.svg",
  6439. extra: 1074/936,
  6440. bottom: 23/1097
  6441. }
  6442. }
  6443. },
  6444. [
  6445. {
  6446. name: "Normal",
  6447. height: math.unit(3.75, "meters"),
  6448. default: true
  6449. },
  6450. {
  6451. name: "Big",
  6452. height: math.unit(8, "meters")
  6453. },
  6454. {
  6455. name: "Macro",
  6456. height: math.unit(100, "meters")
  6457. },
  6458. {
  6459. name: "Macro+",
  6460. height: math.unit(1500, "meters")
  6461. },
  6462. {
  6463. name: "Stellar",
  6464. height: math.unit(14e8, "meters")
  6465. },
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6470. {
  6471. front: {
  6472. height: math.unit(2, "meters"),
  6473. weight: math.unit(70, "kg"),
  6474. name: "Front",
  6475. image: {
  6476. source: "./media/characters/beherit/front.svg",
  6477. extra: 1408 / 1242
  6478. }
  6479. }
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(6, "feet")
  6485. },
  6486. {
  6487. name: "Lorg",
  6488. height: math.unit(25, "feet"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Lorger",
  6493. height: math.unit(75, "feet")
  6494. },
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(200, "meters")
  6498. },
  6499. ]
  6500. ))
  6501. characterMakers.push(() => makeCharacter(
  6502. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6503. {
  6504. front: {
  6505. height: math.unit(2, "meters"),
  6506. weight: math.unit(150, "kg"),
  6507. name: "Front",
  6508. image: {
  6509. source: "./media/characters/everett/front.svg",
  6510. extra: 2038 / 1737,
  6511. bottom: 0.03
  6512. }
  6513. },
  6514. paw: {
  6515. height: math.unit(2 / 3.6, "meters"),
  6516. name: "Paw",
  6517. image: {
  6518. source: "./media/characters/everett/paw.svg"
  6519. }
  6520. },
  6521. },
  6522. [
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(15, "feet"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Lorg",
  6530. height: math.unit(70, "feet"),
  6531. default: true
  6532. },
  6533. {
  6534. name: "Lorger",
  6535. height: math.unit(250, "feet")
  6536. },
  6537. {
  6538. name: "Macro",
  6539. height: math.unit(500, "meters")
  6540. },
  6541. ]
  6542. ))
  6543. characterMakers.push(() => makeCharacter(
  6544. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6545. {
  6546. front: {
  6547. height: math.unit(2, "meters"),
  6548. weight: math.unit(86, "kg"),
  6549. name: "Front",
  6550. image: {
  6551. source: "./media/characters/rose/front.svg",
  6552. extra: 1785/1636,
  6553. bottom: 30/1815
  6554. }
  6555. },
  6556. frontSporty: {
  6557. height: math.unit(2, "meters"),
  6558. weight: math.unit(86, "kg"),
  6559. name: "Front (Sporty)",
  6560. image: {
  6561. source: "./media/characters/rose/front-sporty.svg",
  6562. extra: 350/335,
  6563. bottom: 10/360
  6564. }
  6565. },
  6566. frontAlt: {
  6567. height: math.unit(1.6, "meters"),
  6568. weight: math.unit(86, "kg"),
  6569. name: "Front (Alt)",
  6570. image: {
  6571. source: "./media/characters/rose/front-alt.svg",
  6572. extra: 299/283,
  6573. bottom: 3/302
  6574. }
  6575. },
  6576. plush: {
  6577. height: math.unit(2, "meters"),
  6578. weight: math.unit(86/3, "kg"),
  6579. name: "Plush",
  6580. image: {
  6581. source: "./media/characters/rose/plush.svg",
  6582. extra: 361/337,
  6583. bottom: 11/372
  6584. }
  6585. },
  6586. },
  6587. [
  6588. {
  6589. name: "True Micro",
  6590. height: math.unit(9, "cm")
  6591. },
  6592. {
  6593. name: "Micro",
  6594. height: math.unit(16, "cm")
  6595. },
  6596. {
  6597. name: "Normal",
  6598. height: math.unit(1.85, "meters"),
  6599. default: true
  6600. },
  6601. {
  6602. name: "Mini-Macro",
  6603. height: math.unit(5, "meters")
  6604. },
  6605. {
  6606. name: "Macro",
  6607. height: math.unit(15, "meters")
  6608. },
  6609. {
  6610. name: "True Macro",
  6611. height: math.unit(40, "meters")
  6612. },
  6613. {
  6614. name: "City Scale",
  6615. height: math.unit(1, "km")
  6616. },
  6617. ]
  6618. ))
  6619. characterMakers.push(() => makeCharacter(
  6620. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6621. {
  6622. front: {
  6623. height: math.unit(2, "meters"),
  6624. weight: math.unit(350, "lbs"),
  6625. name: "Front",
  6626. image: {
  6627. source: "./media/characters/regal/front.svg"
  6628. }
  6629. },
  6630. back: {
  6631. height: math.unit(2, "meters"),
  6632. weight: math.unit(350, "lbs"),
  6633. name: "Back",
  6634. image: {
  6635. source: "./media/characters/regal/back.svg"
  6636. }
  6637. },
  6638. },
  6639. [
  6640. {
  6641. name: "Macro",
  6642. height: math.unit(350, "feet"),
  6643. default: true
  6644. }
  6645. ]
  6646. ))
  6647. characterMakers.push(() => makeCharacter(
  6648. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6649. {
  6650. front: {
  6651. height: math.unit(4 + 11 / 12, "feet"),
  6652. weight: math.unit(100, "lbs"),
  6653. name: "Front",
  6654. image: {
  6655. source: "./media/characters/opal/front.svg"
  6656. }
  6657. },
  6658. frontAlt: {
  6659. height: math.unit(4 + 11 / 12, "feet"),
  6660. weight: math.unit(100, "lbs"),
  6661. name: "Front (Alt)",
  6662. image: {
  6663. source: "./media/characters/opal/front-alt.svg"
  6664. }
  6665. },
  6666. },
  6667. [
  6668. {
  6669. name: "Small",
  6670. height: math.unit(4 + 11 / 12, "feet")
  6671. },
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(20, "feet"),
  6675. default: true
  6676. },
  6677. {
  6678. name: "Macro",
  6679. height: math.unit(120, "feet")
  6680. },
  6681. {
  6682. name: "Megamacro",
  6683. height: math.unit(80, "miles")
  6684. },
  6685. {
  6686. name: "True Size",
  6687. height: math.unit(100000, "lightyears")
  6688. },
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(6, "feet"),
  6696. weight: math.unit(200, "lbs"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/vector-wuff/front.svg"
  6700. }
  6701. }
  6702. },
  6703. [
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(2.8, "meters")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(450, "meters"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Megamacro",
  6715. height: math.unit(15, "kilometers")
  6716. }
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(256, "lbs"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/dannik/front.svg"
  6728. }
  6729. }
  6730. },
  6731. [
  6732. {
  6733. name: "Macro",
  6734. height: math.unit(69.57, "meters"),
  6735. default: true
  6736. },
  6737. ]
  6738. ))
  6739. characterMakers.push(() => makeCharacter(
  6740. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6741. {
  6742. front: {
  6743. height: math.unit(6, "feet"),
  6744. weight: math.unit(120, "lbs"),
  6745. name: "Front",
  6746. image: {
  6747. source: "./media/characters/azura-saharah/front.svg"
  6748. }
  6749. },
  6750. back: {
  6751. height: math.unit(6, "feet"),
  6752. weight: math.unit(120, "lbs"),
  6753. name: "Back",
  6754. image: {
  6755. source: "./media/characters/azura-saharah/back.svg"
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Macro",
  6762. height: math.unit(100, "feet"),
  6763. default: true
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6769. {
  6770. side: {
  6771. height: math.unit(5 + 4 / 12, "feet"),
  6772. weight: math.unit(163, "lbs"),
  6773. name: "Side",
  6774. image: {
  6775. source: "./media/characters/kennedy/side.svg"
  6776. }
  6777. }
  6778. },
  6779. [
  6780. {
  6781. name: "Standard Doggo",
  6782. height: math.unit(5 + 4 / 12, "feet")
  6783. },
  6784. {
  6785. name: "Big Doggo",
  6786. height: math.unit(25 + 3 / 12, "feet"),
  6787. default: true
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(6, "feet"),
  6796. weight: math.unit(90, "lbs"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/odi-lunar/front.svg"
  6800. }
  6801. }
  6802. },
  6803. [
  6804. {
  6805. name: "Micro",
  6806. height: math.unit(3, "inches"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Normal",
  6811. height: math.unit(5.5, "feet")
  6812. }
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6817. {
  6818. back: {
  6819. height: math.unit(6, "feet"),
  6820. weight: math.unit(220, "lbs"),
  6821. name: "Back",
  6822. image: {
  6823. source: "./media/characters/mandake/back.svg"
  6824. }
  6825. }
  6826. },
  6827. [
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(7, "feet"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Macro",
  6835. height: math.unit(78, "feet")
  6836. },
  6837. {
  6838. name: "Macro+",
  6839. height: math.unit(300, "meters")
  6840. },
  6841. {
  6842. name: "Macro++",
  6843. height: math.unit(2400, "feet")
  6844. },
  6845. {
  6846. name: "Megamacro",
  6847. height: math.unit(5167, "meters")
  6848. },
  6849. {
  6850. name: "Gigamacro",
  6851. height: math.unit(41769, "miles")
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(120, "lbs"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/yozey/front.svg"
  6864. }
  6865. },
  6866. frontAlt: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(120, "lbs"),
  6869. name: "Front (Alt)",
  6870. image: {
  6871. source: "./media/characters/yozey/front-alt.svg"
  6872. }
  6873. },
  6874. side: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(120, "lbs"),
  6877. name: "Side",
  6878. image: {
  6879. source: "./media/characters/yozey/side.svg"
  6880. }
  6881. },
  6882. },
  6883. [
  6884. {
  6885. name: "Micro",
  6886. height: math.unit(3, "inches"),
  6887. default: true
  6888. },
  6889. {
  6890. name: "Normal",
  6891. height: math.unit(6, "feet")
  6892. }
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(6, "feet"),
  6900. weight: math.unit(103, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/valeska-voss/front.svg"
  6904. }
  6905. }
  6906. },
  6907. [
  6908. {
  6909. name: "Mini-Sized Sub",
  6910. height: math.unit(3.1, "inches")
  6911. },
  6912. {
  6913. name: "Mid-Sized Sub",
  6914. height: math.unit(6.2, "inches")
  6915. },
  6916. {
  6917. name: "Full-Sized Sub",
  6918. height: math.unit(9.3, "inches")
  6919. },
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(5 + 2 / 12, "foot"),
  6923. default: true
  6924. },
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(160, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/gene-zeta/front.svg",
  6936. extra: 3006 / 2826,
  6937. bottom: 182 / 3188
  6938. }
  6939. }
  6940. },
  6941. [
  6942. {
  6943. name: "Micro",
  6944. height: math.unit(6, "inches")
  6945. },
  6946. {
  6947. name: "Normal",
  6948. height: math.unit(5 + 11 / 12, "foot"),
  6949. default: true
  6950. },
  6951. {
  6952. name: "Macro",
  6953. height: math.unit(140, "feet")
  6954. },
  6955. {
  6956. name: "Supercharged",
  6957. height: math.unit(2500, "feet")
  6958. },
  6959. ]
  6960. ))
  6961. characterMakers.push(() => makeCharacter(
  6962. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6963. {
  6964. front: {
  6965. height: math.unit(6, "feet"),
  6966. weight: math.unit(350, "lbs"),
  6967. name: "Front",
  6968. image: {
  6969. source: "./media/characters/razinox/front.svg",
  6970. extra: 1686 / 1548,
  6971. bottom: 28.2 / 1868
  6972. }
  6973. },
  6974. back: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(350, "lbs"),
  6977. name: "Back",
  6978. image: {
  6979. source: "./media/characters/razinox/back.svg",
  6980. extra: 1660 / 1590,
  6981. bottom: 15 / 1665
  6982. }
  6983. },
  6984. },
  6985. [
  6986. {
  6987. name: "Normal",
  6988. height: math.unit(10 + 8 / 12, "foot")
  6989. },
  6990. {
  6991. name: "Minimacro",
  6992. height: math.unit(15, "foot")
  6993. },
  6994. {
  6995. name: "Macro",
  6996. height: math.unit(60, "foot"),
  6997. default: true
  6998. },
  6999. {
  7000. name: "Megamacro",
  7001. height: math.unit(5, "miles")
  7002. },
  7003. {
  7004. name: "Gigamacro",
  7005. height: math.unit(6000, "miles")
  7006. },
  7007. ]
  7008. ))
  7009. characterMakers.push(() => makeCharacter(
  7010. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7011. {
  7012. front: {
  7013. height: math.unit(6, "feet"),
  7014. weight: math.unit(150, "lbs"),
  7015. name: "Front",
  7016. image: {
  7017. source: "./media/characters/cobalt/front.svg"
  7018. }
  7019. }
  7020. },
  7021. [
  7022. {
  7023. name: "Normal",
  7024. height: math.unit(8 + 1 / 12, "foot")
  7025. },
  7026. {
  7027. name: "Macro",
  7028. height: math.unit(111, "foot"),
  7029. default: true
  7030. },
  7031. {
  7032. name: "Supracosmic",
  7033. height: math.unit(1e42, "feet")
  7034. },
  7035. ]
  7036. ))
  7037. characterMakers.push(() => makeCharacter(
  7038. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7039. {
  7040. front: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(140, "lbs"),
  7043. name: "Front",
  7044. image: {
  7045. source: "./media/characters/amanda/front.svg"
  7046. }
  7047. }
  7048. },
  7049. [
  7050. {
  7051. name: "Micro",
  7052. height: math.unit(5, "inches"),
  7053. default: true
  7054. },
  7055. ]
  7056. ))
  7057. characterMakers.push(() => makeCharacter(
  7058. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7059. {
  7060. front: {
  7061. height: math.unit(2.75, "meters"),
  7062. weight: math.unit(1200, "lb"),
  7063. name: "Front",
  7064. image: {
  7065. source: "./media/characters/teal/front.svg",
  7066. extra: 2463 / 2320,
  7067. bottom: 166 / 2629
  7068. }
  7069. },
  7070. back: {
  7071. height: math.unit(2.75, "meters"),
  7072. weight: math.unit(1200, "lb"),
  7073. name: "Back",
  7074. image: {
  7075. source: "./media/characters/teal/back.svg",
  7076. extra: 2580 / 2489,
  7077. bottom: 151 / 2731
  7078. }
  7079. },
  7080. sitting: {
  7081. height: math.unit(1.9, "meters"),
  7082. weight: math.unit(1200, "lb"),
  7083. name: "Sitting",
  7084. image: {
  7085. source: "./media/characters/teal/sitting.svg",
  7086. extra: 623 / 590,
  7087. bottom: 121 / 744
  7088. }
  7089. },
  7090. standing: {
  7091. height: math.unit(2.75, "meters"),
  7092. weight: math.unit(1200, "lb"),
  7093. name: "Standing",
  7094. image: {
  7095. source: "./media/characters/teal/standing.svg",
  7096. extra: 923 / 893,
  7097. bottom: 60 / 983
  7098. }
  7099. },
  7100. stretching: {
  7101. height: math.unit(3.65, "meters"),
  7102. weight: math.unit(1200, "lb"),
  7103. name: "Stretching",
  7104. image: {
  7105. source: "./media/characters/teal/stretching.svg",
  7106. extra: 1276 / 1244,
  7107. bottom: 0 / 1276
  7108. }
  7109. },
  7110. legged: {
  7111. height: math.unit(1.3, "meters"),
  7112. weight: math.unit(100, "lb"),
  7113. name: "Legged",
  7114. image: {
  7115. source: "./media/characters/teal/legged.svg",
  7116. extra: 462 / 437,
  7117. bottom: 24 / 486
  7118. }
  7119. },
  7120. naga: {
  7121. height: math.unit(5.4, "meters"),
  7122. weight: math.unit(4000, "lb"),
  7123. name: "Naga",
  7124. image: {
  7125. source: "./media/characters/teal/naga.svg",
  7126. extra: 1902 / 1858,
  7127. bottom: 0 / 1902
  7128. }
  7129. },
  7130. hand: {
  7131. height: math.unit(0.52, "meters"),
  7132. name: "Hand",
  7133. image: {
  7134. source: "./media/characters/teal/hand.svg"
  7135. }
  7136. },
  7137. maw: {
  7138. height: math.unit(0.43, "meters"),
  7139. name: "Maw",
  7140. image: {
  7141. source: "./media/characters/teal/maw.svg"
  7142. }
  7143. },
  7144. slit: {
  7145. height: math.unit(0.25, "meters"),
  7146. name: "Slit",
  7147. image: {
  7148. source: "./media/characters/teal/slit.svg"
  7149. }
  7150. },
  7151. },
  7152. [
  7153. {
  7154. name: "Normal",
  7155. height: math.unit(2.75, "meters"),
  7156. default: true
  7157. },
  7158. {
  7159. name: "Macro",
  7160. height: math.unit(300, "feet")
  7161. },
  7162. {
  7163. name: "Macro+",
  7164. height: math.unit(2000, "feet")
  7165. },
  7166. ]
  7167. ))
  7168. characterMakers.push(() => makeCharacter(
  7169. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7170. {
  7171. frontCat: {
  7172. height: math.unit(6, "feet"),
  7173. weight: math.unit(180, "lbs"),
  7174. name: "Front (Cat)",
  7175. image: {
  7176. source: "./media/characters/ravin-amulet/front-cat.svg"
  7177. }
  7178. },
  7179. frontCatAlt: {
  7180. height: math.unit(6, "feet"),
  7181. weight: math.unit(180, "lbs"),
  7182. name: "Front (Alt, Cat)",
  7183. image: {
  7184. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7185. }
  7186. },
  7187. frontWerewolf: {
  7188. height: math.unit(6 * 1.2, "feet"),
  7189. weight: math.unit(225, "lbs"),
  7190. name: "Front (Werewolf)",
  7191. image: {
  7192. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7193. }
  7194. },
  7195. backWerewolf: {
  7196. height: math.unit(6 * 1.2, "feet"),
  7197. weight: math.unit(225, "lbs"),
  7198. name: "Back (Werewolf)",
  7199. image: {
  7200. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7201. }
  7202. },
  7203. },
  7204. [
  7205. {
  7206. name: "Nano",
  7207. height: math.unit(1, "micrometer")
  7208. },
  7209. {
  7210. name: "Micro",
  7211. height: math.unit(1, "inch")
  7212. },
  7213. {
  7214. name: "Normal",
  7215. height: math.unit(6, "feet"),
  7216. default: true
  7217. },
  7218. {
  7219. name: "Macro",
  7220. height: math.unit(60, "feet")
  7221. }
  7222. ]
  7223. ))
  7224. characterMakers.push(() => makeCharacter(
  7225. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7226. {
  7227. front: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(165, "lbs"),
  7230. name: "Front",
  7231. image: {
  7232. source: "./media/characters/fluoresce/front.svg"
  7233. }
  7234. }
  7235. },
  7236. [
  7237. {
  7238. name: "Micro",
  7239. height: math.unit(6, "cm")
  7240. },
  7241. {
  7242. name: "Normal",
  7243. height: math.unit(5 + 7 / 12, "feet"),
  7244. default: true
  7245. },
  7246. {
  7247. name: "Macro",
  7248. height: math.unit(56, "feet")
  7249. },
  7250. {
  7251. name: "Megamacro",
  7252. height: math.unit(1.9, "miles")
  7253. },
  7254. ]
  7255. ))
  7256. characterMakers.push(() => makeCharacter(
  7257. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7258. {
  7259. front: {
  7260. height: math.unit(9 + 6 / 12, "feet"),
  7261. weight: math.unit(523, "lbs"),
  7262. name: "Side",
  7263. image: {
  7264. source: "./media/characters/aurora/side.svg"
  7265. }
  7266. }
  7267. },
  7268. [
  7269. {
  7270. name: "Normal",
  7271. height: math.unit(9 + 6 / 12, "feet")
  7272. },
  7273. {
  7274. name: "Macro",
  7275. height: math.unit(96, "feet"),
  7276. default: true
  7277. },
  7278. {
  7279. name: "Macro+",
  7280. height: math.unit(243, "feet")
  7281. },
  7282. ]
  7283. ))
  7284. characterMakers.push(() => makeCharacter(
  7285. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7286. {
  7287. front: {
  7288. height: math.unit(194, "cm"),
  7289. weight: math.unit(90, "kg"),
  7290. name: "Front",
  7291. image: {
  7292. source: "./media/characters/ranek/front.svg"
  7293. }
  7294. },
  7295. side: {
  7296. height: math.unit(194, "cm"),
  7297. weight: math.unit(90, "kg"),
  7298. name: "Side",
  7299. image: {
  7300. source: "./media/characters/ranek/side.svg"
  7301. }
  7302. },
  7303. back: {
  7304. height: math.unit(194, "cm"),
  7305. weight: math.unit(90, "kg"),
  7306. name: "Back",
  7307. image: {
  7308. source: "./media/characters/ranek/back.svg"
  7309. }
  7310. },
  7311. feral: {
  7312. height: math.unit(30, "cm"),
  7313. weight: math.unit(1.6, "lbs"),
  7314. name: "Feral",
  7315. image: {
  7316. source: "./media/characters/ranek/feral.svg"
  7317. }
  7318. },
  7319. },
  7320. [
  7321. {
  7322. name: "Normal",
  7323. height: math.unit(194, "cm"),
  7324. default: true
  7325. },
  7326. {
  7327. name: "Macro",
  7328. height: math.unit(100, "meters")
  7329. },
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(5 + 6 / 12, "feet"),
  7337. weight: math.unit(153, "lbs"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/andrew-cooper/front.svg"
  7341. }
  7342. },
  7343. },
  7344. [
  7345. {
  7346. name: "Nano",
  7347. height: math.unit(1, "mm")
  7348. },
  7349. {
  7350. name: "Micro",
  7351. height: math.unit(2, "inches")
  7352. },
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(5 + 6 / 12, "feet"),
  7356. default: true
  7357. }
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7362. {
  7363. front: {
  7364. height: math.unit(6, "feet"),
  7365. weight: math.unit(180, "lbs"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/akane-sato/front.svg",
  7369. extra: 1219 / 1140
  7370. }
  7371. },
  7372. back: {
  7373. height: math.unit(6, "feet"),
  7374. weight: math.unit(180, "lbs"),
  7375. name: "Back",
  7376. image: {
  7377. source: "./media/characters/akane-sato/back.svg",
  7378. extra: 1219 / 1170
  7379. }
  7380. },
  7381. },
  7382. [
  7383. {
  7384. name: "Normal",
  7385. height: math.unit(2.5, "meters")
  7386. },
  7387. {
  7388. name: "Macro",
  7389. height: math.unit(250, "meters"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Megamacro",
  7394. height: math.unit(25, "km")
  7395. },
  7396. ]
  7397. ))
  7398. characterMakers.push(() => makeCharacter(
  7399. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7400. {
  7401. front: {
  7402. height: math.unit(6, "feet"),
  7403. weight: math.unit(65, "kg"),
  7404. name: "Front",
  7405. image: {
  7406. source: "./media/characters/rook/front.svg",
  7407. extra: 960 / 950
  7408. }
  7409. }
  7410. },
  7411. [
  7412. {
  7413. name: "Normal",
  7414. height: math.unit(8.8, "feet")
  7415. },
  7416. {
  7417. name: "Macro",
  7418. height: math.unit(88, "feet"),
  7419. default: true
  7420. },
  7421. {
  7422. name: "Megamacro",
  7423. height: math.unit(8, "miles")
  7424. },
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7429. {
  7430. front: {
  7431. height: math.unit(12 + 2 / 12, "feet"),
  7432. weight: math.unit(808, "lbs"),
  7433. name: "Front",
  7434. image: {
  7435. source: "./media/characters/prodigy/front.svg"
  7436. }
  7437. }
  7438. },
  7439. [
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(12 + 2 / 12, "feet"),
  7443. default: true
  7444. },
  7445. {
  7446. name: "Macro",
  7447. height: math.unit(143, "feet")
  7448. },
  7449. {
  7450. name: "Macro+",
  7451. height: math.unit(400, "feet")
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7457. {
  7458. front: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(225, "lbs"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/daniel/front.svg"
  7464. }
  7465. },
  7466. leaning: {
  7467. height: math.unit(6, "feet"),
  7468. weight: math.unit(225, "lbs"),
  7469. name: "Leaning",
  7470. image: {
  7471. source: "./media/characters/daniel/leaning.svg"
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Macro",
  7478. height: math.unit(1000, "feet"),
  7479. default: true
  7480. },
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7485. {
  7486. front: {
  7487. height: math.unit(6, "feet"),
  7488. weight: math.unit(88, "lbs"),
  7489. name: "Front",
  7490. image: {
  7491. source: "./media/characters/chiros/front.svg",
  7492. extra: 306 / 226
  7493. }
  7494. },
  7495. side: {
  7496. height: math.unit(6, "feet"),
  7497. weight: math.unit(88, "lbs"),
  7498. name: "Side",
  7499. image: {
  7500. source: "./media/characters/chiros/side.svg",
  7501. extra: 306 / 226
  7502. }
  7503. },
  7504. },
  7505. [
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(6, "cm"),
  7509. default: true
  7510. },
  7511. ]
  7512. ))
  7513. characterMakers.push(() => makeCharacter(
  7514. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7515. {
  7516. front: {
  7517. height: math.unit(6, "feet"),
  7518. weight: math.unit(100, "lbs"),
  7519. name: "Front",
  7520. image: {
  7521. source: "./media/characters/selka/front.svg",
  7522. extra: 947 / 887
  7523. }
  7524. }
  7525. },
  7526. [
  7527. {
  7528. name: "Normal",
  7529. height: math.unit(5, "cm"),
  7530. default: true
  7531. },
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7536. {
  7537. front: {
  7538. height: math.unit(8 + 3 / 12, "feet"),
  7539. weight: math.unit(424, "lbs"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/verin/front.svg",
  7543. extra: 1845 / 1550
  7544. }
  7545. },
  7546. frontArmored: {
  7547. height: math.unit(8 + 3 / 12, "feet"),
  7548. weight: math.unit(424, "lbs"),
  7549. name: "Front (Armored)",
  7550. image: {
  7551. source: "./media/characters/verin/front-armor.svg",
  7552. extra: 1845 / 1550,
  7553. bottom: 0.01
  7554. }
  7555. },
  7556. back: {
  7557. height: math.unit(8 + 3 / 12, "feet"),
  7558. weight: math.unit(424, "lbs"),
  7559. name: "Back",
  7560. image: {
  7561. source: "./media/characters/verin/back.svg",
  7562. bottom: 0.1,
  7563. extra: 1
  7564. }
  7565. },
  7566. foot: {
  7567. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7568. name: "Foot",
  7569. image: {
  7570. source: "./media/characters/verin/foot.svg"
  7571. }
  7572. },
  7573. },
  7574. [
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(8 + 3 / 12, "feet")
  7578. },
  7579. {
  7580. name: "Minimacro",
  7581. height: math.unit(21, "feet"),
  7582. default: true
  7583. },
  7584. {
  7585. name: "Macro",
  7586. height: math.unit(626, "feet")
  7587. },
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7592. {
  7593. front: {
  7594. height: math.unit(2.718, "meters"),
  7595. weight: math.unit(150, "lbs"),
  7596. name: "Front",
  7597. image: {
  7598. source: "./media/characters/sovrim-terraquian/front.svg"
  7599. }
  7600. },
  7601. back: {
  7602. height: math.unit(2.718, "meters"),
  7603. weight: math.unit(150, "lbs"),
  7604. name: "Back",
  7605. image: {
  7606. source: "./media/characters/sovrim-terraquian/back.svg"
  7607. }
  7608. }
  7609. },
  7610. [
  7611. {
  7612. name: "Micro",
  7613. height: math.unit(2, "inches")
  7614. },
  7615. {
  7616. name: "Small",
  7617. height: math.unit(1, "meter")
  7618. },
  7619. {
  7620. name: "Normal",
  7621. height: math.unit(Math.E, "meters"),
  7622. default: true
  7623. },
  7624. {
  7625. name: "Macro",
  7626. height: math.unit(20, "meters")
  7627. },
  7628. {
  7629. name: "Macro+",
  7630. height: math.unit(400, "meters")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(7, "feet"),
  7639. weight: math.unit(489, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/reece-silvermane/front.svg",
  7643. bottom: 0.02,
  7644. extra: 1
  7645. }
  7646. },
  7647. },
  7648. [
  7649. {
  7650. name: "Macro",
  7651. height: math.unit(1.5, "miles"),
  7652. default: true
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(6, "feet"),
  7661. weight: math.unit(78, "kg"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/kane/front.svg",
  7665. extra: 978 / 899
  7666. }
  7667. },
  7668. },
  7669. [
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(2.1, "m"),
  7673. },
  7674. {
  7675. name: "Macro",
  7676. height: math.unit(1, "km"),
  7677. default: true
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(6, "feet"),
  7686. weight: math.unit(200, "kg"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/tegon/front.svg",
  7690. bottom: 0.01,
  7691. extra: 1
  7692. }
  7693. },
  7694. },
  7695. [
  7696. {
  7697. name: "Micro",
  7698. height: math.unit(1, "inch")
  7699. },
  7700. {
  7701. name: "Normal",
  7702. height: math.unit(6 + 3 / 12, "feet"),
  7703. default: true
  7704. },
  7705. {
  7706. name: "Macro",
  7707. height: math.unit(300, "feet")
  7708. },
  7709. {
  7710. name: "Megamacro",
  7711. height: math.unit(69, "miles")
  7712. },
  7713. ]
  7714. ))
  7715. characterMakers.push(() => makeCharacter(
  7716. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7717. {
  7718. side: {
  7719. height: math.unit(6, "feet"),
  7720. weight: math.unit(2304, "lbs"),
  7721. name: "Side",
  7722. image: {
  7723. source: "./media/characters/arcturax/side.svg",
  7724. extra: 790 / 376,
  7725. bottom: 0.01
  7726. }
  7727. },
  7728. },
  7729. [
  7730. {
  7731. name: "Micro",
  7732. height: math.unit(2, "inch")
  7733. },
  7734. {
  7735. name: "Normal",
  7736. height: math.unit(6, "feet")
  7737. },
  7738. {
  7739. name: "Macro",
  7740. height: math.unit(39, "feet"),
  7741. default: true
  7742. },
  7743. {
  7744. name: "Megamacro",
  7745. height: math.unit(7, "miles")
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7751. {
  7752. front: {
  7753. height: math.unit(6, "feet"),
  7754. weight: math.unit(50, "lbs"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/sentri/front.svg",
  7758. extra: 1750 / 1570,
  7759. bottom: 0.025
  7760. }
  7761. },
  7762. frontAlt: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(50, "lbs"),
  7765. name: "Front (Alt)",
  7766. image: {
  7767. source: "./media/characters/sentri/front-alt.svg",
  7768. extra: 1750 / 1570,
  7769. bottom: 0.025
  7770. }
  7771. },
  7772. },
  7773. [
  7774. {
  7775. name: "Normal",
  7776. height: math.unit(15, "feet"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Macro",
  7781. height: math.unit(2500, "feet")
  7782. }
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7787. {
  7788. front: {
  7789. height: math.unit(5 + 8 / 12, "feet"),
  7790. weight: math.unit(130, "lbs"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/corvin/front.svg",
  7794. extra: 1803 / 1629
  7795. }
  7796. },
  7797. frontShirt: {
  7798. height: math.unit(5 + 8 / 12, "feet"),
  7799. weight: math.unit(130, "lbs"),
  7800. name: "Front (Shirt)",
  7801. image: {
  7802. source: "./media/characters/corvin/front-shirt.svg",
  7803. extra: 1803 / 1629
  7804. }
  7805. },
  7806. frontPoncho: {
  7807. height: math.unit(5 + 8 / 12, "feet"),
  7808. weight: math.unit(130, "lbs"),
  7809. name: "Front (Poncho)",
  7810. image: {
  7811. source: "./media/characters/corvin/front-poncho.svg",
  7812. extra: 1803 / 1629
  7813. }
  7814. },
  7815. side: {
  7816. height: math.unit(5 + 8 / 12, "feet"),
  7817. weight: math.unit(130, "lbs"),
  7818. name: "Side",
  7819. image: {
  7820. source: "./media/characters/corvin/side.svg",
  7821. extra: 1012 / 945
  7822. }
  7823. },
  7824. back: {
  7825. height: math.unit(5 + 8 / 12, "feet"),
  7826. weight: math.unit(130, "lbs"),
  7827. name: "Back",
  7828. image: {
  7829. source: "./media/characters/corvin/back.svg",
  7830. extra: 1803 / 1629
  7831. }
  7832. },
  7833. },
  7834. [
  7835. {
  7836. name: "Micro",
  7837. height: math.unit(3, "inches")
  7838. },
  7839. {
  7840. name: "Normal",
  7841. height: math.unit(5 + 8 / 12, "feet")
  7842. },
  7843. {
  7844. name: "Macro",
  7845. height: math.unit(300, "feet"),
  7846. default: true
  7847. },
  7848. {
  7849. name: "Megamacro",
  7850. height: math.unit(500, "miles")
  7851. }
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(6, "feet"),
  7859. weight: math.unit(135, "lbs"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/q/front.svg",
  7863. extra: 854 / 752,
  7864. bottom: 0.005
  7865. }
  7866. },
  7867. back: {
  7868. height: math.unit(6, "feet"),
  7869. weight: math.unit(130, "lbs"),
  7870. name: "Back",
  7871. image: {
  7872. source: "./media/characters/q/back.svg",
  7873. extra: 854 / 752
  7874. }
  7875. },
  7876. },
  7877. [
  7878. {
  7879. name: "Macro",
  7880. height: math.unit(90, "feet"),
  7881. default: true
  7882. },
  7883. {
  7884. name: "Extra Macro",
  7885. height: math.unit(300, "feet"),
  7886. },
  7887. {
  7888. name: "BIG WALF",
  7889. height: math.unit(750, "feet"),
  7890. },
  7891. ]
  7892. ))
  7893. characterMakers.push(() => makeCharacter(
  7894. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7895. {
  7896. front: {
  7897. height: math.unit(6, "feet"),
  7898. weight: math.unit(150, "lbs"),
  7899. name: "Front",
  7900. image: {
  7901. source: "./media/characters/carley/front.svg",
  7902. extra: 3927 / 3540,
  7903. bottom: 29.2 / 735
  7904. }
  7905. }
  7906. },
  7907. [
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(6 + 3 / 12, "feet")
  7911. },
  7912. {
  7913. name: "Macro",
  7914. height: math.unit(185, "feet"),
  7915. default: true
  7916. },
  7917. {
  7918. name: "Megamacro",
  7919. height: math.unit(8, "miles"),
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7925. {
  7926. front: {
  7927. height: math.unit(3, "feet"),
  7928. weight: math.unit(28, "lbs"),
  7929. name: "Front",
  7930. image: {
  7931. source: "./media/characters/citrine/front.svg"
  7932. }
  7933. }
  7934. },
  7935. [
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(3, "feet"),
  7939. default: true
  7940. }
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7945. {
  7946. front: {
  7947. height: math.unit(14, "feet"),
  7948. weight: math.unit(1450, "kg"),
  7949. capacity: math.unit(15, "people"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/aura-starwind/front.svg",
  7953. extra: 1455 / 1335
  7954. }
  7955. },
  7956. side: {
  7957. height: math.unit(14, "feet"),
  7958. weight: math.unit(1450, "kg"),
  7959. capacity: math.unit(15, "people"),
  7960. name: "Side",
  7961. image: {
  7962. source: "./media/characters/aura-starwind/side.svg",
  7963. extra: 1654 / 1497
  7964. }
  7965. },
  7966. taur: {
  7967. height: math.unit(18, "feet"),
  7968. weight: math.unit(5500, "kg"),
  7969. capacity: math.unit(50, "people"),
  7970. name: "Taur",
  7971. image: {
  7972. source: "./media/characters/aura-starwind/taur.svg",
  7973. extra: 1760 / 1650
  7974. }
  7975. },
  7976. feral: {
  7977. height: math.unit(46, "feet"),
  7978. weight: math.unit(25000, "kg"),
  7979. capacity: math.unit(120, "people"),
  7980. name: "Feral",
  7981. image: {
  7982. source: "./media/characters/aura-starwind/feral.svg"
  7983. }
  7984. },
  7985. },
  7986. [
  7987. {
  7988. name: "Normal",
  7989. height: math.unit(14, "feet"),
  7990. default: true
  7991. },
  7992. {
  7993. name: "Macro",
  7994. height: math.unit(50, "meters")
  7995. },
  7996. {
  7997. name: "Megamacro",
  7998. height: math.unit(5000, "meters")
  7999. },
  8000. {
  8001. name: "Gigamacro",
  8002. height: math.unit(100000, "kilometers")
  8003. },
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8008. {
  8009. front: {
  8010. height: math.unit(2 + 7 / 12, "feet"),
  8011. weight: math.unit(32, "lbs"),
  8012. name: "Front",
  8013. image: {
  8014. source: "./media/characters/rivet/front.svg",
  8015. extra: 1716 / 1658,
  8016. bottom: 0.03
  8017. }
  8018. },
  8019. foot: {
  8020. height: math.unit(0.551, "feet"),
  8021. name: "Rivet's Foot",
  8022. image: {
  8023. source: "./media/characters/rivet/foot.svg"
  8024. },
  8025. rename: true
  8026. }
  8027. },
  8028. [
  8029. {
  8030. name: "Micro",
  8031. height: math.unit(1.5, "inches"),
  8032. },
  8033. {
  8034. name: "Normal",
  8035. height: math.unit(2 + 7 / 12, "feet"),
  8036. default: true
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(85, "feet")
  8041. },
  8042. {
  8043. name: "Megamacro",
  8044. height: math.unit(2.2, "km")
  8045. }
  8046. ]
  8047. ))
  8048. characterMakers.push(() => makeCharacter(
  8049. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8050. {
  8051. front: {
  8052. height: math.unit(5 + 9 / 12, "feet"),
  8053. weight: math.unit(150, "lbs"),
  8054. name: "Front",
  8055. image: {
  8056. source: "./media/characters/coffee/front.svg",
  8057. extra: 3666 / 3032,
  8058. bottom: 0.04
  8059. }
  8060. },
  8061. foot: {
  8062. height: math.unit(1.29, "feet"),
  8063. name: "Foot",
  8064. image: {
  8065. source: "./media/characters/coffee/foot.svg"
  8066. }
  8067. },
  8068. },
  8069. [
  8070. {
  8071. name: "Micro",
  8072. height: math.unit(2, "inches"),
  8073. },
  8074. {
  8075. name: "Normal",
  8076. height: math.unit(5 + 9 / 12, "feet"),
  8077. default: true
  8078. },
  8079. {
  8080. name: "Macro",
  8081. height: math.unit(800, "feet")
  8082. },
  8083. {
  8084. name: "Megamacro",
  8085. height: math.unit(25, "miles")
  8086. }
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8091. {
  8092. front: {
  8093. height: math.unit(6, "feet"),
  8094. weight: math.unit(200, "lbs"),
  8095. name: "Front",
  8096. image: {
  8097. source: "./media/characters/chari-gal/front.svg",
  8098. extra: 1568 / 1385,
  8099. bottom: 0.047
  8100. }
  8101. },
  8102. gigantamax: {
  8103. height: math.unit(6 * 16, "feet"),
  8104. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8105. name: "Gigantamax",
  8106. image: {
  8107. source: "./media/characters/chari-gal/gigantamax.svg",
  8108. extra: 1124 / 888,
  8109. bottom: 0.03
  8110. }
  8111. },
  8112. },
  8113. [
  8114. {
  8115. name: "Normal",
  8116. height: math.unit(5 + 7 / 12, "feet")
  8117. },
  8118. {
  8119. name: "Macro",
  8120. height: math.unit(200, "feet"),
  8121. default: true
  8122. }
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8127. {
  8128. front: {
  8129. height: math.unit(6, "feet"),
  8130. weight: math.unit(150, "lbs"),
  8131. name: "Front",
  8132. image: {
  8133. source: "./media/characters/nova/front.svg",
  8134. extra: 5000 / 4722,
  8135. bottom: 0.02
  8136. }
  8137. }
  8138. },
  8139. [
  8140. {
  8141. name: "Micro-",
  8142. height: math.unit(0.8, "inches")
  8143. },
  8144. {
  8145. name: "Micro",
  8146. height: math.unit(2, "inches"),
  8147. default: true
  8148. },
  8149. ]
  8150. ))
  8151. characterMakers.push(() => makeCharacter(
  8152. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8153. {
  8154. front: {
  8155. height: math.unit(3 + 1 / 12, "feet"),
  8156. weight: math.unit(21.7, "lbs"),
  8157. name: "Front",
  8158. image: {
  8159. source: "./media/characters/argent/front.svg",
  8160. extra: 1471 / 1331,
  8161. bottom: 100.8 / 1575.5
  8162. }
  8163. }
  8164. },
  8165. [
  8166. {
  8167. name: "Micro",
  8168. height: math.unit(2, "inches")
  8169. },
  8170. {
  8171. name: "Normal",
  8172. height: math.unit(3 + 1 / 12, "feet"),
  8173. default: true
  8174. },
  8175. {
  8176. name: "Macro",
  8177. height: math.unit(120, "feet")
  8178. },
  8179. ]
  8180. ))
  8181. characterMakers.push(() => makeCharacter(
  8182. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8183. {
  8184. lamp: {
  8185. height: math.unit(7 * 1559 / 989, "feet"),
  8186. name: "Magic Lamp",
  8187. image: {
  8188. source: "./media/characters/mira-al-cul/lamp.svg",
  8189. extra: 1617 / 1559
  8190. }
  8191. },
  8192. front: {
  8193. height: math.unit(7, "feet"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/mira-al-cul/front.svg",
  8197. extra: 1044 / 990
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Heavily Restricted",
  8204. height: math.unit(7 * 1559 / 989, "feet")
  8205. },
  8206. {
  8207. name: "Freshly Freed",
  8208. height: math.unit(50 * 1559 / 989, "feet")
  8209. },
  8210. {
  8211. name: "World Encompassing",
  8212. height: math.unit(10000 * 1559 / 989, "miles")
  8213. },
  8214. {
  8215. name: "Galactic",
  8216. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8217. },
  8218. {
  8219. name: "Palmed Universe",
  8220. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8221. default: true
  8222. },
  8223. {
  8224. name: "Multiversal Matriarch",
  8225. height: math.unit(8.87e10, "yottameters")
  8226. },
  8227. {
  8228. name: "Void Mother",
  8229. height: math.unit(3.14e110, "yottaparsecs")
  8230. },
  8231. {
  8232. name: "Toying with Transcendence",
  8233. height: math.unit(1e307, "meters")
  8234. },
  8235. ]
  8236. ))
  8237. characterMakers.push(() => makeCharacter(
  8238. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8239. {
  8240. front: {
  8241. height: math.unit(17 + 1 / 12, "feet"),
  8242. weight: math.unit(476.2 * 5, "lbs"),
  8243. name: "Front",
  8244. image: {
  8245. source: "./media/characters/kuro-shi-uchū/front.svg",
  8246. extra: 2329 / 1835,
  8247. bottom: 0.02
  8248. }
  8249. },
  8250. },
  8251. [
  8252. {
  8253. name: "Micro",
  8254. height: math.unit(2, "inches")
  8255. },
  8256. {
  8257. name: "Normal",
  8258. height: math.unit(12, "meters")
  8259. },
  8260. {
  8261. name: "Planetary",
  8262. height: math.unit(0.00929, "AU"),
  8263. default: true
  8264. },
  8265. {
  8266. name: "Universal",
  8267. height: math.unit(20, "gigaparsecs")
  8268. },
  8269. ]
  8270. ))
  8271. characterMakers.push(() => makeCharacter(
  8272. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8273. {
  8274. front: {
  8275. height: math.unit(5 + 2 / 12, "feet"),
  8276. weight: math.unit(120, "lbs"),
  8277. name: "Front",
  8278. image: {
  8279. source: "./media/characters/katherine/front.svg",
  8280. extra: 2075 / 1969
  8281. }
  8282. },
  8283. dress: {
  8284. height: math.unit(5 + 2 / 12, "feet"),
  8285. weight: math.unit(120, "lbs"),
  8286. name: "Dress",
  8287. image: {
  8288. source: "./media/characters/katherine/dress.svg",
  8289. extra: 2258 / 2064
  8290. }
  8291. },
  8292. },
  8293. [
  8294. {
  8295. name: "Micro",
  8296. height: math.unit(1, "inches"),
  8297. default: true
  8298. },
  8299. {
  8300. name: "Normal",
  8301. height: math.unit(5 + 2 / 12, "feet")
  8302. },
  8303. {
  8304. name: "Macro",
  8305. height: math.unit(100, "meters")
  8306. },
  8307. {
  8308. name: "Megamacro",
  8309. height: math.unit(80, "miles")
  8310. },
  8311. ]
  8312. ))
  8313. characterMakers.push(() => makeCharacter(
  8314. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8315. {
  8316. front: {
  8317. height: math.unit(7 + 8 / 12, "feet"),
  8318. weight: math.unit(250, "lbs"),
  8319. name: "Front",
  8320. image: {
  8321. source: "./media/characters/yevis/front.svg",
  8322. extra: 1938 / 1755
  8323. }
  8324. }
  8325. },
  8326. [
  8327. {
  8328. name: "Mortal",
  8329. height: math.unit(7 + 8 / 12, "feet")
  8330. },
  8331. {
  8332. name: "Battle",
  8333. height: math.unit(25 + 11 / 12, "feet")
  8334. },
  8335. {
  8336. name: "Wrath",
  8337. height: math.unit(1654 + 11 / 12, "feet")
  8338. },
  8339. {
  8340. name: "Planet Destroyer",
  8341. height: math.unit(12000, "miles")
  8342. },
  8343. {
  8344. name: "Galaxy Conqueror",
  8345. height: math.unit(1.45, "zettameters"),
  8346. default: true
  8347. },
  8348. {
  8349. name: "Universal War",
  8350. height: math.unit(184, "gigaparsecs")
  8351. },
  8352. {
  8353. name: "Eternity War",
  8354. height: math.unit(1.98e55, "yottaparsecs")
  8355. },
  8356. ]
  8357. ))
  8358. characterMakers.push(() => makeCharacter(
  8359. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8360. {
  8361. front: {
  8362. height: math.unit(5 + 8 / 12, "feet"),
  8363. weight: math.unit(63, "kg"),
  8364. name: "Front",
  8365. image: {
  8366. source: "./media/characters/xavier/front.svg",
  8367. extra: 944 / 883
  8368. }
  8369. },
  8370. frontStretch: {
  8371. height: math.unit(5 + 8 / 12, "feet"),
  8372. weight: math.unit(63, "kg"),
  8373. name: "Stretching",
  8374. image: {
  8375. source: "./media/characters/xavier/front-stretch.svg",
  8376. extra: 962 / 820
  8377. }
  8378. },
  8379. },
  8380. [
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(5 + 8 / 12, "feet")
  8384. },
  8385. {
  8386. name: "Macro",
  8387. height: math.unit(100, "meters"),
  8388. default: true
  8389. },
  8390. {
  8391. name: "McLargeHuge",
  8392. height: math.unit(10, "miles")
  8393. },
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8398. {
  8399. front: {
  8400. height: math.unit(5 + 5 / 12, "feet"),
  8401. weight: math.unit(150, "lb"),
  8402. name: "Front",
  8403. image: {
  8404. source: "./media/characters/joshii/front.svg",
  8405. extra: 765 / 653,
  8406. bottom: 51 / 816
  8407. }
  8408. },
  8409. foot: {
  8410. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8411. name: "Foot",
  8412. image: {
  8413. source: "./media/characters/joshii/foot.svg"
  8414. }
  8415. },
  8416. },
  8417. [
  8418. {
  8419. name: "Micro",
  8420. height: math.unit(2, "inches"),
  8421. default: true
  8422. },
  8423. {
  8424. name: "Normal",
  8425. height: math.unit(5 + 5 / 12, "feet")
  8426. },
  8427. {
  8428. name: "Macro",
  8429. height: math.unit(785, "feet")
  8430. },
  8431. {
  8432. name: "Megamacro",
  8433. height: math.unit(24.5, "miles")
  8434. },
  8435. ]
  8436. ))
  8437. characterMakers.push(() => makeCharacter(
  8438. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8439. {
  8440. front: {
  8441. height: math.unit(6, "feet"),
  8442. weight: math.unit(150, "lb"),
  8443. name: "Front",
  8444. image: {
  8445. source: "./media/characters/goddess-elizabeth/front.svg",
  8446. extra: 1800 / 1525,
  8447. bottom: 0.005
  8448. }
  8449. },
  8450. foot: {
  8451. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8452. name: "Foot",
  8453. image: {
  8454. source: "./media/characters/goddess-elizabeth/foot.svg"
  8455. }
  8456. },
  8457. mouth: {
  8458. height: math.unit(6, "feet"),
  8459. name: "Mouth",
  8460. image: {
  8461. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8462. }
  8463. },
  8464. },
  8465. [
  8466. {
  8467. name: "Micro",
  8468. height: math.unit(12, "feet")
  8469. },
  8470. {
  8471. name: "Normal",
  8472. height: math.unit(80, "miles"),
  8473. default: true
  8474. },
  8475. {
  8476. name: "Macro",
  8477. height: math.unit(15000, "parsecs")
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8483. {
  8484. front: {
  8485. height: math.unit(5 + 9 / 12, "feet"),
  8486. weight: math.unit(144, "lb"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/kara/front.svg"
  8490. }
  8491. },
  8492. feet: {
  8493. height: math.unit(6 / 6.765, "feet"),
  8494. name: "Kara's Feet",
  8495. rename: true,
  8496. image: {
  8497. source: "./media/characters/kara/feet.svg"
  8498. }
  8499. },
  8500. },
  8501. [
  8502. {
  8503. name: "Normal",
  8504. height: math.unit(5 + 9 / 12, "feet")
  8505. },
  8506. {
  8507. name: "Macro",
  8508. height: math.unit(174, "feet"),
  8509. default: true
  8510. },
  8511. ]
  8512. ))
  8513. characterMakers.push(() => makeCharacter(
  8514. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8515. {
  8516. front: {
  8517. height: math.unit(18, "feet"),
  8518. weight: math.unit(4050, "lb"),
  8519. name: "Front",
  8520. image: {
  8521. source: "./media/characters/tyrone/front.svg",
  8522. extra: 2405 / 2270,
  8523. bottom: 182 / 2587
  8524. }
  8525. },
  8526. },
  8527. [
  8528. {
  8529. name: "Normal",
  8530. height: math.unit(18, "feet"),
  8531. default: true
  8532. },
  8533. {
  8534. name: "Macro",
  8535. height: math.unit(300, "feet")
  8536. },
  8537. {
  8538. name: "Megamacro",
  8539. height: math.unit(15, "km")
  8540. },
  8541. {
  8542. name: "Gigamacro",
  8543. height: math.unit(500, "km")
  8544. },
  8545. {
  8546. name: "Teramacro",
  8547. height: math.unit(0.5, "gigameters")
  8548. },
  8549. {
  8550. name: "Omnimacro",
  8551. height: math.unit(1e252, "yottauniverse")
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8557. {
  8558. front: {
  8559. height: math.unit(7 + 8 / 12, "feet"),
  8560. weight: math.unit(120, "lb"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/danny/front.svg",
  8564. extra: 1490 / 1350
  8565. }
  8566. },
  8567. back: {
  8568. height: math.unit(7 + 8 / 12, "feet"),
  8569. weight: math.unit(120, "lb"),
  8570. name: "Back",
  8571. image: {
  8572. source: "./media/characters/danny/back.svg",
  8573. extra: 1490 / 1350
  8574. }
  8575. },
  8576. },
  8577. [
  8578. {
  8579. name: "Normal",
  8580. height: math.unit(7 + 8 / 12, "feet"),
  8581. default: true
  8582. },
  8583. ]
  8584. ))
  8585. characterMakers.push(() => makeCharacter(
  8586. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8587. {
  8588. front: {
  8589. height: math.unit(3.5, "inches"),
  8590. weight: math.unit(19, "grams"),
  8591. name: "Front",
  8592. image: {
  8593. source: "./media/characters/mallow/front.svg",
  8594. extra: 471 / 431
  8595. }
  8596. },
  8597. back: {
  8598. height: math.unit(3.5, "inches"),
  8599. weight: math.unit(19, "grams"),
  8600. name: "Back",
  8601. image: {
  8602. source: "./media/characters/mallow/back.svg",
  8603. extra: 471 / 431
  8604. }
  8605. },
  8606. },
  8607. [
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(3.5, "inches"),
  8611. default: true
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8617. {
  8618. front: {
  8619. height: math.unit(9, "feet"),
  8620. weight: math.unit(230, "kg"),
  8621. name: "Front",
  8622. image: {
  8623. source: "./media/characters/starry-aqua/front.svg"
  8624. }
  8625. },
  8626. back: {
  8627. height: math.unit(9, "feet"),
  8628. weight: math.unit(230, "kg"),
  8629. name: "Back",
  8630. image: {
  8631. source: "./media/characters/starry-aqua/back.svg"
  8632. }
  8633. },
  8634. hand: {
  8635. height: math.unit(9 * 0.1168, "feet"),
  8636. name: "Hand",
  8637. image: {
  8638. source: "./media/characters/starry-aqua/hand.svg"
  8639. }
  8640. },
  8641. foot: {
  8642. height: math.unit(9 * 0.18, "feet"),
  8643. name: "Foot",
  8644. image: {
  8645. source: "./media/characters/starry-aqua/foot.svg"
  8646. }
  8647. }
  8648. },
  8649. [
  8650. {
  8651. name: "Micro",
  8652. height: math.unit(3, "inches")
  8653. },
  8654. {
  8655. name: "Normal",
  8656. height: math.unit(9, "feet")
  8657. },
  8658. {
  8659. name: "Macro",
  8660. height: math.unit(300, "feet"),
  8661. default: true
  8662. },
  8663. {
  8664. name: "Megamacro",
  8665. height: math.unit(3200, "feet")
  8666. }
  8667. ]
  8668. ))
  8669. characterMakers.push(() => makeCharacter(
  8670. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8671. {
  8672. front: {
  8673. height: math.unit(6, "feet"),
  8674. weight: math.unit(230, "lb"),
  8675. name: "Front",
  8676. image: {
  8677. source: "./media/characters/luka/front.svg",
  8678. extra: 1,
  8679. bottom: 0.025
  8680. }
  8681. },
  8682. },
  8683. [
  8684. {
  8685. name: "Normal",
  8686. height: math.unit(12 + 8 / 12, "feet"),
  8687. default: true
  8688. },
  8689. {
  8690. name: "Minimacro",
  8691. height: math.unit(20, "feet")
  8692. },
  8693. {
  8694. name: "Macro",
  8695. height: math.unit(250, "feet")
  8696. },
  8697. {
  8698. name: "Megamacro",
  8699. height: math.unit(5, "miles")
  8700. },
  8701. {
  8702. name: "Gigamacro",
  8703. height: math.unit(8000, "miles")
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(6, "feet"),
  8712. weight: math.unit(150, "lb"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/natalie-nightring/front.svg",
  8716. extra: 1,
  8717. bottom: 0.06
  8718. }
  8719. },
  8720. },
  8721. [
  8722. {
  8723. name: "Uh Oh",
  8724. height: math.unit(0.1, "mm")
  8725. },
  8726. {
  8727. name: "Small",
  8728. height: math.unit(3, "inches")
  8729. },
  8730. {
  8731. name: "Human Scale",
  8732. height: math.unit(6, "feet")
  8733. },
  8734. {
  8735. name: "Librarian",
  8736. height: math.unit(50, "feet"),
  8737. default: true
  8738. },
  8739. {
  8740. name: "Immense",
  8741. height: math.unit(200, "miles")
  8742. },
  8743. ]
  8744. ))
  8745. characterMakers.push(() => makeCharacter(
  8746. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8747. {
  8748. front: {
  8749. height: math.unit(6, "feet"),
  8750. weight: math.unit(180, "lbs"),
  8751. name: "Front",
  8752. image: {
  8753. source: "./media/characters/danni-rosie/front.svg",
  8754. extra: 1260 / 1128,
  8755. bottom: 0.022
  8756. }
  8757. },
  8758. },
  8759. [
  8760. {
  8761. name: "Micro",
  8762. height: math.unit(2, "inches"),
  8763. default: true
  8764. },
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8769. {
  8770. front: {
  8771. height: math.unit(5 + 9 / 12, "feet"),
  8772. weight: math.unit(220, "lb"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/samantha-kruse/front.svg",
  8776. extra: (985 / 935),
  8777. bottom: 0.03
  8778. }
  8779. },
  8780. frontUndressed: {
  8781. height: math.unit(5 + 9 / 12, "feet"),
  8782. weight: math.unit(220, "lb"),
  8783. name: "Front (Undressed)",
  8784. image: {
  8785. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8786. extra: (973 / 923),
  8787. bottom: 0.025
  8788. }
  8789. },
  8790. fat: {
  8791. height: math.unit(5 + 9 / 12, "feet"),
  8792. weight: math.unit(900, "lb"),
  8793. name: "Front (Fat)",
  8794. image: {
  8795. source: "./media/characters/samantha-kruse/fat.svg",
  8796. extra: 2688 / 2561
  8797. }
  8798. },
  8799. },
  8800. [
  8801. {
  8802. name: "Normal",
  8803. height: math.unit(5 + 9 / 12, "feet"),
  8804. default: true
  8805. }
  8806. ]
  8807. ))
  8808. characterMakers.push(() => makeCharacter(
  8809. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8810. {
  8811. back: {
  8812. height: math.unit(5 + 4 / 12, "feet"),
  8813. weight: math.unit(4963, "lb"),
  8814. name: "Back",
  8815. image: {
  8816. source: "./media/characters/amelia-rosie/back.svg",
  8817. extra: 1113 / 963,
  8818. bottom: 0.01
  8819. }
  8820. },
  8821. },
  8822. [
  8823. {
  8824. name: "Level 0",
  8825. height: math.unit(5 + 4 / 12, "feet")
  8826. },
  8827. {
  8828. name: "Level 1",
  8829. height: math.unit(164597, "feet"),
  8830. default: true
  8831. },
  8832. {
  8833. name: "Level 2",
  8834. height: math.unit(956243, "miles")
  8835. },
  8836. {
  8837. name: "Level 3",
  8838. height: math.unit(29421709423, "miles")
  8839. },
  8840. {
  8841. name: "Level 4",
  8842. height: math.unit(154, "lightyears")
  8843. },
  8844. {
  8845. name: "Level 5",
  8846. height: math.unit(4738272, "lightyears")
  8847. },
  8848. {
  8849. name: "Level 6",
  8850. height: math.unit(145787152896, "lightyears")
  8851. },
  8852. ]
  8853. ))
  8854. characterMakers.push(() => makeCharacter(
  8855. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8856. {
  8857. front: {
  8858. height: math.unit(5 + 11 / 12, "feet"),
  8859. weight: math.unit(65, "kg"),
  8860. name: "Front",
  8861. image: {
  8862. source: "./media/characters/rook-kitara/front.svg",
  8863. extra: 1347 / 1274,
  8864. bottom: 0.005
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Totally Unfair",
  8871. height: math.unit(1.8, "mm")
  8872. },
  8873. {
  8874. name: "Lap Rookie",
  8875. height: math.unit(1.4, "feet")
  8876. },
  8877. {
  8878. name: "Normal",
  8879. height: math.unit(5 + 11 / 12, "feet"),
  8880. default: true
  8881. },
  8882. {
  8883. name: "How Did This Happen",
  8884. height: math.unit(80, "miles")
  8885. }
  8886. ]
  8887. ))
  8888. characterMakers.push(() => makeCharacter(
  8889. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8890. {
  8891. front: {
  8892. height: math.unit(7, "feet"),
  8893. weight: math.unit(300, "lb"),
  8894. name: "Front",
  8895. image: {
  8896. source: "./media/characters/pisces/front.svg",
  8897. extra: 2255 / 2115,
  8898. bottom: 0.03
  8899. }
  8900. },
  8901. back: {
  8902. height: math.unit(7, "feet"),
  8903. weight: math.unit(300, "lb"),
  8904. name: "Back",
  8905. image: {
  8906. source: "./media/characters/pisces/back.svg",
  8907. extra: 2146 / 2055,
  8908. bottom: 0.04
  8909. }
  8910. },
  8911. },
  8912. [
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(7, "feet"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Swimming Pool",
  8920. height: math.unit(12.2, "meters")
  8921. },
  8922. {
  8923. name: "Olympic Swimming Pool",
  8924. height: math.unit(56.3, "meters")
  8925. },
  8926. {
  8927. name: "Lake Superior",
  8928. height: math.unit(93900, "meters")
  8929. },
  8930. {
  8931. name: "Mediterranean Sea",
  8932. height: math.unit(644457, "meters")
  8933. },
  8934. {
  8935. name: "World's Oceans",
  8936. height: math.unit(4567491, "meters")
  8937. },
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8942. {
  8943. front: {
  8944. height: math.unit(2.3, "meters"),
  8945. weight: math.unit(120, "kg"),
  8946. name: "Front",
  8947. image: {
  8948. source: "./media/characters/zelas/front.svg"
  8949. }
  8950. },
  8951. side: {
  8952. height: math.unit(2.3, "meters"),
  8953. weight: math.unit(120, "kg"),
  8954. name: "Side",
  8955. image: {
  8956. source: "./media/characters/zelas/side.svg"
  8957. }
  8958. },
  8959. back: {
  8960. height: math.unit(2.3, "meters"),
  8961. weight: math.unit(120, "kg"),
  8962. name: "Back",
  8963. image: {
  8964. source: "./media/characters/zelas/back.svg"
  8965. }
  8966. },
  8967. foot: {
  8968. height: math.unit(1.116, "feet"),
  8969. name: "Foot",
  8970. image: {
  8971. source: "./media/characters/zelas/foot.svg"
  8972. }
  8973. },
  8974. },
  8975. [
  8976. {
  8977. name: "Normal",
  8978. height: math.unit(2.3, "meters")
  8979. },
  8980. {
  8981. name: "Macro",
  8982. height: math.unit(30, "meters"),
  8983. default: true
  8984. },
  8985. ]
  8986. ))
  8987. characterMakers.push(() => makeCharacter(
  8988. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8989. {
  8990. front: {
  8991. height: math.unit(1, "inch"),
  8992. weight: math.unit(0.21, "grams"),
  8993. name: "Front",
  8994. image: {
  8995. source: "./media/characters/talbot/front.svg",
  8996. extra: 594 / 544
  8997. }
  8998. },
  8999. },
  9000. [
  9001. {
  9002. name: "Micro",
  9003. height: math.unit(1, "inch"),
  9004. default: true
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9010. {
  9011. front: {
  9012. height: math.unit(3 + 3 / 12, "feet"),
  9013. weight: math.unit(51.8, "lb"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/fliss/front.svg",
  9017. extra: 840 / 640
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Teeny Tiny",
  9024. height: math.unit(1, "mm")
  9025. },
  9026. {
  9027. name: "Small",
  9028. height: math.unit(1, "inch"),
  9029. default: true
  9030. },
  9031. {
  9032. name: "Standard Sylveon",
  9033. height: math.unit(3 + 3 / 12, "feet")
  9034. },
  9035. {
  9036. name: "Large Nuisance",
  9037. height: math.unit(33, "feet")
  9038. },
  9039. {
  9040. name: "City Filler",
  9041. height: math.unit(3000, "feet")
  9042. },
  9043. {
  9044. name: "New Horizon",
  9045. height: math.unit(6000, "miles")
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9051. {
  9052. front: {
  9053. height: math.unit(5, "cm"),
  9054. weight: math.unit(1.94, "g"),
  9055. name: "Front",
  9056. image: {
  9057. source: "./media/characters/fleta/front.svg",
  9058. extra: 835 / 803
  9059. }
  9060. },
  9061. back: {
  9062. height: math.unit(5, "cm"),
  9063. weight: math.unit(1.94, "g"),
  9064. name: "Back",
  9065. image: {
  9066. source: "./media/characters/fleta/back.svg",
  9067. extra: 835 / 803
  9068. }
  9069. },
  9070. },
  9071. [
  9072. {
  9073. name: "Micro",
  9074. height: math.unit(5, "cm"),
  9075. default: true
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(6, "feet"),
  9084. weight: math.unit(225, "lb"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/dominic/front.svg",
  9088. extra: 1770 / 1620,
  9089. bottom: 0.025
  9090. }
  9091. },
  9092. back: {
  9093. height: math.unit(6, "feet"),
  9094. weight: math.unit(225, "lb"),
  9095. name: "Back",
  9096. image: {
  9097. source: "./media/characters/dominic/back.svg",
  9098. extra: 1745 / 1620,
  9099. bottom: 0.065
  9100. }
  9101. },
  9102. },
  9103. [
  9104. {
  9105. name: "Nano",
  9106. height: math.unit(0.1, "mm")
  9107. },
  9108. {
  9109. name: "Micro-",
  9110. height: math.unit(1, "mm")
  9111. },
  9112. {
  9113. name: "Micro",
  9114. height: math.unit(4, "inches")
  9115. },
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(6 + 4 / 12, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(115, "feet")
  9124. },
  9125. {
  9126. name: "Macro+",
  9127. height: math.unit(955, "feet")
  9128. },
  9129. {
  9130. name: "Megamacro",
  9131. height: math.unit(8990, "feet")
  9132. },
  9133. {
  9134. name: "Gigmacro",
  9135. height: math.unit(9310, "miles")
  9136. },
  9137. {
  9138. name: "Teramacro",
  9139. height: math.unit(1567005010, "miles")
  9140. },
  9141. {
  9142. name: "Examacro",
  9143. height: math.unit(1425, "parsecs")
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(400, "feet"),
  9152. weight: math.unit(44444444, "lb"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/major-colonel/front.svg"
  9156. }
  9157. },
  9158. back: {
  9159. height: math.unit(400, "feet"),
  9160. weight: math.unit(44444444, "lb"),
  9161. name: "Back",
  9162. image: {
  9163. source: "./media/characters/major-colonel/back.svg"
  9164. }
  9165. },
  9166. },
  9167. [
  9168. {
  9169. name: "Macro",
  9170. height: math.unit(400, "feet"),
  9171. default: true
  9172. },
  9173. ]
  9174. ))
  9175. characterMakers.push(() => makeCharacter(
  9176. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9177. {
  9178. catFront: {
  9179. height: math.unit(6, "feet"),
  9180. weight: math.unit(120, "lb"),
  9181. name: "Front (Cat Side)",
  9182. image: {
  9183. source: "./media/characters/axel-lycan/cat-front.svg",
  9184. extra: 430 / 402,
  9185. bottom: 43 / 472.35
  9186. }
  9187. },
  9188. catBack: {
  9189. height: math.unit(6, "feet"),
  9190. weight: math.unit(120, "lb"),
  9191. name: "Back (Cat Side)",
  9192. image: {
  9193. source: "./media/characters/axel-lycan/cat-back.svg",
  9194. extra: 447 / 419,
  9195. bottom: 23.3 / 469
  9196. }
  9197. },
  9198. wolfFront: {
  9199. height: math.unit(6, "feet"),
  9200. weight: math.unit(120, "lb"),
  9201. name: "Front (Wolf Side)",
  9202. image: {
  9203. source: "./media/characters/axel-lycan/wolf-front.svg",
  9204. extra: 485 / 456,
  9205. bottom: 19 / 504
  9206. }
  9207. },
  9208. wolfBack: {
  9209. height: math.unit(6, "feet"),
  9210. weight: math.unit(120, "lb"),
  9211. name: "Back (Wolf Side)",
  9212. image: {
  9213. source: "./media/characters/axel-lycan/wolf-back.svg",
  9214. extra: 475 / 438,
  9215. bottom: 39.2 / 514
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Macro",
  9222. height: math.unit(1, "km"),
  9223. default: true
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(5 + 9 / 12, "feet"),
  9232. weight: math.unit(175, "lb"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/vanrel-hyena/front.svg",
  9236. extra: 1086 / 1010,
  9237. bottom: 0.04
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Normal",
  9244. height: math.unit(5 + 9 / 12, "feet"),
  9245. default: true
  9246. },
  9247. ]
  9248. ))
  9249. characterMakers.push(() => makeCharacter(
  9250. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9251. {
  9252. front: {
  9253. height: math.unit(6, "feet"),
  9254. weight: math.unit(103, "lb"),
  9255. name: "Front",
  9256. image: {
  9257. source: "./media/characters/abbott-absol/front.svg",
  9258. extra: 2010 / 1842
  9259. }
  9260. },
  9261. },
  9262. [
  9263. {
  9264. name: "Megamicro",
  9265. height: math.unit(0.1, "mm")
  9266. },
  9267. {
  9268. name: "Micro",
  9269. height: math.unit(1, "inch")
  9270. },
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(6, "feet"),
  9274. default: true
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(6, "feet"),
  9283. weight: math.unit(264, "lb"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/hector/front.svg",
  9287. extra: 2280 / 2130,
  9288. bottom: 0.07
  9289. }
  9290. },
  9291. },
  9292. [
  9293. {
  9294. name: "Normal",
  9295. height: math.unit(12.25, "foot"),
  9296. default: true
  9297. },
  9298. {
  9299. name: "Macro",
  9300. height: math.unit(160, "feet")
  9301. },
  9302. ]
  9303. ))
  9304. characterMakers.push(() => makeCharacter(
  9305. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9306. {
  9307. front: {
  9308. height: math.unit(6, "feet"),
  9309. weight: math.unit(150, "lb"),
  9310. name: "Front",
  9311. image: {
  9312. source: "./media/characters/sal/front.svg",
  9313. extra: 1846 / 1699,
  9314. bottom: 0.04
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Megamacro",
  9321. height: math.unit(10, "miles"),
  9322. default: true
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9328. {
  9329. front: {
  9330. height: math.unit(3, "meters"),
  9331. weight: math.unit(450, "kg"),
  9332. name: "front",
  9333. image: {
  9334. source: "./media/characters/ranger/front.svg",
  9335. extra: 2401 / 2243,
  9336. bottom: 0.05
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(3, "meters"),
  9344. default: true
  9345. },
  9346. ]
  9347. ))
  9348. characterMakers.push(() => makeCharacter(
  9349. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9350. {
  9351. front: {
  9352. height: math.unit(14, "feet"),
  9353. weight: math.unit(800, "kg"),
  9354. name: "Front",
  9355. image: {
  9356. source: "./media/characters/theresa/front.svg",
  9357. extra: 3575 / 3346,
  9358. bottom: 0.03
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(14, "feet"),
  9366. default: true
  9367. },
  9368. ]
  9369. ))
  9370. characterMakers.push(() => makeCharacter(
  9371. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9372. {
  9373. front: {
  9374. height: math.unit(6, "feet"),
  9375. weight: math.unit(3, "kg"),
  9376. name: "Front",
  9377. image: {
  9378. source: "./media/characters/ine/front.svg",
  9379. extra: 678 / 539,
  9380. bottom: 0.023
  9381. }
  9382. },
  9383. },
  9384. [
  9385. {
  9386. name: "Normal",
  9387. height: math.unit(2.265, "feet"),
  9388. default: true
  9389. },
  9390. ]
  9391. ))
  9392. characterMakers.push(() => makeCharacter(
  9393. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9394. {
  9395. front: {
  9396. height: math.unit(5, "feet"),
  9397. weight: math.unit(30, "kg"),
  9398. name: "Front",
  9399. image: {
  9400. source: "./media/characters/vial/front.svg",
  9401. extra: 1365 / 1277,
  9402. bottom: 0.04
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Normal",
  9409. height: math.unit(5, "feet"),
  9410. default: true
  9411. },
  9412. ]
  9413. ))
  9414. characterMakers.push(() => makeCharacter(
  9415. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9416. {
  9417. side: {
  9418. height: math.unit(3.4, "meters"),
  9419. weight: math.unit(1000, "lb"),
  9420. name: "Side",
  9421. image: {
  9422. source: "./media/characters/rovoska/side.svg",
  9423. extra: 4403 / 1515
  9424. }
  9425. },
  9426. },
  9427. [
  9428. {
  9429. name: "Normal",
  9430. height: math.unit(3.4, "meters"),
  9431. default: true
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9437. {
  9438. front: {
  9439. height: math.unit(8, "feet"),
  9440. weight: math.unit(315, "lb"),
  9441. name: "Front",
  9442. image: {
  9443. source: "./media/characters/gunner-rotthbauer/front.svg"
  9444. }
  9445. },
  9446. back: {
  9447. height: math.unit(8, "feet"),
  9448. weight: math.unit(315, "lb"),
  9449. name: "Back",
  9450. image: {
  9451. source: "./media/characters/gunner-rotthbauer/back.svg"
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Micro",
  9458. height: math.unit(3.5, "inches")
  9459. },
  9460. {
  9461. name: "Normal",
  9462. height: math.unit(8, "feet"),
  9463. default: true
  9464. },
  9465. {
  9466. name: "Macro",
  9467. height: math.unit(250, "feet")
  9468. },
  9469. {
  9470. name: "Megamacro",
  9471. height: math.unit(1, "AU")
  9472. },
  9473. ]
  9474. ))
  9475. characterMakers.push(() => makeCharacter(
  9476. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9477. {
  9478. front: {
  9479. height: math.unit(5 + 5 / 12, "feet"),
  9480. weight: math.unit(140, "lb"),
  9481. name: "Front",
  9482. image: {
  9483. source: "./media/characters/allatia/front.svg",
  9484. extra: 1227 / 1180,
  9485. bottom: 0.027
  9486. }
  9487. },
  9488. },
  9489. [
  9490. {
  9491. name: "Normal",
  9492. height: math.unit(5 + 5 / 12, "feet")
  9493. },
  9494. {
  9495. name: "Macro",
  9496. height: math.unit(250, "feet"),
  9497. default: true
  9498. },
  9499. {
  9500. name: "Megamacro",
  9501. height: math.unit(8, "miles")
  9502. }
  9503. ]
  9504. ))
  9505. characterMakers.push(() => makeCharacter(
  9506. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9507. {
  9508. front: {
  9509. height: math.unit(6, "feet"),
  9510. weight: math.unit(120, "lb"),
  9511. name: "Front",
  9512. image: {
  9513. source: "./media/characters/tene/front.svg",
  9514. extra: 1728 / 1578,
  9515. bottom: 0.022
  9516. }
  9517. },
  9518. stomping: {
  9519. height: math.unit(2.025, "meters"),
  9520. weight: math.unit(120, "lb"),
  9521. name: "Stomping",
  9522. image: {
  9523. source: "./media/characters/tene/stomping.svg",
  9524. extra: 938 / 873,
  9525. bottom: 0.01
  9526. }
  9527. },
  9528. sitting: {
  9529. height: math.unit(1, "meter"),
  9530. weight: math.unit(120, "lb"),
  9531. name: "Sitting",
  9532. image: {
  9533. source: "./media/characters/tene/sitting.svg",
  9534. extra: 437 / 415,
  9535. bottom: 0.1
  9536. }
  9537. },
  9538. feral: {
  9539. height: math.unit(3.9, "feet"),
  9540. weight: math.unit(250, "lb"),
  9541. name: "Feral",
  9542. image: {
  9543. source: "./media/characters/tene/feral.svg",
  9544. extra: 717 / 458,
  9545. bottom: 0.179
  9546. }
  9547. },
  9548. },
  9549. [
  9550. {
  9551. name: "Normal",
  9552. height: math.unit(6, "feet")
  9553. },
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(300, "feet"),
  9557. default: true
  9558. },
  9559. {
  9560. name: "Megamacro",
  9561. height: math.unit(5, "miles")
  9562. },
  9563. ]
  9564. ))
  9565. characterMakers.push(() => makeCharacter(
  9566. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9567. {
  9568. side: {
  9569. height: math.unit(6, "feet"),
  9570. name: "Side",
  9571. image: {
  9572. source: "./media/characters/evander/side.svg",
  9573. extra: 877 / 477
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Normal",
  9580. height: math.unit(0.83, "meters"),
  9581. default: true
  9582. },
  9583. ]
  9584. ))
  9585. characterMakers.push(() => makeCharacter(
  9586. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9587. {
  9588. front: {
  9589. height: math.unit(12, "feet"),
  9590. weight: math.unit(1000, "lb"),
  9591. name: "Front",
  9592. image: {
  9593. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9594. extra: 1762 / 1611
  9595. }
  9596. },
  9597. back: {
  9598. height: math.unit(12, "feet"),
  9599. weight: math.unit(1000, "lb"),
  9600. name: "Back",
  9601. image: {
  9602. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9603. extra: 1762 / 1611
  9604. }
  9605. },
  9606. },
  9607. [
  9608. {
  9609. name: "Normal",
  9610. height: math.unit(12, "feet"),
  9611. default: true
  9612. },
  9613. {
  9614. name: "Kaiju",
  9615. height: math.unit(150, "feet")
  9616. },
  9617. ]
  9618. ))
  9619. characterMakers.push(() => makeCharacter(
  9620. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9621. {
  9622. front: {
  9623. height: math.unit(6, "feet"),
  9624. weight: math.unit(150, "lb"),
  9625. name: "Front",
  9626. image: {
  9627. source: "./media/characters/zero-alurus/front.svg"
  9628. }
  9629. },
  9630. back: {
  9631. height: math.unit(6, "feet"),
  9632. weight: math.unit(150, "lb"),
  9633. name: "Back",
  9634. image: {
  9635. source: "./media/characters/zero-alurus/back.svg"
  9636. }
  9637. },
  9638. },
  9639. [
  9640. {
  9641. name: "Normal",
  9642. height: math.unit(5 + 10 / 12, "feet")
  9643. },
  9644. {
  9645. name: "Macro",
  9646. height: math.unit(60, "feet"),
  9647. default: true
  9648. },
  9649. {
  9650. name: "Macro+",
  9651. height: math.unit(450, "feet")
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(6, "feet"),
  9660. weight: math.unit(200, "lb"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/mega-shi/front.svg",
  9664. extra: 1279 / 1250,
  9665. bottom: 0.02
  9666. }
  9667. },
  9668. back: {
  9669. height: math.unit(6, "feet"),
  9670. weight: math.unit(200, "lb"),
  9671. name: "Back",
  9672. image: {
  9673. source: "./media/characters/mega-shi/back.svg",
  9674. extra: 1279 / 1250,
  9675. bottom: 0.02
  9676. }
  9677. },
  9678. },
  9679. [
  9680. {
  9681. name: "Micro",
  9682. height: math.unit(16 + 6 / 12, "feet")
  9683. },
  9684. {
  9685. name: "Third Dimension",
  9686. height: math.unit(40, "meters")
  9687. },
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(660, "feet"),
  9691. default: true
  9692. },
  9693. {
  9694. name: "Megamacro",
  9695. height: math.unit(10, "miles")
  9696. },
  9697. {
  9698. name: "Planetary Launch",
  9699. height: math.unit(500, "miles")
  9700. },
  9701. {
  9702. name: "Interstellar",
  9703. height: math.unit(1e9, "miles")
  9704. },
  9705. {
  9706. name: "Leaving the Universe",
  9707. height: math.unit(1, "gigaparsec")
  9708. },
  9709. {
  9710. name: "Travelling Universes",
  9711. height: math.unit(30e15, "parsecs")
  9712. },
  9713. ]
  9714. ))
  9715. characterMakers.push(() => makeCharacter(
  9716. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9717. {
  9718. front: {
  9719. height: math.unit(6, "feet"),
  9720. weight: math.unit(150, "lb"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/odyssey/front.svg",
  9724. extra: 1782 / 1582,
  9725. bottom: 0.01
  9726. }
  9727. },
  9728. side: {
  9729. height: math.unit(5.7, "feet"),
  9730. weight: math.unit(140, "lb"),
  9731. name: "Side",
  9732. image: {
  9733. source: "./media/characters/odyssey/side.svg",
  9734. extra: 6462 / 5700
  9735. }
  9736. },
  9737. },
  9738. [
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(5 + 4 / 12, "feet")
  9742. },
  9743. {
  9744. name: "Macro",
  9745. height: math.unit(1, "km")
  9746. },
  9747. {
  9748. name: "Megamacro",
  9749. height: math.unit(3000, "km")
  9750. },
  9751. {
  9752. name: "Gigamacro",
  9753. height: math.unit(1, "AU"),
  9754. default: true
  9755. },
  9756. {
  9757. name: "Omniversal",
  9758. height: math.unit(100e14, "lightyears")
  9759. },
  9760. ]
  9761. ))
  9762. characterMakers.push(() => makeCharacter(
  9763. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9764. {
  9765. front: {
  9766. height: math.unit(6, "feet"),
  9767. weight: math.unit(300, "lb"),
  9768. name: "Front",
  9769. image: {
  9770. source: "./media/characters/mekuto/front.svg",
  9771. extra: 921 / 832,
  9772. bottom: 0.03
  9773. }
  9774. },
  9775. hand: {
  9776. height: math.unit(6 / 10.24, "feet"),
  9777. name: "Hand",
  9778. image: {
  9779. source: "./media/characters/mekuto/hand.svg"
  9780. }
  9781. },
  9782. foot: {
  9783. height: math.unit(6 / 5.05, "feet"),
  9784. name: "Foot",
  9785. image: {
  9786. source: "./media/characters/mekuto/foot.svg"
  9787. }
  9788. },
  9789. },
  9790. [
  9791. {
  9792. name: "Minimicro",
  9793. height: math.unit(0.2, "inches")
  9794. },
  9795. {
  9796. name: "Micro",
  9797. height: math.unit(1.5, "inches")
  9798. },
  9799. {
  9800. name: "Normal",
  9801. height: math.unit(5 + 11 / 12, "feet"),
  9802. default: true
  9803. },
  9804. {
  9805. name: "Minimacro",
  9806. height: math.unit(17 + 9 / 12, "feet")
  9807. },
  9808. {
  9809. name: "Macro",
  9810. height: math.unit(177.5, "feet")
  9811. },
  9812. {
  9813. name: "Megamacro",
  9814. height: math.unit(152, "miles")
  9815. },
  9816. ]
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9820. {
  9821. front: {
  9822. height: math.unit(6.5, "inches"),
  9823. weight: math.unit(13, "oz"),
  9824. name: "Front",
  9825. image: {
  9826. source: "./media/characters/dafydd-tomos/front.svg",
  9827. extra: 2990 / 2603,
  9828. bottom: 0.03
  9829. }
  9830. },
  9831. },
  9832. [
  9833. {
  9834. name: "Micro",
  9835. height: math.unit(6.5, "inches"),
  9836. default: true
  9837. },
  9838. ]
  9839. ))
  9840. characterMakers.push(() => makeCharacter(
  9841. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9842. {
  9843. front: {
  9844. height: math.unit(6, "feet"),
  9845. weight: math.unit(150, "lb"),
  9846. name: "Front",
  9847. image: {
  9848. source: "./media/characters/splinter/front.svg",
  9849. extra: 2990 / 2882,
  9850. bottom: 0.04
  9851. }
  9852. },
  9853. back: {
  9854. height: math.unit(6, "feet"),
  9855. weight: math.unit(150, "lb"),
  9856. name: "Back",
  9857. image: {
  9858. source: "./media/characters/splinter/back.svg",
  9859. extra: 2990 / 2882,
  9860. bottom: 0.04
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Normal",
  9867. height: math.unit(6, "feet")
  9868. },
  9869. {
  9870. name: "Macro",
  9871. height: math.unit(230, "meters"),
  9872. default: true
  9873. },
  9874. ]
  9875. ))
  9876. characterMakers.push(() => makeCharacter(
  9877. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9878. {
  9879. front: {
  9880. height: math.unit(4 + 10 / 12, "feet"),
  9881. weight: math.unit(480, "lb"),
  9882. name: "Front",
  9883. image: {
  9884. source: "./media/characters/snow-gabumon/front.svg",
  9885. extra: 1140 / 963,
  9886. bottom: 0.058
  9887. }
  9888. },
  9889. back: {
  9890. height: math.unit(4 + 10 / 12, "feet"),
  9891. weight: math.unit(480, "lb"),
  9892. name: "Back",
  9893. image: {
  9894. source: "./media/characters/snow-gabumon/back.svg",
  9895. extra: 1115 / 962,
  9896. bottom: 0.041
  9897. }
  9898. },
  9899. frontUndresed: {
  9900. height: math.unit(4 + 10 / 12, "feet"),
  9901. weight: math.unit(480, "lb"),
  9902. name: "Front (Undressed)",
  9903. image: {
  9904. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9905. extra: 1061 / 960,
  9906. bottom: 0.045
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Micro",
  9913. height: math.unit(1, "inch")
  9914. },
  9915. {
  9916. name: "Normal",
  9917. height: math.unit(4 + 10 / 12, "feet"),
  9918. default: true
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(200, "feet")
  9923. },
  9924. {
  9925. name: "Megamacro",
  9926. height: math.unit(120, "miles")
  9927. },
  9928. {
  9929. name: "Gigamacro",
  9930. height: math.unit(9800, "miles")
  9931. },
  9932. ]
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(1.7, "meters"),
  9939. weight: math.unit(140, "lb"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/moody/front.svg",
  9943. extra: 3226 / 3007,
  9944. bottom: 0.087
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Micro",
  9951. height: math.unit(1, "mm")
  9952. },
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(1.7, "meters"),
  9956. default: true
  9957. },
  9958. {
  9959. name: "Macro",
  9960. height: math.unit(80, "meters")
  9961. },
  9962. {
  9963. name: "Macro+",
  9964. height: math.unit(500, "meters")
  9965. },
  9966. ]
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9970. {
  9971. front: {
  9972. height: math.unit(6, "feet"),
  9973. weight: math.unit(150, "lb"),
  9974. name: "Front",
  9975. image: {
  9976. source: "./media/characters/zyas/front.svg",
  9977. extra: 1180 / 1120,
  9978. bottom: 0.045
  9979. }
  9980. },
  9981. },
  9982. [
  9983. {
  9984. name: "Normal",
  9985. height: math.unit(10, "feet"),
  9986. default: true
  9987. },
  9988. {
  9989. name: "Macro",
  9990. height: math.unit(500, "feet")
  9991. },
  9992. {
  9993. name: "Megamacro",
  9994. height: math.unit(5, "miles")
  9995. },
  9996. {
  9997. name: "Teramacro",
  9998. height: math.unit(150000, "miles")
  9999. },
  10000. ]
  10001. ))
  10002. characterMakers.push(() => makeCharacter(
  10003. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10004. {
  10005. front: {
  10006. height: math.unit(6, "feet"),
  10007. weight: math.unit(150, "lb"),
  10008. name: "Front",
  10009. image: {
  10010. source: "./media/characters/cuon/front.svg",
  10011. extra: 1390 / 1320,
  10012. bottom: 0.008
  10013. }
  10014. },
  10015. },
  10016. [
  10017. {
  10018. name: "Micro",
  10019. height: math.unit(3, "inches")
  10020. },
  10021. {
  10022. name: "Normal",
  10023. height: math.unit(18 + 9 / 12, "feet"),
  10024. default: true
  10025. },
  10026. {
  10027. name: "Macro",
  10028. height: math.unit(360, "feet")
  10029. },
  10030. {
  10031. name: "Megamacro",
  10032. height: math.unit(360, "miles")
  10033. },
  10034. ]
  10035. ))
  10036. characterMakers.push(() => makeCharacter(
  10037. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10038. {
  10039. front: {
  10040. height: math.unit(2.4, "meters"),
  10041. weight: math.unit(70, "kg"),
  10042. name: "Front",
  10043. image: {
  10044. source: "./media/characters/nyanuxk/front.svg",
  10045. extra: 1172 / 1084,
  10046. bottom: 0.065
  10047. }
  10048. },
  10049. side: {
  10050. height: math.unit(2.4, "meters"),
  10051. weight: math.unit(70, "kg"),
  10052. name: "Side",
  10053. image: {
  10054. source: "./media/characters/nyanuxk/side.svg",
  10055. extra: 1190 / 1132,
  10056. bottom: 0.007
  10057. }
  10058. },
  10059. back: {
  10060. height: math.unit(2.4, "meters"),
  10061. weight: math.unit(70, "kg"),
  10062. name: "Back",
  10063. image: {
  10064. source: "./media/characters/nyanuxk/back.svg",
  10065. extra: 1200 / 1141,
  10066. bottom: 0.015
  10067. }
  10068. },
  10069. foot: {
  10070. height: math.unit(0.52, "meters"),
  10071. name: "Foot",
  10072. image: {
  10073. source: "./media/characters/nyanuxk/foot.svg"
  10074. }
  10075. },
  10076. },
  10077. [
  10078. {
  10079. name: "Micro",
  10080. height: math.unit(2, "cm")
  10081. },
  10082. {
  10083. name: "Normal",
  10084. height: math.unit(2.4, "meters"),
  10085. default: true
  10086. },
  10087. {
  10088. name: "Smaller Macro",
  10089. height: math.unit(120, "meters")
  10090. },
  10091. {
  10092. name: "Bigger Macro",
  10093. height: math.unit(1.2, "km")
  10094. },
  10095. {
  10096. name: "Megamacro",
  10097. height: math.unit(15, "kilometers")
  10098. },
  10099. {
  10100. name: "Gigamacro",
  10101. height: math.unit(2000, "km")
  10102. },
  10103. {
  10104. name: "Teramacro",
  10105. height: math.unit(500000, "km")
  10106. },
  10107. ]
  10108. ))
  10109. characterMakers.push(() => makeCharacter(
  10110. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10111. {
  10112. side: {
  10113. height: math.unit(6, "feet"),
  10114. name: "Side",
  10115. image: {
  10116. source: "./media/characters/ailbhe/side.svg",
  10117. extra: 757 / 464,
  10118. bottom: 0.041
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Normal",
  10125. height: math.unit(1.07, "meters"),
  10126. default: true
  10127. },
  10128. ]
  10129. ))
  10130. characterMakers.push(() => makeCharacter(
  10131. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10132. {
  10133. front: {
  10134. height: math.unit(6, "feet"),
  10135. weight: math.unit(120, "kg"),
  10136. name: "Front",
  10137. image: {
  10138. source: "./media/characters/zevulfius/front.svg",
  10139. extra: 965 / 903
  10140. }
  10141. },
  10142. side: {
  10143. height: math.unit(6, "feet"),
  10144. weight: math.unit(120, "kg"),
  10145. name: "Side",
  10146. image: {
  10147. source: "./media/characters/zevulfius/side.svg",
  10148. extra: 939 / 900
  10149. }
  10150. },
  10151. back: {
  10152. height: math.unit(6, "feet"),
  10153. weight: math.unit(120, "kg"),
  10154. name: "Back",
  10155. image: {
  10156. source: "./media/characters/zevulfius/back.svg",
  10157. extra: 918 / 854,
  10158. bottom: 0.005
  10159. }
  10160. },
  10161. foot: {
  10162. height: math.unit(6 / 3.72, "feet"),
  10163. name: "Foot",
  10164. image: {
  10165. source: "./media/characters/zevulfius/foot.svg"
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Macro",
  10172. height: math.unit(750, "meters")
  10173. },
  10174. {
  10175. name: "Megamacro",
  10176. height: math.unit(20, "km"),
  10177. default: true
  10178. },
  10179. {
  10180. name: "Gigamacro",
  10181. height: math.unit(2000, "km")
  10182. },
  10183. {
  10184. name: "Teramacro",
  10185. height: math.unit(250000, "km")
  10186. },
  10187. ]
  10188. ))
  10189. characterMakers.push(() => makeCharacter(
  10190. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10191. {
  10192. front: {
  10193. height: math.unit(100, "feet"),
  10194. weight: math.unit(350, "kg"),
  10195. name: "Front",
  10196. image: {
  10197. source: "./media/characters/rikes/front.svg",
  10198. extra: 1565 / 1483,
  10199. bottom: 0.017
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Macro",
  10206. height: math.unit(100, "feet"),
  10207. default: true
  10208. },
  10209. ]
  10210. ))
  10211. characterMakers.push(() => makeCharacter(
  10212. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10213. {
  10214. anthro: {
  10215. height: math.unit(8, "feet"),
  10216. weight: math.unit(120, "kg"),
  10217. name: "Anthro",
  10218. image: {
  10219. source: "./media/characters/adam-silver-mane/anthro.svg",
  10220. extra: 5743 / 5339,
  10221. bottom: 0.07
  10222. }
  10223. },
  10224. taur: {
  10225. height: math.unit(16, "feet"),
  10226. weight: math.unit(1500, "kg"),
  10227. name: "Taur",
  10228. image: {
  10229. source: "./media/characters/adam-silver-mane/taur.svg",
  10230. extra: 1713 / 1571,
  10231. bottom: 0.01
  10232. }
  10233. },
  10234. },
  10235. [
  10236. {
  10237. name: "Normal",
  10238. height: math.unit(8, "feet")
  10239. },
  10240. {
  10241. name: "Minimacro",
  10242. height: math.unit(80, "feet")
  10243. },
  10244. {
  10245. name: "Macro",
  10246. height: math.unit(800, "feet"),
  10247. default: true
  10248. },
  10249. {
  10250. name: "Megamacro",
  10251. height: math.unit(8000, "feet")
  10252. },
  10253. {
  10254. name: "Gigamacro",
  10255. height: math.unit(800, "miles")
  10256. },
  10257. {
  10258. name: "Teramacro",
  10259. height: math.unit(80000, "miles")
  10260. },
  10261. {
  10262. name: "Celestial",
  10263. height: math.unit(8e6, "miles")
  10264. },
  10265. {
  10266. name: "Star Dragon",
  10267. height: math.unit(800000, "parsecs")
  10268. },
  10269. {
  10270. name: "Godly",
  10271. height: math.unit(800, "teraparsecs")
  10272. },
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10277. {
  10278. front: {
  10279. height: math.unit(6, "feet"),
  10280. weight: math.unit(150, "lb"),
  10281. name: "Front",
  10282. image: {
  10283. source: "./media/characters/ky'owin/front.svg",
  10284. extra: 3888 / 3068,
  10285. bottom: 0.015
  10286. }
  10287. },
  10288. },
  10289. [
  10290. {
  10291. name: "Normal",
  10292. height: math.unit(6 + 8 / 12, "feet")
  10293. },
  10294. {
  10295. name: "Large",
  10296. height: math.unit(68, "feet")
  10297. },
  10298. {
  10299. name: "Macro",
  10300. height: math.unit(132, "feet")
  10301. },
  10302. {
  10303. name: "Macro+",
  10304. height: math.unit(340, "feet")
  10305. },
  10306. {
  10307. name: "Macro++",
  10308. height: math.unit(680, "feet"),
  10309. default: true
  10310. },
  10311. {
  10312. name: "Megamacro",
  10313. height: math.unit(1, "mile")
  10314. },
  10315. {
  10316. name: "Megamacro+",
  10317. height: math.unit(10, "miles")
  10318. },
  10319. ]
  10320. ))
  10321. characterMakers.push(() => makeCharacter(
  10322. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10323. {
  10324. front: {
  10325. height: math.unit(4, "feet"),
  10326. weight: math.unit(50, "lb"),
  10327. name: "Front",
  10328. image: {
  10329. source: "./media/characters/mal/front.svg",
  10330. extra: 785 / 724,
  10331. bottom: 0.07
  10332. }
  10333. },
  10334. },
  10335. [
  10336. {
  10337. name: "Micro",
  10338. height: math.unit(4, "inches")
  10339. },
  10340. {
  10341. name: "Normal",
  10342. height: math.unit(4, "feet"),
  10343. default: true
  10344. },
  10345. {
  10346. name: "Macro",
  10347. height: math.unit(200, "feet")
  10348. },
  10349. ]
  10350. ))
  10351. characterMakers.push(() => makeCharacter(
  10352. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10353. {
  10354. front: {
  10355. height: math.unit(6, "feet"),
  10356. weight: math.unit(150, "lb"),
  10357. name: "Front",
  10358. image: {
  10359. source: "./media/characters/jordan-deware/front.svg",
  10360. extra: 1191 / 1012
  10361. }
  10362. },
  10363. },
  10364. [
  10365. {
  10366. name: "Nano",
  10367. height: math.unit(0.01, "mm")
  10368. },
  10369. {
  10370. name: "Minimicro",
  10371. height: math.unit(1, "mm")
  10372. },
  10373. {
  10374. name: "Micro",
  10375. height: math.unit(0.5, "inches")
  10376. },
  10377. {
  10378. name: "Normal",
  10379. height: math.unit(4, "feet"),
  10380. default: true
  10381. },
  10382. {
  10383. name: "Minimacro",
  10384. height: math.unit(40, "meters")
  10385. },
  10386. {
  10387. name: "Small Macro",
  10388. height: math.unit(400, "meters")
  10389. },
  10390. {
  10391. name: "Macro",
  10392. height: math.unit(4, "miles")
  10393. },
  10394. {
  10395. name: "Megamacro",
  10396. height: math.unit(40, "miles")
  10397. },
  10398. {
  10399. name: "Megamacro+",
  10400. height: math.unit(400, "miles")
  10401. },
  10402. {
  10403. name: "Gigamacro",
  10404. height: math.unit(400000, "miles")
  10405. },
  10406. ]
  10407. ))
  10408. characterMakers.push(() => makeCharacter(
  10409. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10410. {
  10411. side: {
  10412. height: math.unit(6, "feet"),
  10413. weight: math.unit(150, "lb"),
  10414. name: "Side",
  10415. image: {
  10416. source: "./media/characters/kimiko/side.svg",
  10417. extra: 600 / 358
  10418. }
  10419. },
  10420. },
  10421. [
  10422. {
  10423. name: "Normal",
  10424. height: math.unit(15, "feet"),
  10425. default: true
  10426. },
  10427. {
  10428. name: "Macro",
  10429. height: math.unit(220, "feet")
  10430. },
  10431. {
  10432. name: "Macro+",
  10433. height: math.unit(1450, "feet")
  10434. },
  10435. {
  10436. name: "Megamacro",
  10437. height: math.unit(11500, "feet")
  10438. },
  10439. {
  10440. name: "Gigamacro",
  10441. height: math.unit(9500, "miles")
  10442. },
  10443. {
  10444. name: "Teramacro",
  10445. height: math.unit(2208005005, "miles")
  10446. },
  10447. {
  10448. name: "Examacro",
  10449. height: math.unit(2750, "parsecs")
  10450. },
  10451. {
  10452. name: "Zettamacro",
  10453. height: math.unit(101500, "parsecs")
  10454. },
  10455. ]
  10456. ))
  10457. characterMakers.push(() => makeCharacter(
  10458. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10459. {
  10460. front: {
  10461. height: math.unit(6, "feet"),
  10462. weight: math.unit(70, "kg"),
  10463. name: "Front",
  10464. image: {
  10465. source: "./media/characters/andrew-sleepy/front.svg"
  10466. }
  10467. },
  10468. side: {
  10469. height: math.unit(6, "feet"),
  10470. weight: math.unit(70, "kg"),
  10471. name: "Side",
  10472. image: {
  10473. source: "./media/characters/andrew-sleepy/side.svg"
  10474. }
  10475. },
  10476. },
  10477. [
  10478. {
  10479. name: "Micro",
  10480. height: math.unit(1, "mm"),
  10481. default: true
  10482. },
  10483. ]
  10484. ))
  10485. characterMakers.push(() => makeCharacter(
  10486. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10487. {
  10488. front: {
  10489. height: math.unit(6, "feet"),
  10490. weight: math.unit(150, "lb"),
  10491. name: "Front",
  10492. image: {
  10493. source: "./media/characters/judio/front.svg",
  10494. extra: 1258 / 1110
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Normal",
  10501. height: math.unit(5 + 6 / 12, "feet")
  10502. },
  10503. {
  10504. name: "Macro",
  10505. height: math.unit(1000, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Megamacro",
  10510. height: math.unit(10, "miles")
  10511. },
  10512. ]
  10513. ))
  10514. characterMakers.push(() => makeCharacter(
  10515. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10516. {
  10517. front: {
  10518. height: math.unit(6, "feet"),
  10519. weight: math.unit(68, "kg"),
  10520. name: "Front",
  10521. image: {
  10522. source: "./media/characters/nomaxice/front.svg",
  10523. extra: 1498 / 1073,
  10524. bottom: 0.075
  10525. }
  10526. },
  10527. foot: {
  10528. height: math.unit(1.1, "feet"),
  10529. name: "Foot",
  10530. image: {
  10531. source: "./media/characters/nomaxice/foot.svg"
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Micro",
  10538. height: math.unit(8, "cm")
  10539. },
  10540. {
  10541. name: "Norm",
  10542. height: math.unit(1.82, "m")
  10543. },
  10544. {
  10545. name: "Norm+",
  10546. height: math.unit(8.8, "feet")
  10547. },
  10548. {
  10549. name: "Big",
  10550. height: math.unit(8, "meters"),
  10551. default: true
  10552. },
  10553. {
  10554. name: "Macro",
  10555. height: math.unit(18, "meters")
  10556. },
  10557. {
  10558. name: "Macro+",
  10559. height: math.unit(88, "meters")
  10560. },
  10561. ]
  10562. ))
  10563. characterMakers.push(() => makeCharacter(
  10564. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10565. {
  10566. front: {
  10567. height: math.unit(12, "feet"),
  10568. weight: math.unit(1.5, "tons"),
  10569. name: "Front",
  10570. image: {
  10571. source: "./media/characters/dydros/front.svg",
  10572. extra: 863 / 800,
  10573. bottom: 0.015
  10574. }
  10575. },
  10576. back: {
  10577. height: math.unit(12, "feet"),
  10578. weight: math.unit(1.5, "tons"),
  10579. name: "Back",
  10580. image: {
  10581. source: "./media/characters/dydros/back.svg",
  10582. extra: 900 / 843,
  10583. bottom: 0.005
  10584. }
  10585. },
  10586. },
  10587. [
  10588. {
  10589. name: "Normal",
  10590. height: math.unit(12, "feet"),
  10591. default: true
  10592. },
  10593. ]
  10594. ))
  10595. characterMakers.push(() => makeCharacter(
  10596. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10597. {
  10598. front: {
  10599. height: math.unit(6, "feet"),
  10600. weight: math.unit(100, "kg"),
  10601. name: "Front",
  10602. image: {
  10603. source: "./media/characters/riggi/front.svg",
  10604. extra: 5787 / 5303
  10605. }
  10606. },
  10607. hyper: {
  10608. height: math.unit(6 * 5 / 3, "feet"),
  10609. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10610. name: "Hyper",
  10611. image: {
  10612. source: "./media/characters/riggi/hyper.svg",
  10613. extra: 3595 / 3485
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Small Macro",
  10620. height: math.unit(50, "feet")
  10621. },
  10622. {
  10623. name: "Default",
  10624. height: math.unit(200, "feet"),
  10625. default: true
  10626. },
  10627. {
  10628. name: "Loom",
  10629. height: math.unit(10000, "feet")
  10630. },
  10631. {
  10632. name: "Cruising Altitude",
  10633. height: math.unit(30000, "feet")
  10634. },
  10635. {
  10636. name: "Megamacro",
  10637. height: math.unit(100, "miles")
  10638. },
  10639. {
  10640. name: "Continent Sized",
  10641. height: math.unit(2800, "miles")
  10642. },
  10643. {
  10644. name: "Earth Sized",
  10645. height: math.unit(8000, "miles")
  10646. },
  10647. ]
  10648. ))
  10649. characterMakers.push(() => makeCharacter(
  10650. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10651. {
  10652. front: {
  10653. height: math.unit(6, "feet"),
  10654. weight: math.unit(250, "lb"),
  10655. name: "Front",
  10656. image: {
  10657. source: "./media/characters/alexi/front.svg",
  10658. extra: 3483 / 3291,
  10659. bottom: 0.04
  10660. }
  10661. },
  10662. back: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(250, "lb"),
  10665. name: "Back",
  10666. image: {
  10667. source: "./media/characters/alexi/back.svg",
  10668. extra: 3533 / 3356,
  10669. bottom: 0.021
  10670. }
  10671. },
  10672. frontTransforming: {
  10673. height: math.unit(8.58, "feet"),
  10674. weight: math.unit(1300, "lb"),
  10675. name: "Transforming",
  10676. image: {
  10677. source: "./media/characters/alexi/front-transforming.svg",
  10678. extra: 437 / 409,
  10679. bottom: 19 / 458.66
  10680. }
  10681. },
  10682. frontTransformed: {
  10683. height: math.unit(12.5, "feet"),
  10684. weight: math.unit(4000, "lb"),
  10685. name: "Transformed",
  10686. image: {
  10687. source: "./media/characters/alexi/front-transformed.svg",
  10688. extra: 639 / 614,
  10689. bottom: 30.55 / 671
  10690. }
  10691. },
  10692. },
  10693. [
  10694. {
  10695. name: "Normal",
  10696. height: math.unit(14, "feet"),
  10697. default: true
  10698. },
  10699. {
  10700. name: "Minimacro",
  10701. height: math.unit(30, "meters")
  10702. },
  10703. {
  10704. name: "Macro",
  10705. height: math.unit(500, "meters")
  10706. },
  10707. {
  10708. name: "Megamacro",
  10709. height: math.unit(9000, "km")
  10710. },
  10711. {
  10712. name: "Teramacro",
  10713. height: math.unit(384000, "km")
  10714. },
  10715. ]
  10716. ))
  10717. characterMakers.push(() => makeCharacter(
  10718. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10719. {
  10720. front: {
  10721. height: math.unit(6, "feet"),
  10722. weight: math.unit(150, "lb"),
  10723. name: "Front",
  10724. image: {
  10725. source: "./media/characters/kayroo/front.svg",
  10726. extra: 1153 / 1038,
  10727. bottom: 0.06
  10728. }
  10729. },
  10730. foot: {
  10731. height: math.unit(6, "feet"),
  10732. weight: math.unit(150, "lb"),
  10733. name: "Foot",
  10734. image: {
  10735. source: "./media/characters/kayroo/foot.svg"
  10736. }
  10737. },
  10738. },
  10739. [
  10740. {
  10741. name: "Normal",
  10742. height: math.unit(8, "feet"),
  10743. default: true
  10744. },
  10745. {
  10746. name: "Minimacro",
  10747. height: math.unit(250, "feet")
  10748. },
  10749. {
  10750. name: "Macro",
  10751. height: math.unit(2800, "feet")
  10752. },
  10753. {
  10754. name: "Megamacro",
  10755. height: math.unit(5200, "feet")
  10756. },
  10757. {
  10758. name: "Gigamacro",
  10759. height: math.unit(27000, "feet")
  10760. },
  10761. {
  10762. name: "Omega",
  10763. height: math.unit(45000, "feet")
  10764. },
  10765. ]
  10766. ))
  10767. characterMakers.push(() => makeCharacter(
  10768. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10769. {
  10770. front: {
  10771. height: math.unit(18, "feet"),
  10772. weight: math.unit(5800, "lb"),
  10773. name: "Front",
  10774. image: {
  10775. source: "./media/characters/rhys/front.svg",
  10776. extra: 3386 / 3090,
  10777. bottom: 0.07
  10778. }
  10779. },
  10780. },
  10781. [
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(18, "feet"),
  10785. default: true
  10786. },
  10787. {
  10788. name: "Working Size",
  10789. height: math.unit(200, "feet")
  10790. },
  10791. {
  10792. name: "Demolition Size",
  10793. height: math.unit(2000, "feet")
  10794. },
  10795. {
  10796. name: "Maximum Licensed Size",
  10797. height: math.unit(5, "miles")
  10798. },
  10799. {
  10800. name: "Maximum Observed Size",
  10801. height: math.unit(10, "yottameters")
  10802. },
  10803. ]
  10804. ))
  10805. characterMakers.push(() => makeCharacter(
  10806. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10807. {
  10808. front: {
  10809. height: math.unit(6, "feet"),
  10810. weight: math.unit(250, "lb"),
  10811. name: "Front",
  10812. image: {
  10813. source: "./media/characters/toto/front.svg",
  10814. extra: 527 / 479,
  10815. bottom: 0.05
  10816. }
  10817. },
  10818. },
  10819. [
  10820. {
  10821. name: "Micro",
  10822. height: math.unit(3, "feet")
  10823. },
  10824. {
  10825. name: "Normal",
  10826. height: math.unit(10, "feet")
  10827. },
  10828. {
  10829. name: "Macro",
  10830. height: math.unit(150, "feet"),
  10831. default: true
  10832. },
  10833. {
  10834. name: "Megamacro",
  10835. height: math.unit(1200, "feet")
  10836. },
  10837. ]
  10838. ))
  10839. characterMakers.push(() => makeCharacter(
  10840. { name: "King", species: ["lion"], tags: ["anthro"] },
  10841. {
  10842. back: {
  10843. height: math.unit(6, "feet"),
  10844. weight: math.unit(150, "lb"),
  10845. name: "Back",
  10846. image: {
  10847. source: "./media/characters/king/back.svg"
  10848. }
  10849. },
  10850. },
  10851. [
  10852. {
  10853. name: "Micro",
  10854. height: math.unit(2, "inches")
  10855. },
  10856. {
  10857. name: "Normal",
  10858. height: math.unit(8, "feet")
  10859. },
  10860. {
  10861. name: "Macro",
  10862. height: math.unit(200, "feet"),
  10863. default: true
  10864. },
  10865. {
  10866. name: "Megamacro",
  10867. height: math.unit(50, "miles")
  10868. },
  10869. ]
  10870. ))
  10871. characterMakers.push(() => makeCharacter(
  10872. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10873. {
  10874. anthro: {
  10875. height: math.unit(6 + 5 / 12, "feet"),
  10876. weight: math.unit(280, "lb"),
  10877. name: "Anthro",
  10878. image: {
  10879. source: "./media/characters/cordite/anthro.svg",
  10880. extra: 1986 / 1905,
  10881. bottom: 0.025
  10882. }
  10883. },
  10884. feral: {
  10885. height: math.unit(2, "feet"),
  10886. weight: math.unit(90, "lb"),
  10887. name: "Feral",
  10888. image: {
  10889. source: "./media/characters/cordite/feral.svg",
  10890. extra: 1260 / 755,
  10891. bottom: 0.05
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Normal",
  10898. height: math.unit(6 + 5 / 12, "feet"),
  10899. default: true
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(6, "feet"),
  10908. weight: math.unit(150, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/pianostrong/front.svg",
  10912. extra: 6577 / 6254,
  10913. bottom: 0.02
  10914. }
  10915. },
  10916. side: {
  10917. height: math.unit(6, "feet"),
  10918. weight: math.unit(150, "lb"),
  10919. name: "Side",
  10920. image: {
  10921. source: "./media/characters/pianostrong/side.svg",
  10922. extra: 6106 / 5730
  10923. }
  10924. },
  10925. back: {
  10926. height: math.unit(6, "feet"),
  10927. weight: math.unit(150, "lb"),
  10928. name: "Back",
  10929. image: {
  10930. source: "./media/characters/pianostrong/back.svg",
  10931. extra: 6085 / 5733,
  10932. bottom: 0.01
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Macro",
  10939. height: math.unit(100, "feet")
  10940. },
  10941. {
  10942. name: "Macro+",
  10943. height: math.unit(300, "feet"),
  10944. default: true
  10945. },
  10946. {
  10947. name: "Macro++",
  10948. height: math.unit(1000, "feet")
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10954. {
  10955. front: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(150, "lb"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/kona/front.svg",
  10961. extra: 2960 / 2629,
  10962. bottom: 0.005
  10963. }
  10964. },
  10965. },
  10966. [
  10967. {
  10968. name: "Normal",
  10969. height: math.unit(11 + 8 / 12, "feet")
  10970. },
  10971. {
  10972. name: "Macro",
  10973. height: math.unit(850, "feet"),
  10974. default: true
  10975. },
  10976. {
  10977. name: "Macro+",
  10978. height: math.unit(1.5, "km"),
  10979. default: true
  10980. },
  10981. {
  10982. name: "Megamacro",
  10983. height: math.unit(80, "miles")
  10984. },
  10985. {
  10986. name: "Gigamacro",
  10987. height: math.unit(3500, "miles")
  10988. },
  10989. ]
  10990. ))
  10991. characterMakers.push(() => makeCharacter(
  10992. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10993. {
  10994. side: {
  10995. height: math.unit(1.9, "meters"),
  10996. weight: math.unit(326, "kg"),
  10997. name: "Side",
  10998. image: {
  10999. source: "./media/characters/levi/side.svg",
  11000. extra: 1704 / 1334,
  11001. bottom: 0.02
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(1.9, "meters"),
  11009. default: true
  11010. },
  11011. {
  11012. name: "Macro",
  11013. height: math.unit(20, "meters")
  11014. },
  11015. {
  11016. name: "Macro+",
  11017. height: math.unit(200, "meters")
  11018. },
  11019. {
  11020. name: "Megamacro",
  11021. height: math.unit(2, "km")
  11022. },
  11023. {
  11024. name: "Megamacro+",
  11025. height: math.unit(20, "km")
  11026. },
  11027. {
  11028. name: "Gigamacro",
  11029. height: math.unit(2500, "km")
  11030. },
  11031. {
  11032. name: "Gigamacro+",
  11033. height: math.unit(120000, "km")
  11034. },
  11035. {
  11036. name: "Teramacro",
  11037. height: math.unit(7.77e6, "km")
  11038. },
  11039. ]
  11040. ))
  11041. characterMakers.push(() => makeCharacter(
  11042. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11043. {
  11044. front: {
  11045. height: math.unit(6 + 4 / 12, "feet"),
  11046. weight: math.unit(188, "lb"),
  11047. name: "Front",
  11048. image: {
  11049. source: "./media/characters/bmc/front.svg",
  11050. extra: 1067 / 1022,
  11051. bottom: 0.047
  11052. }
  11053. },
  11054. },
  11055. [
  11056. {
  11057. name: "Human-sized",
  11058. height: math.unit(6 + 4 / 12, "feet")
  11059. },
  11060. {
  11061. name: "Small",
  11062. height: math.unit(250, "feet")
  11063. },
  11064. {
  11065. name: "Normal",
  11066. height: math.unit(1250, "feet"),
  11067. default: true
  11068. },
  11069. {
  11070. name: "Good Day",
  11071. height: math.unit(88, "miles")
  11072. },
  11073. {
  11074. name: "Largest Measured Size",
  11075. height: math.unit(11.2e6, "lightyears")
  11076. },
  11077. ]
  11078. ))
  11079. characterMakers.push(() => makeCharacter(
  11080. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11081. {
  11082. front: {
  11083. height: math.unit(20, "feet"),
  11084. weight: math.unit(2016, "kg"),
  11085. name: "Front",
  11086. image: {
  11087. source: "./media/characters/sven-the-kaiju/front.svg",
  11088. extra: 1479 / 1449,
  11089. bottom: 0.05
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Fairy",
  11096. height: math.unit(6, "inches")
  11097. },
  11098. {
  11099. name: "Normal",
  11100. height: math.unit(20, "feet"),
  11101. default: true
  11102. },
  11103. {
  11104. name: "Rampage",
  11105. height: math.unit(200, "feet")
  11106. },
  11107. {
  11108. name: "Archfey Forest Guardian",
  11109. height: math.unit(1, "mile")
  11110. },
  11111. ]
  11112. ))
  11113. characterMakers.push(() => makeCharacter(
  11114. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11115. {
  11116. front: {
  11117. height: math.unit(4, "meters"),
  11118. weight: math.unit(2, "tons"),
  11119. name: "Front",
  11120. image: {
  11121. source: "./media/characters/marik/front.svg",
  11122. extra: 1057 / 1003,
  11123. bottom: 0.08
  11124. }
  11125. },
  11126. },
  11127. [
  11128. {
  11129. name: "Normal",
  11130. height: math.unit(4, "meters"),
  11131. default: true
  11132. },
  11133. {
  11134. name: "Macro",
  11135. height: math.unit(20, "meters")
  11136. },
  11137. {
  11138. name: "Megamacro",
  11139. height: math.unit(50, "km")
  11140. },
  11141. {
  11142. name: "Gigamacro",
  11143. height: math.unit(100, "km")
  11144. },
  11145. {
  11146. name: "Alpha Macro",
  11147. height: math.unit(7.88e7, "yottameters")
  11148. },
  11149. ]
  11150. ))
  11151. characterMakers.push(() => makeCharacter(
  11152. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11153. {
  11154. front: {
  11155. height: math.unit(6, "feet"),
  11156. weight: math.unit(110, "lb"),
  11157. name: "Front",
  11158. image: {
  11159. source: "./media/characters/mel/front.svg",
  11160. extra: 736 / 617,
  11161. bottom: 0.017
  11162. }
  11163. },
  11164. },
  11165. [
  11166. {
  11167. name: "Pico",
  11168. height: math.unit(3, "pm")
  11169. },
  11170. {
  11171. name: "Nano",
  11172. height: math.unit(3, "nm")
  11173. },
  11174. {
  11175. name: "Micro",
  11176. height: math.unit(0.3, "mm"),
  11177. default: true
  11178. },
  11179. {
  11180. name: "Micro+",
  11181. height: math.unit(3, "mm")
  11182. },
  11183. {
  11184. name: "Normal",
  11185. height: math.unit(5 + 10.5 / 12, "feet")
  11186. },
  11187. ]
  11188. ))
  11189. characterMakers.push(() => makeCharacter(
  11190. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11191. {
  11192. kaiju: {
  11193. height: math.unit(1.75, "meters"),
  11194. weight: math.unit(55, "kg"),
  11195. name: "Kaiju",
  11196. image: {
  11197. source: "./media/characters/lykonous/kaiju.svg",
  11198. extra: 1055 / 946,
  11199. bottom: 0.135
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Normal",
  11206. height: math.unit(2.5, "meters"),
  11207. default: true
  11208. },
  11209. {
  11210. name: "Kaiju Dragon",
  11211. height: math.unit(60, "meters")
  11212. },
  11213. {
  11214. name: "Mega Kaiju",
  11215. height: math.unit(120, "km")
  11216. },
  11217. {
  11218. name: "Giga Kaiju",
  11219. height: math.unit(200, "megameters")
  11220. },
  11221. {
  11222. name: "Terra Kaiju",
  11223. height: math.unit(400, "gigameters")
  11224. },
  11225. {
  11226. name: "Kaiju Dragon God",
  11227. height: math.unit(13000, "exaparsecs")
  11228. },
  11229. ]
  11230. ))
  11231. characterMakers.push(() => makeCharacter(
  11232. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11233. {
  11234. front: {
  11235. height: math.unit(6, "feet"),
  11236. weight: math.unit(150, "lb"),
  11237. name: "Front",
  11238. image: {
  11239. source: "./media/characters/blü/front.svg",
  11240. extra: 1883 / 1564,
  11241. bottom: 0.031
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Normal",
  11248. height: math.unit(13, "feet"),
  11249. default: true
  11250. },
  11251. {
  11252. name: "Big Boi",
  11253. height: math.unit(150, "meters")
  11254. },
  11255. {
  11256. name: "Mini Stomper",
  11257. height: math.unit(300, "meters")
  11258. },
  11259. {
  11260. name: "Macro",
  11261. height: math.unit(1000, "meters")
  11262. },
  11263. {
  11264. name: "Megamacro",
  11265. height: math.unit(11000, "meters")
  11266. },
  11267. {
  11268. name: "Gigamacro",
  11269. height: math.unit(11000, "km")
  11270. },
  11271. {
  11272. name: "Teramacro",
  11273. height: math.unit(420000, "km")
  11274. },
  11275. {
  11276. name: "Examacro",
  11277. height: math.unit(120, "parsecs")
  11278. },
  11279. {
  11280. name: "God Tho",
  11281. height: math.unit(98000000000, "parsecs")
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11287. {
  11288. taurFront: {
  11289. height: math.unit(6, "feet"),
  11290. weight: math.unit(200, "lb"),
  11291. name: "Taur (Front)",
  11292. image: {
  11293. source: "./media/characters/scales/taur-front.svg",
  11294. extra: 1,
  11295. bottom: 0.05
  11296. }
  11297. },
  11298. taurBack: {
  11299. height: math.unit(6, "feet"),
  11300. weight: math.unit(200, "lb"),
  11301. name: "Taur (Back)",
  11302. image: {
  11303. source: "./media/characters/scales/taur-back.svg",
  11304. extra: 1,
  11305. bottom: 0.08
  11306. }
  11307. },
  11308. anthro: {
  11309. height: math.unit(6 * 7 / 12, "feet"),
  11310. weight: math.unit(100, "lb"),
  11311. name: "Anthro",
  11312. image: {
  11313. source: "./media/characters/scales/anthro.svg",
  11314. extra: 1,
  11315. bottom: 0.06
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Normal",
  11322. height: math.unit(12, "feet"),
  11323. default: true
  11324. },
  11325. ]
  11326. ))
  11327. characterMakers.push(() => makeCharacter(
  11328. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11329. {
  11330. front: {
  11331. height: math.unit(6, "feet"),
  11332. weight: math.unit(150, "lb"),
  11333. name: "Front",
  11334. image: {
  11335. source: "./media/characters/koragos/front.svg",
  11336. extra: 841 / 794,
  11337. bottom: 0.035
  11338. }
  11339. },
  11340. back: {
  11341. height: math.unit(6, "feet"),
  11342. weight: math.unit(150, "lb"),
  11343. name: "Back",
  11344. image: {
  11345. source: "./media/characters/koragos/back.svg",
  11346. extra: 841 / 810,
  11347. bottom: 0.022
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Normal",
  11354. height: math.unit(6 + 11 / 12, "feet"),
  11355. default: true
  11356. },
  11357. {
  11358. name: "Macro",
  11359. height: math.unit(490, "feet")
  11360. },
  11361. {
  11362. name: "Megamacro",
  11363. height: math.unit(10, "miles")
  11364. },
  11365. {
  11366. name: "Gigamacro",
  11367. height: math.unit(50, "miles")
  11368. },
  11369. ]
  11370. ))
  11371. characterMakers.push(() => makeCharacter(
  11372. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11373. {
  11374. front: {
  11375. height: math.unit(6, "feet"),
  11376. weight: math.unit(250, "lb"),
  11377. name: "Front",
  11378. image: {
  11379. source: "./media/characters/xylrem/front.svg",
  11380. extra: 3323 / 3050,
  11381. bottom: 0.065
  11382. }
  11383. },
  11384. },
  11385. [
  11386. {
  11387. name: "Micro",
  11388. height: math.unit(4, "feet")
  11389. },
  11390. {
  11391. name: "Normal",
  11392. height: math.unit(16, "feet"),
  11393. default: true
  11394. },
  11395. {
  11396. name: "Macro",
  11397. height: math.unit(2720, "feet")
  11398. },
  11399. {
  11400. name: "Megamacro",
  11401. height: math.unit(25000, "miles")
  11402. },
  11403. ]
  11404. ))
  11405. characterMakers.push(() => makeCharacter(
  11406. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11407. {
  11408. front: {
  11409. height: math.unit(8, "feet"),
  11410. weight: math.unit(250, "kg"),
  11411. name: "Front",
  11412. image: {
  11413. source: "./media/characters/ikideru/front.svg",
  11414. extra: 930 / 870,
  11415. bottom: 0.087
  11416. }
  11417. },
  11418. back: {
  11419. height: math.unit(8, "feet"),
  11420. weight: math.unit(250, "kg"),
  11421. name: "Back",
  11422. image: {
  11423. source: "./media/characters/ikideru/back.svg",
  11424. extra: 919 / 852,
  11425. bottom: 0.055
  11426. }
  11427. },
  11428. },
  11429. [
  11430. {
  11431. name: "Rare",
  11432. height: math.unit(8, "feet"),
  11433. default: true
  11434. },
  11435. {
  11436. name: "Playful Loom",
  11437. height: math.unit(80, "feet")
  11438. },
  11439. {
  11440. name: "City Leaner",
  11441. height: math.unit(230, "feet")
  11442. },
  11443. {
  11444. name: "Megamacro",
  11445. height: math.unit(2500, "feet")
  11446. },
  11447. {
  11448. name: "Gigamacro",
  11449. height: math.unit(26400, "feet")
  11450. },
  11451. {
  11452. name: "Tectonic Shifter",
  11453. height: math.unit(1.7, "megameters")
  11454. },
  11455. {
  11456. name: "Planet Carer",
  11457. height: math.unit(21, "megameters")
  11458. },
  11459. {
  11460. name: "God",
  11461. height: math.unit(11157.22, "parsecs")
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11467. {
  11468. front: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(120, "lb"),
  11471. name: "Front",
  11472. image: {
  11473. source: "./media/characters/neo/front.svg"
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Micro",
  11480. height: math.unit(2, "inches"),
  11481. default: true
  11482. },
  11483. {
  11484. name: "Human Size",
  11485. height: math.unit(5 + 8 / 12, "feet")
  11486. },
  11487. ]
  11488. ))
  11489. characterMakers.push(() => makeCharacter(
  11490. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11491. {
  11492. front: {
  11493. height: math.unit(13 + 10 / 12, "feet"),
  11494. weight: math.unit(5320, "lb"),
  11495. name: "Front",
  11496. image: {
  11497. source: "./media/characters/chauncey-chantz/front.svg",
  11498. extra: 1587 / 1435,
  11499. bottom: 0.02
  11500. }
  11501. },
  11502. },
  11503. [
  11504. {
  11505. name: "Normal",
  11506. height: math.unit(13 + 10 / 12, "feet"),
  11507. default: true
  11508. },
  11509. {
  11510. name: "Macro",
  11511. height: math.unit(45, "feet")
  11512. },
  11513. {
  11514. name: "Megamacro",
  11515. height: math.unit(250, "miles")
  11516. },
  11517. {
  11518. name: "Planetary",
  11519. height: math.unit(10000, "miles")
  11520. },
  11521. {
  11522. name: "Galactic",
  11523. height: math.unit(40000, "parsecs")
  11524. },
  11525. {
  11526. name: "Universal",
  11527. height: math.unit(1, "yottameter")
  11528. },
  11529. ]
  11530. ))
  11531. characterMakers.push(() => makeCharacter(
  11532. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11533. {
  11534. front: {
  11535. height: math.unit(6, "feet"),
  11536. weight: math.unit(150, "lb"),
  11537. name: "Front",
  11538. image: {
  11539. source: "./media/characters/epifox/front.svg",
  11540. extra: 1,
  11541. bottom: 0.075
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Micro",
  11548. height: math.unit(6, "inches")
  11549. },
  11550. {
  11551. name: "Normal",
  11552. height: math.unit(12, "feet"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Macro",
  11557. height: math.unit(3810, "feet")
  11558. },
  11559. {
  11560. name: "Megamacro",
  11561. height: math.unit(500, "miles")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(1.8796, "m"),
  11570. weight: math.unit(230, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/colin-t/front.svg",
  11574. extra: 1272 / 1193,
  11575. bottom: 0.07
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Micro",
  11582. height: math.unit(0.571, "meters")
  11583. },
  11584. {
  11585. name: "Normal",
  11586. height: math.unit(1.8796, "meters"),
  11587. default: true
  11588. },
  11589. {
  11590. name: "Tall",
  11591. height: math.unit(4, "meters")
  11592. },
  11593. {
  11594. name: "Macro",
  11595. height: math.unit(67.241, "meters")
  11596. },
  11597. {
  11598. name: "Megamacro",
  11599. height: math.unit(371.856, "meters")
  11600. },
  11601. {
  11602. name: "Planetary",
  11603. height: math.unit(12631.5689, "km")
  11604. },
  11605. ]
  11606. ))
  11607. characterMakers.push(() => makeCharacter(
  11608. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11609. {
  11610. front: {
  11611. height: math.unit(1.85, "meters"),
  11612. weight: math.unit(80, "kg"),
  11613. name: "Front",
  11614. image: {
  11615. source: "./media/characters/matvei/front.svg",
  11616. extra: 614 / 594,
  11617. bottom: 0.01
  11618. }
  11619. },
  11620. },
  11621. [
  11622. {
  11623. name: "Normal",
  11624. height: math.unit(1.85, "meters"),
  11625. default: true
  11626. },
  11627. ]
  11628. ))
  11629. characterMakers.push(() => makeCharacter(
  11630. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11631. {
  11632. front: {
  11633. height: math.unit(5 + 9 / 12, "feet"),
  11634. weight: math.unit(70, "lb"),
  11635. name: "Front",
  11636. image: {
  11637. source: "./media/characters/quincy/front.svg",
  11638. extra: 3041 / 2751
  11639. }
  11640. },
  11641. back: {
  11642. height: math.unit(5 + 9 / 12, "feet"),
  11643. weight: math.unit(70, "lb"),
  11644. name: "Back",
  11645. image: {
  11646. source: "./media/characters/quincy/back.svg",
  11647. extra: 3041 / 2751
  11648. }
  11649. },
  11650. flying: {
  11651. height: math.unit(5 + 4 / 12, "feet"),
  11652. weight: math.unit(70, "lb"),
  11653. name: "Flying",
  11654. image: {
  11655. source: "./media/characters/quincy/flying.svg",
  11656. extra: 1044 / 930
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Micro",
  11663. height: math.unit(3, "cm")
  11664. },
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(5 + 9 / 12, "feet")
  11668. },
  11669. {
  11670. name: "Macro",
  11671. height: math.unit(200, "meters"),
  11672. default: true
  11673. },
  11674. {
  11675. name: "Megamacro",
  11676. height: math.unit(1000, "meters")
  11677. },
  11678. ]
  11679. ))
  11680. characterMakers.push(() => makeCharacter(
  11681. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11682. {
  11683. front: {
  11684. height: math.unit(4 + 7 / 12, "feet"),
  11685. weight: math.unit(50, "lb"),
  11686. name: "Front",
  11687. image: {
  11688. source: "./media/characters/vanrel/front.svg",
  11689. extra: 1,
  11690. bottom: 0.02
  11691. }
  11692. },
  11693. frontAlt: {
  11694. height: math.unit(4 + 7 / 12, "feet"),
  11695. weight: math.unit(50, "lb"),
  11696. name: "Front-alt",
  11697. image: {
  11698. source: "./media/characters/vanrel/front-alt.svg",
  11699. extra: 1,
  11700. bottom: 15 / 1511
  11701. }
  11702. },
  11703. elemental: {
  11704. height: math.unit(3, "feet"),
  11705. weight: math.unit(50, "lb"),
  11706. name: "Elemental",
  11707. image: {
  11708. source: "./media/characters/vanrel/elemental.svg",
  11709. extra: 192.3 / 162.8,
  11710. bottom: 1.79 / 194.17
  11711. }
  11712. },
  11713. side: {
  11714. height: math.unit(4 + 7 / 12, "feet"),
  11715. weight: math.unit(50, "lb"),
  11716. name: "Side",
  11717. image: {
  11718. source: "./media/characters/vanrel/side.svg",
  11719. extra: 1,
  11720. bottom: 0.025
  11721. }
  11722. },
  11723. tome: {
  11724. height: math.unit(1.35, "feet"),
  11725. weight: math.unit(10, "lb"),
  11726. name: "Vanrel's Tome",
  11727. rename: true,
  11728. image: {
  11729. source: "./media/characters/vanrel/tome.svg"
  11730. }
  11731. },
  11732. beans: {
  11733. height: math.unit(0.89, "feet"),
  11734. name: "Beans",
  11735. image: {
  11736. source: "./media/characters/vanrel/beans.svg"
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(4 + 7 / 12, "feet"),
  11744. default: true
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11750. {
  11751. front: {
  11752. height: math.unit(7 + 5 / 12, "feet"),
  11753. weight: math.unit(150, "lb"),
  11754. name: "Front",
  11755. image: {
  11756. source: "./media/characters/kuiper-vanrel/front.svg",
  11757. extra: 1118 / 1068,
  11758. bottom: 0.09
  11759. }
  11760. },
  11761. foot: {
  11762. height: math.unit(0.55, "meters"),
  11763. name: "Foot",
  11764. image: {
  11765. source: "./media/characters/kuiper-vanrel/foot.svg",
  11766. }
  11767. },
  11768. battle: {
  11769. height: math.unit(6.824, "feet"),
  11770. weight: math.unit(150, "lb"),
  11771. name: "Battle",
  11772. image: {
  11773. source: "./media/characters/kuiper-vanrel/battle.svg",
  11774. extra: 1466 / 1327,
  11775. bottom: 29 / 1492.5
  11776. }
  11777. },
  11778. battleAlt: {
  11779. height: math.unit(6.824, "feet"),
  11780. weight: math.unit(150, "lb"),
  11781. name: "Battle (Alt)",
  11782. image: {
  11783. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11784. extra: 2081 / 1965,
  11785. bottom: 40 / 2121
  11786. }
  11787. },
  11788. },
  11789. [
  11790. {
  11791. name: "Normal",
  11792. height: math.unit(7 + 5 / 12, "feet"),
  11793. default: true
  11794. },
  11795. ]
  11796. ))
  11797. characterMakers.push(() => makeCharacter(
  11798. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11799. {
  11800. front: {
  11801. height: math.unit(8 + 5 / 12, "feet"),
  11802. weight: math.unit(150, "lb"),
  11803. name: "Front",
  11804. image: {
  11805. source: "./media/characters/keset-vanrel/front.svg",
  11806. extra: 1150 / 1084,
  11807. bottom: 0.05
  11808. }
  11809. },
  11810. hand: {
  11811. height: math.unit(0.6, "meters"),
  11812. name: "Hand",
  11813. image: {
  11814. source: "./media/characters/keset-vanrel/hand.svg"
  11815. }
  11816. },
  11817. foot: {
  11818. height: math.unit(0.94978, "meters"),
  11819. name: "Foot",
  11820. image: {
  11821. source: "./media/characters/keset-vanrel/foot.svg"
  11822. }
  11823. },
  11824. battle: {
  11825. height: math.unit(7.408, "feet"),
  11826. weight: math.unit(150, "lb"),
  11827. name: "Battle",
  11828. image: {
  11829. source: "./media/characters/keset-vanrel/battle.svg",
  11830. extra: 1890 / 1386,
  11831. bottom: 73.28 / 1970
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(8 + 5 / 12, "feet"),
  11839. default: true
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(150, "lb"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/neos/front.svg",
  11852. extra: 1696 / 992,
  11853. bottom: 0.14
  11854. }
  11855. },
  11856. },
  11857. [
  11858. {
  11859. name: "Normal",
  11860. height: math.unit(54, "cm"),
  11861. default: true
  11862. },
  11863. {
  11864. name: "Macro",
  11865. height: math.unit(100, "m")
  11866. },
  11867. {
  11868. name: "Megamacro",
  11869. height: math.unit(10, "km")
  11870. },
  11871. {
  11872. name: "Megamacro+",
  11873. height: math.unit(100, "km")
  11874. },
  11875. {
  11876. name: "Gigamacro",
  11877. height: math.unit(100, "Mm")
  11878. },
  11879. {
  11880. name: "Teramacro",
  11881. height: math.unit(100, "Gm")
  11882. },
  11883. {
  11884. name: "Examacro",
  11885. height: math.unit(100, "Em")
  11886. },
  11887. {
  11888. name: "Godly",
  11889. height: math.unit(10000, "Ym")
  11890. },
  11891. {
  11892. name: "Beyond Godly",
  11893. height: math.unit(25, "multiverses")
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11899. {
  11900. feminine: {
  11901. height: math.unit(5, "feet"),
  11902. weight: math.unit(100, "lb"),
  11903. name: "Feminine",
  11904. image: {
  11905. source: "./media/characters/sammy-mouse/feminine.svg",
  11906. extra: 2526 / 2425,
  11907. bottom: 0.123
  11908. }
  11909. },
  11910. masculine: {
  11911. height: math.unit(5, "feet"),
  11912. weight: math.unit(100, "lb"),
  11913. name: "Masculine",
  11914. image: {
  11915. source: "./media/characters/sammy-mouse/masculine.svg",
  11916. extra: 2526 / 2425,
  11917. bottom: 0.123
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Micro",
  11924. height: math.unit(5, "inches")
  11925. },
  11926. {
  11927. name: "Normal",
  11928. height: math.unit(5, "feet"),
  11929. default: true
  11930. },
  11931. {
  11932. name: "Macro",
  11933. height: math.unit(60, "feet")
  11934. },
  11935. ]
  11936. ))
  11937. characterMakers.push(() => makeCharacter(
  11938. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11939. {
  11940. front: {
  11941. height: math.unit(4, "feet"),
  11942. weight: math.unit(50, "lb"),
  11943. name: "Front",
  11944. image: {
  11945. source: "./media/characters/kole/front.svg",
  11946. extra: 1423 / 1303,
  11947. bottom: 0.025
  11948. }
  11949. },
  11950. back: {
  11951. height: math.unit(4, "feet"),
  11952. weight: math.unit(50, "lb"),
  11953. name: "Back",
  11954. image: {
  11955. source: "./media/characters/kole/back.svg",
  11956. extra: 1426 / 1280,
  11957. bottom: 0.02
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(4, "feet"),
  11965. default: true
  11966. },
  11967. ]
  11968. ))
  11969. characterMakers.push(() => makeCharacter(
  11970. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11971. {
  11972. front: {
  11973. height: math.unit(2 + 6 / 12, "feet"),
  11974. weight: math.unit(20, "lb"),
  11975. name: "Front",
  11976. image: {
  11977. source: "./media/characters/rufran/front.svg",
  11978. extra: 2041 / 1839,
  11979. bottom: 0.055
  11980. }
  11981. },
  11982. back: {
  11983. height: math.unit(2 + 6 / 12, "feet"),
  11984. weight: math.unit(20, "lb"),
  11985. name: "Back",
  11986. image: {
  11987. source: "./media/characters/rufran/back.svg",
  11988. extra: 2054 / 1839,
  11989. bottom: 0.01
  11990. }
  11991. },
  11992. hand: {
  11993. height: math.unit(0.2166, "meters"),
  11994. name: "Hand",
  11995. image: {
  11996. source: "./media/characters/rufran/hand.svg"
  11997. }
  11998. },
  11999. foot: {
  12000. height: math.unit(0.185, "meters"),
  12001. name: "Foot",
  12002. image: {
  12003. source: "./media/characters/rufran/foot.svg"
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Micro",
  12010. height: math.unit(1, "inch")
  12011. },
  12012. {
  12013. name: "Normal",
  12014. height: math.unit(2 + 6 / 12, "feet"),
  12015. default: true
  12016. },
  12017. {
  12018. name: "Big",
  12019. height: math.unit(60, "feet")
  12020. },
  12021. {
  12022. name: "Macro",
  12023. height: math.unit(325, "feet")
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12029. {
  12030. front: {
  12031. height: math.unit(0.3, "meters"),
  12032. weight: math.unit(3.5, "kg"),
  12033. name: "Front",
  12034. image: {
  12035. source: "./media/characters/chip/front.svg",
  12036. extra: 748 / 674
  12037. }
  12038. },
  12039. },
  12040. [
  12041. {
  12042. name: "Micro",
  12043. height: math.unit(1, "inch"),
  12044. default: true
  12045. },
  12046. ]
  12047. ))
  12048. characterMakers.push(() => makeCharacter(
  12049. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12050. {
  12051. side: {
  12052. height: math.unit(2.3, "meters"),
  12053. weight: math.unit(3500, "lb"),
  12054. name: "Side",
  12055. image: {
  12056. source: "./media/characters/torvid/side.svg",
  12057. extra: 1972 / 722,
  12058. bottom: 0.035
  12059. }
  12060. },
  12061. },
  12062. [
  12063. {
  12064. name: "Normal",
  12065. height: math.unit(2.3, "meters"),
  12066. default: true
  12067. },
  12068. ]
  12069. ))
  12070. characterMakers.push(() => makeCharacter(
  12071. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12072. {
  12073. front: {
  12074. height: math.unit(2, "meters"),
  12075. weight: math.unit(150.5, "kg"),
  12076. name: "Front",
  12077. image: {
  12078. source: "./media/characters/susan/front.svg",
  12079. extra: 693 / 635,
  12080. bottom: 0.05
  12081. }
  12082. },
  12083. },
  12084. [
  12085. {
  12086. name: "Megamacro",
  12087. height: math.unit(505, "miles"),
  12088. default: true
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12094. {
  12095. front: {
  12096. height: math.unit(6, "feet"),
  12097. weight: math.unit(150, "lb"),
  12098. name: "Front",
  12099. image: {
  12100. source: "./media/characters/raindrops/front.svg",
  12101. extra: 2655 / 2461,
  12102. bottom: 49 / 2705
  12103. }
  12104. },
  12105. back: {
  12106. height: math.unit(6, "feet"),
  12107. weight: math.unit(150, "lb"),
  12108. name: "Back",
  12109. image: {
  12110. source: "./media/characters/raindrops/back.svg",
  12111. extra: 2574 / 2400,
  12112. bottom: 65 / 2634
  12113. }
  12114. },
  12115. },
  12116. [
  12117. {
  12118. name: "Micro",
  12119. height: math.unit(6, "inches")
  12120. },
  12121. {
  12122. name: "Normal",
  12123. height: math.unit(6 + 2 / 12, "feet")
  12124. },
  12125. {
  12126. name: "Macro",
  12127. height: math.unit(131, "feet"),
  12128. default: true
  12129. },
  12130. {
  12131. name: "Megamacro",
  12132. height: math.unit(15, "miles")
  12133. },
  12134. {
  12135. name: "Gigamacro",
  12136. height: math.unit(4000, "miles")
  12137. },
  12138. {
  12139. name: "Teramacro",
  12140. height: math.unit(315000, "miles")
  12141. },
  12142. ]
  12143. ))
  12144. characterMakers.push(() => makeCharacter(
  12145. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12146. {
  12147. front: {
  12148. height: math.unit(2.794, "meters"),
  12149. weight: math.unit(325, "kg"),
  12150. name: "Front",
  12151. image: {
  12152. source: "./media/characters/tezwa/front.svg",
  12153. extra: 2083 / 1906,
  12154. bottom: 0.031
  12155. }
  12156. },
  12157. foot: {
  12158. height: math.unit(0.687, "meters"),
  12159. name: "Foot",
  12160. image: {
  12161. source: "./media/characters/tezwa/foot.svg"
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Normal",
  12168. height: math.unit(9 + 2 / 12, "feet"),
  12169. default: true
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12175. {
  12176. front: {
  12177. height: math.unit(58, "feet"),
  12178. weight: math.unit(89000, "lb"),
  12179. name: "Front",
  12180. image: {
  12181. source: "./media/characters/typhus/front.svg",
  12182. extra: 816 / 800,
  12183. bottom: 0.065
  12184. }
  12185. },
  12186. },
  12187. [
  12188. {
  12189. name: "Macro",
  12190. height: math.unit(58, "feet"),
  12191. default: true
  12192. },
  12193. ]
  12194. ))
  12195. characterMakers.push(() => makeCharacter(
  12196. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12197. {
  12198. front: {
  12199. height: math.unit(12, "feet"),
  12200. weight: math.unit(6, "tonnes"),
  12201. name: "Front",
  12202. image: {
  12203. source: "./media/characters/lyra-von-wulf/front.svg",
  12204. extra: 1,
  12205. bottom: 0.10
  12206. }
  12207. },
  12208. frontMecha: {
  12209. height: math.unit(12, "feet"),
  12210. weight: math.unit(12, "tonnes"),
  12211. name: "Front (Mecha)",
  12212. image: {
  12213. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12214. extra: 1,
  12215. bottom: 0.042
  12216. }
  12217. },
  12218. maw: {
  12219. height: math.unit(2.2, "feet"),
  12220. name: "Maw",
  12221. image: {
  12222. source: "./media/characters/lyra-von-wulf/maw.svg"
  12223. }
  12224. },
  12225. },
  12226. [
  12227. {
  12228. name: "Normal",
  12229. height: math.unit(12, "feet"),
  12230. default: true
  12231. },
  12232. {
  12233. name: "Classic",
  12234. height: math.unit(50, "feet")
  12235. },
  12236. {
  12237. name: "Macro",
  12238. height: math.unit(500, "feet")
  12239. },
  12240. {
  12241. name: "Megamacro",
  12242. height: math.unit(1, "mile")
  12243. },
  12244. {
  12245. name: "Gigamacro",
  12246. height: math.unit(400, "miles")
  12247. },
  12248. {
  12249. name: "Teramacro",
  12250. height: math.unit(22000, "miles")
  12251. },
  12252. {
  12253. name: "Solarmacro",
  12254. height: math.unit(8600000, "miles")
  12255. },
  12256. {
  12257. name: "Galactic",
  12258. height: math.unit(1057000, "lightyears")
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12264. {
  12265. front: {
  12266. height: math.unit(6 + 10 / 12, "feet"),
  12267. weight: math.unit(150, "lb"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/dixon/front.svg",
  12271. extra: 3361 / 3209,
  12272. bottom: 0.01
  12273. }
  12274. },
  12275. },
  12276. [
  12277. {
  12278. name: "Normal",
  12279. height: math.unit(6 + 10 / 12, "feet"),
  12280. default: true
  12281. },
  12282. {
  12283. name: "Big",
  12284. height: math.unit(12, "meters")
  12285. },
  12286. {
  12287. name: "Macro",
  12288. height: math.unit(500, "meters")
  12289. },
  12290. {
  12291. name: "Megamacro",
  12292. height: math.unit(2, "km")
  12293. },
  12294. ]
  12295. ))
  12296. characterMakers.push(() => makeCharacter(
  12297. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12298. {
  12299. front: {
  12300. height: math.unit(185, "cm"),
  12301. weight: math.unit(68, "kg"),
  12302. name: "Front",
  12303. image: {
  12304. source: "./media/characters/kauko/front.svg",
  12305. extra: 1455 / 1421,
  12306. bottom: 0.03
  12307. }
  12308. },
  12309. back: {
  12310. height: math.unit(185, "cm"),
  12311. weight: math.unit(68, "kg"),
  12312. name: "Back",
  12313. image: {
  12314. source: "./media/characters/kauko/back.svg",
  12315. extra: 1455 / 1421,
  12316. bottom: 0.004
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(185, "cm"),
  12324. default: true
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12330. {
  12331. front: {
  12332. height: math.unit(6, "feet"),
  12333. weight: math.unit(150, "kg"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/varg/front.svg",
  12337. extra: 1108 / 1018,
  12338. bottom: 0.0375
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Normal",
  12345. height: math.unit(5, "meters")
  12346. },
  12347. {
  12348. name: "Macro",
  12349. height: math.unit(200, "meters")
  12350. },
  12351. {
  12352. name: "Megamacro",
  12353. height: math.unit(20, "kilometers")
  12354. },
  12355. {
  12356. name: "True Size",
  12357. height: math.unit(211, "km"),
  12358. default: true
  12359. },
  12360. {
  12361. name: "Gigamacro",
  12362. height: math.unit(1000, "km")
  12363. },
  12364. {
  12365. name: "Gigamacro+",
  12366. height: math.unit(8000, "km")
  12367. },
  12368. {
  12369. name: "Teramacro",
  12370. height: math.unit(1000000, "km")
  12371. },
  12372. ]
  12373. ))
  12374. characterMakers.push(() => makeCharacter(
  12375. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12376. {
  12377. front: {
  12378. height: math.unit(7 + 7 / 12, "feet"),
  12379. weight: math.unit(267, "lb"),
  12380. name: "Front",
  12381. image: {
  12382. source: "./media/characters/dayza/front.svg",
  12383. extra: 1262 / 1200,
  12384. bottom: 0.035
  12385. }
  12386. },
  12387. side: {
  12388. height: math.unit(7 + 7 / 12, "feet"),
  12389. weight: math.unit(267, "lb"),
  12390. name: "Side",
  12391. image: {
  12392. source: "./media/characters/dayza/side.svg",
  12393. extra: 1295 / 1245,
  12394. bottom: 0.05
  12395. }
  12396. },
  12397. back: {
  12398. height: math.unit(7 + 7 / 12, "feet"),
  12399. weight: math.unit(267, "lb"),
  12400. name: "Back",
  12401. image: {
  12402. source: "./media/characters/dayza/back.svg",
  12403. extra: 1241 / 1170
  12404. }
  12405. },
  12406. },
  12407. [
  12408. {
  12409. name: "Normal",
  12410. height: math.unit(7 + 7 / 12, "feet"),
  12411. default: true
  12412. },
  12413. {
  12414. name: "Macro",
  12415. height: math.unit(155, "feet")
  12416. },
  12417. ]
  12418. ))
  12419. characterMakers.push(() => makeCharacter(
  12420. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12421. {
  12422. front: {
  12423. height: math.unit(6 + 5 / 12, "feet"),
  12424. weight: math.unit(160, "lb"),
  12425. name: "Front",
  12426. image: {
  12427. source: "./media/characters/xanthos/front.svg",
  12428. extra: 1,
  12429. bottom: 0.04
  12430. }
  12431. },
  12432. back: {
  12433. height: math.unit(6 + 5 / 12, "feet"),
  12434. weight: math.unit(160, "lb"),
  12435. name: "Back",
  12436. image: {
  12437. source: "./media/characters/xanthos/back.svg",
  12438. extra: 1,
  12439. bottom: 0.03
  12440. }
  12441. },
  12442. hand: {
  12443. height: math.unit(0.928, "feet"),
  12444. name: "Hand",
  12445. image: {
  12446. source: "./media/characters/xanthos/hand.svg"
  12447. }
  12448. },
  12449. foot: {
  12450. height: math.unit(1.286, "feet"),
  12451. name: "Foot",
  12452. image: {
  12453. source: "./media/characters/xanthos/foot.svg"
  12454. }
  12455. },
  12456. },
  12457. [
  12458. {
  12459. name: "Normal",
  12460. height: math.unit(6 + 5 / 12, "feet"),
  12461. default: true
  12462. },
  12463. {
  12464. name: "Normal+",
  12465. height: math.unit(6, "meters")
  12466. },
  12467. {
  12468. name: "Macro",
  12469. height: math.unit(40, "feet")
  12470. },
  12471. {
  12472. name: "Macro+",
  12473. height: math.unit(200, "meters")
  12474. },
  12475. {
  12476. name: "Megamacro",
  12477. height: math.unit(20, "km")
  12478. },
  12479. {
  12480. name: "Megamacro+",
  12481. height: math.unit(100, "km")
  12482. },
  12483. ]
  12484. ))
  12485. characterMakers.push(() => makeCharacter(
  12486. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12487. {
  12488. front: {
  12489. height: math.unit(6 + 3 / 12, "feet"),
  12490. weight: math.unit(215, "lb"),
  12491. name: "Front",
  12492. image: {
  12493. source: "./media/characters/grynn/front.svg",
  12494. extra: 4627 / 4209,
  12495. bottom: 0.047
  12496. }
  12497. },
  12498. },
  12499. [
  12500. {
  12501. name: "Micro",
  12502. height: math.unit(6, "inches")
  12503. },
  12504. {
  12505. name: "Normal",
  12506. height: math.unit(6 + 3 / 12, "feet"),
  12507. default: true
  12508. },
  12509. {
  12510. name: "Big",
  12511. height: math.unit(104, "feet")
  12512. },
  12513. {
  12514. name: "Macro",
  12515. height: math.unit(944, "feet")
  12516. },
  12517. {
  12518. name: "Macro+",
  12519. height: math.unit(9480, "feet")
  12520. },
  12521. {
  12522. name: "Megamacro",
  12523. height: math.unit(78752, "feet")
  12524. },
  12525. {
  12526. name: "Megamacro+",
  12527. height: math.unit(630128, "feet")
  12528. },
  12529. {
  12530. name: "Megamacro++",
  12531. height: math.unit(3150695, "feet")
  12532. },
  12533. ]
  12534. ))
  12535. characterMakers.push(() => makeCharacter(
  12536. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12537. {
  12538. front: {
  12539. height: math.unit(7 + 5 / 12, "feet"),
  12540. weight: math.unit(450, "lb"),
  12541. name: "Front",
  12542. image: {
  12543. source: "./media/characters/mocha-aura/front.svg",
  12544. extra: 1907 / 1817,
  12545. bottom: 0.04
  12546. }
  12547. },
  12548. back: {
  12549. height: math.unit(7 + 5 / 12, "feet"),
  12550. weight: math.unit(450, "lb"),
  12551. name: "Back",
  12552. image: {
  12553. source: "./media/characters/mocha-aura/back.svg",
  12554. extra: 1900 / 1825,
  12555. bottom: 0.045
  12556. }
  12557. },
  12558. },
  12559. [
  12560. {
  12561. name: "Nano",
  12562. height: math.unit(1, "nm")
  12563. },
  12564. {
  12565. name: "Megamicro",
  12566. height: math.unit(1, "mm")
  12567. },
  12568. {
  12569. name: "Micro",
  12570. height: math.unit(3, "inches")
  12571. },
  12572. {
  12573. name: "Normal",
  12574. height: math.unit(7 + 5 / 12, "feet"),
  12575. default: true
  12576. },
  12577. {
  12578. name: "Macro",
  12579. height: math.unit(30, "feet")
  12580. },
  12581. {
  12582. name: "Megamacro",
  12583. height: math.unit(3500, "feet")
  12584. },
  12585. {
  12586. name: "Teramacro",
  12587. height: math.unit(500000, "miles")
  12588. },
  12589. {
  12590. name: "Petamacro",
  12591. height: math.unit(50000000000000000, "parsecs")
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12597. {
  12598. front: {
  12599. height: math.unit(6, "feet"),
  12600. weight: math.unit(150, "lb"),
  12601. name: "Front",
  12602. image: {
  12603. source: "./media/characters/ilisha-devya/front.svg",
  12604. extra: 1,
  12605. bottom: 0.175
  12606. }
  12607. },
  12608. back: {
  12609. height: math.unit(6, "feet"),
  12610. weight: math.unit(150, "lb"),
  12611. name: "Back",
  12612. image: {
  12613. source: "./media/characters/ilisha-devya/back.svg",
  12614. extra: 1,
  12615. bottom: 0.015
  12616. }
  12617. },
  12618. },
  12619. [
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(500, "feet"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Megamacro",
  12627. height: math.unit(10, "miles")
  12628. },
  12629. {
  12630. name: "Gigamacro",
  12631. height: math.unit(100000, "miles")
  12632. },
  12633. {
  12634. name: "Examacro",
  12635. height: math.unit(1e9, "lightyears")
  12636. },
  12637. {
  12638. name: "Omniversal",
  12639. height: math.unit(1e33, "lightyears")
  12640. },
  12641. {
  12642. name: "Beyond Infinite",
  12643. height: math.unit(1e100, "lightyears")
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12649. {
  12650. Side: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(150, "lb"),
  12653. name: "Side",
  12654. image: {
  12655. source: "./media/characters/mira/side.svg",
  12656. extra: 900 / 799,
  12657. bottom: 0.02
  12658. }
  12659. },
  12660. },
  12661. [
  12662. {
  12663. name: "Human Size",
  12664. height: math.unit(6, "feet")
  12665. },
  12666. {
  12667. name: "Macro",
  12668. height: math.unit(100, "feet"),
  12669. default: true
  12670. },
  12671. {
  12672. name: "Megamacro",
  12673. height: math.unit(10, "miles")
  12674. },
  12675. {
  12676. name: "Gigamacro",
  12677. height: math.unit(25000, "miles")
  12678. },
  12679. {
  12680. name: "Teramacro",
  12681. height: math.unit(300, "AU")
  12682. },
  12683. {
  12684. name: "Full Size",
  12685. height: math.unit(4.5e10, "lightyears")
  12686. },
  12687. ]
  12688. ))
  12689. characterMakers.push(() => makeCharacter(
  12690. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12691. {
  12692. front: {
  12693. height: math.unit(6, "feet"),
  12694. weight: math.unit(150, "lb"),
  12695. name: "Front",
  12696. image: {
  12697. source: "./media/characters/holly/front.svg",
  12698. extra: 639 / 606
  12699. }
  12700. },
  12701. back: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(150, "lb"),
  12704. name: "Back",
  12705. image: {
  12706. source: "./media/characters/holly/back.svg",
  12707. extra: 623 / 598
  12708. }
  12709. },
  12710. frontWorking: {
  12711. height: math.unit(6, "feet"),
  12712. weight: math.unit(150, "lb"),
  12713. name: "Front (Working)",
  12714. image: {
  12715. source: "./media/characters/holly/front-working.svg",
  12716. extra: 607 / 577,
  12717. bottom: 0.048
  12718. }
  12719. },
  12720. },
  12721. [
  12722. {
  12723. name: "Normal",
  12724. height: math.unit(12 + 3 / 12, "feet"),
  12725. default: true
  12726. },
  12727. ]
  12728. ))
  12729. characterMakers.push(() => makeCharacter(
  12730. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12731. {
  12732. front: {
  12733. height: math.unit(6, "feet"),
  12734. weight: math.unit(150, "lb"),
  12735. name: "Front",
  12736. image: {
  12737. source: "./media/characters/porter/front.svg",
  12738. extra: 1,
  12739. bottom: 0.01
  12740. }
  12741. },
  12742. frontRobes: {
  12743. height: math.unit(6, "feet"),
  12744. weight: math.unit(150, "lb"),
  12745. name: "Front (Robes)",
  12746. image: {
  12747. source: "./media/characters/porter/front-robes.svg",
  12748. extra: 1.01,
  12749. bottom: 0.01
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Normal",
  12756. height: math.unit(11 + 9 / 12, "feet"),
  12757. default: true
  12758. },
  12759. ]
  12760. ))
  12761. characterMakers.push(() => makeCharacter(
  12762. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12763. {
  12764. legendary: {
  12765. height: math.unit(6, "feet"),
  12766. weight: math.unit(150, "lb"),
  12767. name: "Legendary",
  12768. image: {
  12769. source: "./media/characters/lucy/legendary.svg",
  12770. extra: 1355 / 1100,
  12771. bottom: 0.045
  12772. }
  12773. },
  12774. },
  12775. [
  12776. {
  12777. name: "Legendary",
  12778. height: math.unit(86882 * 2, "miles"),
  12779. default: true
  12780. },
  12781. ]
  12782. ))
  12783. characterMakers.push(() => makeCharacter(
  12784. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12785. {
  12786. front: {
  12787. height: math.unit(6, "feet"),
  12788. weight: math.unit(150, "lb"),
  12789. name: "Front",
  12790. image: {
  12791. source: "./media/characters/drusilla/front.svg",
  12792. extra: 678 / 635,
  12793. bottom: 0.03
  12794. }
  12795. },
  12796. back: {
  12797. height: math.unit(6, "feet"),
  12798. weight: math.unit(150, "lb"),
  12799. name: "Back",
  12800. image: {
  12801. source: "./media/characters/drusilla/back.svg",
  12802. extra: 678 / 635,
  12803. bottom: 0.005
  12804. }
  12805. },
  12806. },
  12807. [
  12808. {
  12809. name: "Macro",
  12810. height: math.unit(100, "feet")
  12811. },
  12812. {
  12813. name: "Canon Height",
  12814. height: math.unit(2000, "feet"),
  12815. default: true
  12816. },
  12817. ]
  12818. ))
  12819. characterMakers.push(() => makeCharacter(
  12820. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12821. {
  12822. front: {
  12823. height: math.unit(6, "feet"),
  12824. weight: math.unit(180, "lb"),
  12825. name: "Front",
  12826. image: {
  12827. source: "./media/characters/renard-thatch/front.svg",
  12828. extra: 2411 / 2275,
  12829. bottom: 0.01
  12830. }
  12831. },
  12832. frontPosing: {
  12833. height: math.unit(6, "feet"),
  12834. weight: math.unit(180, "lb"),
  12835. name: "Front (Posing)",
  12836. image: {
  12837. source: "./media/characters/renard-thatch/front-posing.svg",
  12838. extra: 2381 / 2261,
  12839. bottom: 0.01
  12840. }
  12841. },
  12842. back: {
  12843. height: math.unit(6, "feet"),
  12844. weight: math.unit(180, "lb"),
  12845. name: "Back",
  12846. image: {
  12847. source: "./media/characters/renard-thatch/back.svg",
  12848. extra: 2428 / 2288
  12849. }
  12850. },
  12851. },
  12852. [
  12853. {
  12854. name: "Micro",
  12855. height: math.unit(3, "inches")
  12856. },
  12857. {
  12858. name: "Default",
  12859. height: math.unit(6, "feet"),
  12860. default: true
  12861. },
  12862. {
  12863. name: "Macro",
  12864. height: math.unit(75, "feet")
  12865. },
  12866. ]
  12867. ))
  12868. characterMakers.push(() => makeCharacter(
  12869. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12870. {
  12871. front: {
  12872. height: math.unit(1450, "feet"),
  12873. weight: math.unit(1.21e6, "tons"),
  12874. name: "Front",
  12875. image: {
  12876. source: "./media/characters/sekvra/front.svg",
  12877. extra: 1,
  12878. bottom: 0.03
  12879. }
  12880. },
  12881. frontClothed: {
  12882. height: math.unit(1450, "feet"),
  12883. weight: math.unit(1.21e6, "tons"),
  12884. name: "Front (Clothed)",
  12885. image: {
  12886. source: "./media/characters/sekvra/front-clothed.svg",
  12887. extra: 1,
  12888. bottom: 0.03
  12889. }
  12890. },
  12891. side: {
  12892. height: math.unit(1450, "feet"),
  12893. weight: math.unit(1.21e6, "tons"),
  12894. name: "Side",
  12895. image: {
  12896. source: "./media/characters/sekvra/side.svg",
  12897. extra: 1,
  12898. bottom: 0.025
  12899. }
  12900. },
  12901. back: {
  12902. height: math.unit(1450, "feet"),
  12903. weight: math.unit(1.21e6, "tons"),
  12904. name: "Back",
  12905. image: {
  12906. source: "./media/characters/sekvra/back.svg",
  12907. extra: 1,
  12908. bottom: 0.005
  12909. }
  12910. },
  12911. },
  12912. [
  12913. {
  12914. name: "Macro",
  12915. height: math.unit(1450, "feet"),
  12916. default: true
  12917. },
  12918. {
  12919. name: "Megamacro",
  12920. height: math.unit(15000, "feet")
  12921. },
  12922. ]
  12923. ))
  12924. characterMakers.push(() => makeCharacter(
  12925. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12926. {
  12927. front: {
  12928. height: math.unit(6, "feet"),
  12929. weight: math.unit(150, "lb"),
  12930. name: "Front",
  12931. image: {
  12932. source: "./media/characters/carmine/front.svg",
  12933. extra: 1,
  12934. bottom: 0.035
  12935. }
  12936. },
  12937. frontArmor: {
  12938. height: math.unit(6, "feet"),
  12939. weight: math.unit(150, "lb"),
  12940. name: "Front (Armor)",
  12941. image: {
  12942. source: "./media/characters/carmine/front-armor.svg",
  12943. extra: 1,
  12944. bottom: 0.035
  12945. }
  12946. },
  12947. },
  12948. [
  12949. {
  12950. name: "Large",
  12951. height: math.unit(1, "mile")
  12952. },
  12953. {
  12954. name: "Huge",
  12955. height: math.unit(40, "miles"),
  12956. default: true
  12957. },
  12958. {
  12959. name: "Colossal",
  12960. height: math.unit(2500, "miles")
  12961. },
  12962. ]
  12963. ))
  12964. characterMakers.push(() => makeCharacter(
  12965. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12966. {
  12967. front: {
  12968. height: math.unit(6, "feet"),
  12969. weight: math.unit(150, "lb"),
  12970. name: "Front",
  12971. image: {
  12972. source: "./media/characters/elyssia/front.svg",
  12973. extra: 2201 / 2035,
  12974. bottom: 0.05
  12975. }
  12976. },
  12977. frontClothed: {
  12978. height: math.unit(6, "feet"),
  12979. weight: math.unit(150, "lb"),
  12980. name: "Front (Clothed)",
  12981. image: {
  12982. source: "./media/characters/elyssia/front-clothed.svg",
  12983. extra: 2201 / 2035,
  12984. bottom: 0.05
  12985. }
  12986. },
  12987. back: {
  12988. height: math.unit(6, "feet"),
  12989. weight: math.unit(150, "lb"),
  12990. name: "Back",
  12991. image: {
  12992. source: "./media/characters/elyssia/back.svg",
  12993. extra: 2201 / 2035,
  12994. bottom: 0.013
  12995. }
  12996. },
  12997. },
  12998. [
  12999. {
  13000. name: "Smaller",
  13001. height: math.unit(150, "feet")
  13002. },
  13003. {
  13004. name: "Standard",
  13005. height: math.unit(1400, "feet"),
  13006. default: true
  13007. },
  13008. {
  13009. name: "Distracted",
  13010. height: math.unit(15000, "feet")
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13016. {
  13017. front: {
  13018. height: math.unit(7 + 4 / 12, "feet"),
  13019. weight: math.unit(500, "lb"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/geno-maxwell/front.svg",
  13023. extra: 2207 / 2040,
  13024. bottom: 0.015
  13025. }
  13026. },
  13027. },
  13028. [
  13029. {
  13030. name: "Micro",
  13031. height: math.unit(3, "inches")
  13032. },
  13033. {
  13034. name: "Normal",
  13035. height: math.unit(7 + 4 / 12, "feet"),
  13036. default: true
  13037. },
  13038. {
  13039. name: "Macro",
  13040. height: math.unit(220, "feet")
  13041. },
  13042. {
  13043. name: "Megamacro",
  13044. height: math.unit(11, "miles")
  13045. },
  13046. ]
  13047. ))
  13048. characterMakers.push(() => makeCharacter(
  13049. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13050. {
  13051. front: {
  13052. height: math.unit(7 + 4 / 12, "feet"),
  13053. weight: math.unit(500, "lb"),
  13054. name: "Front",
  13055. image: {
  13056. source: "./media/characters/regena-maxwell/front.svg",
  13057. extra: 3115 / 2770,
  13058. bottom: 0.02
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Normal",
  13065. height: math.unit(7 + 4 / 12, "feet"),
  13066. default: true
  13067. },
  13068. {
  13069. name: "Macro",
  13070. height: math.unit(220, "feet")
  13071. },
  13072. {
  13073. name: "Megamacro",
  13074. height: math.unit(11, "miles")
  13075. },
  13076. ]
  13077. ))
  13078. characterMakers.push(() => makeCharacter(
  13079. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13080. {
  13081. front: {
  13082. height: math.unit(6, "feet"),
  13083. weight: math.unit(150, "lb"),
  13084. name: "Front",
  13085. image: {
  13086. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13087. extra: 860 / 690,
  13088. bottom: 0.03
  13089. }
  13090. },
  13091. },
  13092. [
  13093. {
  13094. name: "Normal",
  13095. height: math.unit(1.7, "meters"),
  13096. default: true
  13097. },
  13098. ]
  13099. ))
  13100. characterMakers.push(() => makeCharacter(
  13101. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13102. {
  13103. front: {
  13104. height: math.unit(6, "feet"),
  13105. weight: math.unit(150, "lb"),
  13106. name: "Front",
  13107. image: {
  13108. source: "./media/characters/quilly/front.svg",
  13109. extra: 890 / 776
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Gigamacro",
  13116. height: math.unit(404090, "miles"),
  13117. default: true
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13123. {
  13124. front: {
  13125. height: math.unit(7 + 8 / 12, "feet"),
  13126. weight: math.unit(350, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/tempest/front.svg",
  13130. extra: 1175 / 1086,
  13131. bottom: 0.02
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Normal",
  13138. height: math.unit(7 + 8 / 12, "feet"),
  13139. default: true
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13145. {
  13146. side: {
  13147. height: math.unit(4 + 5 / 12, "feet"),
  13148. weight: math.unit(80, "lb"),
  13149. name: "Side",
  13150. image: {
  13151. source: "./media/characters/rodger/side.svg",
  13152. extra: 1235 / 1118
  13153. }
  13154. },
  13155. },
  13156. [
  13157. {
  13158. name: "Micro",
  13159. height: math.unit(1, "inch")
  13160. },
  13161. {
  13162. name: "Normal",
  13163. height: math.unit(4 + 5 / 12, "feet"),
  13164. default: true
  13165. },
  13166. {
  13167. name: "Macro",
  13168. height: math.unit(120, "feet")
  13169. },
  13170. ]
  13171. ))
  13172. characterMakers.push(() => makeCharacter(
  13173. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13174. {
  13175. front: {
  13176. height: math.unit(6, "feet"),
  13177. weight: math.unit(150, "lb"),
  13178. name: "Front",
  13179. image: {
  13180. source: "./media/characters/danyel/front.svg",
  13181. extra: 1185 / 1123,
  13182. bottom: 0.05
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Shrunken",
  13189. height: math.unit(0.5, "mm")
  13190. },
  13191. {
  13192. name: "Micro",
  13193. height: math.unit(1, "mm"),
  13194. default: true
  13195. },
  13196. {
  13197. name: "Upsized",
  13198. height: math.unit(5 + 5 / 12, "feet")
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(5 + 6 / 12, "feet"),
  13207. weight: math.unit(200, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/vivian-bijoux/front.svg",
  13211. extra: 1,
  13212. bottom: 0.072
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Normal",
  13219. height: math.unit(5 + 6 / 12, "feet"),
  13220. default: true
  13221. },
  13222. {
  13223. name: "Bad Dream",
  13224. height: math.unit(500, "feet")
  13225. },
  13226. {
  13227. name: "Nightmare",
  13228. height: math.unit(500, "miles")
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13234. {
  13235. front: {
  13236. height: math.unit(6 + 1 / 12, "feet"),
  13237. weight: math.unit(260, "lb"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/zeta/front.svg",
  13241. extra: 1968 / 1889,
  13242. bottom: 0.06
  13243. }
  13244. },
  13245. back: {
  13246. height: math.unit(6 + 1 / 12, "feet"),
  13247. weight: math.unit(260, "lb"),
  13248. name: "Back",
  13249. image: {
  13250. source: "./media/characters/zeta/back.svg",
  13251. extra: 1944 / 1858,
  13252. bottom: 0.03
  13253. }
  13254. },
  13255. hand: {
  13256. height: math.unit(1.112, "feet"),
  13257. name: "Hand",
  13258. image: {
  13259. source: "./media/characters/zeta/hand.svg"
  13260. }
  13261. },
  13262. foot: {
  13263. height: math.unit(1.48, "feet"),
  13264. name: "Foot",
  13265. image: {
  13266. source: "./media/characters/zeta/foot.svg"
  13267. }
  13268. },
  13269. },
  13270. [
  13271. {
  13272. name: "Micro",
  13273. height: math.unit(6, "inches")
  13274. },
  13275. {
  13276. name: "Normal",
  13277. height: math.unit(6 + 1 / 12, "feet"),
  13278. default: true
  13279. },
  13280. {
  13281. name: "Macro",
  13282. height: math.unit(20, "feet")
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(6, "feet"),
  13291. weight: math.unit(150, "lb"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/jamie-larsen/front.svg",
  13295. extra: 962 / 933,
  13296. bottom: 0.02
  13297. }
  13298. },
  13299. back: {
  13300. height: math.unit(6, "feet"),
  13301. weight: math.unit(150, "lb"),
  13302. name: "Back",
  13303. image: {
  13304. source: "./media/characters/jamie-larsen/back.svg",
  13305. extra: 997 / 946
  13306. }
  13307. },
  13308. },
  13309. [
  13310. {
  13311. name: "Macro",
  13312. height: math.unit(28 + 7 / 12, "feet"),
  13313. default: true
  13314. },
  13315. {
  13316. name: "Macro+",
  13317. height: math.unit(180, "feet")
  13318. },
  13319. {
  13320. name: "Megamacro",
  13321. height: math.unit(10, "miles")
  13322. },
  13323. {
  13324. name: "Gigamacro",
  13325. height: math.unit(200000, "miles")
  13326. },
  13327. ]
  13328. ))
  13329. characterMakers.push(() => makeCharacter(
  13330. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13331. {
  13332. front: {
  13333. height: math.unit(6, "feet"),
  13334. weight: math.unit(120, "lb"),
  13335. name: "Front",
  13336. image: {
  13337. source: "./media/characters/vance/front.svg",
  13338. extra: 1980 / 1890,
  13339. bottom: 0.09
  13340. }
  13341. },
  13342. back: {
  13343. height: math.unit(6, "feet"),
  13344. weight: math.unit(120, "lb"),
  13345. name: "Back",
  13346. image: {
  13347. source: "./media/characters/vance/back.svg",
  13348. extra: 2081 / 1994,
  13349. bottom: 0.014
  13350. }
  13351. },
  13352. hand: {
  13353. height: math.unit(0.88, "feet"),
  13354. name: "Hand",
  13355. image: {
  13356. source: "./media/characters/vance/hand.svg"
  13357. }
  13358. },
  13359. foot: {
  13360. height: math.unit(0.64, "feet"),
  13361. name: "Foot",
  13362. image: {
  13363. source: "./media/characters/vance/foot.svg"
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Small",
  13370. height: math.unit(90, "feet"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Macro",
  13375. height: math.unit(100, "meters")
  13376. },
  13377. {
  13378. name: "Megamacro",
  13379. height: math.unit(15, "miles")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(6, "feet"),
  13388. weight: math.unit(180, "lb"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/xochitl/front.svg",
  13392. extra: 2297 / 2261,
  13393. bottom: 0.065
  13394. }
  13395. },
  13396. back: {
  13397. height: math.unit(6, "feet"),
  13398. weight: math.unit(180, "lb"),
  13399. name: "Back",
  13400. image: {
  13401. source: "./media/characters/xochitl/back.svg",
  13402. extra: 2386 / 2354,
  13403. bottom: 0.01
  13404. }
  13405. },
  13406. foot: {
  13407. height: math.unit(6 / 5 * 1.15, "feet"),
  13408. weight: math.unit(150, "lb"),
  13409. name: "Foot",
  13410. image: {
  13411. source: "./media/characters/xochitl/foot.svg"
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Macro",
  13418. height: math.unit(80, "feet")
  13419. },
  13420. {
  13421. name: "Macro+",
  13422. height: math.unit(400, "feet"),
  13423. default: true
  13424. },
  13425. {
  13426. name: "Gigamacro",
  13427. height: math.unit(80000, "miles")
  13428. },
  13429. {
  13430. name: "Gigamacro+",
  13431. height: math.unit(400000, "miles")
  13432. },
  13433. {
  13434. name: "Teramacro",
  13435. height: math.unit(300, "AU")
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13441. {
  13442. front: {
  13443. height: math.unit(6, "feet"),
  13444. weight: math.unit(150, "lb"),
  13445. name: "Front",
  13446. image: {
  13447. source: "./media/characters/vincent/front.svg",
  13448. extra: 1130 / 1080,
  13449. bottom: 0.055
  13450. }
  13451. },
  13452. beak: {
  13453. height: math.unit(6 * 0.1, "feet"),
  13454. name: "Beak",
  13455. image: {
  13456. source: "./media/characters/vincent/beak.svg"
  13457. }
  13458. },
  13459. hand: {
  13460. height: math.unit(6 * 0.85, "feet"),
  13461. weight: math.unit(150, "lb"),
  13462. name: "Hand",
  13463. image: {
  13464. source: "./media/characters/vincent/hand.svg"
  13465. }
  13466. },
  13467. foot: {
  13468. height: math.unit(6 * 0.19, "feet"),
  13469. weight: math.unit(150, "lb"),
  13470. name: "Foot",
  13471. image: {
  13472. source: "./media/characters/vincent/foot.svg"
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Base",
  13479. height: math.unit(6 + 5 / 12, "feet"),
  13480. default: true
  13481. },
  13482. {
  13483. name: "Macro",
  13484. height: math.unit(300, "feet")
  13485. },
  13486. {
  13487. name: "Megamacro",
  13488. height: math.unit(2, "miles")
  13489. },
  13490. {
  13491. name: "Gigamacro",
  13492. height: math.unit(1000, "miles")
  13493. },
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13498. {
  13499. front: {
  13500. height: math.unit(2, "meters"),
  13501. weight: math.unit(500, "kg"),
  13502. name: "Front",
  13503. image: {
  13504. source: "./media/characters/coatl/front.svg",
  13505. extra: 3948 / 3500,
  13506. bottom: 0.082
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Normal",
  13513. height: math.unit(4, "meters")
  13514. },
  13515. {
  13516. name: "Macro",
  13517. height: math.unit(100, "meters"),
  13518. default: true
  13519. },
  13520. {
  13521. name: "Macro+",
  13522. height: math.unit(300, "meters")
  13523. },
  13524. {
  13525. name: "Megamacro",
  13526. height: math.unit(3, "gigameters")
  13527. },
  13528. {
  13529. name: "Megamacro+",
  13530. height: math.unit(300, "terameters")
  13531. },
  13532. {
  13533. name: "Megamacro++",
  13534. height: math.unit(3, "lightyears")
  13535. },
  13536. ]
  13537. ))
  13538. characterMakers.push(() => makeCharacter(
  13539. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13540. {
  13541. front: {
  13542. height: math.unit(6, "feet"),
  13543. weight: math.unit(50, "kg"),
  13544. name: "front",
  13545. image: {
  13546. source: "./media/characters/shiroryu/front.svg",
  13547. extra: 1990 / 1935
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Mortal Mingling",
  13554. height: math.unit(3, "meters")
  13555. },
  13556. {
  13557. name: "Kaiju-ish",
  13558. height: math.unit(250, "meters")
  13559. },
  13560. {
  13561. name: "Somewhat Godly",
  13562. height: math.unit(400, "km"),
  13563. default: true
  13564. },
  13565. {
  13566. name: "Planetary",
  13567. height: math.unit(300, "megameters")
  13568. },
  13569. {
  13570. name: "Galaxy-dwarfing",
  13571. height: math.unit(450, "kiloparsecs")
  13572. },
  13573. {
  13574. name: "Universe Eater",
  13575. height: math.unit(150, "gigaparsecs")
  13576. },
  13577. {
  13578. name: "Almost Immeasurable",
  13579. height: math.unit(1.3e266, "yottaparsecs")
  13580. },
  13581. ]
  13582. ))
  13583. characterMakers.push(() => makeCharacter(
  13584. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13585. {
  13586. front: {
  13587. height: math.unit(6, "feet"),
  13588. weight: math.unit(150, "lb"),
  13589. name: "Front",
  13590. image: {
  13591. source: "./media/characters/umeko/front.svg",
  13592. extra: 1,
  13593. bottom: 0.019
  13594. }
  13595. },
  13596. frontArmored: {
  13597. height: math.unit(6, "feet"),
  13598. weight: math.unit(150, "lb"),
  13599. name: "Front (Armored)",
  13600. image: {
  13601. source: "./media/characters/umeko/front-armored.svg",
  13602. extra: 1,
  13603. bottom: 0.021
  13604. }
  13605. },
  13606. },
  13607. [
  13608. {
  13609. name: "Macro",
  13610. height: math.unit(220, "feet"),
  13611. default: true
  13612. },
  13613. {
  13614. name: "Guardian Dragon",
  13615. height: math.unit(50, "miles")
  13616. },
  13617. {
  13618. name: "Cosmic",
  13619. height: math.unit(800000, "miles")
  13620. },
  13621. ]
  13622. ))
  13623. characterMakers.push(() => makeCharacter(
  13624. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13625. {
  13626. front: {
  13627. height: math.unit(6, "feet"),
  13628. weight: math.unit(150, "lb"),
  13629. name: "Front",
  13630. image: {
  13631. source: "./media/characters/cassidy/front.svg",
  13632. extra: 1,
  13633. bottom: 0.043
  13634. }
  13635. },
  13636. },
  13637. [
  13638. {
  13639. name: "Canon Height",
  13640. height: math.unit(120, "feet"),
  13641. default: true
  13642. },
  13643. {
  13644. name: "Macro+",
  13645. height: math.unit(400, "feet")
  13646. },
  13647. {
  13648. name: "Macro++",
  13649. height: math.unit(4000, "feet")
  13650. },
  13651. {
  13652. name: "Megamacro",
  13653. height: math.unit(3, "miles")
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13659. {
  13660. front: {
  13661. height: math.unit(6, "feet"),
  13662. weight: math.unit(150, "lb"),
  13663. name: "Front",
  13664. image: {
  13665. source: "./media/characters/isaac/front.svg",
  13666. extra: 896 / 815,
  13667. bottom: 0.11
  13668. }
  13669. },
  13670. },
  13671. [
  13672. {
  13673. name: "Human Size",
  13674. height: math.unit(8, "feet"),
  13675. default: true
  13676. },
  13677. {
  13678. name: "Macro",
  13679. height: math.unit(400, "feet")
  13680. },
  13681. {
  13682. name: "Megamacro",
  13683. height: math.unit(50, "miles")
  13684. },
  13685. {
  13686. name: "Canon Height",
  13687. height: math.unit(200, "AU")
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13693. {
  13694. front: {
  13695. height: math.unit(6, "feet"),
  13696. weight: math.unit(72, "kg"),
  13697. name: "Front",
  13698. image: {
  13699. source: "./media/characters/sleekit/front.svg",
  13700. extra: 4693 / 4487,
  13701. bottom: 0.012
  13702. }
  13703. },
  13704. },
  13705. [
  13706. {
  13707. name: "Minimum Height",
  13708. height: math.unit(10, "meters")
  13709. },
  13710. {
  13711. name: "Smaller",
  13712. height: math.unit(25, "meters")
  13713. },
  13714. {
  13715. name: "Larger",
  13716. height: math.unit(38, "meters"),
  13717. default: true
  13718. },
  13719. {
  13720. name: "Maximum height",
  13721. height: math.unit(100, "meters")
  13722. },
  13723. ]
  13724. ))
  13725. characterMakers.push(() => makeCharacter(
  13726. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13727. {
  13728. front: {
  13729. height: math.unit(6, "feet"),
  13730. weight: math.unit(150, "lb"),
  13731. name: "Front",
  13732. image: {
  13733. source: "./media/characters/nillia/front.svg",
  13734. extra: 2195 / 2037,
  13735. bottom: 0.005
  13736. }
  13737. },
  13738. back: {
  13739. height: math.unit(6, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Back",
  13742. image: {
  13743. source: "./media/characters/nillia/back.svg",
  13744. extra: 2195 / 2037,
  13745. bottom: 0.005
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Canon Height",
  13752. height: math.unit(489, "feet"),
  13753. default: true
  13754. }
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13759. {
  13760. front: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(150, "lb"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/mesmyriza/front.svg",
  13766. extra: 2067 / 1784,
  13767. bottom: 0.035
  13768. }
  13769. },
  13770. foot: {
  13771. height: math.unit(6 / (250 / 35), "feet"),
  13772. name: "Foot",
  13773. image: {
  13774. source: "./media/characters/mesmyriza/foot.svg"
  13775. }
  13776. },
  13777. },
  13778. [
  13779. {
  13780. name: "Macro",
  13781. height: math.unit(457, "meters"),
  13782. default: true
  13783. },
  13784. {
  13785. name: "Megamacro",
  13786. height: math.unit(8, "megameters")
  13787. },
  13788. ]
  13789. ))
  13790. characterMakers.push(() => makeCharacter(
  13791. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13792. {
  13793. front: {
  13794. height: math.unit(6, "feet"),
  13795. weight: math.unit(250, "lb"),
  13796. name: "Front",
  13797. image: {
  13798. source: "./media/characters/saudade/front.svg",
  13799. extra: 1172 / 1139,
  13800. bottom: 0.035
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Micro",
  13807. height: math.unit(3, "inches")
  13808. },
  13809. {
  13810. name: "Normal",
  13811. height: math.unit(6, "feet"),
  13812. default: true
  13813. },
  13814. {
  13815. name: "Macro",
  13816. height: math.unit(50, "feet")
  13817. },
  13818. {
  13819. name: "Megamacro",
  13820. height: math.unit(2800, "feet")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(5 + 4 / 12, "feet"),
  13829. weight: math.unit(100, "lb"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/keireer/front.svg",
  13833. extra: 716 / 666,
  13834. bottom: 0.05
  13835. }
  13836. },
  13837. },
  13838. [
  13839. {
  13840. name: "Normal",
  13841. height: math.unit(5 + 4 / 12, "feet"),
  13842. default: true
  13843. },
  13844. ]
  13845. ))
  13846. characterMakers.push(() => makeCharacter(
  13847. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13848. {
  13849. front: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(90, "kg"),
  13852. name: "Front",
  13853. image: {
  13854. source: "./media/characters/mirja/front.svg",
  13855. extra: 1789 / 1683,
  13856. bottom: 0.05
  13857. }
  13858. },
  13859. frontDressed: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(90, "lb"),
  13862. name: "Front (Dressed)",
  13863. image: {
  13864. source: "./media/characters/mirja/front-dressed.svg",
  13865. extra: 1789 / 1683,
  13866. bottom: 0.05
  13867. }
  13868. },
  13869. back: {
  13870. height: math.unit(6, "feet"),
  13871. weight: math.unit(90, "lb"),
  13872. name: "Back",
  13873. image: {
  13874. source: "./media/characters/mirja/back.svg",
  13875. extra: 953 / 917,
  13876. bottom: 0.017
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "\"Incognito\"",
  13883. height: math.unit(3, "meters")
  13884. },
  13885. {
  13886. name: "Strolling Size",
  13887. height: math.unit(15, "km")
  13888. },
  13889. {
  13890. name: "Larger Strolling Size",
  13891. height: math.unit(400, "km")
  13892. },
  13893. {
  13894. name: "Preferred Size",
  13895. height: math.unit(5000, "km")
  13896. },
  13897. {
  13898. name: "True Size",
  13899. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13900. default: true
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13906. {
  13907. front: {
  13908. height: math.unit(15, "feet"),
  13909. weight: math.unit(880, "kg"),
  13910. name: "Front",
  13911. image: {
  13912. source: "./media/characters/nightraver/front.svg",
  13913. extra: 2444 / 2160,
  13914. bottom: 0.027
  13915. }
  13916. },
  13917. back: {
  13918. height: math.unit(15, "feet"),
  13919. weight: math.unit(880, "kg"),
  13920. name: "Back",
  13921. image: {
  13922. source: "./media/characters/nightraver/back.svg",
  13923. extra: 2309 / 2180,
  13924. bottom: 0.005
  13925. }
  13926. },
  13927. sole: {
  13928. height: math.unit(2.878, "feet"),
  13929. name: "Sole",
  13930. image: {
  13931. source: "./media/characters/nightraver/sole.svg"
  13932. }
  13933. },
  13934. foot: {
  13935. height: math.unit(2.285, "feet"),
  13936. name: "Foot",
  13937. image: {
  13938. source: "./media/characters/nightraver/foot.svg"
  13939. }
  13940. },
  13941. maw: {
  13942. height: math.unit(2.67, "feet"),
  13943. name: "Maw",
  13944. image: {
  13945. source: "./media/characters/nightraver/maw.svg"
  13946. }
  13947. },
  13948. },
  13949. [
  13950. {
  13951. name: "Micro",
  13952. height: math.unit(1, "cm")
  13953. },
  13954. {
  13955. name: "Normal",
  13956. height: math.unit(15, "feet"),
  13957. default: true
  13958. },
  13959. {
  13960. name: "Macro",
  13961. height: math.unit(300, "feet")
  13962. },
  13963. {
  13964. name: "Megamacro",
  13965. height: math.unit(300, "miles")
  13966. },
  13967. {
  13968. name: "Gigamacro",
  13969. height: math.unit(10000, "miles")
  13970. },
  13971. ]
  13972. ))
  13973. characterMakers.push(() => makeCharacter(
  13974. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13975. {
  13976. side: {
  13977. height: math.unit(2, "inches"),
  13978. weight: math.unit(5, "grams"),
  13979. name: "Side",
  13980. image: {
  13981. source: "./media/characters/arc/side.svg"
  13982. }
  13983. },
  13984. },
  13985. [
  13986. {
  13987. name: "Micro",
  13988. height: math.unit(2, "inches"),
  13989. default: true
  13990. },
  13991. ]
  13992. ))
  13993. characterMakers.push(() => makeCharacter(
  13994. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13995. {
  13996. front: {
  13997. height: math.unit(1.1938, "meters"),
  13998. weight: math.unit(54, "kg"),
  13999. name: "Front",
  14000. image: {
  14001. source: "./media/characters/nebula-shahar/front.svg",
  14002. extra: 1642 / 1436,
  14003. bottom: 0.06
  14004. }
  14005. },
  14006. },
  14007. [
  14008. {
  14009. name: "Megamicro",
  14010. height: math.unit(0.3, "mm")
  14011. },
  14012. {
  14013. name: "Micro",
  14014. height: math.unit(3, "cm")
  14015. },
  14016. {
  14017. name: "Normal",
  14018. height: math.unit(138, "cm"),
  14019. default: true
  14020. },
  14021. {
  14022. name: "Macro",
  14023. height: math.unit(30, "m")
  14024. },
  14025. ]
  14026. ))
  14027. characterMakers.push(() => makeCharacter(
  14028. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14029. {
  14030. front: {
  14031. height: math.unit(5.24, "feet"),
  14032. weight: math.unit(150, "lb"),
  14033. name: "Front",
  14034. image: {
  14035. source: "./media/characters/shayla/front.svg",
  14036. extra: 1512 / 1414,
  14037. bottom: 0.01
  14038. }
  14039. },
  14040. back: {
  14041. height: math.unit(5.24, "feet"),
  14042. weight: math.unit(150, "lb"),
  14043. name: "Back",
  14044. image: {
  14045. source: "./media/characters/shayla/back.svg",
  14046. extra: 1512 / 1414
  14047. }
  14048. },
  14049. hand: {
  14050. height: math.unit(0.7781496062992126, "feet"),
  14051. name: "Hand",
  14052. image: {
  14053. source: "./media/characters/shayla/hand.svg"
  14054. }
  14055. },
  14056. foot: {
  14057. height: math.unit(1.4206036745406823, "feet"),
  14058. name: "Foot",
  14059. image: {
  14060. source: "./media/characters/shayla/foot.svg"
  14061. }
  14062. },
  14063. },
  14064. [
  14065. {
  14066. name: "Micro",
  14067. height: math.unit(0.32, "feet")
  14068. },
  14069. {
  14070. name: "Normal",
  14071. height: math.unit(5.24, "feet"),
  14072. default: true
  14073. },
  14074. {
  14075. name: "Macro",
  14076. height: math.unit(492.12, "feet")
  14077. },
  14078. {
  14079. name: "Megamacro",
  14080. height: math.unit(186.41, "miles")
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14086. {
  14087. front: {
  14088. height: math.unit(2.2, "m"),
  14089. weight: math.unit(120, "kg"),
  14090. name: "Front",
  14091. image: {
  14092. source: "./media/characters/pia-jr/front.svg",
  14093. extra: 1000 / 970,
  14094. bottom: 0.035
  14095. }
  14096. },
  14097. hand: {
  14098. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14099. name: "Hand",
  14100. image: {
  14101. source: "./media/characters/pia-jr/hand.svg"
  14102. }
  14103. },
  14104. paw: {
  14105. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14106. name: "Paw",
  14107. image: {
  14108. source: "./media/characters/pia-jr/paw.svg"
  14109. }
  14110. },
  14111. },
  14112. [
  14113. {
  14114. name: "Micro",
  14115. height: math.unit(1.2, "cm")
  14116. },
  14117. {
  14118. name: "Normal",
  14119. height: math.unit(2.2, "m"),
  14120. default: true
  14121. },
  14122. {
  14123. name: "Macro",
  14124. height: math.unit(180, "m")
  14125. },
  14126. {
  14127. name: "Megamacro",
  14128. height: math.unit(420, "km")
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14134. {
  14135. front: {
  14136. height: math.unit(2, "m"),
  14137. weight: math.unit(115, "kg"),
  14138. name: "Front",
  14139. image: {
  14140. source: "./media/characters/pia-sr/front.svg",
  14141. extra: 760 / 730,
  14142. bottom: 0.015
  14143. }
  14144. },
  14145. back: {
  14146. height: math.unit(2, "m"),
  14147. weight: math.unit(115, "kg"),
  14148. name: "Back",
  14149. image: {
  14150. source: "./media/characters/pia-sr/back.svg",
  14151. extra: 760 / 730,
  14152. bottom: 0.01
  14153. }
  14154. },
  14155. hand: {
  14156. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14157. name: "Hand",
  14158. image: {
  14159. source: "./media/characters/pia-sr/hand.svg"
  14160. }
  14161. },
  14162. foot: {
  14163. height: math.unit(1.83, "feet"),
  14164. name: "Foot",
  14165. image: {
  14166. source: "./media/characters/pia-sr/foot.svg"
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Micro",
  14173. height: math.unit(88, "mm")
  14174. },
  14175. {
  14176. name: "Normal",
  14177. height: math.unit(2, "m"),
  14178. default: true
  14179. },
  14180. {
  14181. name: "Macro",
  14182. height: math.unit(200, "m")
  14183. },
  14184. {
  14185. name: "Megamacro",
  14186. height: math.unit(420, "km")
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(8 + 2 / 12, "feet"),
  14195. weight: math.unit(300, "lb"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/kibibyte/front.svg",
  14199. extra: 2221 / 2098,
  14200. bottom: 0.04
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Normal",
  14207. height: math.unit(8 + 2 / 12, "feet"),
  14208. default: true
  14209. },
  14210. {
  14211. name: "Socialable Macro",
  14212. height: math.unit(50, "feet")
  14213. },
  14214. {
  14215. name: "Macro",
  14216. height: math.unit(300, "feet")
  14217. },
  14218. {
  14219. name: "Megamacro",
  14220. height: math.unit(500, "miles")
  14221. },
  14222. ]
  14223. ))
  14224. characterMakers.push(() => makeCharacter(
  14225. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14226. {
  14227. front: {
  14228. height: math.unit(6, "feet"),
  14229. weight: math.unit(150, "lb"),
  14230. name: "Front",
  14231. image: {
  14232. source: "./media/characters/felix/front.svg",
  14233. extra: 762 / 722,
  14234. bottom: 0.02
  14235. }
  14236. },
  14237. frontClothed: {
  14238. height: math.unit(6, "feet"),
  14239. weight: math.unit(150, "lb"),
  14240. name: "Front (Clothed)",
  14241. image: {
  14242. source: "./media/characters/felix/front-clothed.svg",
  14243. extra: 762 / 722,
  14244. bottom: 0.02
  14245. }
  14246. },
  14247. },
  14248. [
  14249. {
  14250. name: "Normal",
  14251. height: math.unit(6 + 8 / 12, "feet"),
  14252. default: true
  14253. },
  14254. {
  14255. name: "Macro",
  14256. height: math.unit(2600, "feet")
  14257. },
  14258. {
  14259. name: "Megamacro",
  14260. height: math.unit(450, "miles")
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14266. {
  14267. front: {
  14268. height: math.unit(6 + 1 / 12, "feet"),
  14269. weight: math.unit(250, "lb"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/tobo/front.svg",
  14273. extra: 608 / 586,
  14274. bottom: 0.023
  14275. }
  14276. },
  14277. back: {
  14278. height: math.unit(6 + 1 / 12, "feet"),
  14279. weight: math.unit(250, "lb"),
  14280. name: "Back",
  14281. image: {
  14282. source: "./media/characters/tobo/back.svg",
  14283. extra: 608 / 586
  14284. }
  14285. },
  14286. },
  14287. [
  14288. {
  14289. name: "Nano",
  14290. height: math.unit(2, "nm")
  14291. },
  14292. {
  14293. name: "Megamicro",
  14294. height: math.unit(0.1, "mm")
  14295. },
  14296. {
  14297. name: "Micro",
  14298. height: math.unit(1, "inch"),
  14299. default: true
  14300. },
  14301. {
  14302. name: "Human-sized",
  14303. height: math.unit(6 + 1 / 12, "feet")
  14304. },
  14305. {
  14306. name: "Macro",
  14307. height: math.unit(250, "feet")
  14308. },
  14309. {
  14310. name: "Megamacro",
  14311. height: math.unit(75, "miles")
  14312. },
  14313. {
  14314. name: "Texas-sized",
  14315. height: math.unit(750, "miles")
  14316. },
  14317. {
  14318. name: "Teramacro",
  14319. height: math.unit(50000, "miles")
  14320. },
  14321. ]
  14322. ))
  14323. characterMakers.push(() => makeCharacter(
  14324. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14325. {
  14326. front: {
  14327. height: math.unit(6, "feet"),
  14328. weight: math.unit(269, "lb"),
  14329. name: "Front",
  14330. image: {
  14331. source: "./media/characters/danny-kapowsky/front.svg",
  14332. extra: 766 / 736,
  14333. bottom: 0.044
  14334. }
  14335. },
  14336. back: {
  14337. height: math.unit(6, "feet"),
  14338. weight: math.unit(269, "lb"),
  14339. name: "Back",
  14340. image: {
  14341. source: "./media/characters/danny-kapowsky/back.svg",
  14342. extra: 797 / 760,
  14343. bottom: 0.025
  14344. }
  14345. },
  14346. },
  14347. [
  14348. {
  14349. name: "Macro",
  14350. height: math.unit(150, "feet"),
  14351. default: true
  14352. },
  14353. {
  14354. name: "Macro+",
  14355. height: math.unit(200, "feet")
  14356. },
  14357. {
  14358. name: "Macro++",
  14359. height: math.unit(300, "feet")
  14360. },
  14361. {
  14362. name: "Macro+++",
  14363. height: math.unit(400, "feet")
  14364. },
  14365. ]
  14366. ))
  14367. characterMakers.push(() => makeCharacter(
  14368. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14369. {
  14370. side: {
  14371. height: math.unit(6, "feet"),
  14372. weight: math.unit(170, "lb"),
  14373. name: "Side",
  14374. image: {
  14375. source: "./media/characters/finn/side.svg",
  14376. extra: 1953 / 1807,
  14377. bottom: 0.057
  14378. }
  14379. },
  14380. },
  14381. [
  14382. {
  14383. name: "Megamacro",
  14384. height: math.unit(14445, "feet"),
  14385. default: true
  14386. },
  14387. ]
  14388. ))
  14389. characterMakers.push(() => makeCharacter(
  14390. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14391. {
  14392. front: {
  14393. height: math.unit(5 + 6 / 12, "feet"),
  14394. weight: math.unit(125, "lb"),
  14395. name: "Front",
  14396. image: {
  14397. source: "./media/characters/roy/front.svg",
  14398. extra: 1,
  14399. bottom: 0.11
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Micro",
  14406. height: math.unit(3, "inches"),
  14407. default: true
  14408. },
  14409. {
  14410. name: "Normal",
  14411. height: math.unit(5 + 6 / 12, "feet")
  14412. },
  14413. {
  14414. name: "Lesser Macro",
  14415. height: math.unit(60, "feet")
  14416. },
  14417. {
  14418. name: "Greater Macro",
  14419. height: math.unit(120, "feet")
  14420. },
  14421. ]
  14422. ))
  14423. characterMakers.push(() => makeCharacter(
  14424. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14425. {
  14426. front: {
  14427. height: math.unit(6, "feet"),
  14428. weight: math.unit(100, "lb"),
  14429. name: "Front",
  14430. image: {
  14431. source: "./media/characters/aevsivs/front.svg",
  14432. extra: 1,
  14433. bottom: 0.03
  14434. }
  14435. },
  14436. back: {
  14437. height: math.unit(6, "feet"),
  14438. weight: math.unit(100, "lb"),
  14439. name: "Back",
  14440. image: {
  14441. source: "./media/characters/aevsivs/back.svg"
  14442. }
  14443. },
  14444. },
  14445. [
  14446. {
  14447. name: "Micro",
  14448. height: math.unit(2, "inches"),
  14449. default: true
  14450. },
  14451. {
  14452. name: "Normal",
  14453. height: math.unit(5, "feet")
  14454. },
  14455. ]
  14456. ))
  14457. characterMakers.push(() => makeCharacter(
  14458. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14459. {
  14460. front: {
  14461. height: math.unit(5 + 7 / 12, "feet"),
  14462. weight: math.unit(159, "lb"),
  14463. name: "Front",
  14464. image: {
  14465. source: "./media/characters/hildegard/front.svg",
  14466. extra: 289 / 269,
  14467. bottom: 7.63 / 297.8
  14468. }
  14469. },
  14470. back: {
  14471. height: math.unit(5 + 7 / 12, "feet"),
  14472. weight: math.unit(159, "lb"),
  14473. name: "Back",
  14474. image: {
  14475. source: "./media/characters/hildegard/back.svg",
  14476. extra: 280 / 260,
  14477. bottom: 2.3 / 282
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(5 + 7 / 12, "feet"),
  14485. default: true
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14491. {
  14492. bernard: {
  14493. height: math.unit(2 + 7 / 12, "feet"),
  14494. weight: math.unit(66, "lb"),
  14495. name: "Bernard",
  14496. rename: true,
  14497. image: {
  14498. source: "./media/characters/bernard-wilder/bernard.svg",
  14499. extra: 192 / 128,
  14500. bottom: 0.05
  14501. }
  14502. },
  14503. wilder: {
  14504. height: math.unit(5 + 8 / 12, "feet"),
  14505. weight: math.unit(143, "lb"),
  14506. name: "Wilder",
  14507. rename: true,
  14508. image: {
  14509. source: "./media/characters/bernard-wilder/wilder.svg",
  14510. extra: 361 / 312,
  14511. bottom: 0.02
  14512. }
  14513. },
  14514. },
  14515. [
  14516. {
  14517. name: "Normal",
  14518. height: math.unit(2 + 7 / 12, "feet"),
  14519. default: true
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14525. {
  14526. anthro: {
  14527. height: math.unit(6 + 1 / 12, "feet"),
  14528. weight: math.unit(155, "lb"),
  14529. name: "Anthro",
  14530. image: {
  14531. source: "./media/characters/hearth/anthro.svg",
  14532. extra: 260 / 250,
  14533. bottom: 0.02
  14534. }
  14535. },
  14536. feral: {
  14537. height: math.unit(3.78, "feet"),
  14538. weight: math.unit(35, "kg"),
  14539. name: "Feral",
  14540. image: {
  14541. source: "./media/characters/hearth/feral.svg",
  14542. extra: 153 / 135,
  14543. bottom: 0.03
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Normal",
  14550. height: math.unit(6 + 1 / 12, "feet"),
  14551. default: true
  14552. },
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(6, "feet"),
  14560. weight: math.unit(182, "lb"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/ingrid/front.svg",
  14564. extra: 294 / 268,
  14565. bottom: 0.027
  14566. }
  14567. },
  14568. },
  14569. [
  14570. {
  14571. name: "Normal",
  14572. height: math.unit(6, "feet"),
  14573. default: true
  14574. },
  14575. ]
  14576. ))
  14577. characterMakers.push(() => makeCharacter(
  14578. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14579. {
  14580. eevee: {
  14581. height: math.unit(2 + 10 / 12, "feet"),
  14582. weight: math.unit(86, "lb"),
  14583. name: "Malgam",
  14584. image: {
  14585. source: "./media/characters/malgam/eevee.svg",
  14586. extra: 218 / 180,
  14587. bottom: 0.2
  14588. }
  14589. },
  14590. sylveon: {
  14591. height: math.unit(4, "feet"),
  14592. weight: math.unit(101, "lb"),
  14593. name: "Future Malgam",
  14594. rename: true,
  14595. image: {
  14596. source: "./media/characters/malgam/sylveon.svg",
  14597. extra: 371 / 325,
  14598. bottom: 0.015
  14599. }
  14600. },
  14601. gigantamax: {
  14602. height: math.unit(50, "feet"),
  14603. name: "Gigantamax Malgam",
  14604. rename: true,
  14605. image: {
  14606. source: "./media/characters/malgam/gigantamax.svg"
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(2 + 10 / 12, "feet"),
  14614. default: true
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(5 + 11 / 12, "feet"),
  14623. weight: math.unit(188, "lb"),
  14624. name: "Front",
  14625. image: {
  14626. source: "./media/characters/fleur/front.svg",
  14627. extra: 309 / 283,
  14628. bottom: 0.007
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(5 + 11 / 12, "feet"),
  14636. default: true
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14642. {
  14643. front: {
  14644. height: math.unit(5 + 4 / 12, "feet"),
  14645. weight: math.unit(122, "lb"),
  14646. name: "Front",
  14647. image: {
  14648. source: "./media/characters/jude/front.svg",
  14649. extra: 288 / 273,
  14650. bottom: 0.03
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(5 + 4 / 12, "feet"),
  14658. default: true
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14664. {
  14665. front: {
  14666. height: math.unit(5 + 11 / 12, "feet"),
  14667. weight: math.unit(190, "lb"),
  14668. name: "Front",
  14669. image: {
  14670. source: "./media/characters/seara/front.svg",
  14671. extra: 1,
  14672. bottom: 0.05
  14673. }
  14674. },
  14675. },
  14676. [
  14677. {
  14678. name: "Normal",
  14679. height: math.unit(5 + 11 / 12, "feet"),
  14680. default: true
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14686. {
  14687. front: {
  14688. height: math.unit(16 + 5 / 12, "feet"),
  14689. weight: math.unit(524, "lb"),
  14690. name: "Front",
  14691. image: {
  14692. source: "./media/characters/caspian/front.svg",
  14693. extra: 1,
  14694. bottom: 0.04
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(16 + 5 / 12, "feet"),
  14702. default: true
  14703. },
  14704. ]
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14708. {
  14709. front: {
  14710. height: math.unit(5 + 7 / 12, "feet"),
  14711. weight: math.unit(170, "lb"),
  14712. name: "Front",
  14713. image: {
  14714. source: "./media/characters/mika/front.svg",
  14715. extra: 1,
  14716. bottom: 0.016
  14717. }
  14718. },
  14719. },
  14720. [
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(5 + 7 / 12, "feet"),
  14724. default: true
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(6 + 2 / 12, "feet"),
  14733. weight: math.unit(268, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/sol/front.svg",
  14737. extra: 247 / 231,
  14738. bottom: 0.05
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(6 + 2 / 12, "feet"),
  14746. default: true
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14752. {
  14753. buizel: {
  14754. height: math.unit(2 + 5 / 12, "feet"),
  14755. weight: math.unit(87, "lb"),
  14756. name: "Buizel",
  14757. image: {
  14758. source: "./media/characters/umiko/buizel.svg",
  14759. extra: 172 / 157,
  14760. bottom: 0.01
  14761. }
  14762. },
  14763. floatzel: {
  14764. height: math.unit(5 + 9 / 12, "feet"),
  14765. weight: math.unit(250, "lb"),
  14766. name: "Floatzel",
  14767. image: {
  14768. source: "./media/characters/umiko/floatzel.svg",
  14769. extra: 262 / 248
  14770. }
  14771. },
  14772. },
  14773. [
  14774. {
  14775. name: "Normal",
  14776. height: math.unit(2 + 5 / 12, "feet"),
  14777. default: true
  14778. },
  14779. ]
  14780. ))
  14781. characterMakers.push(() => makeCharacter(
  14782. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14783. {
  14784. front: {
  14785. height: math.unit(6 + 2 / 12, "feet"),
  14786. weight: math.unit(146, "lb"),
  14787. name: "Front",
  14788. image: {
  14789. source: "./media/characters/iliac/front.svg",
  14790. extra: 389 / 365,
  14791. bottom: 0.035
  14792. }
  14793. },
  14794. },
  14795. [
  14796. {
  14797. name: "Normal",
  14798. height: math.unit(6 + 2 / 12, "feet"),
  14799. default: true
  14800. },
  14801. ]
  14802. ))
  14803. characterMakers.push(() => makeCharacter(
  14804. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14805. {
  14806. front: {
  14807. height: math.unit(6, "feet"),
  14808. weight: math.unit(170, "lb"),
  14809. name: "Front",
  14810. image: {
  14811. source: "./media/characters/topaz/front.svg",
  14812. extra: 317 / 303,
  14813. bottom: 0.055
  14814. }
  14815. },
  14816. },
  14817. [
  14818. {
  14819. name: "Normal",
  14820. height: math.unit(6, "feet"),
  14821. default: true
  14822. },
  14823. ]
  14824. ))
  14825. characterMakers.push(() => makeCharacter(
  14826. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14827. {
  14828. front: {
  14829. height: math.unit(5 + 11 / 12, "feet"),
  14830. weight: math.unit(144, "lb"),
  14831. name: "Front",
  14832. image: {
  14833. source: "./media/characters/gabriel/front.svg",
  14834. extra: 285 / 262,
  14835. bottom: 0.004
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(5 + 11 / 12, "feet"),
  14843. default: true
  14844. },
  14845. ]
  14846. ))
  14847. characterMakers.push(() => makeCharacter(
  14848. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14849. {
  14850. side: {
  14851. height: math.unit(6 + 5 / 12, "feet"),
  14852. weight: math.unit(300, "lb"),
  14853. name: "Side",
  14854. image: {
  14855. source: "./media/characters/tempest-suicune/side.svg",
  14856. extra: 195 / 154,
  14857. bottom: 0.04
  14858. }
  14859. },
  14860. },
  14861. [
  14862. {
  14863. name: "Normal",
  14864. height: math.unit(6 + 5 / 12, "feet"),
  14865. default: true
  14866. },
  14867. ]
  14868. ))
  14869. characterMakers.push(() => makeCharacter(
  14870. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14871. {
  14872. front: {
  14873. height: math.unit(7 + 2 / 12, "feet"),
  14874. weight: math.unit(322, "lb"),
  14875. name: "Front",
  14876. image: {
  14877. source: "./media/characters/vulcan/front.svg",
  14878. extra: 154 / 147,
  14879. bottom: 0.04
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Normal",
  14886. height: math.unit(7 + 2 / 12, "feet"),
  14887. default: true
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14893. {
  14894. front: {
  14895. height: math.unit(5 + 10 / 12, "feet"),
  14896. weight: math.unit(264, "lb"),
  14897. name: "Front",
  14898. image: {
  14899. source: "./media/characters/gault/front.svg",
  14900. extra: 161 / 140,
  14901. bottom: 0.028
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(5 + 10 / 12, "feet"),
  14909. default: true
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14915. {
  14916. front: {
  14917. height: math.unit(6, "feet"),
  14918. weight: math.unit(150, "lb"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/shard/front.svg",
  14922. extra: 273 / 238,
  14923. bottom: 0.02
  14924. }
  14925. },
  14926. },
  14927. [
  14928. {
  14929. name: "Normal",
  14930. height: math.unit(3 + 6 / 12, "feet"),
  14931. default: true
  14932. },
  14933. ]
  14934. ))
  14935. characterMakers.push(() => makeCharacter(
  14936. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14937. {
  14938. front: {
  14939. height: math.unit(5 + 11 / 12, "feet"),
  14940. weight: math.unit(146, "lb"),
  14941. name: "Front",
  14942. image: {
  14943. source: "./media/characters/ashe/front.svg",
  14944. extra: 400 / 373,
  14945. bottom: 0.01
  14946. }
  14947. },
  14948. },
  14949. [
  14950. {
  14951. name: "Normal",
  14952. height: math.unit(5 + 11 / 12, "feet"),
  14953. default: true
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(5 + 5 / 12, "feet"),
  14962. weight: math.unit(135, "lb"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/beatrix/front.svg",
  14966. extra: 392 / 379,
  14967. bottom: 0.01
  14968. }
  14969. },
  14970. },
  14971. [
  14972. {
  14973. name: "Normal",
  14974. height: math.unit(6, "feet"),
  14975. default: true
  14976. },
  14977. ]
  14978. ))
  14979. characterMakers.push(() => makeCharacter(
  14980. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14981. {
  14982. front: {
  14983. height: math.unit(6, "feet"),
  14984. weight: math.unit(150, "lb"),
  14985. name: "Front",
  14986. image: {
  14987. source: "./media/characters/ignatius/front.svg",
  14988. extra: 245 / 222,
  14989. bottom: 0.01
  14990. }
  14991. },
  14992. },
  14993. [
  14994. {
  14995. name: "Normal",
  14996. height: math.unit(5 + 5 / 12, "feet"),
  14997. default: true
  14998. },
  14999. ]
  15000. ))
  15001. characterMakers.push(() => makeCharacter(
  15002. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15003. {
  15004. front: {
  15005. height: math.unit(6 + 2 / 12, "feet"),
  15006. weight: math.unit(138, "lb"),
  15007. name: "Front",
  15008. image: {
  15009. source: "./media/characters/mei-li/front.svg",
  15010. extra: 237 / 229,
  15011. bottom: 0.03
  15012. }
  15013. },
  15014. },
  15015. [
  15016. {
  15017. name: "Normal",
  15018. height: math.unit(6 + 2 / 12, "feet"),
  15019. default: true
  15020. },
  15021. ]
  15022. ))
  15023. characterMakers.push(() => makeCharacter(
  15024. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15025. {
  15026. front: {
  15027. height: math.unit(2 + 4 / 12, "feet"),
  15028. weight: math.unit(62, "lb"),
  15029. name: "Front",
  15030. image: {
  15031. source: "./media/characters/puru/front.svg",
  15032. extra: 206 / 149,
  15033. bottom: 0.06
  15034. }
  15035. },
  15036. },
  15037. [
  15038. {
  15039. name: "Normal",
  15040. height: math.unit(2 + 4 / 12, "feet"),
  15041. default: true
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15047. {
  15048. anthro: {
  15049. height: math.unit(5 + 8/12, "feet"),
  15050. weight: math.unit(200, "lb"),
  15051. energyNeed: math.unit(2000, "kcal"),
  15052. name: "Anthro",
  15053. image: {
  15054. source: "./media/characters/kee/anthro.svg",
  15055. extra: 3251/3184,
  15056. bottom: 250/3501
  15057. }
  15058. },
  15059. taur: {
  15060. height: math.unit(11, "feet"),
  15061. weight: math.unit(500, "lb"),
  15062. energyNeed: math.unit(5000, "kcal"),
  15063. name: "Taur",
  15064. image: {
  15065. source: "./media/characters/kee/taur.svg",
  15066. extra: 1362/1320,
  15067. bottom: 83/1445
  15068. }
  15069. },
  15070. },
  15071. [
  15072. {
  15073. name: "Normal",
  15074. height: math.unit(5 + 8/12, "feet"),
  15075. default: true
  15076. },
  15077. {
  15078. name: "Macro",
  15079. height: math.unit(35, "feet")
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15085. {
  15086. anthro: {
  15087. height: math.unit(7, "feet"),
  15088. weight: math.unit(190, "lb"),
  15089. name: "Anthro",
  15090. image: {
  15091. source: "./media/characters/cobalt-dracha/anthro.svg",
  15092. extra: 231 / 225,
  15093. bottom: 0.04
  15094. }
  15095. },
  15096. feral: {
  15097. height: math.unit(9 + 7 / 12, "feet"),
  15098. weight: math.unit(294, "lb"),
  15099. name: "Feral",
  15100. image: {
  15101. source: "./media/characters/cobalt-dracha/feral.svg",
  15102. extra: 692 / 633,
  15103. bottom: 0.05
  15104. }
  15105. },
  15106. },
  15107. [
  15108. {
  15109. name: "Normal",
  15110. height: math.unit(7, "feet"),
  15111. default: true
  15112. },
  15113. ]
  15114. ))
  15115. characterMakers.push(() => makeCharacter(
  15116. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15117. {
  15118. fallen: {
  15119. height: math.unit(11 + 8 / 12, "feet"),
  15120. weight: math.unit(485, "lb"),
  15121. name: "Java (Fallen)",
  15122. rename: true,
  15123. image: {
  15124. source: "./media/characters/java/fallen.svg",
  15125. extra: 226 / 208,
  15126. bottom: 0.005
  15127. }
  15128. },
  15129. godkin: {
  15130. height: math.unit(10 + 6 / 12, "feet"),
  15131. weight: math.unit(328, "lb"),
  15132. name: "Java (Godkin)",
  15133. rename: true,
  15134. image: {
  15135. source: "./media/characters/java/godkin.svg",
  15136. extra: 270 / 262,
  15137. bottom: 0.02
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(11 + 8 / 12, "feet"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15151. {
  15152. front: {
  15153. height: math.unit(7 + 8 / 12, "feet"),
  15154. weight: math.unit(320, "lb"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/skoll/front.svg",
  15158. extra: 232 / 220,
  15159. bottom: 0.02
  15160. }
  15161. },
  15162. },
  15163. [
  15164. {
  15165. name: "Normal",
  15166. height: math.unit(7 + 8 / 12, "feet"),
  15167. default: true
  15168. },
  15169. ]
  15170. ))
  15171. characterMakers.push(() => makeCharacter(
  15172. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15173. {
  15174. front: {
  15175. height: math.unit(5 + 9 / 12, "feet"),
  15176. weight: math.unit(170, "lb"),
  15177. name: "Front",
  15178. image: {
  15179. source: "./media/characters/purna/front.svg",
  15180. extra: 239 / 229,
  15181. bottom: 0.01
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(5 + 9 / 12, "feet"),
  15189. default: true
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15195. {
  15196. front: {
  15197. height: math.unit(5 + 9 / 12, "feet"),
  15198. weight: math.unit(142, "lb"),
  15199. name: "Front",
  15200. image: {
  15201. source: "./media/characters/kuva/front.svg",
  15202. extra: 281 / 271,
  15203. bottom: 0.006
  15204. }
  15205. },
  15206. },
  15207. [
  15208. {
  15209. name: "Normal",
  15210. height: math.unit(5 + 9 / 12, "feet"),
  15211. default: true
  15212. },
  15213. ]
  15214. ))
  15215. characterMakers.push(() => makeCharacter(
  15216. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15217. {
  15218. anthro: {
  15219. height: math.unit(9 + 2 / 12, "feet"),
  15220. weight: math.unit(270, "lb"),
  15221. name: "Anthro",
  15222. image: {
  15223. source: "./media/characters/embra/anthro.svg",
  15224. extra: 200 / 187,
  15225. bottom: 0.02
  15226. }
  15227. },
  15228. feral: {
  15229. height: math.unit(18 + 8 / 12, "feet"),
  15230. weight: math.unit(576, "lb"),
  15231. name: "Feral",
  15232. image: {
  15233. source: "./media/characters/embra/feral.svg",
  15234. extra: 152 / 137,
  15235. bottom: 0.037
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Normal",
  15242. height: math.unit(9 + 2 / 12, "feet"),
  15243. default: true
  15244. },
  15245. ]
  15246. ))
  15247. characterMakers.push(() => makeCharacter(
  15248. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15249. {
  15250. anthro: {
  15251. height: math.unit(10 + 9 / 12, "feet"),
  15252. weight: math.unit(224, "lb"),
  15253. name: "Anthro",
  15254. image: {
  15255. source: "./media/characters/grottos/anthro.svg",
  15256. extra: 350 / 332,
  15257. bottom: 0.045
  15258. }
  15259. },
  15260. feral: {
  15261. height: math.unit(20 + 7 / 12, "feet"),
  15262. weight: math.unit(629, "lb"),
  15263. name: "Feral",
  15264. image: {
  15265. source: "./media/characters/grottos/feral.svg",
  15266. extra: 207 / 190,
  15267. bottom: 0.05
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(10 + 9 / 12, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15281. {
  15282. anthro: {
  15283. height: math.unit(9 + 6 / 12, "feet"),
  15284. weight: math.unit(298, "lb"),
  15285. name: "Anthro",
  15286. image: {
  15287. source: "./media/characters/frifna/anthro.svg",
  15288. extra: 282 / 269,
  15289. bottom: 0.015
  15290. }
  15291. },
  15292. feral: {
  15293. height: math.unit(16 + 2 / 12, "feet"),
  15294. weight: math.unit(624, "lb"),
  15295. name: "Feral",
  15296. image: {
  15297. source: "./media/characters/frifna/feral.svg"
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(9 + 6 / 12, "feet"),
  15305. default: true
  15306. },
  15307. ]
  15308. ))
  15309. characterMakers.push(() => makeCharacter(
  15310. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15311. {
  15312. front: {
  15313. height: math.unit(6 + 2 / 12, "feet"),
  15314. weight: math.unit(168, "lb"),
  15315. name: "Front",
  15316. image: {
  15317. source: "./media/characters/elise/front.svg",
  15318. extra: 276 / 271
  15319. }
  15320. },
  15321. },
  15322. [
  15323. {
  15324. name: "Normal",
  15325. height: math.unit(6 + 2 / 12, "feet"),
  15326. default: true
  15327. },
  15328. ]
  15329. ))
  15330. characterMakers.push(() => makeCharacter(
  15331. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15332. {
  15333. front: {
  15334. height: math.unit(5 + 10 / 12, "feet"),
  15335. weight: math.unit(210, "lb"),
  15336. name: "Front",
  15337. image: {
  15338. source: "./media/characters/glade/front.svg",
  15339. extra: 258 / 247,
  15340. bottom: 0.008
  15341. }
  15342. },
  15343. },
  15344. [
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(5 + 10 / 12, "feet"),
  15348. default: true
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15354. {
  15355. front: {
  15356. height: math.unit(5 + 10 / 12, "feet"),
  15357. weight: math.unit(129, "lb"),
  15358. name: "Front",
  15359. image: {
  15360. source: "./media/characters/rina/front.svg",
  15361. extra: 266 / 255,
  15362. bottom: 0.005
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Normal",
  15369. height: math.unit(5 + 10 / 12, "feet"),
  15370. default: true
  15371. },
  15372. ]
  15373. ))
  15374. characterMakers.push(() => makeCharacter(
  15375. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15376. {
  15377. front: {
  15378. height: math.unit(6 + 1 / 12, "feet"),
  15379. weight: math.unit(192, "lb"),
  15380. name: "Front",
  15381. image: {
  15382. source: "./media/characters/veronica/front.svg",
  15383. extra: 319 / 309,
  15384. bottom: 0.005
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Normal",
  15391. height: math.unit(6 + 1 / 12, "feet"),
  15392. default: true
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(9 + 3 / 12, "feet"),
  15401. weight: math.unit(1100, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/braxton/front.svg",
  15405. extra: 1057 / 984,
  15406. bottom: 0.05
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Normal",
  15413. height: math.unit(9 + 3 / 12, "feet")
  15414. },
  15415. {
  15416. name: "Giant",
  15417. height: math.unit(300, "feet"),
  15418. default: true
  15419. },
  15420. {
  15421. name: "Macro",
  15422. height: math.unit(700, "feet")
  15423. },
  15424. {
  15425. name: "Megamacro",
  15426. height: math.unit(6000, "feet")
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15432. {
  15433. front: {
  15434. height: math.unit(6 + 7 / 12, "feet"),
  15435. weight: math.unit(150, "lb"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/blue-feyonics/front.svg",
  15439. extra: 1403 / 1306,
  15440. bottom: 0.047
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(6 + 7 / 12, "feet"),
  15448. default: true
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(1.8, "meters"),
  15457. weight: math.unit(60, "kg"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/maxwell/front.svg",
  15461. extra: 2060 / 1873
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Micro",
  15468. height: math.unit(1, "mm")
  15469. },
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(1.8, "meter"),
  15473. default: true
  15474. },
  15475. {
  15476. name: "Macro",
  15477. height: math.unit(30, "meters")
  15478. },
  15479. {
  15480. name: "Megamacro",
  15481. height: math.unit(10, "km")
  15482. },
  15483. ]
  15484. ))
  15485. characterMakers.push(() => makeCharacter(
  15486. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15487. {
  15488. front: {
  15489. height: math.unit(6, "feet"),
  15490. weight: math.unit(150, "lb"),
  15491. name: "Front",
  15492. image: {
  15493. source: "./media/characters/jack/front.svg",
  15494. extra: 1754 / 1640,
  15495. bottom: 0.01
  15496. }
  15497. },
  15498. },
  15499. [
  15500. {
  15501. name: "Normal",
  15502. height: math.unit(80000, "feet"),
  15503. default: true
  15504. },
  15505. {
  15506. name: "Max size",
  15507. height: math.unit(10, "lightyears")
  15508. },
  15509. ]
  15510. ))
  15511. characterMakers.push(() => makeCharacter(
  15512. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15513. {
  15514. upright: {
  15515. height: math.unit(7, "feet"),
  15516. weight: math.unit(170, "lb"),
  15517. name: "Upright",
  15518. image: {
  15519. source: "./media/characters/cafat/upright.svg",
  15520. bottom: 0.01
  15521. }
  15522. },
  15523. uprightFull: {
  15524. height: math.unit(7, "feet"),
  15525. weight: math.unit(170, "lb"),
  15526. name: "Upright (Full)",
  15527. image: {
  15528. source: "./media/characters/cafat/upright-full.svg",
  15529. bottom: 0.01
  15530. }
  15531. },
  15532. side: {
  15533. height: math.unit(5, "feet"),
  15534. weight: math.unit(150, "lb"),
  15535. name: "Side",
  15536. image: {
  15537. source: "./media/characters/cafat/side.svg"
  15538. }
  15539. },
  15540. },
  15541. [
  15542. {
  15543. name: "Small",
  15544. height: math.unit(7, "feet"),
  15545. default: true
  15546. },
  15547. {
  15548. name: "Large",
  15549. height: math.unit(15.5, "feet")
  15550. },
  15551. ]
  15552. ))
  15553. characterMakers.push(() => makeCharacter(
  15554. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15555. {
  15556. front: {
  15557. height: math.unit(6, "feet"),
  15558. weight: math.unit(150, "lb"),
  15559. name: "Front",
  15560. image: {
  15561. source: "./media/characters/verin-raharra/front.svg",
  15562. extra: 5019 / 4835,
  15563. bottom: 0.023
  15564. }
  15565. },
  15566. },
  15567. [
  15568. {
  15569. name: "Normal",
  15570. height: math.unit(7 + 5 / 12, "feet"),
  15571. default: true
  15572. },
  15573. {
  15574. name: "Upsized",
  15575. height: math.unit(20, "feet")
  15576. },
  15577. ]
  15578. ))
  15579. characterMakers.push(() => makeCharacter(
  15580. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15581. {
  15582. front: {
  15583. height: math.unit(7, "feet"),
  15584. weight: math.unit(230, "lb"),
  15585. name: "Front",
  15586. image: {
  15587. source: "./media/characters/nakata/front.svg",
  15588. extra: 1.005,
  15589. bottom: 0.01
  15590. }
  15591. },
  15592. },
  15593. [
  15594. {
  15595. name: "Normal",
  15596. height: math.unit(7, "feet"),
  15597. default: true
  15598. },
  15599. {
  15600. name: "Big",
  15601. height: math.unit(14, "feet")
  15602. },
  15603. {
  15604. name: "Macro",
  15605. height: math.unit(400, "feet")
  15606. },
  15607. ]
  15608. ))
  15609. characterMakers.push(() => makeCharacter(
  15610. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15611. {
  15612. front: {
  15613. height: math.unit(4.91, "feet"),
  15614. weight: math.unit(100, "lb"),
  15615. name: "Front",
  15616. image: {
  15617. source: "./media/characters/lily/front.svg",
  15618. extra: 1585 / 1415,
  15619. bottom: 0.02
  15620. }
  15621. },
  15622. },
  15623. [
  15624. {
  15625. name: "Normal",
  15626. height: math.unit(4.91, "feet"),
  15627. default: true
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15633. {
  15634. laying: {
  15635. height: math.unit(4 + 4 / 12, "feet"),
  15636. weight: math.unit(600, "lb"),
  15637. name: "Laying",
  15638. image: {
  15639. source: "./media/characters/sheila/laying.svg",
  15640. extra: 1333 / 1265,
  15641. bottom: 0.16
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Normal",
  15648. height: math.unit(4 + 4 / 12, "feet"),
  15649. default: true
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(6, "feet"),
  15658. weight: math.unit(190, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/sax/front.svg",
  15662. extra: 1187 / 973,
  15663. bottom: 0.042
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Micro",
  15670. height: math.unit(4, "inches"),
  15671. default: true
  15672. },
  15673. ]
  15674. ))
  15675. characterMakers.push(() => makeCharacter(
  15676. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15677. {
  15678. front: {
  15679. height: math.unit(6, "feet"),
  15680. weight: math.unit(150, "lb"),
  15681. name: "Front",
  15682. image: {
  15683. source: "./media/characters/pandora/front.svg",
  15684. extra: 2720 / 2556,
  15685. bottom: 0.015
  15686. }
  15687. },
  15688. back: {
  15689. height: math.unit(6, "feet"),
  15690. weight: math.unit(150, "lb"),
  15691. name: "Back",
  15692. image: {
  15693. source: "./media/characters/pandora/back.svg",
  15694. extra: 2720 / 2556,
  15695. bottom: 0.01
  15696. }
  15697. },
  15698. beans: {
  15699. height: math.unit(6 / 8, "feet"),
  15700. name: "Beans",
  15701. image: {
  15702. source: "./media/characters/pandora/beans.svg"
  15703. }
  15704. },
  15705. skirt: {
  15706. height: math.unit(6, "feet"),
  15707. weight: math.unit(150, "lb"),
  15708. name: "Skirt",
  15709. image: {
  15710. source: "./media/characters/pandora/skirt.svg",
  15711. extra: 1622 / 1525,
  15712. bottom: 0.015
  15713. }
  15714. },
  15715. hoodie: {
  15716. height: math.unit(6, "feet"),
  15717. weight: math.unit(150, "lb"),
  15718. name: "Hoodie",
  15719. image: {
  15720. source: "./media/characters/pandora/hoodie.svg",
  15721. extra: 1622 / 1525,
  15722. bottom: 0.015
  15723. }
  15724. },
  15725. casual: {
  15726. height: math.unit(6, "feet"),
  15727. weight: math.unit(150, "lb"),
  15728. name: "Casual",
  15729. image: {
  15730. source: "./media/characters/pandora/casual.svg",
  15731. extra: 1622 / 1525,
  15732. bottom: 0.015
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(6, "feet")
  15740. },
  15741. {
  15742. name: "Big Steppy",
  15743. height: math.unit(1, "km"),
  15744. default: true
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15750. {
  15751. side: {
  15752. height: math.unit(10, "feet"),
  15753. weight: math.unit(800, "kg"),
  15754. name: "Side",
  15755. image: {
  15756. source: "./media/characters/venio-darcony/side.svg",
  15757. extra: 1373 / 1003,
  15758. bottom: 0.037
  15759. }
  15760. },
  15761. front: {
  15762. height: math.unit(19, "feet"),
  15763. weight: math.unit(800, "kg"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/venio-darcony/front.svg"
  15767. }
  15768. },
  15769. back: {
  15770. height: math.unit(19, "feet"),
  15771. weight: math.unit(800, "kg"),
  15772. name: "Back",
  15773. image: {
  15774. source: "./media/characters/venio-darcony/back.svg"
  15775. }
  15776. },
  15777. sideNsfw: {
  15778. height: math.unit(10, "feet"),
  15779. weight: math.unit(800, "kg"),
  15780. name: "Side (NSFW)",
  15781. image: {
  15782. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15783. extra: 1373 / 1003,
  15784. bottom: 0.037
  15785. }
  15786. },
  15787. frontNsfw: {
  15788. height: math.unit(19, "feet"),
  15789. weight: math.unit(800, "kg"),
  15790. name: "Front (NSFW)",
  15791. image: {
  15792. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15793. }
  15794. },
  15795. backNsfw: {
  15796. height: math.unit(19, "feet"),
  15797. weight: math.unit(800, "kg"),
  15798. name: "Back (NSFW)",
  15799. image: {
  15800. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15801. }
  15802. },
  15803. sideArmored: {
  15804. height: math.unit(10, "feet"),
  15805. weight: math.unit(800, "kg"),
  15806. name: "Side (Armored)",
  15807. image: {
  15808. source: "./media/characters/venio-darcony/side-armored.svg",
  15809. extra: 1373 / 1003,
  15810. bottom: 0.037
  15811. }
  15812. },
  15813. frontArmored: {
  15814. height: math.unit(19, "feet"),
  15815. weight: math.unit(900, "kg"),
  15816. name: "Front (Armored)",
  15817. image: {
  15818. source: "./media/characters/venio-darcony/front-armored.svg"
  15819. }
  15820. },
  15821. backArmored: {
  15822. height: math.unit(19, "feet"),
  15823. weight: math.unit(900, "kg"),
  15824. name: "Back (Armored)",
  15825. image: {
  15826. source: "./media/characters/venio-darcony/back-armored.svg"
  15827. }
  15828. },
  15829. sword: {
  15830. height: math.unit(10, "feet"),
  15831. weight: math.unit(50, "lb"),
  15832. name: "Sword",
  15833. image: {
  15834. source: "./media/characters/venio-darcony/sword.svg"
  15835. }
  15836. },
  15837. },
  15838. [
  15839. {
  15840. name: "Normal",
  15841. height: math.unit(10, "feet")
  15842. },
  15843. {
  15844. name: "Macro",
  15845. height: math.unit(130, "feet"),
  15846. default: true
  15847. },
  15848. {
  15849. name: "Macro+",
  15850. height: math.unit(240, "feet")
  15851. },
  15852. ]
  15853. ))
  15854. characterMakers.push(() => makeCharacter(
  15855. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15856. {
  15857. front: {
  15858. height: math.unit(6, "feet"),
  15859. weight: math.unit(150, "lb"),
  15860. name: "Front",
  15861. image: {
  15862. source: "./media/characters/veski/front.svg",
  15863. extra: 1299 / 1225,
  15864. bottom: 0.04
  15865. }
  15866. },
  15867. back: {
  15868. height: math.unit(6, "feet"),
  15869. weight: math.unit(150, "lb"),
  15870. name: "Back",
  15871. image: {
  15872. source: "./media/characters/veski/back.svg",
  15873. extra: 1299 / 1225,
  15874. bottom: 0.008
  15875. }
  15876. },
  15877. maw: {
  15878. height: math.unit(1.5 * 1.21, "feet"),
  15879. name: "Maw",
  15880. image: {
  15881. source: "./media/characters/veski/maw.svg"
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Macro",
  15888. height: math.unit(2, "km"),
  15889. default: true
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(5 + 7 / 12, "feet"),
  15898. name: "Front",
  15899. image: {
  15900. source: "./media/characters/isabelle/front.svg",
  15901. extra: 2130 / 1976,
  15902. bottom: 0.05
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Supermicro",
  15909. height: math.unit(10, "micrometers")
  15910. },
  15911. {
  15912. name: "Micro",
  15913. height: math.unit(1, "inch")
  15914. },
  15915. {
  15916. name: "Tiny",
  15917. height: math.unit(5, "inches")
  15918. },
  15919. {
  15920. name: "Standard",
  15921. height: math.unit(5 + 7 / 12, "inches")
  15922. },
  15923. {
  15924. name: "Macro",
  15925. height: math.unit(80, "meters"),
  15926. default: true
  15927. },
  15928. {
  15929. name: "Megamacro",
  15930. height: math.unit(250, "meters")
  15931. },
  15932. {
  15933. name: "Gigamacro",
  15934. height: math.unit(5, "km")
  15935. },
  15936. {
  15937. name: "Cosmic",
  15938. height: math.unit(2.5e6, "miles")
  15939. },
  15940. ]
  15941. ))
  15942. characterMakers.push(() => makeCharacter(
  15943. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15944. {
  15945. front: {
  15946. height: math.unit(6, "feet"),
  15947. weight: math.unit(150, "lb"),
  15948. name: "Front",
  15949. image: {
  15950. source: "./media/characters/hanzo/front.svg",
  15951. extra: 374 / 344,
  15952. bottom: 0.02
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Normal",
  15959. height: math.unit(8, "feet"),
  15960. default: true
  15961. },
  15962. ]
  15963. ))
  15964. characterMakers.push(() => makeCharacter(
  15965. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15966. {
  15967. front: {
  15968. height: math.unit(7, "feet"),
  15969. weight: math.unit(130, "lb"),
  15970. name: "Front",
  15971. image: {
  15972. source: "./media/characters/anna/front.svg",
  15973. extra: 169 / 145,
  15974. bottom: 0.06
  15975. }
  15976. },
  15977. full: {
  15978. height: math.unit(4.96, "feet"),
  15979. weight: math.unit(220, "lb"),
  15980. name: "Full",
  15981. image: {
  15982. source: "./media/characters/anna/full.svg",
  15983. extra: 138 / 114,
  15984. bottom: 0.15
  15985. }
  15986. },
  15987. tongue: {
  15988. height: math.unit(2.53, "feet"),
  15989. name: "Tongue",
  15990. image: {
  15991. source: "./media/characters/anna/tongue.svg"
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(7, "feet"),
  15999. default: true
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(7, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/ian-corvid/front.svg",
  16012. extra: 150 / 142,
  16013. bottom: 0.02
  16014. }
  16015. },
  16016. back: {
  16017. height: math.unit(7, "feet"),
  16018. weight: math.unit(150, "lb"),
  16019. name: "Back",
  16020. image: {
  16021. source: "./media/characters/ian-corvid/back.svg",
  16022. extra: 150 / 143,
  16023. bottom: 0.01
  16024. }
  16025. },
  16026. stomping: {
  16027. height: math.unit(7, "feet"),
  16028. weight: math.unit(150, "lb"),
  16029. name: "Stomping",
  16030. image: {
  16031. source: "./media/characters/ian-corvid/stomping.svg",
  16032. extra: 76 / 72
  16033. }
  16034. },
  16035. sitting: {
  16036. height: math.unit(7 / 1.8, "feet"),
  16037. weight: math.unit(150, "lb"),
  16038. name: "Sitting",
  16039. image: {
  16040. source: "./media/characters/ian-corvid/sitting.svg",
  16041. extra: 1400 / 1269,
  16042. bottom: 0.15
  16043. }
  16044. },
  16045. },
  16046. [
  16047. {
  16048. name: "Tiny Microw",
  16049. height: math.unit(1, "inch")
  16050. },
  16051. {
  16052. name: "Microw",
  16053. height: math.unit(6, "inches")
  16054. },
  16055. {
  16056. name: "Crow",
  16057. height: math.unit(7 + 1 / 12, "feet"),
  16058. default: true
  16059. },
  16060. {
  16061. name: "Macrow",
  16062. height: math.unit(176, "feet")
  16063. },
  16064. ]
  16065. ))
  16066. characterMakers.push(() => makeCharacter(
  16067. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16068. {
  16069. front: {
  16070. height: math.unit(5 + 7 / 12, "feet"),
  16071. weight: math.unit(147, "lb"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/natalie-kellon/front.svg",
  16075. extra: 1214 / 1141,
  16076. bottom: 0.02
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Micro",
  16083. height: math.unit(1 / 16, "inch")
  16084. },
  16085. {
  16086. name: "Tiny",
  16087. height: math.unit(4, "inches")
  16088. },
  16089. {
  16090. name: "Normal",
  16091. height: math.unit(5 + 7 / 12, "feet"),
  16092. default: true
  16093. },
  16094. {
  16095. name: "Amazon",
  16096. height: math.unit(12, "feet")
  16097. },
  16098. {
  16099. name: "Giantess",
  16100. height: math.unit(160, "meters")
  16101. },
  16102. {
  16103. name: "Titaness",
  16104. height: math.unit(800, "meters")
  16105. },
  16106. ]
  16107. ))
  16108. characterMakers.push(() => makeCharacter(
  16109. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16110. {
  16111. front: {
  16112. height: math.unit(6, "feet"),
  16113. weight: math.unit(150, "lb"),
  16114. name: "Front",
  16115. image: {
  16116. source: "./media/characters/alluria/front.svg",
  16117. extra: 806 / 738,
  16118. bottom: 0.01
  16119. }
  16120. },
  16121. side: {
  16122. height: math.unit(6, "feet"),
  16123. weight: math.unit(150, "lb"),
  16124. name: "Side",
  16125. image: {
  16126. source: "./media/characters/alluria/side.svg",
  16127. extra: 800 / 750,
  16128. }
  16129. },
  16130. back: {
  16131. height: math.unit(6, "feet"),
  16132. weight: math.unit(150, "lb"),
  16133. name: "Back",
  16134. image: {
  16135. source: "./media/characters/alluria/back.svg",
  16136. extra: 806 / 738,
  16137. }
  16138. },
  16139. frontMaid: {
  16140. height: math.unit(6, "feet"),
  16141. weight: math.unit(150, "lb"),
  16142. name: "Front (Maid)",
  16143. image: {
  16144. source: "./media/characters/alluria/front-maid.svg",
  16145. extra: 806 / 738,
  16146. bottom: 0.01
  16147. }
  16148. },
  16149. sideMaid: {
  16150. height: math.unit(6, "feet"),
  16151. weight: math.unit(150, "lb"),
  16152. name: "Side (Maid)",
  16153. image: {
  16154. source: "./media/characters/alluria/side-maid.svg",
  16155. extra: 800 / 750,
  16156. bottom: 0.005
  16157. }
  16158. },
  16159. backMaid: {
  16160. height: math.unit(6, "feet"),
  16161. weight: math.unit(150, "lb"),
  16162. name: "Back (Maid)",
  16163. image: {
  16164. source: "./media/characters/alluria/back-maid.svg",
  16165. extra: 806 / 738,
  16166. }
  16167. },
  16168. },
  16169. [
  16170. {
  16171. name: "Micro",
  16172. height: math.unit(6, "inches"),
  16173. default: true
  16174. },
  16175. ]
  16176. ))
  16177. characterMakers.push(() => makeCharacter(
  16178. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16179. {
  16180. front: {
  16181. height: math.unit(6, "feet"),
  16182. weight: math.unit(150, "lb"),
  16183. name: "Front",
  16184. image: {
  16185. source: "./media/characters/kyle/front.svg",
  16186. extra: 1069 / 962,
  16187. bottom: 77.228 / 1727.45
  16188. }
  16189. },
  16190. },
  16191. [
  16192. {
  16193. name: "Macro",
  16194. height: math.unit(150, "feet"),
  16195. default: true
  16196. },
  16197. ]
  16198. ))
  16199. characterMakers.push(() => makeCharacter(
  16200. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16201. {
  16202. front: {
  16203. height: math.unit(6, "feet"),
  16204. weight: math.unit(300, "lb"),
  16205. name: "Front",
  16206. image: {
  16207. source: "./media/characters/duncan/front.svg",
  16208. extra: 1650 / 1482,
  16209. bottom: 0.05
  16210. }
  16211. },
  16212. },
  16213. [
  16214. {
  16215. name: "Macro",
  16216. height: math.unit(100, "feet"),
  16217. default: true
  16218. },
  16219. ]
  16220. ))
  16221. characterMakers.push(() => makeCharacter(
  16222. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16223. {
  16224. front: {
  16225. height: math.unit(5 + 4 / 12, "feet"),
  16226. weight: math.unit(220, "lb"),
  16227. name: "Front",
  16228. image: {
  16229. source: "./media/characters/memory/front.svg",
  16230. extra: 3641 / 3545,
  16231. bottom: 0.03
  16232. }
  16233. },
  16234. back: {
  16235. height: math.unit(5 + 4 / 12, "feet"),
  16236. weight: math.unit(220, "lb"),
  16237. name: "Back",
  16238. image: {
  16239. source: "./media/characters/memory/back.svg",
  16240. extra: 3641 / 3545,
  16241. bottom: 0.025
  16242. }
  16243. },
  16244. frontSkirt: {
  16245. height: math.unit(5 + 4 / 12, "feet"),
  16246. weight: math.unit(220, "lb"),
  16247. name: "Front (Skirt)",
  16248. image: {
  16249. source: "./media/characters/memory/front-skirt.svg",
  16250. extra: 3641 / 3545,
  16251. bottom: 0.03
  16252. }
  16253. },
  16254. frontDress: {
  16255. height: math.unit(5 + 4 / 12, "feet"),
  16256. weight: math.unit(220, "lb"),
  16257. name: "Front (Dress)",
  16258. image: {
  16259. source: "./media/characters/memory/front-dress.svg",
  16260. extra: 3641 / 3545,
  16261. bottom: 0.03
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Micro",
  16268. height: math.unit(6, "inches"),
  16269. default: true
  16270. },
  16271. {
  16272. name: "Normal",
  16273. height: math.unit(5 + 4 / 12, "feet")
  16274. },
  16275. ]
  16276. ))
  16277. characterMakers.push(() => makeCharacter(
  16278. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16279. {
  16280. front: {
  16281. height: math.unit(4 + 11 / 12, "feet"),
  16282. weight: math.unit(100, "lb"),
  16283. name: "Front",
  16284. image: {
  16285. source: "./media/characters/luno/front.svg",
  16286. extra: 1535 / 1487,
  16287. bottom: 0.03
  16288. }
  16289. },
  16290. },
  16291. [
  16292. {
  16293. name: "Micro",
  16294. height: math.unit(3, "inches")
  16295. },
  16296. {
  16297. name: "Normal",
  16298. height: math.unit(4 + 11 / 12, "feet"),
  16299. default: true
  16300. },
  16301. {
  16302. name: "Macro",
  16303. height: math.unit(300, "feet")
  16304. },
  16305. {
  16306. name: "Megamacro",
  16307. height: math.unit(700, "miles")
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16313. {
  16314. front: {
  16315. height: math.unit(6 + 2 / 12, "feet"),
  16316. weight: math.unit(170, "lb"),
  16317. name: "Front",
  16318. image: {
  16319. source: "./media/characters/jamesy/front.svg",
  16320. extra: 440 / 382,
  16321. bottom: 0.005
  16322. }
  16323. },
  16324. },
  16325. [
  16326. {
  16327. name: "Micro",
  16328. height: math.unit(3, "inches")
  16329. },
  16330. {
  16331. name: "Normal",
  16332. height: math.unit(6 + 2 / 12, "feet"),
  16333. default: true
  16334. },
  16335. {
  16336. name: "Macro",
  16337. height: math.unit(300, "feet")
  16338. },
  16339. {
  16340. name: "Megamacro",
  16341. height: math.unit(700, "miles")
  16342. },
  16343. ]
  16344. ))
  16345. characterMakers.push(() => makeCharacter(
  16346. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16347. {
  16348. front: {
  16349. height: math.unit(6, "feet"),
  16350. weight: math.unit(160, "lb"),
  16351. name: "Front",
  16352. image: {
  16353. source: "./media/characters/mark/front.svg",
  16354. extra: 3300 / 3100,
  16355. bottom: 136.42 / 3440.47
  16356. }
  16357. },
  16358. },
  16359. [
  16360. {
  16361. name: "Macro",
  16362. height: math.unit(120, "meters")
  16363. },
  16364. {
  16365. name: "Bigger Macro",
  16366. height: math.unit(350, "meters")
  16367. },
  16368. {
  16369. name: "Megamacro",
  16370. height: math.unit(8, "km"),
  16371. default: true
  16372. },
  16373. {
  16374. name: "Continental",
  16375. height: math.unit(4550, "km")
  16376. },
  16377. {
  16378. name: "Planetary",
  16379. height: math.unit(65000, "km")
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16385. {
  16386. front: {
  16387. height: math.unit(6, "feet"),
  16388. weight: math.unit(400, "lb"),
  16389. name: "Front",
  16390. image: {
  16391. source: "./media/characters/mac/front.svg",
  16392. extra: 1048 / 987.7,
  16393. bottom: 60 / 1107.6,
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Macro",
  16400. height: math.unit(500, "feet"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(5 + 2 / 12, "feet"),
  16410. weight: math.unit(190, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/bari/front.svg",
  16414. extra: 3156 / 2880,
  16415. bottom: 0.03
  16416. }
  16417. },
  16418. back: {
  16419. height: math.unit(5 + 2 / 12, "feet"),
  16420. weight: math.unit(190, "lb"),
  16421. name: "Back",
  16422. image: {
  16423. source: "./media/characters/bari/back.svg",
  16424. extra: 3260 / 2834,
  16425. bottom: 0.025
  16426. }
  16427. },
  16428. frontPlush: {
  16429. height: math.unit(5 + 2 / 12, "feet"),
  16430. weight: math.unit(190, "lb"),
  16431. name: "Front (Plush)",
  16432. image: {
  16433. source: "./media/characters/bari/front-plush.svg",
  16434. extra: 1112 / 1061,
  16435. bottom: 0.002
  16436. }
  16437. },
  16438. },
  16439. [
  16440. {
  16441. name: "Micro",
  16442. height: math.unit(3, "inches")
  16443. },
  16444. {
  16445. name: "Normal",
  16446. height: math.unit(5 + 2 / 12, "feet"),
  16447. default: true
  16448. },
  16449. {
  16450. name: "Macro",
  16451. height: math.unit(20, "feet")
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16457. {
  16458. front: {
  16459. height: math.unit(6 + 1 / 12, "feet"),
  16460. weight: math.unit(275, "lb"),
  16461. name: "Front",
  16462. image: {
  16463. source: "./media/characters/hunter-misha-raven/front.svg"
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Mortal",
  16470. height: math.unit(6 + 1 / 12, "feet")
  16471. },
  16472. {
  16473. name: "Divine",
  16474. height: math.unit(1.12134e34, "parsecs"),
  16475. default: true
  16476. },
  16477. ]
  16478. ))
  16479. characterMakers.push(() => makeCharacter(
  16480. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16481. {
  16482. front: {
  16483. height: math.unit(6 + 3 / 12, "feet"),
  16484. weight: math.unit(220, "lb"),
  16485. name: "Front",
  16486. image: {
  16487. source: "./media/characters/max-calore/front.svg",
  16488. extra: 1700 / 1648,
  16489. bottom: 0.01
  16490. }
  16491. },
  16492. back: {
  16493. height: math.unit(6 + 3 / 12, "feet"),
  16494. weight: math.unit(220, "lb"),
  16495. name: "Back",
  16496. image: {
  16497. source: "./media/characters/max-calore/back.svg",
  16498. extra: 1700 / 1648,
  16499. bottom: 0.01
  16500. }
  16501. },
  16502. },
  16503. [
  16504. {
  16505. name: "Normal",
  16506. height: math.unit(6 + 3 / 12, "feet"),
  16507. default: true
  16508. },
  16509. ]
  16510. ))
  16511. characterMakers.push(() => makeCharacter(
  16512. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16513. {
  16514. side: {
  16515. height: math.unit(2 + 8 / 12, "feet"),
  16516. weight: math.unit(99, "lb"),
  16517. name: "Side",
  16518. image: {
  16519. source: "./media/characters/aspen/side.svg",
  16520. extra: 152 / 138,
  16521. bottom: 0.032
  16522. }
  16523. },
  16524. },
  16525. [
  16526. {
  16527. name: "Normal",
  16528. height: math.unit(2 + 8 / 12, "feet"),
  16529. default: true
  16530. },
  16531. ]
  16532. ))
  16533. characterMakers.push(() => makeCharacter(
  16534. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16535. {
  16536. side: {
  16537. height: math.unit(3 + 2 / 12, "feet"),
  16538. weight: math.unit(224, "lb"),
  16539. name: "Side",
  16540. image: {
  16541. source: "./media/characters/sheila-feral-wolf/side.svg",
  16542. extra: 179 / 166,
  16543. bottom: 0.03
  16544. }
  16545. },
  16546. },
  16547. [
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(3 + 2 / 12, "feet"),
  16551. default: true
  16552. },
  16553. ]
  16554. ))
  16555. characterMakers.push(() => makeCharacter(
  16556. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16557. {
  16558. side: {
  16559. height: math.unit(1 + 9 / 12, "feet"),
  16560. weight: math.unit(38, "lb"),
  16561. name: "Side",
  16562. image: {
  16563. source: "./media/characters/michelle/side.svg",
  16564. extra: 147 / 136.7,
  16565. bottom: 0.03
  16566. }
  16567. },
  16568. },
  16569. [
  16570. {
  16571. name: "Normal",
  16572. height: math.unit(1 + 9 / 12, "feet"),
  16573. default: true
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16579. {
  16580. front: {
  16581. height: math.unit(1 + 1 / 12, "feet"),
  16582. weight: math.unit(18, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/nino/front.svg"
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(1 + 1 / 12, "feet"),
  16593. default: true
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(1, "feet"),
  16602. weight: math.unit(16, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/viola/front.svg"
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(1, "feet"),
  16613. default: true
  16614. },
  16615. ]
  16616. ))
  16617. characterMakers.push(() => makeCharacter(
  16618. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16619. {
  16620. front: {
  16621. height: math.unit(6 + 5 / 12, "feet"),
  16622. weight: math.unit(580, "lb"),
  16623. name: "Front",
  16624. image: {
  16625. source: "./media/characters/atlas/front.svg",
  16626. extra: 298.5 / 290,
  16627. bottom: 0.015
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Normal",
  16634. height: math.unit(6 + 5 / 12, "feet"),
  16635. default: true
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16641. {
  16642. side: {
  16643. height: math.unit(1 + 10 / 12, "feet"),
  16644. weight: math.unit(25, "lb"),
  16645. name: "Side",
  16646. image: {
  16647. source: "./media/characters/davy/side.svg",
  16648. extra: 200 / 170,
  16649. bottom: 0.01
  16650. }
  16651. },
  16652. },
  16653. [
  16654. {
  16655. name: "Normal",
  16656. height: math.unit(1 + 10 / 12, "feet"),
  16657. default: true
  16658. },
  16659. ]
  16660. ))
  16661. characterMakers.push(() => makeCharacter(
  16662. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16663. {
  16664. side: {
  16665. height: math.unit(4 + 8 / 12, "feet"),
  16666. weight: math.unit(166, "lb"),
  16667. name: "Side",
  16668. image: {
  16669. source: "./media/characters/fiona/side.svg",
  16670. extra: 232 / 220,
  16671. bottom: 0.03
  16672. }
  16673. },
  16674. },
  16675. [
  16676. {
  16677. name: "Normal",
  16678. height: math.unit(4 + 8 / 12, "feet"),
  16679. default: true
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16685. {
  16686. front: {
  16687. height: math.unit(2, "feet"),
  16688. weight: math.unit(62, "lb"),
  16689. name: "Front",
  16690. image: {
  16691. source: "./media/characters/lyla/front.svg",
  16692. bottom: 0.1
  16693. }
  16694. },
  16695. },
  16696. [
  16697. {
  16698. name: "Normal",
  16699. height: math.unit(2, "feet"),
  16700. default: true
  16701. },
  16702. ]
  16703. ))
  16704. characterMakers.push(() => makeCharacter(
  16705. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16706. {
  16707. side: {
  16708. height: math.unit(1.8, "feet"),
  16709. weight: math.unit(44, "lb"),
  16710. name: "Side",
  16711. image: {
  16712. source: "./media/characters/perseus/side.svg",
  16713. bottom: 0.21
  16714. }
  16715. },
  16716. },
  16717. [
  16718. {
  16719. name: "Normal",
  16720. height: math.unit(1.8, "feet"),
  16721. default: true
  16722. },
  16723. ]
  16724. ))
  16725. characterMakers.push(() => makeCharacter(
  16726. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16727. {
  16728. side: {
  16729. height: math.unit(4 + 2 / 12, "feet"),
  16730. weight: math.unit(20, "lb"),
  16731. name: "Side",
  16732. image: {
  16733. source: "./media/characters/remus/side.svg"
  16734. }
  16735. },
  16736. },
  16737. [
  16738. {
  16739. name: "Normal",
  16740. height: math.unit(4 + 2 / 12, "feet"),
  16741. default: true
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16747. {
  16748. front: {
  16749. height: math.unit(4 + 11 / 12, "feet"),
  16750. weight: math.unit(114, "lb"),
  16751. name: "Front",
  16752. image: {
  16753. source: "./media/characters/raf/front.svg",
  16754. bottom: 20.5 / 1863
  16755. }
  16756. },
  16757. side: {
  16758. height: math.unit(4 + 11 / 12, "feet"),
  16759. weight: math.unit(114, "lb"),
  16760. name: "Side",
  16761. image: {
  16762. source: "./media/characters/raf/side.svg",
  16763. bottom: 22 / 1822
  16764. }
  16765. },
  16766. },
  16767. [
  16768. {
  16769. name: "Micro",
  16770. height: math.unit(2, "inches")
  16771. },
  16772. {
  16773. name: "Normal",
  16774. height: math.unit(4 + 11 / 12, "feet"),
  16775. default: true
  16776. },
  16777. {
  16778. name: "Macro",
  16779. height: math.unit(70, "feet")
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(1.5, "meters"),
  16788. weight: math.unit(68, "kg"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/liam-einarr/front.svg",
  16792. extra: 2822 / 2666
  16793. }
  16794. },
  16795. back: {
  16796. height: math.unit(1.5, "meters"),
  16797. weight: math.unit(68, "kg"),
  16798. name: "Back",
  16799. image: {
  16800. source: "./media/characters/liam-einarr/back.svg",
  16801. extra: 2822 / 2666,
  16802. bottom: 0.015
  16803. }
  16804. },
  16805. },
  16806. [
  16807. {
  16808. name: "Normal",
  16809. height: math.unit(1.5, "meters"),
  16810. default: true
  16811. },
  16812. {
  16813. name: "Macro",
  16814. height: math.unit(150, "meters")
  16815. },
  16816. {
  16817. name: "Megamacro",
  16818. height: math.unit(35, "km")
  16819. },
  16820. ]
  16821. ))
  16822. characterMakers.push(() => makeCharacter(
  16823. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16824. {
  16825. front: {
  16826. height: math.unit(6, "feet"),
  16827. weight: math.unit(75, "kg"),
  16828. name: "Front",
  16829. image: {
  16830. source: "./media/characters/linda/front.svg",
  16831. extra: 930 / 874,
  16832. bottom: 0.004
  16833. }
  16834. },
  16835. },
  16836. [
  16837. {
  16838. name: "Normal",
  16839. height: math.unit(6, "feet"),
  16840. default: true
  16841. },
  16842. ]
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16846. {
  16847. front: {
  16848. height: math.unit(6 + 8 / 12, "feet"),
  16849. weight: math.unit(220, "lb"),
  16850. name: "Front",
  16851. image: {
  16852. source: "./media/characters/caylex/front.svg",
  16853. extra: 821 / 772,
  16854. bottom: 0.07
  16855. }
  16856. },
  16857. back: {
  16858. height: math.unit(6 + 8 / 12, "feet"),
  16859. weight: math.unit(220, "lb"),
  16860. name: "Back",
  16861. image: {
  16862. source: "./media/characters/caylex/back.svg",
  16863. extra: 821 / 772,
  16864. bottom: 0.022
  16865. }
  16866. },
  16867. hand: {
  16868. height: math.unit(1.25, "feet"),
  16869. name: "Hand",
  16870. image: {
  16871. source: "./media/characters/caylex/hand.svg"
  16872. }
  16873. },
  16874. foot: {
  16875. height: math.unit(1.6, "feet"),
  16876. name: "Foot",
  16877. image: {
  16878. source: "./media/characters/caylex/foot.svg"
  16879. }
  16880. },
  16881. armored: {
  16882. height: math.unit(6 + 8 / 12, "feet"),
  16883. weight: math.unit(250, "lb"),
  16884. name: "Armored",
  16885. image: {
  16886. source: "./media/characters/caylex/armored.svg",
  16887. extra: 1420 / 1310,
  16888. bottom: 0.045
  16889. }
  16890. },
  16891. },
  16892. [
  16893. {
  16894. name: "Normal",
  16895. height: math.unit(6 + 8 / 12, "feet"),
  16896. default: true
  16897. },
  16898. {
  16899. name: "Normal+",
  16900. height: math.unit(12, "feet")
  16901. },
  16902. ]
  16903. ))
  16904. characterMakers.push(() => makeCharacter(
  16905. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16906. {
  16907. front: {
  16908. height: math.unit(7 + 6 / 12, "feet"),
  16909. weight: math.unit(288, "lb"),
  16910. name: "Front",
  16911. image: {
  16912. source: "./media/characters/alana/front.svg",
  16913. extra: 679 / 653,
  16914. bottom: 22.5 / 701
  16915. }
  16916. },
  16917. },
  16918. [
  16919. {
  16920. name: "Normal",
  16921. height: math.unit(7 + 6 / 12, "feet")
  16922. },
  16923. {
  16924. name: "Large",
  16925. height: math.unit(50, "feet")
  16926. },
  16927. {
  16928. name: "Macro",
  16929. height: math.unit(100, "feet"),
  16930. default: true
  16931. },
  16932. {
  16933. name: "Macro+",
  16934. height: math.unit(200, "feet")
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16940. {
  16941. front: {
  16942. height: math.unit(6 + 1 / 12, "feet"),
  16943. weight: math.unit(210, "lb"),
  16944. name: "Front",
  16945. image: {
  16946. source: "./media/characters/hasani/front.svg",
  16947. extra: 244 / 232,
  16948. bottom: 0.01
  16949. }
  16950. },
  16951. back: {
  16952. height: math.unit(6 + 1 / 12, "feet"),
  16953. weight: math.unit(210, "lb"),
  16954. name: "Back",
  16955. image: {
  16956. source: "./media/characters/hasani/back.svg",
  16957. extra: 244 / 232,
  16958. bottom: 0.01
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Normal",
  16965. height: math.unit(6 + 1 / 12, "feet")
  16966. },
  16967. {
  16968. name: "Macro",
  16969. height: math.unit(175, "feet"),
  16970. default: true
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(1.82, "meters"),
  16979. weight: math.unit(140, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/nita/front.svg",
  16983. extra: 2473 / 2363,
  16984. bottom: 0.01
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(1.82, "m")
  16992. },
  16993. {
  16994. name: "Macro",
  16995. height: math.unit(300, "m")
  16996. },
  16997. {
  16998. name: "Mistake Canon",
  16999. height: math.unit(0.5, "miles"),
  17000. default: true
  17001. },
  17002. {
  17003. name: "Big Mistake",
  17004. height: math.unit(13, "miles")
  17005. },
  17006. {
  17007. name: "Playing God",
  17008. height: math.unit(2450, "miles")
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(4, "feet"),
  17017. weight: math.unit(120, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/shiriko/front.svg",
  17021. extra: 195 / 188
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(4, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17035. {
  17036. front: {
  17037. height: math.unit(6, "feet"),
  17038. name: "front",
  17039. image: {
  17040. source: "./media/characters/deja/front.svg",
  17041. extra: 926 / 840,
  17042. bottom: 0.07
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Planck Length",
  17049. height: math.unit(1.6e-35, "meters")
  17050. },
  17051. {
  17052. name: "Normal",
  17053. height: math.unit(30.48, "meters"),
  17054. default: true
  17055. },
  17056. {
  17057. name: "Universal",
  17058. height: math.unit(8.8e26, "meters")
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17064. {
  17065. side: {
  17066. height: math.unit(8, "feet"),
  17067. weight: math.unit(6300, "lb"),
  17068. name: "Side",
  17069. image: {
  17070. source: "./media/characters/anima/side.svg",
  17071. bottom: 0.035
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(8, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(8, "feet"),
  17088. weight: math.unit(350, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/bianca/front.svg",
  17092. extra: 234 / 225,
  17093. bottom: 0.03
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(8, "feet"),
  17101. default: true
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17107. {
  17108. front: {
  17109. height: math.unit(6, "feet"),
  17110. weight: math.unit(150, "lb"),
  17111. name: "Front",
  17112. image: {
  17113. source: "./media/characters/adinia/front.svg",
  17114. extra: 1845 / 1672,
  17115. bottom: 0.02
  17116. }
  17117. },
  17118. back: {
  17119. height: math.unit(6, "feet"),
  17120. weight: math.unit(150, "lb"),
  17121. name: "Back",
  17122. image: {
  17123. source: "./media/characters/adinia/back.svg",
  17124. extra: 1845 / 1672,
  17125. bottom: 0.002
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(11 + 5 / 12, "feet"),
  17133. default: true
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17139. {
  17140. front: {
  17141. height: math.unit(3, "meters"),
  17142. weight: math.unit(200, "kg"),
  17143. name: "Front",
  17144. image: {
  17145. source: "./media/characters/lykasa/front.svg",
  17146. extra: 1076 / 976,
  17147. bottom: 0.06
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(3, "meters")
  17155. },
  17156. {
  17157. name: "Kaiju",
  17158. height: math.unit(120, "meters"),
  17159. default: true
  17160. },
  17161. {
  17162. name: "Mega Kaiju",
  17163. height: math.unit(240, "km")
  17164. },
  17165. {
  17166. name: "Giga Kaiju",
  17167. height: math.unit(400, "megameters")
  17168. },
  17169. {
  17170. name: "Tera Kaiju",
  17171. height: math.unit(800, "gigameters")
  17172. },
  17173. {
  17174. name: "Kaiju Dragon Goddess",
  17175. height: math.unit(26, "zettaparsecs")
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17181. {
  17182. side: {
  17183. height: math.unit(283 / 124 * 6, "feet"),
  17184. weight: math.unit(35000, "lb"),
  17185. name: "Side",
  17186. image: {
  17187. source: "./media/characters/malfaren/side.svg",
  17188. extra: 2500 / 1010,
  17189. bottom: 0.01
  17190. }
  17191. },
  17192. front: {
  17193. height: math.unit(22.36, "feet"),
  17194. weight: math.unit(35000, "lb"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/malfaren/front.svg",
  17198. extra: 1631 / 1476,
  17199. bottom: 0.01
  17200. }
  17201. },
  17202. maw: {
  17203. height: math.unit(6.9, "feet"),
  17204. name: "Maw",
  17205. image: {
  17206. source: "./media/characters/malfaren/maw.svg"
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Big",
  17213. height: math.unit(283 / 162 * 6, "feet"),
  17214. },
  17215. {
  17216. name: "Bigger",
  17217. height: math.unit(283 / 124 * 6, "feet")
  17218. },
  17219. {
  17220. name: "Massive",
  17221. height: math.unit(283 / 92 * 6, "feet"),
  17222. default: true
  17223. },
  17224. {
  17225. name: "👀💦",
  17226. height: math.unit(283 / 73 * 6, "feet"),
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17232. {
  17233. front: {
  17234. height: math.unit(1.7, "m"),
  17235. weight: math.unit(70, "kg"),
  17236. name: "Front",
  17237. image: {
  17238. source: "./media/characters/kernel/front.svg",
  17239. extra: 222 / 210,
  17240. bottom: 0.007
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Nano",
  17247. height: math.unit(17, "micrometers")
  17248. },
  17249. {
  17250. name: "Micro",
  17251. height: math.unit(1.7, "mm")
  17252. },
  17253. {
  17254. name: "Small",
  17255. height: math.unit(1.7, "cm")
  17256. },
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(1.7, "m"),
  17260. default: true
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(1.75, "meters"),
  17269. weight: math.unit(65, "kg"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/jayne-folest/front.svg",
  17273. extra: 2115 / 2007,
  17274. bottom: 0.02
  17275. }
  17276. },
  17277. back: {
  17278. height: math.unit(1.75, "meters"),
  17279. weight: math.unit(65, "kg"),
  17280. name: "Back",
  17281. image: {
  17282. source: "./media/characters/jayne-folest/back.svg",
  17283. extra: 2115 / 2007,
  17284. bottom: 0.005
  17285. }
  17286. },
  17287. frontClothed: {
  17288. height: math.unit(1.75, "meters"),
  17289. weight: math.unit(65, "kg"),
  17290. name: "Front (Clothed)",
  17291. image: {
  17292. source: "./media/characters/jayne-folest/front-clothed.svg",
  17293. extra: 2115 / 2007,
  17294. bottom: 0.035
  17295. }
  17296. },
  17297. hand: {
  17298. height: math.unit(1 / 1.260, "feet"),
  17299. name: "Hand",
  17300. image: {
  17301. source: "./media/characters/jayne-folest/hand.svg"
  17302. }
  17303. },
  17304. foot: {
  17305. height: math.unit(1 / 0.918, "feet"),
  17306. name: "Foot",
  17307. image: {
  17308. source: "./media/characters/jayne-folest/foot.svg"
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Micro",
  17315. height: math.unit(4, "cm")
  17316. },
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(1.75, "meters")
  17320. },
  17321. {
  17322. name: "Macro",
  17323. height: math.unit(47.5, "meters"),
  17324. default: true
  17325. },
  17326. ]
  17327. ))
  17328. characterMakers.push(() => makeCharacter(
  17329. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17330. {
  17331. front: {
  17332. height: math.unit(180, "cm"),
  17333. weight: math.unit(70, "kg"),
  17334. name: "Front",
  17335. image: {
  17336. source: "./media/characters/algier/front.svg",
  17337. extra: 596 / 572,
  17338. bottom: 0.04
  17339. }
  17340. },
  17341. back: {
  17342. height: math.unit(180, "cm"),
  17343. weight: math.unit(70, "kg"),
  17344. name: "Back",
  17345. image: {
  17346. source: "./media/characters/algier/back.svg",
  17347. extra: 596 / 572,
  17348. bottom: 0.025
  17349. }
  17350. },
  17351. frontdressed: {
  17352. height: math.unit(180, "cm"),
  17353. weight: math.unit(150, "kg"),
  17354. name: "Front-dressed",
  17355. image: {
  17356. source: "./media/characters/algier/front-dressed.svg",
  17357. extra: 596 / 572,
  17358. bottom: 0.038
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Micro",
  17365. height: math.unit(5, "cm")
  17366. },
  17367. {
  17368. name: "Normal",
  17369. height: math.unit(180, "cm"),
  17370. default: true
  17371. },
  17372. {
  17373. name: "Macro",
  17374. height: math.unit(64, "m")
  17375. },
  17376. ]
  17377. ))
  17378. characterMakers.push(() => makeCharacter(
  17379. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17380. {
  17381. upright: {
  17382. height: math.unit(7, "feet"),
  17383. weight: math.unit(300, "lb"),
  17384. name: "Upright",
  17385. image: {
  17386. source: "./media/characters/pretzel/upright.svg",
  17387. extra: 534 / 522,
  17388. bottom: 0.065
  17389. }
  17390. },
  17391. sprawling: {
  17392. height: math.unit(3.75, "feet"),
  17393. weight: math.unit(300, "lb"),
  17394. name: "Sprawling",
  17395. image: {
  17396. source: "./media/characters/pretzel/sprawling.svg",
  17397. extra: 314 / 281,
  17398. bottom: 0.1
  17399. }
  17400. },
  17401. tongue: {
  17402. height: math.unit(2, "feet"),
  17403. name: "Tongue",
  17404. image: {
  17405. source: "./media/characters/pretzel/tongue.svg"
  17406. }
  17407. },
  17408. },
  17409. [
  17410. {
  17411. name: "Normal",
  17412. height: math.unit(7, "feet"),
  17413. default: true
  17414. },
  17415. {
  17416. name: "Oversized",
  17417. height: math.unit(15, "feet")
  17418. },
  17419. {
  17420. name: "Huge",
  17421. height: math.unit(30, "feet")
  17422. },
  17423. {
  17424. name: "Macro",
  17425. height: math.unit(250, "feet")
  17426. },
  17427. ]
  17428. ))
  17429. characterMakers.push(() => makeCharacter(
  17430. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17431. {
  17432. sideFront: {
  17433. height: math.unit(5 + 2 / 12, "feet"),
  17434. weight: math.unit(120, "lb"),
  17435. name: "Front Side",
  17436. image: {
  17437. source: "./media/characters/roxi/side-front.svg",
  17438. extra: 2924 / 2717,
  17439. bottom: 0.08
  17440. }
  17441. },
  17442. sideBack: {
  17443. height: math.unit(5 + 2 / 12, "feet"),
  17444. weight: math.unit(120, "lb"),
  17445. name: "Back Side",
  17446. image: {
  17447. source: "./media/characters/roxi/side-back.svg",
  17448. extra: 2904 / 2693,
  17449. bottom: 0.06
  17450. }
  17451. },
  17452. front: {
  17453. height: math.unit(5 + 2 / 12, "feet"),
  17454. weight: math.unit(120, "lb"),
  17455. name: "Front",
  17456. image: {
  17457. source: "./media/characters/roxi/front.svg",
  17458. extra: 2028 / 1907,
  17459. bottom: 0.01
  17460. }
  17461. },
  17462. frontAlt: {
  17463. height: math.unit(5 + 2 / 12, "feet"),
  17464. weight: math.unit(120, "lb"),
  17465. name: "Front (Alt)",
  17466. image: {
  17467. source: "./media/characters/roxi/front-alt.svg",
  17468. extra: 1828 / 1798,
  17469. bottom: 0.01
  17470. }
  17471. },
  17472. sitting: {
  17473. height: math.unit(2.8, "feet"),
  17474. weight: math.unit(120, "lb"),
  17475. name: "Sitting",
  17476. image: {
  17477. source: "./media/characters/roxi/sitting.svg",
  17478. extra: 2660 / 2462,
  17479. bottom: 0.1
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Normal",
  17486. height: math.unit(5 + 2 / 12, "feet"),
  17487. default: true
  17488. },
  17489. ]
  17490. ))
  17491. characterMakers.push(() => makeCharacter(
  17492. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17493. {
  17494. side: {
  17495. height: math.unit(55, "feet"),
  17496. weight: math.unit(153, "tons"),
  17497. name: "Side",
  17498. image: {
  17499. source: "./media/characters/shadow/side.svg",
  17500. extra: 701 / 628,
  17501. bottom: 0.02
  17502. }
  17503. },
  17504. flying: {
  17505. height: math.unit(145, "feet"),
  17506. weight: math.unit(153, "tons"),
  17507. name: "Flying",
  17508. image: {
  17509. source: "./media/characters/shadow/flying.svg"
  17510. }
  17511. },
  17512. },
  17513. [
  17514. {
  17515. name: "Normal",
  17516. height: math.unit(55, "feet"),
  17517. default: true
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17523. {
  17524. front: {
  17525. height: math.unit(6, "feet"),
  17526. weight: math.unit(200, "lb"),
  17527. name: "Front",
  17528. image: {
  17529. source: "./media/characters/marcie/front.svg",
  17530. extra: 960 / 876,
  17531. bottom: 58 / 1017.87
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Macro",
  17538. height: math.unit(1, "mile"),
  17539. default: true
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17545. {
  17546. front: {
  17547. height: math.unit(7, "feet"),
  17548. weight: math.unit(200, "lb"),
  17549. name: "Front",
  17550. image: {
  17551. source: "./media/characters/kachina/front.svg",
  17552. extra: 1290.68 / 1119,
  17553. bottom: 36.5 / 1327.18
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(7, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17567. {
  17568. looking: {
  17569. height: math.unit(2, "meters"),
  17570. weight: math.unit(300, "kg"),
  17571. name: "Looking",
  17572. image: {
  17573. source: "./media/characters/kash/looking.svg",
  17574. extra: 474 / 344,
  17575. bottom: 0.03
  17576. }
  17577. },
  17578. side: {
  17579. height: math.unit(2, "meters"),
  17580. weight: math.unit(300, "kg"),
  17581. name: "Side",
  17582. image: {
  17583. source: "./media/characters/kash/side.svg",
  17584. extra: 302 / 251,
  17585. bottom: 0.03
  17586. }
  17587. },
  17588. front: {
  17589. height: math.unit(2, "meters"),
  17590. weight: math.unit(300, "kg"),
  17591. name: "Front",
  17592. image: {
  17593. source: "./media/characters/kash/front.svg",
  17594. extra: 495 / 360,
  17595. bottom: 0.015
  17596. }
  17597. },
  17598. },
  17599. [
  17600. {
  17601. name: "Normal",
  17602. height: math.unit(2, "meters"),
  17603. default: true
  17604. },
  17605. {
  17606. name: "Big",
  17607. height: math.unit(3, "meters")
  17608. },
  17609. {
  17610. name: "Large",
  17611. height: math.unit(5, "meters")
  17612. },
  17613. ]
  17614. ))
  17615. characterMakers.push(() => makeCharacter(
  17616. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17617. {
  17618. feeding: {
  17619. height: math.unit(6.7, "feet"),
  17620. weight: math.unit(350, "lb"),
  17621. name: "Feeding",
  17622. image: {
  17623. source: "./media/characters/lalim/feeding.svg",
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Normal",
  17630. height: math.unit(6.7, "feet"),
  17631. default: true
  17632. },
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17637. {
  17638. front: {
  17639. height: math.unit(9.5, "feet"),
  17640. weight: math.unit(600, "lb"),
  17641. name: "Front",
  17642. image: {
  17643. source: "./media/characters/de'vout/front.svg",
  17644. extra: 1443 / 1328,
  17645. bottom: 0.025
  17646. }
  17647. },
  17648. back: {
  17649. height: math.unit(9.5, "feet"),
  17650. weight: math.unit(600, "lb"),
  17651. name: "Back",
  17652. image: {
  17653. source: "./media/characters/de'vout/back.svg",
  17654. extra: 1443 / 1328
  17655. }
  17656. },
  17657. frontDressed: {
  17658. height: math.unit(9.5, "feet"),
  17659. weight: math.unit(600, "lb"),
  17660. name: "Front (Dressed",
  17661. image: {
  17662. source: "./media/characters/de'vout/front-dressed.svg",
  17663. extra: 1443 / 1328,
  17664. bottom: 0.025
  17665. }
  17666. },
  17667. backDressed: {
  17668. height: math.unit(9.5, "feet"),
  17669. weight: math.unit(600, "lb"),
  17670. name: "Back (Dressed",
  17671. image: {
  17672. source: "./media/characters/de'vout/back-dressed.svg",
  17673. extra: 1443 / 1328
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(9.5, "feet"),
  17681. default: true
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17687. {
  17688. front: {
  17689. height: math.unit(8, "feet"),
  17690. weight: math.unit(225, "lb"),
  17691. name: "Front",
  17692. image: {
  17693. source: "./media/characters/talana/front.svg",
  17694. extra: 1410 / 1300,
  17695. bottom: 0.015
  17696. }
  17697. },
  17698. frontDressed: {
  17699. height: math.unit(8, "feet"),
  17700. weight: math.unit(225, "lb"),
  17701. name: "Front (Dressed",
  17702. image: {
  17703. source: "./media/characters/talana/front-dressed.svg",
  17704. extra: 1410 / 1300,
  17705. bottom: 0.015
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(8, "feet"),
  17713. default: true
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17719. {
  17720. side: {
  17721. height: math.unit(7.2, "feet"),
  17722. weight: math.unit(150, "lb"),
  17723. name: "Side",
  17724. image: {
  17725. source: "./media/characters/xeauvok/side.svg",
  17726. extra: 1975 / 1523,
  17727. bottom: 0.07
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(7.2, "feet"),
  17735. default: true
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17741. {
  17742. side: {
  17743. height: math.unit(10, "feet"),
  17744. weight: math.unit(900, "kg"),
  17745. name: "Side",
  17746. image: {
  17747. source: "./media/characters/zara/side.svg",
  17748. extra: 504 / 498
  17749. }
  17750. },
  17751. },
  17752. [
  17753. {
  17754. name: "Normal",
  17755. height: math.unit(10, "feet"),
  17756. default: true
  17757. },
  17758. ]
  17759. ))
  17760. characterMakers.push(() => makeCharacter(
  17761. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17762. {
  17763. side: {
  17764. height: math.unit(6, "feet"),
  17765. weight: math.unit(150, "lb"),
  17766. name: "Side",
  17767. image: {
  17768. source: "./media/characters/richard-dragon/side.svg",
  17769. extra: 845 / 340,
  17770. bottom: 0.017
  17771. }
  17772. },
  17773. maw: {
  17774. height: math.unit(2.97, "feet"),
  17775. name: "Maw",
  17776. image: {
  17777. source: "./media/characters/richard-dragon/maw.svg"
  17778. }
  17779. },
  17780. },
  17781. [
  17782. ]
  17783. ))
  17784. characterMakers.push(() => makeCharacter(
  17785. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17786. {
  17787. front: {
  17788. height: math.unit(4, "feet"),
  17789. weight: math.unit(100, "lb"),
  17790. name: "Front",
  17791. image: {
  17792. source: "./media/characters/richard-smeargle/front.svg",
  17793. extra: 2952 / 2820,
  17794. bottom: 0.028
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(4, "feet"),
  17802. default: true
  17803. },
  17804. {
  17805. name: "Dynamax",
  17806. height: math.unit(20, "meters")
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17812. {
  17813. front: {
  17814. height: math.unit(6, "feet"),
  17815. weight: math.unit(110, "lb"),
  17816. name: "Front",
  17817. image: {
  17818. source: "./media/characters/klay/front.svg",
  17819. extra: 962 / 883,
  17820. bottom: 0.04
  17821. }
  17822. },
  17823. back: {
  17824. height: math.unit(6, "feet"),
  17825. weight: math.unit(110, "lb"),
  17826. name: "Back",
  17827. image: {
  17828. source: "./media/characters/klay/back.svg",
  17829. extra: 962 / 883
  17830. }
  17831. },
  17832. beans: {
  17833. height: math.unit(1.15, "feet"),
  17834. name: "Beans",
  17835. image: {
  17836. source: "./media/characters/klay/beans.svg"
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Micro",
  17843. height: math.unit(6, "inches")
  17844. },
  17845. {
  17846. name: "Mini",
  17847. height: math.unit(3, "feet")
  17848. },
  17849. {
  17850. name: "Normal",
  17851. height: math.unit(6, "feet"),
  17852. default: true
  17853. },
  17854. {
  17855. name: "Big",
  17856. height: math.unit(25, "feet")
  17857. },
  17858. {
  17859. name: "Macro",
  17860. height: math.unit(100, "feet")
  17861. },
  17862. {
  17863. name: "Megamacro",
  17864. height: math.unit(400, "feet")
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17870. {
  17871. front: {
  17872. height: math.unit(6, "feet"),
  17873. weight: math.unit(160, "lb"),
  17874. name: "Front",
  17875. image: {
  17876. source: "./media/characters/marcus/front.svg",
  17877. extra: 734 / 676,
  17878. bottom: 0.03
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Little",
  17885. height: math.unit(6, "feet")
  17886. },
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(110, "feet"),
  17890. default: true
  17891. },
  17892. {
  17893. name: "Macro",
  17894. height: math.unit(250, "feet")
  17895. },
  17896. {
  17897. name: "Megamacro",
  17898. height: math.unit(1000, "feet")
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17904. {
  17905. front: {
  17906. height: math.unit(7, "feet"),
  17907. weight: math.unit(275, "lb"),
  17908. name: "Front",
  17909. image: {
  17910. source: "./media/characters/claude-delroute/front.svg",
  17911. extra: 230 / 214,
  17912. bottom: 0.007
  17913. }
  17914. },
  17915. side: {
  17916. height: math.unit(7, "feet"),
  17917. weight: math.unit(275, "lb"),
  17918. name: "Side",
  17919. image: {
  17920. source: "./media/characters/claude-delroute/side.svg",
  17921. extra: 222 / 214,
  17922. bottom: 0.01
  17923. }
  17924. },
  17925. back: {
  17926. height: math.unit(7, "feet"),
  17927. weight: math.unit(275, "lb"),
  17928. name: "Back",
  17929. image: {
  17930. source: "./media/characters/claude-delroute/back.svg",
  17931. extra: 230 / 214,
  17932. bottom: 0.015
  17933. }
  17934. },
  17935. maw: {
  17936. height: math.unit(0.6407, "meters"),
  17937. name: "Maw",
  17938. image: {
  17939. source: "./media/characters/claude-delroute/maw.svg"
  17940. }
  17941. },
  17942. },
  17943. [
  17944. {
  17945. name: "Normal",
  17946. height: math.unit(7, "feet"),
  17947. default: true
  17948. },
  17949. {
  17950. name: "Lorge",
  17951. height: math.unit(20, "feet")
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17957. {
  17958. front: {
  17959. height: math.unit(8 + 4 / 12, "feet"),
  17960. weight: math.unit(600, "lb"),
  17961. name: "Front",
  17962. image: {
  17963. source: "./media/characters/dragonien/front.svg",
  17964. extra: 100 / 94,
  17965. bottom: 3.3 / 103.3445
  17966. }
  17967. },
  17968. back: {
  17969. height: math.unit(8 + 4 / 12, "feet"),
  17970. weight: math.unit(600, "lb"),
  17971. name: "Back",
  17972. image: {
  17973. source: "./media/characters/dragonien/back.svg",
  17974. extra: 776 / 746,
  17975. bottom: 6.4 / 782.0616
  17976. }
  17977. },
  17978. foot: {
  17979. height: math.unit(1.54, "feet"),
  17980. name: "Foot",
  17981. image: {
  17982. source: "./media/characters/dragonien/foot.svg",
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Normal",
  17989. height: math.unit(8 + 4 / 12, "feet"),
  17990. default: true
  17991. },
  17992. {
  17993. name: "Macro",
  17994. height: math.unit(200, "feet")
  17995. },
  17996. {
  17997. name: "Megamacro",
  17998. height: math.unit(1, "mile")
  17999. },
  18000. {
  18001. name: "Gigamacro",
  18002. height: math.unit(1000, "miles")
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18008. {
  18009. front: {
  18010. height: math.unit(5 + 2 / 12, "feet"),
  18011. weight: math.unit(110, "lb"),
  18012. name: "Front",
  18013. image: {
  18014. source: "./media/characters/desta/front.svg",
  18015. extra: 767 / 726,
  18016. bottom: 11.7 / 779
  18017. }
  18018. },
  18019. back: {
  18020. height: math.unit(5 + 2 / 12, "feet"),
  18021. weight: math.unit(110, "lb"),
  18022. name: "Back",
  18023. image: {
  18024. source: "./media/characters/desta/back.svg",
  18025. extra: 777 / 728,
  18026. bottom: 6 / 784
  18027. }
  18028. },
  18029. frontAlt: {
  18030. height: math.unit(5 + 2 / 12, "feet"),
  18031. weight: math.unit(110, "lb"),
  18032. name: "Front",
  18033. image: {
  18034. source: "./media/characters/desta/front-alt.svg",
  18035. extra: 1482 / 1417
  18036. }
  18037. },
  18038. side: {
  18039. height: math.unit(5 + 2 / 12, "feet"),
  18040. weight: math.unit(110, "lb"),
  18041. name: "Side",
  18042. image: {
  18043. source: "./media/characters/desta/side.svg",
  18044. extra: 2579 / 2491,
  18045. bottom: 0.053
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Micro",
  18052. height: math.unit(6, "inches")
  18053. },
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(5 + 2 / 12, "feet"),
  18057. default: true
  18058. },
  18059. {
  18060. name: "Macro",
  18061. height: math.unit(62, "feet")
  18062. },
  18063. {
  18064. name: "Megamacro",
  18065. height: math.unit(1800, "feet")
  18066. },
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18071. {
  18072. front: {
  18073. height: math.unit(10, "feet"),
  18074. weight: math.unit(700, "lb"),
  18075. name: "Front",
  18076. image: {
  18077. source: "./media/characters/storm-alystar/front.svg",
  18078. extra: 2112 / 1898,
  18079. bottom: 0.034
  18080. }
  18081. },
  18082. },
  18083. [
  18084. {
  18085. name: "Micro",
  18086. height: math.unit(3.5, "inches")
  18087. },
  18088. {
  18089. name: "Normal",
  18090. height: math.unit(10, "feet"),
  18091. default: true
  18092. },
  18093. {
  18094. name: "Macro",
  18095. height: math.unit(400, "feet")
  18096. },
  18097. {
  18098. name: "Deific",
  18099. height: math.unit(60, "miles")
  18100. },
  18101. ]
  18102. ))
  18103. characterMakers.push(() => makeCharacter(
  18104. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18105. {
  18106. front: {
  18107. height: math.unit(2.35, "meters"),
  18108. weight: math.unit(119, "kg"),
  18109. name: "Front",
  18110. image: {
  18111. source: "./media/characters/ilia/front.svg",
  18112. extra: 1285 / 1255,
  18113. bottom: 0.06
  18114. }
  18115. },
  18116. },
  18117. [
  18118. {
  18119. name: "Normal",
  18120. height: math.unit(2.35, "meters")
  18121. },
  18122. {
  18123. name: "Macro",
  18124. height: math.unit(140, "meters"),
  18125. default: true
  18126. },
  18127. {
  18128. name: "Megamacro",
  18129. height: math.unit(100, "miles")
  18130. },
  18131. ]
  18132. ))
  18133. characterMakers.push(() => makeCharacter(
  18134. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18135. {
  18136. front: {
  18137. height: math.unit(6 + 5 / 12, "feet"),
  18138. weight: math.unit(190, "lb"),
  18139. name: "Front",
  18140. image: {
  18141. source: "./media/characters/kingdead/front.svg",
  18142. extra: 1228 / 1177
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Micro",
  18149. height: math.unit(7, "inches")
  18150. },
  18151. {
  18152. name: "Normal",
  18153. height: math.unit(6 + 5 / 12, "feet")
  18154. },
  18155. {
  18156. name: "Macro",
  18157. height: math.unit(150, "feet"),
  18158. default: true
  18159. },
  18160. {
  18161. name: "Megamacro",
  18162. height: math.unit(200, "miles")
  18163. },
  18164. ]
  18165. ))
  18166. characterMakers.push(() => makeCharacter(
  18167. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18168. {
  18169. front: {
  18170. height: math.unit(8, "feet"),
  18171. weight: math.unit(600, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/kyrehx/front.svg",
  18175. extra: 1195 / 1095,
  18176. bottom: 0.034
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Micro",
  18183. height: math.unit(2, "inches")
  18184. },
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(8, "feet"),
  18188. default: true
  18189. },
  18190. {
  18191. name: "Macro",
  18192. height: math.unit(255, "feet")
  18193. },
  18194. ]
  18195. ))
  18196. characterMakers.push(() => makeCharacter(
  18197. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18198. {
  18199. front: {
  18200. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18201. weight: math.unit(184, "lb"),
  18202. name: "Front",
  18203. image: {
  18204. source: "./media/characters/xang/front.svg",
  18205. extra: 845 / 755
  18206. }
  18207. },
  18208. },
  18209. [
  18210. {
  18211. name: "Normal",
  18212. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18213. default: true
  18214. },
  18215. {
  18216. name: "Macro",
  18217. height: math.unit(0.935 * 146, "feet")
  18218. },
  18219. {
  18220. name: "Megamacro",
  18221. height: math.unit(0.935 * 3, "miles")
  18222. },
  18223. ]
  18224. ))
  18225. characterMakers.push(() => makeCharacter(
  18226. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18227. {
  18228. frontDressed: {
  18229. height: math.unit(5 + 7 / 12, "feet"),
  18230. weight: math.unit(140, "lb"),
  18231. name: "Front (Dressed)",
  18232. image: {
  18233. source: "./media/characters/doc-weardno/front-dressed.svg",
  18234. extra: 263 / 234
  18235. }
  18236. },
  18237. backDressed: {
  18238. height: math.unit(5 + 7 / 12, "feet"),
  18239. weight: math.unit(140, "lb"),
  18240. name: "Back (Dressed)",
  18241. image: {
  18242. source: "./media/characters/doc-weardno/back-dressed.svg",
  18243. extra: 266 / 238
  18244. }
  18245. },
  18246. front: {
  18247. height: math.unit(5 + 7 / 12, "feet"),
  18248. weight: math.unit(140, "lb"),
  18249. name: "Front",
  18250. image: {
  18251. source: "./media/characters/doc-weardno/front.svg",
  18252. extra: 254 / 233
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Micro",
  18259. height: math.unit(3, "inches")
  18260. },
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(5 + 7 / 12, "feet"),
  18264. default: true
  18265. },
  18266. {
  18267. name: "Macro",
  18268. height: math.unit(25, "feet")
  18269. },
  18270. {
  18271. name: "Megamacro",
  18272. height: math.unit(2, "miles")
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18278. {
  18279. front: {
  18280. height: math.unit(6 + 2 / 12, "feet"),
  18281. weight: math.unit(153, "lb"),
  18282. name: "Front",
  18283. image: {
  18284. source: "./media/characters/seth-whilst/front.svg",
  18285. bottom: 0.07
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Micro",
  18292. height: math.unit(5, "inches")
  18293. },
  18294. {
  18295. name: "Normal",
  18296. height: math.unit(6 + 2 / 12, "feet"),
  18297. default: true
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18303. {
  18304. front: {
  18305. height: math.unit(3, "inches"),
  18306. weight: math.unit(8, "grams"),
  18307. name: "Front",
  18308. image: {
  18309. source: "./media/characters/pocket-jabari/front.svg",
  18310. extra: 1024 / 974,
  18311. bottom: 0.039
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Minimicro",
  18318. height: math.unit(8, "mm")
  18319. },
  18320. {
  18321. name: "Micro",
  18322. height: math.unit(3, "inches"),
  18323. default: true
  18324. },
  18325. {
  18326. name: "Normal",
  18327. height: math.unit(3, "feet")
  18328. },
  18329. ]
  18330. ))
  18331. characterMakers.push(() => makeCharacter(
  18332. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18333. {
  18334. front: {
  18335. height: math.unit(15, "feet"),
  18336. weight: math.unit(3280, "lb"),
  18337. name: "Front",
  18338. image: {
  18339. source: "./media/characters/sapphy/front.svg",
  18340. extra: 671 / 577,
  18341. bottom: 0.085
  18342. }
  18343. },
  18344. back: {
  18345. height: math.unit(15, "feet"),
  18346. weight: math.unit(3280, "lb"),
  18347. name: "Back",
  18348. image: {
  18349. source: "./media/characters/sapphy/back.svg",
  18350. extra: 631 / 607,
  18351. bottom: 0.045
  18352. }
  18353. },
  18354. },
  18355. [
  18356. {
  18357. name: "Normal",
  18358. height: math.unit(15, "feet")
  18359. },
  18360. {
  18361. name: "Casual Macro",
  18362. height: math.unit(120, "feet")
  18363. },
  18364. {
  18365. name: "Macro",
  18366. height: math.unit(2150, "feet"),
  18367. default: true
  18368. },
  18369. {
  18370. name: "Megamacro",
  18371. height: math.unit(8, "miles")
  18372. },
  18373. {
  18374. name: "Galaxy Mom",
  18375. height: math.unit(6, "megalightyears")
  18376. },
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18381. {
  18382. front: {
  18383. height: math.unit(6, "feet"),
  18384. weight: math.unit(170, "lb"),
  18385. name: "Front",
  18386. image: {
  18387. source: "./media/characters/kiro/front.svg",
  18388. extra: 1064 / 1012,
  18389. bottom: 0.052
  18390. }
  18391. },
  18392. },
  18393. [
  18394. {
  18395. name: "Micro",
  18396. height: math.unit(6, "inches")
  18397. },
  18398. {
  18399. name: "Normal",
  18400. height: math.unit(6, "feet"),
  18401. default: true
  18402. },
  18403. {
  18404. name: "Macro",
  18405. height: math.unit(72, "feet")
  18406. },
  18407. ]
  18408. ))
  18409. characterMakers.push(() => makeCharacter(
  18410. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18411. {
  18412. front: {
  18413. height: math.unit(5 + 9 / 12, "feet"),
  18414. weight: math.unit(175, "lb"),
  18415. name: "Front",
  18416. image: {
  18417. source: "./media/characters/irishfox/front.svg",
  18418. extra: 1912 / 1680,
  18419. bottom: 0.02
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Nano",
  18426. height: math.unit(1, "mm")
  18427. },
  18428. {
  18429. name: "Micro",
  18430. height: math.unit(2, "inches")
  18431. },
  18432. {
  18433. name: "Normal",
  18434. height: math.unit(5 + 9 / 12, "feet"),
  18435. default: true
  18436. },
  18437. {
  18438. name: "Macro",
  18439. height: math.unit(45, "feet")
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(6 + 1 / 12, "feet"),
  18448. weight: math.unit(75, "lb"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/aronai-sieyes/front.svg",
  18452. extra: 1556 / 1480,
  18453. bottom: 0.015
  18454. }
  18455. },
  18456. side: {
  18457. height: math.unit(6 + 1 / 12, "feet"),
  18458. weight: math.unit(75, "lb"),
  18459. name: "Side",
  18460. image: {
  18461. source: "./media/characters/aronai-sieyes/side.svg",
  18462. extra: 1433 / 1390,
  18463. bottom: 0.0393
  18464. }
  18465. },
  18466. back: {
  18467. height: math.unit(6 + 1 / 12, "feet"),
  18468. weight: math.unit(75, "lb"),
  18469. name: "Back",
  18470. image: {
  18471. source: "./media/characters/aronai-sieyes/back.svg",
  18472. extra: 1544 / 1494,
  18473. bottom: 0.02
  18474. }
  18475. },
  18476. frontClothed: {
  18477. height: math.unit(6 + 1 / 12, "feet"),
  18478. weight: math.unit(75, "lb"),
  18479. name: "Front (Clothed)",
  18480. image: {
  18481. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18482. extra: 1582 / 1527
  18483. }
  18484. },
  18485. feral: {
  18486. height: math.unit(18, "feet"),
  18487. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18488. name: "Feral",
  18489. image: {
  18490. source: "./media/characters/aronai-sieyes/feral.svg",
  18491. extra: 1530 / 1240,
  18492. bottom: 0.035
  18493. }
  18494. },
  18495. },
  18496. [
  18497. {
  18498. name: "Micro",
  18499. height: math.unit(2, "inches")
  18500. },
  18501. {
  18502. name: "Normal",
  18503. height: math.unit(6 + 1 / 12, "feet"),
  18504. default: true
  18505. }
  18506. ]
  18507. ))
  18508. characterMakers.push(() => makeCharacter(
  18509. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18510. {
  18511. front: {
  18512. height: math.unit(12, "feet"),
  18513. weight: math.unit(410, "kg"),
  18514. name: "Front",
  18515. image: {
  18516. source: "./media/characters/xuna/front.svg",
  18517. extra: 2184 / 1980
  18518. }
  18519. },
  18520. side: {
  18521. height: math.unit(12, "feet"),
  18522. weight: math.unit(410, "kg"),
  18523. name: "Side",
  18524. image: {
  18525. source: "./media/characters/xuna/side.svg",
  18526. extra: 2184 / 1980
  18527. }
  18528. },
  18529. back: {
  18530. height: math.unit(12, "feet"),
  18531. weight: math.unit(410, "kg"),
  18532. name: "Back",
  18533. image: {
  18534. source: "./media/characters/xuna/back.svg",
  18535. extra: 2184 / 1980
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Nano glow",
  18542. height: math.unit(10, "nm")
  18543. },
  18544. {
  18545. name: "Micro floof",
  18546. height: math.unit(0.3, "m")
  18547. },
  18548. {
  18549. name: "Huggable softy boi",
  18550. height: math.unit(3.6576, "m"),
  18551. default: true
  18552. },
  18553. {
  18554. name: "Admirable floof",
  18555. height: math.unit(80, "meters")
  18556. },
  18557. {
  18558. name: "Gentle macro",
  18559. height: math.unit(300, "meters")
  18560. },
  18561. {
  18562. name: "Very careful floof",
  18563. height: math.unit(3200, "meters")
  18564. },
  18565. {
  18566. name: "The mega floof",
  18567. height: math.unit(36000, "meters")
  18568. },
  18569. {
  18570. name: "Giga-fur-Wicker",
  18571. height: math.unit(4800000, "meters")
  18572. },
  18573. {
  18574. name: "Licky world",
  18575. height: math.unit(20000000, "meters")
  18576. },
  18577. {
  18578. name: "Floofy cyan sun",
  18579. height: math.unit(1500000000, "meters")
  18580. },
  18581. {
  18582. name: "Milky Wicker",
  18583. height: math.unit(1000000000000000000000, "meters")
  18584. },
  18585. {
  18586. name: "The observing Wicker",
  18587. height: math.unit(999999999999999999999999999, "meters")
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18593. {
  18594. front: {
  18595. height: math.unit(5 + 9 / 12, "feet"),
  18596. weight: math.unit(150, "lb"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/arokha-sieyes/front.svg",
  18600. extra: 1425 / 1284,
  18601. bottom: 0.05
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(5 + 9 / 12, "feet")
  18609. },
  18610. {
  18611. name: "Macro",
  18612. height: math.unit(30, "meters"),
  18613. default: true
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18619. {
  18620. front: {
  18621. height: math.unit(6, "feet"),
  18622. weight: math.unit(180, "lb"),
  18623. name: "Front",
  18624. image: {
  18625. source: "./media/characters/arokh-sieyes/front.svg",
  18626. extra: 1830 / 1769,
  18627. bottom: 0.01
  18628. }
  18629. },
  18630. },
  18631. [
  18632. {
  18633. name: "Normal",
  18634. height: math.unit(6, "feet")
  18635. },
  18636. {
  18637. name: "Macro",
  18638. height: math.unit(30, "meters"),
  18639. default: true
  18640. },
  18641. ]
  18642. ))
  18643. characterMakers.push(() => makeCharacter(
  18644. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18645. {
  18646. side: {
  18647. height: math.unit(13 + 1 / 12, "feet"),
  18648. weight: math.unit(8.5, "tonnes"),
  18649. name: "Side",
  18650. image: {
  18651. source: "./media/characters/goldeneye/side.svg",
  18652. extra: 1182 / 778,
  18653. bottom: 0.067
  18654. }
  18655. },
  18656. paw: {
  18657. height: math.unit(3.4, "feet"),
  18658. name: "Paw",
  18659. image: {
  18660. source: "./media/characters/goldeneye/paw.svg"
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(13 + 1 / 12, "feet"),
  18668. default: true
  18669. },
  18670. ]
  18671. ))
  18672. characterMakers.push(() => makeCharacter(
  18673. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18674. {
  18675. front: {
  18676. height: math.unit(6 + 1 / 12, "feet"),
  18677. weight: math.unit(210, "lb"),
  18678. name: "Front",
  18679. image: {
  18680. source: "./media/characters/leonardo-lycheborne/front.svg",
  18681. extra: 390 / 365,
  18682. bottom: 0.032
  18683. }
  18684. },
  18685. side: {
  18686. height: math.unit(6 + 1 / 12, "feet"),
  18687. weight: math.unit(210, "lb"),
  18688. name: "Side",
  18689. image: {
  18690. source: "./media/characters/leonardo-lycheborne/side.svg",
  18691. extra: 390 / 365,
  18692. bottom: 0.005
  18693. }
  18694. },
  18695. back: {
  18696. height: math.unit(6 + 1 / 12, "feet"),
  18697. weight: math.unit(210, "lb"),
  18698. name: "Back",
  18699. image: {
  18700. source: "./media/characters/leonardo-lycheborne/back.svg",
  18701. extra: 392 / 366,
  18702. bottom: 0.01
  18703. }
  18704. },
  18705. hand: {
  18706. height: math.unit(1.08, "feet"),
  18707. name: "Hand",
  18708. image: {
  18709. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18710. }
  18711. },
  18712. foot: {
  18713. height: math.unit(1.32, "feet"),
  18714. name: "Foot",
  18715. image: {
  18716. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18717. }
  18718. },
  18719. were: {
  18720. height: math.unit(20, "feet"),
  18721. weight: math.unit(7800, "lb"),
  18722. name: "Were",
  18723. image: {
  18724. source: "./media/characters/leonardo-lycheborne/were.svg",
  18725. extra: 308 / 294,
  18726. bottom: 0.048
  18727. }
  18728. },
  18729. feral: {
  18730. height: math.unit(7.5, "feet"),
  18731. weight: math.unit(600, "lb"),
  18732. name: "Feral",
  18733. image: {
  18734. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18735. extra: 210 / 186,
  18736. bottom: 0.108
  18737. }
  18738. },
  18739. taur: {
  18740. height: math.unit(11, "feet"),
  18741. weight: math.unit(3300, "lb"),
  18742. name: "Taur",
  18743. image: {
  18744. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18745. extra: 320 / 303,
  18746. bottom: 0.025
  18747. }
  18748. },
  18749. barghest: {
  18750. height: math.unit(11, "feet"),
  18751. weight: math.unit(1300, "lb"),
  18752. name: "Barghest",
  18753. image: {
  18754. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18755. extra: 323 / 302,
  18756. bottom: 0.027
  18757. }
  18758. },
  18759. dick: {
  18760. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18761. name: "Dick",
  18762. image: {
  18763. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18764. }
  18765. },
  18766. dickWere: {
  18767. height: math.unit((20) / 3.8, "feet"),
  18768. name: "Dick (Were)",
  18769. image: {
  18770. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18771. }
  18772. },
  18773. },
  18774. [
  18775. {
  18776. name: "Normal",
  18777. height: math.unit(6 + 1 / 12, "feet"),
  18778. default: true
  18779. },
  18780. ]
  18781. ))
  18782. characterMakers.push(() => makeCharacter(
  18783. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18784. {
  18785. front: {
  18786. height: math.unit(10, "feet"),
  18787. weight: math.unit(350, "lb"),
  18788. name: "Front",
  18789. image: {
  18790. source: "./media/characters/jet/front.svg",
  18791. extra: 2050 / 1980,
  18792. bottom: 0.013
  18793. }
  18794. },
  18795. back: {
  18796. height: math.unit(10, "feet"),
  18797. weight: math.unit(350, "lb"),
  18798. name: "Back",
  18799. image: {
  18800. source: "./media/characters/jet/back.svg",
  18801. extra: 2050 / 1980,
  18802. bottom: 0.013
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Micro",
  18809. height: math.unit(6, "inches")
  18810. },
  18811. {
  18812. name: "Normal",
  18813. height: math.unit(10, "feet"),
  18814. default: true
  18815. },
  18816. {
  18817. name: "Macro",
  18818. height: math.unit(100, "feet")
  18819. },
  18820. ]
  18821. ))
  18822. characterMakers.push(() => makeCharacter(
  18823. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18824. {
  18825. front: {
  18826. height: math.unit(15, "feet"),
  18827. weight: math.unit(2800, "lb"),
  18828. name: "Front",
  18829. image: {
  18830. source: "./media/characters/tanarath/front.svg",
  18831. extra: 2392 / 2220,
  18832. bottom: 0.03
  18833. }
  18834. },
  18835. back: {
  18836. height: math.unit(15, "feet"),
  18837. weight: math.unit(2800, "lb"),
  18838. name: "Back",
  18839. image: {
  18840. source: "./media/characters/tanarath/back.svg",
  18841. extra: 2392 / 2220,
  18842. bottom: 0.03
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(15, "feet"),
  18850. default: true
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18856. {
  18857. front: {
  18858. height: math.unit(7 + 1 / 12, "feet"),
  18859. weight: math.unit(175, "lb"),
  18860. name: "Front",
  18861. image: {
  18862. source: "./media/characters/patty-cattybatty/front.svg",
  18863. extra: 908 / 874,
  18864. bottom: 0.025
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Micro",
  18871. height: math.unit(1, "inch")
  18872. },
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(7 + 1 / 12, "feet")
  18876. },
  18877. {
  18878. name: "Mini Macro",
  18879. height: math.unit(155, "feet")
  18880. },
  18881. {
  18882. name: "Macro",
  18883. height: math.unit(1077, "feet")
  18884. },
  18885. {
  18886. name: "Mega Macro",
  18887. height: math.unit(47650, "feet"),
  18888. default: true
  18889. },
  18890. {
  18891. name: "Giga Macro",
  18892. height: math.unit(440, "miles")
  18893. },
  18894. {
  18895. name: "Tera Macro",
  18896. height: math.unit(8700, "miles")
  18897. },
  18898. {
  18899. name: "Planetary Macro",
  18900. height: math.unit(32700, "miles")
  18901. },
  18902. {
  18903. name: "Solar Macro",
  18904. height: math.unit(550000, "miles")
  18905. },
  18906. {
  18907. name: "Celestial Macro",
  18908. height: math.unit(2.5, "AU")
  18909. },
  18910. ]
  18911. ))
  18912. characterMakers.push(() => makeCharacter(
  18913. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18914. {
  18915. front: {
  18916. height: math.unit(4 + 5 / 12, "feet"),
  18917. weight: math.unit(90, "lb"),
  18918. name: "Front",
  18919. image: {
  18920. source: "./media/characters/cappu/front.svg",
  18921. extra: 1247 / 1152,
  18922. bottom: 0.012
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(4 + 5 / 12, "feet"),
  18930. default: true
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18936. {
  18937. frontDressed: {
  18938. height: math.unit(70, "cm"),
  18939. weight: math.unit(6, "kg"),
  18940. name: "Front (Dressed)",
  18941. image: {
  18942. source: "./media/characters/sebi/front-dressed.svg",
  18943. extra: 713.5 / 686.5,
  18944. bottom: 0.003
  18945. }
  18946. },
  18947. front: {
  18948. height: math.unit(70, "cm"),
  18949. weight: math.unit(5, "kg"),
  18950. name: "Front",
  18951. image: {
  18952. source: "./media/characters/sebi/front.svg",
  18953. extra: 713.5 / 686.5,
  18954. bottom: 0.003
  18955. }
  18956. }
  18957. },
  18958. [
  18959. {
  18960. name: "Normal",
  18961. height: math.unit(70, "cm"),
  18962. default: true
  18963. },
  18964. {
  18965. name: "Macro",
  18966. height: math.unit(8, "meters")
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(6, "feet"),
  18975. weight: math.unit(150, "lb"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/typhek/front.svg",
  18979. extra: 1948 / 1929,
  18980. bottom: 0.025
  18981. }
  18982. },
  18983. side: {
  18984. height: math.unit(6, "feet"),
  18985. weight: math.unit(150, "lb"),
  18986. name: "Side",
  18987. image: {
  18988. source: "./media/characters/typhek/side.svg",
  18989. extra: 2034 / 2010,
  18990. bottom: 0.003
  18991. }
  18992. },
  18993. back: {
  18994. height: math.unit(6, "feet"),
  18995. weight: math.unit(150, "lb"),
  18996. name: "Back",
  18997. image: {
  18998. source: "./media/characters/typhek/back.svg",
  18999. extra: 2005 / 1978,
  19000. bottom: 0.004
  19001. }
  19002. },
  19003. palm: {
  19004. height: math.unit(1.2, "feet"),
  19005. name: "Palm",
  19006. image: {
  19007. source: "./media/characters/typhek/palm.svg"
  19008. }
  19009. },
  19010. fist: {
  19011. height: math.unit(1.1, "feet"),
  19012. name: "Fist",
  19013. image: {
  19014. source: "./media/characters/typhek/fist.svg"
  19015. }
  19016. },
  19017. foot: {
  19018. height: math.unit(1.57, "feet"),
  19019. name: "Foot",
  19020. image: {
  19021. source: "./media/characters/typhek/foot.svg"
  19022. }
  19023. },
  19024. sole: {
  19025. height: math.unit(2.05, "feet"),
  19026. name: "Sole",
  19027. image: {
  19028. source: "./media/characters/typhek/sole.svg"
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Macro",
  19035. height: math.unit(40, "stories"),
  19036. default: true
  19037. },
  19038. {
  19039. name: "Megamacro",
  19040. height: math.unit(1, "mile")
  19041. },
  19042. {
  19043. name: "Gigamacro",
  19044. height: math.unit(4000, "solarradii")
  19045. },
  19046. {
  19047. name: "Universal",
  19048. height: math.unit(1.1, "universes")
  19049. }
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19054. {
  19055. side: {
  19056. height: math.unit(5 + 7 / 12, "feet"),
  19057. weight: math.unit(150, "lb"),
  19058. name: "Side",
  19059. image: {
  19060. source: "./media/characters/kassy/side.svg",
  19061. extra: 1280 / 1225,
  19062. bottom: 0.002
  19063. }
  19064. },
  19065. front: {
  19066. height: math.unit(5 + 7 / 12, "feet"),
  19067. weight: math.unit(150, "lb"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/kassy/front.svg",
  19071. extra: 1280 / 1225,
  19072. bottom: 0.025
  19073. }
  19074. },
  19075. back: {
  19076. height: math.unit(5 + 7 / 12, "feet"),
  19077. weight: math.unit(150, "lb"),
  19078. name: "Back",
  19079. image: {
  19080. source: "./media/characters/kassy/back.svg",
  19081. extra: 1280 / 1225,
  19082. bottom: 0.002
  19083. }
  19084. },
  19085. foot: {
  19086. height: math.unit(1.266, "feet"),
  19087. name: "Foot",
  19088. image: {
  19089. source: "./media/characters/kassy/foot.svg"
  19090. }
  19091. },
  19092. },
  19093. [
  19094. {
  19095. name: "Normal",
  19096. height: math.unit(5 + 7 / 12, "feet")
  19097. },
  19098. {
  19099. name: "Macro",
  19100. height: math.unit(137, "feet"),
  19101. default: true
  19102. },
  19103. {
  19104. name: "Megamacro",
  19105. height: math.unit(1, "mile")
  19106. },
  19107. ]
  19108. ))
  19109. characterMakers.push(() => makeCharacter(
  19110. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19111. {
  19112. front: {
  19113. height: math.unit(6 + 1 / 12, "feet"),
  19114. weight: math.unit(200, "lb"),
  19115. name: "Front",
  19116. image: {
  19117. source: "./media/characters/neil/front.svg",
  19118. extra: 1326 / 1250,
  19119. bottom: 0.023
  19120. }
  19121. },
  19122. },
  19123. [
  19124. {
  19125. name: "Normal",
  19126. height: math.unit(6 + 1 / 12, "feet"),
  19127. default: true
  19128. },
  19129. {
  19130. name: "Macro",
  19131. height: math.unit(200, "feet")
  19132. },
  19133. ]
  19134. ))
  19135. characterMakers.push(() => makeCharacter(
  19136. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19137. {
  19138. front: {
  19139. height: math.unit(5 + 9 / 12, "feet"),
  19140. weight: math.unit(190, "lb"),
  19141. name: "Front",
  19142. image: {
  19143. source: "./media/characters/atticus/front.svg",
  19144. extra: 2934 / 2785,
  19145. bottom: 0.025
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(5 + 9 / 12, "feet"),
  19153. default: true
  19154. },
  19155. {
  19156. name: "Macro",
  19157. height: math.unit(180, "feet")
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19163. {
  19164. side: {
  19165. height: math.unit(9, "feet"),
  19166. weight: math.unit(650, "lb"),
  19167. name: "Side",
  19168. image: {
  19169. source: "./media/characters/milo/side.svg",
  19170. extra: 2644 / 2310,
  19171. bottom: 0.032
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Normal",
  19178. height: math.unit(9, "feet"),
  19179. default: true
  19180. },
  19181. {
  19182. name: "Macro",
  19183. height: math.unit(300, "feet")
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19189. {
  19190. side: {
  19191. height: math.unit(8, "meters"),
  19192. weight: math.unit(90000, "kg"),
  19193. name: "Side",
  19194. image: {
  19195. source: "./media/characters/ijzer/side.svg",
  19196. extra: 2756 / 1600,
  19197. bottom: 0.01
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Small",
  19204. height: math.unit(3, "meters")
  19205. },
  19206. {
  19207. name: "Normal",
  19208. height: math.unit(8, "meters"),
  19209. default: true
  19210. },
  19211. {
  19212. name: "Normal+",
  19213. height: math.unit(10, "meters")
  19214. },
  19215. {
  19216. name: "Bigger",
  19217. height: math.unit(24, "meters")
  19218. },
  19219. {
  19220. name: "Huge",
  19221. height: math.unit(80, "meters")
  19222. },
  19223. ]
  19224. ))
  19225. characterMakers.push(() => makeCharacter(
  19226. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19227. {
  19228. front: {
  19229. height: math.unit(6 + 2 / 12, "feet"),
  19230. weight: math.unit(153, "lb"),
  19231. name: "Front",
  19232. image: {
  19233. source: "./media/characters/luca-cervicum/front.svg",
  19234. extra: 370 / 327,
  19235. bottom: 0.015
  19236. }
  19237. },
  19238. back: {
  19239. height: math.unit(6 + 2 / 12, "feet"),
  19240. weight: math.unit(153, "lb"),
  19241. name: "Back",
  19242. image: {
  19243. source: "./media/characters/luca-cervicum/back.svg",
  19244. extra: 367 / 333,
  19245. bottom: 0.005
  19246. }
  19247. },
  19248. frontGear: {
  19249. height: math.unit(6 + 2 / 12, "feet"),
  19250. weight: math.unit(173, "lb"),
  19251. name: "Front (Gear)",
  19252. image: {
  19253. source: "./media/characters/luca-cervicum/front-gear.svg",
  19254. extra: 377 / 333,
  19255. bottom: 0.006
  19256. }
  19257. },
  19258. },
  19259. [
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(6 + 2 / 12, "feet"),
  19263. default: true
  19264. },
  19265. ]
  19266. ))
  19267. characterMakers.push(() => makeCharacter(
  19268. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19269. {
  19270. front: {
  19271. height: math.unit(6 + 1 / 12, "feet"),
  19272. weight: math.unit(304, "lb"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/oliver/front.svg",
  19276. extra: 157 / 143,
  19277. bottom: 0.08
  19278. }
  19279. },
  19280. },
  19281. [
  19282. {
  19283. name: "Normal",
  19284. height: math.unit(6 + 1 / 12, "feet"),
  19285. default: true
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19291. {
  19292. front: {
  19293. height: math.unit(5 + 7 / 12, "feet"),
  19294. weight: math.unit(140, "lb"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/shane/front.svg",
  19298. extra: 304 / 289,
  19299. bottom: 0.005
  19300. }
  19301. },
  19302. },
  19303. [
  19304. {
  19305. name: "Normal",
  19306. height: math.unit(5 + 7 / 12, "feet"),
  19307. default: true
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(5 + 9 / 12, "feet"),
  19316. weight: math.unit(178, "lb"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/shin/front.svg",
  19320. extra: 159 / 151,
  19321. bottom: 0.015
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(5 + 9 / 12, "feet"),
  19329. default: true
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19335. {
  19336. front: {
  19337. height: math.unit(5 + 10 / 12, "feet"),
  19338. weight: math.unit(168, "lb"),
  19339. name: "Front",
  19340. image: {
  19341. source: "./media/characters/xerxes/front.svg",
  19342. extra: 282 / 260,
  19343. bottom: 0.045
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Normal",
  19350. height: math.unit(5 + 10 / 12, "feet"),
  19351. default: true
  19352. },
  19353. ]
  19354. ))
  19355. characterMakers.push(() => makeCharacter(
  19356. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19357. {
  19358. front: {
  19359. height: math.unit(6 + 7 / 12, "feet"),
  19360. weight: math.unit(208, "lb"),
  19361. name: "Front",
  19362. image: {
  19363. source: "./media/characters/chaska/front.svg",
  19364. extra: 332 / 319,
  19365. bottom: 0.015
  19366. }
  19367. },
  19368. },
  19369. [
  19370. {
  19371. name: "Normal",
  19372. height: math.unit(6 + 7 / 12, "feet"),
  19373. default: true
  19374. },
  19375. ]
  19376. ))
  19377. characterMakers.push(() => makeCharacter(
  19378. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19379. {
  19380. front: {
  19381. height: math.unit(5 + 8 / 12, "feet"),
  19382. weight: math.unit(208, "lb"),
  19383. name: "Front",
  19384. image: {
  19385. source: "./media/characters/enuk/front.svg",
  19386. extra: 437 / 406,
  19387. bottom: 0.02
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(5 + 8 / 12, "feet"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(5 + 10 / 12, "feet"),
  19404. weight: math.unit(252, "lb"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/bruun/front.svg",
  19408. extra: 197 / 187,
  19409. bottom: 0.012
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(5 + 10 / 12, "feet"),
  19417. default: true
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(6 + 10 / 12, "feet"),
  19426. weight: math.unit(255, "lb"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/alexeev/front.svg",
  19430. extra: 213 / 200,
  19431. bottom: 0.05
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(6 + 10 / 12, "feet"),
  19439. default: true
  19440. },
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19445. {
  19446. front: {
  19447. height: math.unit(2 + 8 / 12, "feet"),
  19448. weight: math.unit(22, "lb"),
  19449. name: "Front",
  19450. image: {
  19451. source: "./media/characters/evelyn/front.svg",
  19452. extra: 208 / 180
  19453. }
  19454. },
  19455. },
  19456. [
  19457. {
  19458. name: "Normal",
  19459. height: math.unit(2 + 8 / 12, "feet"),
  19460. default: true
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19466. {
  19467. front: {
  19468. height: math.unit(5 + 9 / 12, "feet"),
  19469. weight: math.unit(139, "lb"),
  19470. name: "Front",
  19471. image: {
  19472. source: "./media/characters/inca/front.svg",
  19473. extra: 294 / 291,
  19474. bottom: 0.03
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Normal",
  19481. height: math.unit(5 + 9 / 12, "feet"),
  19482. default: true
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19488. {
  19489. front: {
  19490. height: math.unit(5 + 1 / 12, "feet"),
  19491. weight: math.unit(84, "lb"),
  19492. name: "Front",
  19493. image: {
  19494. source: "./media/characters/magdalene/front.svg",
  19495. extra: 293 / 273
  19496. }
  19497. },
  19498. },
  19499. [
  19500. {
  19501. name: "Normal",
  19502. height: math.unit(5 + 1 / 12, "feet"),
  19503. default: true
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(6 + 3 / 12, "feet"),
  19512. weight: math.unit(185, "lb"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/mera/front.svg",
  19516. extra: 291 / 277,
  19517. bottom: 0.03
  19518. }
  19519. },
  19520. },
  19521. [
  19522. {
  19523. name: "Normal",
  19524. height: math.unit(6 + 3 / 12, "feet"),
  19525. default: true
  19526. },
  19527. ]
  19528. ))
  19529. characterMakers.push(() => makeCharacter(
  19530. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19531. {
  19532. front: {
  19533. height: math.unit(6 + 7 / 12, "feet"),
  19534. weight: math.unit(160, "lb"),
  19535. name: "Front",
  19536. image: {
  19537. source: "./media/characters/ceres/front.svg",
  19538. extra: 1023 / 950,
  19539. bottom: 0.027
  19540. }
  19541. },
  19542. back: {
  19543. height: math.unit(6 + 7 / 12, "feet"),
  19544. weight: math.unit(160, "lb"),
  19545. name: "Back",
  19546. image: {
  19547. source: "./media/characters/ceres/back.svg",
  19548. extra: 1023 / 950
  19549. }
  19550. },
  19551. },
  19552. [
  19553. {
  19554. name: "Normal",
  19555. height: math.unit(6 + 7 / 12, "feet"),
  19556. default: true
  19557. },
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(5 + 10 / 12, "feet"),
  19565. weight: math.unit(150, "lb"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/kris/front.svg",
  19569. extra: 885 / 803,
  19570. bottom: 0.03
  19571. }
  19572. },
  19573. },
  19574. [
  19575. {
  19576. name: "Normal",
  19577. height: math.unit(5 + 10 / 12, "feet"),
  19578. default: true
  19579. },
  19580. ]
  19581. ))
  19582. characterMakers.push(() => makeCharacter(
  19583. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19584. {
  19585. front: {
  19586. height: math.unit(7, "feet"),
  19587. weight: math.unit(120, "kg"),
  19588. name: "Front",
  19589. image: {
  19590. source: "./media/characters/taluthus/front.svg",
  19591. extra: 903 / 833,
  19592. bottom: 0.015
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(7, "feet"),
  19600. default: true
  19601. },
  19602. {
  19603. name: "Macro",
  19604. height: math.unit(300, "feet")
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(5 + 9 / 12, "feet"),
  19613. weight: math.unit(145, "lb"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/dawn/front.svg",
  19617. extra: 2094 / 2016,
  19618. bottom: 0.025
  19619. }
  19620. },
  19621. back: {
  19622. height: math.unit(5 + 9 / 12, "feet"),
  19623. weight: math.unit(160, "lb"),
  19624. name: "Back",
  19625. image: {
  19626. source: "./media/characters/dawn/back.svg",
  19627. extra: 2112 / 2080,
  19628. bottom: 0.005
  19629. }
  19630. },
  19631. },
  19632. [
  19633. {
  19634. name: "Normal",
  19635. height: math.unit(6 + 7 / 12, "feet"),
  19636. default: true
  19637. },
  19638. ]
  19639. ))
  19640. characterMakers.push(() => makeCharacter(
  19641. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19642. {
  19643. anthro: {
  19644. height: math.unit(8 + 3 / 12, "feet"),
  19645. weight: math.unit(450, "lb"),
  19646. name: "Anthro",
  19647. image: {
  19648. source: "./media/characters/arador/anthro.svg",
  19649. extra: 1835 / 1718,
  19650. bottom: 0.025
  19651. }
  19652. },
  19653. feral: {
  19654. height: math.unit(4, "feet"),
  19655. weight: math.unit(200, "lb"),
  19656. name: "Feral",
  19657. image: {
  19658. source: "./media/characters/arador/feral.svg",
  19659. extra: 1683 / 1514,
  19660. bottom: 0.07
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(8 + 3 / 12, "feet")
  19668. },
  19669. {
  19670. name: "Macro",
  19671. height: math.unit(82.5, "feet"),
  19672. default: true
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(5 + 10 / 12, "feet"),
  19681. weight: math.unit(125, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/dharsi/front.svg",
  19685. extra: 716 / 630,
  19686. bottom: 0.035
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Nano",
  19693. height: math.unit(100, "nm")
  19694. },
  19695. {
  19696. name: "Micro",
  19697. height: math.unit(2, "inches")
  19698. },
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(5 + 10 / 12, "feet"),
  19702. default: true
  19703. },
  19704. {
  19705. name: "Macro",
  19706. height: math.unit(1000, "feet")
  19707. },
  19708. {
  19709. name: "Megamacro",
  19710. height: math.unit(10, "miles")
  19711. },
  19712. {
  19713. name: "Gigamacro",
  19714. height: math.unit(3000, "miles")
  19715. },
  19716. {
  19717. name: "Teramacro",
  19718. height: math.unit(500000, "miles")
  19719. },
  19720. {
  19721. name: "Teramacro+",
  19722. height: math.unit(30, "galaxies")
  19723. },
  19724. ]
  19725. ))
  19726. characterMakers.push(() => makeCharacter(
  19727. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19728. {
  19729. front: {
  19730. height: math.unit(6, "feet"),
  19731. weight: math.unit(150, "lb"),
  19732. name: "Front",
  19733. image: {
  19734. source: "./media/characters/deathy/front.svg",
  19735. extra: 1552 / 1463,
  19736. bottom: 0.025
  19737. }
  19738. },
  19739. side: {
  19740. height: math.unit(6, "feet"),
  19741. weight: math.unit(150, "lb"),
  19742. name: "Side",
  19743. image: {
  19744. source: "./media/characters/deathy/side.svg",
  19745. extra: 1604 / 1455,
  19746. bottom: 0.025
  19747. }
  19748. },
  19749. back: {
  19750. height: math.unit(6, "feet"),
  19751. weight: math.unit(150, "lb"),
  19752. name: "Back",
  19753. image: {
  19754. source: "./media/characters/deathy/back.svg",
  19755. extra: 1580 / 1463,
  19756. bottom: 0.005
  19757. }
  19758. },
  19759. },
  19760. [
  19761. {
  19762. name: "Micro",
  19763. height: math.unit(5, "millimeters")
  19764. },
  19765. {
  19766. name: "Normal",
  19767. height: math.unit(6 + 5 / 12, "feet"),
  19768. default: true
  19769. },
  19770. ]
  19771. ))
  19772. characterMakers.push(() => makeCharacter(
  19773. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19774. {
  19775. front: {
  19776. height: math.unit(16, "feet"),
  19777. weight: math.unit(4000, "lb"),
  19778. name: "Front",
  19779. image: {
  19780. source: "./media/characters/juniper/front.svg",
  19781. bottom: 0.04
  19782. }
  19783. },
  19784. },
  19785. [
  19786. {
  19787. name: "Normal",
  19788. height: math.unit(16, "feet"),
  19789. default: true
  19790. },
  19791. ]
  19792. ))
  19793. characterMakers.push(() => makeCharacter(
  19794. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19795. {
  19796. front: {
  19797. height: math.unit(6, "feet"),
  19798. weight: math.unit(150, "lb"),
  19799. name: "Front",
  19800. image: {
  19801. source: "./media/characters/hipster/front.svg",
  19802. extra: 1312 / 1209,
  19803. bottom: 0.025
  19804. }
  19805. },
  19806. back: {
  19807. height: math.unit(6, "feet"),
  19808. weight: math.unit(150, "lb"),
  19809. name: "Back",
  19810. image: {
  19811. source: "./media/characters/hipster/back.svg",
  19812. extra: 1281 / 1196,
  19813. bottom: 0.01
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Micro",
  19820. height: math.unit(1, "mm")
  19821. },
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(4, "inches"),
  19825. default: true
  19826. },
  19827. {
  19828. name: "Macro",
  19829. height: math.unit(500, "feet")
  19830. },
  19831. {
  19832. name: "Megamacro",
  19833. height: math.unit(1000, "miles")
  19834. },
  19835. ]
  19836. ))
  19837. characterMakers.push(() => makeCharacter(
  19838. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19839. {
  19840. front: {
  19841. height: math.unit(6, "feet"),
  19842. weight: math.unit(150, "lb"),
  19843. name: "Front",
  19844. image: {
  19845. source: "./media/characters/tendirmuldr/front.svg",
  19846. extra: 1878 / 1772,
  19847. bottom: 0.015
  19848. }
  19849. },
  19850. },
  19851. [
  19852. {
  19853. name: "Megamacro",
  19854. height: math.unit(1500, "miles"),
  19855. default: true
  19856. },
  19857. ]
  19858. ))
  19859. characterMakers.push(() => makeCharacter(
  19860. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19861. {
  19862. front: {
  19863. height: math.unit(14, "feet"),
  19864. weight: math.unit(12000, "lb"),
  19865. name: "Front",
  19866. image: {
  19867. source: "./media/characters/mort/front.svg",
  19868. extra: 365 / 318,
  19869. bottom: 0.01
  19870. }
  19871. },
  19872. side: {
  19873. height: math.unit(14, "feet"),
  19874. weight: math.unit(12000, "lb"),
  19875. name: "Side",
  19876. image: {
  19877. source: "./media/characters/mort/side.svg",
  19878. extra: 365 / 318,
  19879. bottom: 0.052
  19880. },
  19881. default: true
  19882. },
  19883. back: {
  19884. height: math.unit(14, "feet"),
  19885. weight: math.unit(12000, "lb"),
  19886. name: "Back",
  19887. image: {
  19888. source: "./media/characters/mort/back.svg",
  19889. extra: 371 / 332,
  19890. bottom: 0.18
  19891. }
  19892. },
  19893. },
  19894. [
  19895. {
  19896. name: "Normal",
  19897. height: math.unit(14, "feet"),
  19898. default: true
  19899. },
  19900. ]
  19901. ))
  19902. characterMakers.push(() => makeCharacter(
  19903. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19904. {
  19905. front: {
  19906. height: math.unit(8, "feet"),
  19907. weight: math.unit(1, "ton"),
  19908. name: "Front",
  19909. image: {
  19910. source: "./media/characters/lycoa/front.svg",
  19911. extra: 1875 / 1789,
  19912. bottom: 0.022
  19913. }
  19914. },
  19915. back: {
  19916. height: math.unit(8, "feet"),
  19917. weight: math.unit(1, "ton"),
  19918. name: "Back",
  19919. image: {
  19920. source: "./media/characters/lycoa/back.svg",
  19921. extra: 1835 / 1781,
  19922. bottom: 0.03
  19923. }
  19924. },
  19925. head: {
  19926. height: math.unit(2.1, "feet"),
  19927. name: "Head",
  19928. image: {
  19929. source: "./media/characters/lycoa/head.svg"
  19930. }
  19931. },
  19932. tailmaw: {
  19933. height: math.unit(1.9, "feet"),
  19934. name: "Tailmaw",
  19935. image: {
  19936. source: "./media/characters/lycoa/tailmaw.svg"
  19937. }
  19938. },
  19939. tentacles: {
  19940. height: math.unit(2.1, "feet"),
  19941. name: "Tentacles",
  19942. image: {
  19943. source: "./media/characters/lycoa/tentacles.svg"
  19944. }
  19945. },
  19946. dick: {
  19947. height: math.unit(1.73, "feet"),
  19948. name: "Dick",
  19949. image: {
  19950. source: "./media/characters/lycoa/dick.svg"
  19951. }
  19952. },
  19953. },
  19954. [
  19955. {
  19956. name: "Normal",
  19957. height: math.unit(8, "feet"),
  19958. default: true
  19959. },
  19960. {
  19961. name: "Macro",
  19962. height: math.unit(30, "feet")
  19963. },
  19964. ]
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19968. {
  19969. front: {
  19970. height: math.unit(4 + 2 / 12, "feet"),
  19971. weight: math.unit(70, "lb"),
  19972. name: "Front",
  19973. image: {
  19974. source: "./media/characters/naldara/front.svg",
  19975. extra: 841 / 720,
  19976. bottom: 0.04
  19977. }
  19978. },
  19979. naga: {
  19980. height: math.unit(23, "feet"),
  19981. weight: math.unit(15000, "kg"),
  19982. name: "Naga",
  19983. image: {
  19984. source: "./media/characters/naldara/naga.svg",
  19985. extra: 3290 / 2959,
  19986. bottom: 124 / 3432
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Normal",
  19993. height: math.unit(4 + 2 / 12, "feet"),
  19994. default: true
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20000. {
  20001. front: {
  20002. height: math.unit(13 + 7 / 12, "feet"),
  20003. weight: math.unit(1500, "lb"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/briar/front.svg",
  20007. extra: 626 / 596,
  20008. bottom: 0.08
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(13 + 7 / 12, "feet"),
  20016. default: true
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20022. {
  20023. side: {
  20024. height: math.unit(10, "feet"),
  20025. weight: math.unit(500, "lb"),
  20026. name: "Side",
  20027. image: {
  20028. source: "./media/characters/vanguard/side.svg",
  20029. extra: 502 / 425,
  20030. bottom: 0.087
  20031. }
  20032. },
  20033. },
  20034. [
  20035. {
  20036. name: "Normal",
  20037. height: math.unit(10, "feet"),
  20038. default: true
  20039. },
  20040. ]
  20041. ))
  20042. characterMakers.push(() => makeCharacter(
  20043. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20044. {
  20045. front: {
  20046. height: math.unit(7.5, "feet"),
  20047. weight: math.unit(2, "lb"),
  20048. name: "Front",
  20049. image: {
  20050. source: "./media/characters/artemis/front.svg",
  20051. extra: 1192 / 1075,
  20052. bottom: 0.07
  20053. }
  20054. },
  20055. frontNsfw: {
  20056. height: math.unit(7.5, "feet"),
  20057. weight: math.unit(2, "lb"),
  20058. name: "Front (NSFW)",
  20059. image: {
  20060. source: "./media/characters/artemis/front-nsfw.svg",
  20061. extra: 1192 / 1075,
  20062. bottom: 0.07
  20063. }
  20064. },
  20065. frontNsfwer: {
  20066. height: math.unit(7.5, "feet"),
  20067. weight: math.unit(2, "lb"),
  20068. name: "Front (NSFW-er)",
  20069. image: {
  20070. source: "./media/characters/artemis/front-nsfwer.svg",
  20071. extra: 1192 / 1075,
  20072. bottom: 0.07
  20073. }
  20074. },
  20075. side: {
  20076. height: math.unit(7.5, "feet"),
  20077. weight: math.unit(2, "lb"),
  20078. name: "Side",
  20079. image: {
  20080. source: "./media/characters/artemis/side.svg",
  20081. extra: 1192 / 1075,
  20082. bottom: 0.07
  20083. }
  20084. },
  20085. sideNsfw: {
  20086. height: math.unit(7.5, "feet"),
  20087. weight: math.unit(2, "lb"),
  20088. name: "Side (NSFW)",
  20089. image: {
  20090. source: "./media/characters/artemis/side-nsfw.svg",
  20091. extra: 1192 / 1075,
  20092. bottom: 0.07
  20093. }
  20094. },
  20095. sideNsfwer: {
  20096. height: math.unit(7.5, "feet"),
  20097. weight: math.unit(2, "lb"),
  20098. name: "Side (NSFW-er)",
  20099. image: {
  20100. source: "./media/characters/artemis/side-nsfwer.svg",
  20101. extra: 1192 / 1075,
  20102. bottom: 0.07
  20103. }
  20104. },
  20105. maw: {
  20106. height: math.unit(1.1, "feet"),
  20107. name: "Maw",
  20108. image: {
  20109. source: "./media/characters/artemis/maw.svg"
  20110. }
  20111. },
  20112. stomach: {
  20113. height: math.unit(0.95, "feet"),
  20114. name: "Stomach",
  20115. image: {
  20116. source: "./media/characters/artemis/stomach.svg"
  20117. }
  20118. },
  20119. dickCanine: {
  20120. height: math.unit(1, "feet"),
  20121. name: "Dick (Canine)",
  20122. image: {
  20123. source: "./media/characters/artemis/dick-canine.svg"
  20124. }
  20125. },
  20126. dickEquine: {
  20127. height: math.unit(0.85, "feet"),
  20128. name: "Dick (Equine)",
  20129. image: {
  20130. source: "./media/characters/artemis/dick-equine.svg"
  20131. }
  20132. },
  20133. dickExotic: {
  20134. height: math.unit(0.85, "feet"),
  20135. name: "Dick (Exotic)",
  20136. image: {
  20137. source: "./media/characters/artemis/dick-exotic.svg"
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(7.5, "feet"),
  20145. default: true
  20146. },
  20147. {
  20148. name: "Enlarged",
  20149. height: math.unit(12, "feet")
  20150. },
  20151. ]
  20152. ))
  20153. characterMakers.push(() => makeCharacter(
  20154. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20155. {
  20156. front: {
  20157. height: math.unit(5 + 3 / 12, "feet"),
  20158. weight: math.unit(160, "lb"),
  20159. name: "Front",
  20160. image: {
  20161. source: "./media/characters/kira/front.svg",
  20162. extra: 906 / 786,
  20163. bottom: 0.01
  20164. }
  20165. },
  20166. back: {
  20167. height: math.unit(5 + 3 / 12, "feet"),
  20168. weight: math.unit(160, "lb"),
  20169. name: "Back",
  20170. image: {
  20171. source: "./media/characters/kira/back.svg",
  20172. extra: 882 / 757,
  20173. bottom: 0.005
  20174. }
  20175. },
  20176. frontDressed: {
  20177. height: math.unit(5 + 3 / 12, "feet"),
  20178. weight: math.unit(160, "lb"),
  20179. name: "Front (Dressed)",
  20180. image: {
  20181. source: "./media/characters/kira/front-dressed.svg",
  20182. extra: 906 / 786,
  20183. bottom: 0.01
  20184. }
  20185. },
  20186. beans: {
  20187. height: math.unit(0.92, "feet"),
  20188. name: "Beans",
  20189. image: {
  20190. source: "./media/characters/kira/beans.svg"
  20191. }
  20192. },
  20193. },
  20194. [
  20195. {
  20196. name: "Normal",
  20197. height: math.unit(5 + 3 / 12, "feet"),
  20198. default: true
  20199. },
  20200. ]
  20201. ))
  20202. characterMakers.push(() => makeCharacter(
  20203. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20204. {
  20205. front: {
  20206. height: math.unit(5 + 4 / 12, "feet"),
  20207. weight: math.unit(145, "lb"),
  20208. name: "Front",
  20209. image: {
  20210. source: "./media/characters/scramble/front.svg",
  20211. extra: 763 / 727,
  20212. bottom: 0.05
  20213. }
  20214. },
  20215. back: {
  20216. height: math.unit(5 + 4 / 12, "feet"),
  20217. weight: math.unit(145, "lb"),
  20218. name: "Back",
  20219. image: {
  20220. source: "./media/characters/scramble/back.svg",
  20221. extra: 826 / 737,
  20222. bottom: 0.002
  20223. }
  20224. },
  20225. },
  20226. [
  20227. {
  20228. name: "Normal",
  20229. height: math.unit(5 + 4 / 12, "feet"),
  20230. default: true
  20231. },
  20232. ]
  20233. ))
  20234. characterMakers.push(() => makeCharacter(
  20235. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20236. {
  20237. side: {
  20238. height: math.unit(6 + 2 / 12, "feet"),
  20239. weight: math.unit(190, "lb"),
  20240. name: "Side",
  20241. image: {
  20242. source: "./media/characters/biscuit/side.svg",
  20243. extra: 858 / 791,
  20244. bottom: 0.044
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(6 + 2 / 12, "feet"),
  20252. default: true
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20258. {
  20259. front: {
  20260. height: math.unit(5 + 2 / 12, "feet"),
  20261. weight: math.unit(120, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/poffin/front.svg",
  20265. extra: 786 / 680,
  20266. bottom: 0.005
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Normal",
  20273. height: math.unit(5 + 2 / 12, "feet"),
  20274. default: true
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(6 + 3 / 12, "feet"),
  20283. weight: math.unit(519, "lb"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/dhari/front.svg",
  20287. extra: 1048 / 946,
  20288. bottom: 0.015
  20289. }
  20290. },
  20291. back: {
  20292. height: math.unit(6 + 3 / 12, "feet"),
  20293. weight: math.unit(519, "lb"),
  20294. name: "Back",
  20295. image: {
  20296. source: "./media/characters/dhari/back.svg",
  20297. extra: 1048 / 931,
  20298. bottom: 0.005
  20299. }
  20300. },
  20301. frontDressed: {
  20302. height: math.unit(6 + 3 / 12, "feet"),
  20303. weight: math.unit(519, "lb"),
  20304. name: "Front (Dressed)",
  20305. image: {
  20306. source: "./media/characters/dhari/front-dressed.svg",
  20307. extra: 1713 / 1546,
  20308. bottom: 0.02
  20309. }
  20310. },
  20311. backDressed: {
  20312. height: math.unit(6 + 3 / 12, "feet"),
  20313. weight: math.unit(519, "lb"),
  20314. name: "Back (Dressed)",
  20315. image: {
  20316. source: "./media/characters/dhari/back-dressed.svg",
  20317. extra: 1699 / 1537,
  20318. bottom: 0.01
  20319. }
  20320. },
  20321. maw: {
  20322. height: math.unit(0.95, "feet"),
  20323. name: "Maw",
  20324. image: {
  20325. source: "./media/characters/dhari/maw.svg"
  20326. }
  20327. },
  20328. wereFront: {
  20329. height: math.unit(12 + 8 / 12, "feet"),
  20330. weight: math.unit(4000, "lb"),
  20331. name: "Front (Were)",
  20332. image: {
  20333. source: "./media/characters/dhari/were-front.svg",
  20334. extra: 1065 / 969,
  20335. bottom: 0.015
  20336. }
  20337. },
  20338. wereBack: {
  20339. height: math.unit(12 + 8 / 12, "feet"),
  20340. weight: math.unit(4000, "lb"),
  20341. name: "Back (Were)",
  20342. image: {
  20343. source: "./media/characters/dhari/were-back.svg",
  20344. extra: 1065 / 969,
  20345. bottom: 0.012
  20346. }
  20347. },
  20348. wereMaw: {
  20349. height: math.unit(0.625, "meters"),
  20350. name: "Maw (Were)",
  20351. image: {
  20352. source: "./media/characters/dhari/were-maw.svg"
  20353. }
  20354. },
  20355. },
  20356. [
  20357. {
  20358. name: "Normal",
  20359. height: math.unit(6 + 3 / 12, "feet"),
  20360. default: true
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20366. {
  20367. anthro: {
  20368. height: math.unit(5 + 7 / 12, "feet"),
  20369. weight: math.unit(175, "lb"),
  20370. name: "Anthro",
  20371. image: {
  20372. source: "./media/characters/rena-dyne/anthro.svg",
  20373. extra: 1849 / 1785,
  20374. bottom: 0.005
  20375. }
  20376. },
  20377. taur: {
  20378. height: math.unit(15 + 6 / 12, "feet"),
  20379. weight: math.unit(8000, "lb"),
  20380. name: "Taur",
  20381. image: {
  20382. source: "./media/characters/rena-dyne/taur.svg",
  20383. extra: 2315 / 2234,
  20384. bottom: 0.033
  20385. }
  20386. },
  20387. },
  20388. [
  20389. {
  20390. name: "Normal",
  20391. height: math.unit(5 + 7 / 12, "feet"),
  20392. default: true
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20398. {
  20399. front: {
  20400. height: math.unit(8, "feet"),
  20401. weight: math.unit(600, "lb"),
  20402. name: "Front",
  20403. image: {
  20404. source: "./media/characters/weremeep/front.svg",
  20405. extra: 967 / 862,
  20406. bottom: 0.01
  20407. }
  20408. },
  20409. },
  20410. [
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(8, "feet"),
  20414. default: true
  20415. },
  20416. {
  20417. name: "Lorg",
  20418. height: math.unit(12, "feet")
  20419. },
  20420. {
  20421. name: "Oh Lawd She Comin'",
  20422. height: math.unit(20, "feet")
  20423. },
  20424. ]
  20425. ))
  20426. characterMakers.push(() => makeCharacter(
  20427. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20428. {
  20429. front: {
  20430. height: math.unit(4, "feet"),
  20431. weight: math.unit(90, "lb"),
  20432. name: "Front",
  20433. image: {
  20434. source: "./media/characters/reza/front.svg",
  20435. extra: 1183 / 1111,
  20436. bottom: 0.017
  20437. }
  20438. },
  20439. back: {
  20440. height: math.unit(4, "feet"),
  20441. weight: math.unit(90, "lb"),
  20442. name: "Back",
  20443. image: {
  20444. source: "./media/characters/reza/back.svg",
  20445. extra: 1183 / 1111,
  20446. bottom: 0.01
  20447. }
  20448. },
  20449. drake: {
  20450. height: math.unit(30, "feet"),
  20451. weight: math.unit(246960, "lb"),
  20452. name: "Drake",
  20453. image: {
  20454. source: "./media/characters/reza/drake.svg",
  20455. extra: 2350 / 2024,
  20456. bottom: 60.7 / 2403
  20457. }
  20458. },
  20459. },
  20460. [
  20461. {
  20462. name: "Normal",
  20463. height: math.unit(4, "feet"),
  20464. default: true
  20465. },
  20466. ]
  20467. ))
  20468. characterMakers.push(() => makeCharacter(
  20469. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20470. {
  20471. side: {
  20472. height: math.unit(15, "feet"),
  20473. weight: math.unit(14, "tons"),
  20474. name: "Side",
  20475. image: {
  20476. source: "./media/characters/athea/side.svg",
  20477. extra: 960 / 540,
  20478. bottom: 0.003
  20479. }
  20480. },
  20481. sitting: {
  20482. height: math.unit(6 * 2.85, "feet"),
  20483. weight: math.unit(14, "tons"),
  20484. name: "Sitting",
  20485. image: {
  20486. source: "./media/characters/athea/sitting.svg",
  20487. extra: 621 / 581,
  20488. bottom: 0.075
  20489. }
  20490. },
  20491. maw: {
  20492. height: math.unit(7.59498031496063, "feet"),
  20493. name: "Maw",
  20494. image: {
  20495. source: "./media/characters/athea/maw.svg"
  20496. }
  20497. },
  20498. },
  20499. [
  20500. {
  20501. name: "Lap Cat",
  20502. height: math.unit(2.5, "feet")
  20503. },
  20504. {
  20505. name: "Minimacro",
  20506. height: math.unit(15, "feet"),
  20507. default: true
  20508. },
  20509. {
  20510. name: "Macro",
  20511. height: math.unit(120, "feet")
  20512. },
  20513. {
  20514. name: "Macro+",
  20515. height: math.unit(640, "feet")
  20516. },
  20517. {
  20518. name: "Colossus",
  20519. height: math.unit(2.2, "miles")
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20525. {
  20526. front: {
  20527. height: math.unit(8 + 8 / 12, "feet"),
  20528. weight: math.unit(130, "kg"),
  20529. name: "Front",
  20530. image: {
  20531. source: "./media/characters/seroko/front.svg",
  20532. extra: 1385 / 1280,
  20533. bottom: 0.025
  20534. }
  20535. },
  20536. back: {
  20537. height: math.unit(8 + 8 / 12, "feet"),
  20538. weight: math.unit(130, "kg"),
  20539. name: "Back",
  20540. image: {
  20541. source: "./media/characters/seroko/back.svg",
  20542. extra: 1369 / 1238,
  20543. bottom: 0.018
  20544. }
  20545. },
  20546. frontDressed: {
  20547. height: math.unit(8 + 8 / 12, "feet"),
  20548. weight: math.unit(130, "kg"),
  20549. name: "Front (Dressed)",
  20550. image: {
  20551. source: "./media/characters/seroko/front-dressed.svg",
  20552. extra: 1366 / 1275,
  20553. bottom: 0.03
  20554. }
  20555. },
  20556. },
  20557. [
  20558. {
  20559. name: "Normal",
  20560. height: math.unit(8 + 8 / 12, "feet"),
  20561. default: true
  20562. },
  20563. ]
  20564. ))
  20565. characterMakers.push(() => makeCharacter(
  20566. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20567. {
  20568. front: {
  20569. height: math.unit(5.5, "feet"),
  20570. weight: math.unit(160, "lb"),
  20571. name: "Front",
  20572. image: {
  20573. source: "./media/characters/quatzi/front.svg",
  20574. extra: 2346 / 2242,
  20575. bottom: 0.015
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(5.5, "feet"),
  20583. default: true
  20584. },
  20585. {
  20586. name: "Big",
  20587. height: math.unit(7.7, "feet")
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(5 + 11 / 12, "feet"),
  20596. weight: math.unit(180, "lb"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/sen/front.svg",
  20600. extra: 1321 / 1254,
  20601. bottom: 0.015
  20602. }
  20603. },
  20604. side: {
  20605. height: math.unit(5 + 11 / 12, "feet"),
  20606. weight: math.unit(180, "lb"),
  20607. name: "Side",
  20608. image: {
  20609. source: "./media/characters/sen/side.svg",
  20610. extra: 1321 / 1254,
  20611. bottom: 0.007
  20612. }
  20613. },
  20614. back: {
  20615. height: math.unit(5 + 11 / 12, "feet"),
  20616. weight: math.unit(180, "lb"),
  20617. name: "Back",
  20618. image: {
  20619. source: "./media/characters/sen/back.svg",
  20620. extra: 1321 / 1254
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(5 + 11 / 12, "feet"),
  20628. default: true
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20634. {
  20635. front: {
  20636. height: math.unit(166.6, "cm"),
  20637. weight: math.unit(66.6, "kg"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/fruity/front.svg",
  20641. extra: 1510 / 1386,
  20642. bottom: 0.04
  20643. }
  20644. },
  20645. back: {
  20646. height: math.unit(166.6, "cm"),
  20647. weight: math.unit(66.6, "lb"),
  20648. name: "Back",
  20649. image: {
  20650. source: "./media/characters/fruity/back.svg",
  20651. extra: 1563 / 1435,
  20652. bottom: 0.005
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(166.6, "cm"),
  20660. default: true
  20661. },
  20662. {
  20663. name: "Demonic",
  20664. height: math.unit(166.6, "feet")
  20665. },
  20666. ]
  20667. ))
  20668. characterMakers.push(() => makeCharacter(
  20669. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20670. {
  20671. side: {
  20672. height: math.unit(10, "feet"),
  20673. weight: math.unit(500, "lb"),
  20674. name: "Side",
  20675. image: {
  20676. source: "./media/characters/zost/side.svg",
  20677. extra: 966 / 880,
  20678. bottom: 0.075
  20679. }
  20680. },
  20681. mawFront: {
  20682. height: math.unit(1.08, "meters"),
  20683. name: "Maw (Front)",
  20684. image: {
  20685. source: "./media/characters/zost/maw-front.svg"
  20686. }
  20687. },
  20688. mawSide: {
  20689. height: math.unit(2.66, "feet"),
  20690. name: "Maw (Side)",
  20691. image: {
  20692. source: "./media/characters/zost/maw-side.svg"
  20693. }
  20694. },
  20695. },
  20696. [
  20697. {
  20698. name: "Normal",
  20699. height: math.unit(10, "feet"),
  20700. default: true
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20706. {
  20707. front: {
  20708. height: math.unit(5 + 4 / 12, "feet"),
  20709. weight: math.unit(120, "lb"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/luci/front.svg",
  20713. extra: 1985 / 1884,
  20714. bottom: 0.04
  20715. }
  20716. },
  20717. back: {
  20718. height: math.unit(5 + 4 / 12, "feet"),
  20719. weight: math.unit(120, "lb"),
  20720. name: "Back",
  20721. image: {
  20722. source: "./media/characters/luci/back.svg",
  20723. extra: 1892 / 1791,
  20724. bottom: 0.002
  20725. }
  20726. },
  20727. },
  20728. [
  20729. {
  20730. name: "Normal",
  20731. height: math.unit(5 + 4 / 12, "feet"),
  20732. default: true
  20733. },
  20734. ]
  20735. ))
  20736. characterMakers.push(() => makeCharacter(
  20737. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20738. {
  20739. front: {
  20740. height: math.unit(1500, "feet"),
  20741. weight: math.unit(3.8e6, "tons"),
  20742. name: "Front",
  20743. image: {
  20744. source: "./media/characters/2th/front.svg",
  20745. extra: 3489 / 3350,
  20746. bottom: 0.1
  20747. }
  20748. },
  20749. foot: {
  20750. height: math.unit(461, "feet"),
  20751. name: "Foot",
  20752. image: {
  20753. source: "./media/characters/2th/foot.svg"
  20754. }
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "\"Micro\"",
  20760. height: math.unit(15 + 7 / 12, "feet")
  20761. },
  20762. {
  20763. name: "Normal",
  20764. height: math.unit(1500, "feet"),
  20765. default: true
  20766. },
  20767. {
  20768. name: "Macro",
  20769. height: math.unit(5000, "feet")
  20770. },
  20771. {
  20772. name: "Megamacro",
  20773. height: math.unit(15, "miles")
  20774. },
  20775. {
  20776. name: "Gigamacro",
  20777. height: math.unit(4000, "miles")
  20778. },
  20779. {
  20780. name: "Galactic",
  20781. height: math.unit(50, "AU")
  20782. },
  20783. ]
  20784. ))
  20785. characterMakers.push(() => makeCharacter(
  20786. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20787. {
  20788. front: {
  20789. height: math.unit(5 + 6 / 12, "feet"),
  20790. weight: math.unit(220, "lb"),
  20791. name: "Front",
  20792. image: {
  20793. source: "./media/characters/amethyst/front.svg",
  20794. extra: 2078 / 2040,
  20795. bottom: 0.045
  20796. }
  20797. },
  20798. back: {
  20799. height: math.unit(5 + 6 / 12, "feet"),
  20800. weight: math.unit(220, "lb"),
  20801. name: "Back",
  20802. image: {
  20803. source: "./media/characters/amethyst/back.svg",
  20804. extra: 2021 / 1989,
  20805. bottom: 0.02
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(5 + 6 / 12, "feet"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20819. {
  20820. front: {
  20821. height: math.unit(4 + 11 / 12, "feet"),
  20822. weight: math.unit(120, "lb"),
  20823. name: "Front",
  20824. image: {
  20825. source: "./media/characters/yumi-akiyama/front.svg",
  20826. extra: 1327 / 1235,
  20827. bottom: 0.02
  20828. }
  20829. },
  20830. back: {
  20831. height: math.unit(4 + 11 / 12, "feet"),
  20832. weight: math.unit(120, "lb"),
  20833. name: "Back",
  20834. image: {
  20835. source: "./media/characters/yumi-akiyama/back.svg",
  20836. extra: 1287 / 1245,
  20837. bottom: 0.002
  20838. }
  20839. },
  20840. },
  20841. [
  20842. {
  20843. name: "Galactic",
  20844. height: math.unit(50, "galaxies"),
  20845. default: true
  20846. },
  20847. {
  20848. name: "Universal",
  20849. height: math.unit(100, "universes")
  20850. },
  20851. ]
  20852. ))
  20853. characterMakers.push(() => makeCharacter(
  20854. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20855. {
  20856. front: {
  20857. height: math.unit(8, "feet"),
  20858. weight: math.unit(500, "lb"),
  20859. name: "Front",
  20860. image: {
  20861. source: "./media/characters/rifter-yrmori/front.svg",
  20862. extra: 1180 / 1125,
  20863. bottom: 0.02
  20864. }
  20865. },
  20866. back: {
  20867. height: math.unit(8, "feet"),
  20868. weight: math.unit(500, "lb"),
  20869. name: "Back",
  20870. image: {
  20871. source: "./media/characters/rifter-yrmori/back.svg",
  20872. extra: 1190 / 1145,
  20873. bottom: 0.001
  20874. }
  20875. },
  20876. wings: {
  20877. height: math.unit(7.75, "feet"),
  20878. weight: math.unit(500, "lb"),
  20879. name: "Wings",
  20880. image: {
  20881. source: "./media/characters/rifter-yrmori/wings.svg",
  20882. extra: 1357 / 1285
  20883. }
  20884. },
  20885. maw: {
  20886. height: math.unit(0.8, "feet"),
  20887. name: "Maw",
  20888. image: {
  20889. source: "./media/characters/rifter-yrmori/maw.svg"
  20890. }
  20891. },
  20892. mawfront: {
  20893. height: math.unit(1.45, "feet"),
  20894. name: "Maw (Front)",
  20895. image: {
  20896. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Normal",
  20903. height: math.unit(8, "feet"),
  20904. default: true
  20905. },
  20906. {
  20907. name: "Macro",
  20908. height: math.unit(42, "meters")
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20914. {
  20915. were: {
  20916. height: math.unit(25 + 6 / 12, "feet"),
  20917. weight: math.unit(10000, "lb"),
  20918. name: "Were",
  20919. image: {
  20920. source: "./media/characters/tahajin/were.svg",
  20921. extra: 801 / 770,
  20922. bottom: 0.042
  20923. }
  20924. },
  20925. aquatic: {
  20926. height: math.unit(6 + 4 / 12, "feet"),
  20927. weight: math.unit(160, "lb"),
  20928. name: "Aquatic",
  20929. image: {
  20930. source: "./media/characters/tahajin/aquatic.svg",
  20931. extra: 572 / 542,
  20932. bottom: 0.04
  20933. }
  20934. },
  20935. chow: {
  20936. height: math.unit(8 + 11 / 12, "feet"),
  20937. weight: math.unit(450, "lb"),
  20938. name: "Chow",
  20939. image: {
  20940. source: "./media/characters/tahajin/chow.svg",
  20941. extra: 660 / 640,
  20942. bottom: 0.015
  20943. }
  20944. },
  20945. demiNaga: {
  20946. height: math.unit(6 + 8 / 12, "feet"),
  20947. weight: math.unit(300, "lb"),
  20948. name: "Demi Naga",
  20949. image: {
  20950. source: "./media/characters/tahajin/demi-naga.svg",
  20951. extra: 643 / 615,
  20952. bottom: 0.1
  20953. }
  20954. },
  20955. data: {
  20956. height: math.unit(5, "inches"),
  20957. weight: math.unit(0.1, "lb"),
  20958. name: "Data",
  20959. image: {
  20960. source: "./media/characters/tahajin/data.svg"
  20961. }
  20962. },
  20963. fluu: {
  20964. height: math.unit(5 + 7 / 12, "feet"),
  20965. weight: math.unit(140, "lb"),
  20966. name: "Fluu",
  20967. image: {
  20968. source: "./media/characters/tahajin/fluu.svg",
  20969. extra: 628 / 592,
  20970. bottom: 0.02
  20971. }
  20972. },
  20973. starWarrior: {
  20974. height: math.unit(4 + 5 / 12, "feet"),
  20975. weight: math.unit(50, "lb"),
  20976. name: "Star Warrior",
  20977. image: {
  20978. source: "./media/characters/tahajin/star-warrior.svg"
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(25 + 6 / 12, "feet"),
  20986. default: true
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20992. {
  20993. front: {
  20994. height: math.unit(8, "feet"),
  20995. weight: math.unit(350, "lb"),
  20996. name: "Front",
  20997. image: {
  20998. source: "./media/characters/gabira/front.svg",
  20999. extra: 608 / 580,
  21000. bottom: 0.03
  21001. }
  21002. },
  21003. back: {
  21004. height: math.unit(8, "feet"),
  21005. weight: math.unit(350, "lb"),
  21006. name: "Back",
  21007. image: {
  21008. source: "./media/characters/gabira/back.svg",
  21009. extra: 608 / 580,
  21010. bottom: 0.03
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(8, "feet"),
  21018. default: true
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21024. {
  21025. front: {
  21026. height: math.unit(5 + 3 / 12, "feet"),
  21027. weight: math.unit(137, "lb"),
  21028. name: "Front",
  21029. image: {
  21030. source: "./media/characters/sasha-katraine/front.svg",
  21031. bottom: 0.045
  21032. }
  21033. },
  21034. },
  21035. [
  21036. {
  21037. name: "Micro",
  21038. height: math.unit(5, "inches")
  21039. },
  21040. {
  21041. name: "Normal",
  21042. height: math.unit(5 + 3 / 12, "feet"),
  21043. default: true
  21044. },
  21045. ]
  21046. ))
  21047. characterMakers.push(() => makeCharacter(
  21048. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21049. {
  21050. side: {
  21051. height: math.unit(4, "inches"),
  21052. weight: math.unit(200, "grams"),
  21053. name: "Side",
  21054. image: {
  21055. source: "./media/characters/der/side.svg",
  21056. extra: 719 / 400,
  21057. bottom: 30.6 / 749.9187
  21058. }
  21059. },
  21060. },
  21061. [
  21062. {
  21063. name: "Micro",
  21064. height: math.unit(4, "inches"),
  21065. default: true
  21066. },
  21067. ]
  21068. ))
  21069. characterMakers.push(() => makeCharacter(
  21070. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21071. {
  21072. side: {
  21073. height: math.unit(30, "meters"),
  21074. weight: math.unit(700, "tonnes"),
  21075. name: "Side",
  21076. image: {
  21077. source: "./media/characters/fixerdragon/side.svg",
  21078. extra: (1293.0514 - 116.03) / 1106.86,
  21079. bottom: 116.03 / 1293.0514
  21080. }
  21081. },
  21082. },
  21083. [
  21084. {
  21085. name: "Planck",
  21086. height: math.unit(1.6e-35, "meters")
  21087. },
  21088. {
  21089. name: "Micro",
  21090. height: math.unit(0.4, "meters")
  21091. },
  21092. {
  21093. name: "Normal",
  21094. height: math.unit(30, "meters"),
  21095. default: true
  21096. },
  21097. {
  21098. name: "Megamacro",
  21099. height: math.unit(1.2, "megameters")
  21100. },
  21101. {
  21102. name: "Teramacro",
  21103. height: math.unit(130, "terameters")
  21104. },
  21105. {
  21106. name: "Yottamacro",
  21107. height: math.unit(6200, "yottameters")
  21108. },
  21109. ]
  21110. ));
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21113. {
  21114. front: {
  21115. height: math.unit(8, "feet"),
  21116. weight: math.unit(250, "lb"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/kite/front.svg",
  21120. extra: 2796 / 2659,
  21121. bottom: 0.002
  21122. }
  21123. },
  21124. },
  21125. [
  21126. {
  21127. name: "Normal",
  21128. height: math.unit(8, "feet"),
  21129. default: true
  21130. },
  21131. {
  21132. name: "Macro",
  21133. height: math.unit(360, "feet")
  21134. },
  21135. {
  21136. name: "Megamacro",
  21137. height: math.unit(1500, "feet")
  21138. },
  21139. ]
  21140. ))
  21141. characterMakers.push(() => makeCharacter(
  21142. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21143. {
  21144. front: {
  21145. height: math.unit(5 + 10 / 12, "feet"),
  21146. weight: math.unit(150, "lb"),
  21147. name: "Front",
  21148. image: {
  21149. source: "./media/characters/poojawa-vynar/front.svg",
  21150. extra: (1506.1547 - 55) / 1356.6,
  21151. bottom: 55 / 1506.1547
  21152. }
  21153. },
  21154. frontTailless: {
  21155. height: math.unit(5 + 10 / 12, "feet"),
  21156. weight: math.unit(150, "lb"),
  21157. name: "Front (Tailless)",
  21158. image: {
  21159. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21160. extra: (1506.1547 - 55) / 1356.6,
  21161. bottom: 55 / 1506.1547
  21162. }
  21163. },
  21164. },
  21165. [
  21166. {
  21167. name: "Normal",
  21168. height: math.unit(5 + 10 / 12, "feet"),
  21169. default: true
  21170. },
  21171. ]
  21172. ))
  21173. characterMakers.push(() => makeCharacter(
  21174. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21175. {
  21176. front: {
  21177. height: math.unit(293, "meters"),
  21178. weight: math.unit(70400, "tons"),
  21179. name: "Front",
  21180. image: {
  21181. source: "./media/characters/violette/front.svg",
  21182. extra: 1227 / 1180,
  21183. bottom: 0.005
  21184. }
  21185. },
  21186. back: {
  21187. height: math.unit(293, "meters"),
  21188. weight: math.unit(70400, "tons"),
  21189. name: "Back",
  21190. image: {
  21191. source: "./media/characters/violette/back.svg",
  21192. extra: 1227 / 1180,
  21193. bottom: 0.005
  21194. }
  21195. },
  21196. },
  21197. [
  21198. {
  21199. name: "Macro",
  21200. height: math.unit(293, "meters"),
  21201. default: true
  21202. },
  21203. ]
  21204. ))
  21205. characterMakers.push(() => makeCharacter(
  21206. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21207. {
  21208. front: {
  21209. height: math.unit(1050, "feet"),
  21210. weight: math.unit(200000, "tons"),
  21211. name: "Front",
  21212. image: {
  21213. source: "./media/characters/alessandra/front.svg",
  21214. extra: 960 / 912,
  21215. bottom: 0.06
  21216. }
  21217. },
  21218. },
  21219. [
  21220. {
  21221. name: "Macro",
  21222. height: math.unit(1050, "feet")
  21223. },
  21224. {
  21225. name: "Macro+",
  21226. height: math.unit(900, "meters"),
  21227. default: true
  21228. },
  21229. ]
  21230. ))
  21231. characterMakers.push(() => makeCharacter(
  21232. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21233. {
  21234. front: {
  21235. height: math.unit(5, "feet"),
  21236. weight: math.unit(187, "lb"),
  21237. name: "Front",
  21238. image: {
  21239. source: "./media/characters/person/front.svg",
  21240. extra: 3087 / 2945,
  21241. bottom: 91 / 3181
  21242. }
  21243. },
  21244. },
  21245. [
  21246. {
  21247. name: "Micro",
  21248. height: math.unit(3, "inches")
  21249. },
  21250. {
  21251. name: "Normal",
  21252. height: math.unit(5, "feet"),
  21253. default: true
  21254. },
  21255. {
  21256. name: "Macro",
  21257. height: math.unit(90, "feet")
  21258. },
  21259. {
  21260. name: "Max Size",
  21261. height: math.unit(280, "feet")
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21267. {
  21268. front: {
  21269. height: math.unit(4.5, "meters"),
  21270. weight: math.unit(3200, "lb"),
  21271. name: "Front",
  21272. image: {
  21273. source: "./media/characters/ty/front.svg",
  21274. extra: 1038 / 960,
  21275. bottom: 31.156 / 1068
  21276. }
  21277. },
  21278. back: {
  21279. height: math.unit(4.5, "meters"),
  21280. weight: math.unit(3200, "lb"),
  21281. name: "Back",
  21282. image: {
  21283. source: "./media/characters/ty/back.svg",
  21284. extra: 1044 / 966,
  21285. bottom: 7.48 / 1049
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Normal",
  21292. height: math.unit(4.5, "meters"),
  21293. default: true
  21294. },
  21295. ]
  21296. ))
  21297. characterMakers.push(() => makeCharacter(
  21298. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21299. {
  21300. front: {
  21301. height: math.unit(5 + 4 / 12, "feet"),
  21302. weight: math.unit(115, "lb"),
  21303. name: "Front",
  21304. image: {
  21305. source: "./media/characters/rocky/front.svg",
  21306. extra: 1012 / 975,
  21307. bottom: 54 / 1066
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Normal",
  21314. height: math.unit(5 + 4 / 12, "feet"),
  21315. default: true
  21316. },
  21317. ]
  21318. ))
  21319. characterMakers.push(() => makeCharacter(
  21320. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21321. {
  21322. upright: {
  21323. height: math.unit(6, "meters"),
  21324. weight: math.unit(4000, "kg"),
  21325. name: "Upright",
  21326. image: {
  21327. source: "./media/characters/ruin/upright.svg",
  21328. extra: 668 / 661,
  21329. bottom: 42 / 799.8396
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(6, "meters"),
  21337. default: true
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21343. {
  21344. front: {
  21345. height: math.unit(5, "feet"),
  21346. weight: math.unit(106, "lb"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/robin/front.svg",
  21350. extra: 862 / 799,
  21351. bottom: 42.4 / 914.8856
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(5, "feet"),
  21359. default: true
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21365. {
  21366. side: {
  21367. height: math.unit(3, "feet"),
  21368. weight: math.unit(225, "lb"),
  21369. name: "Side",
  21370. image: {
  21371. source: "./media/characters/saian/side.svg",
  21372. extra: 566 / 356,
  21373. bottom: 79.7 / 643
  21374. }
  21375. },
  21376. maw: {
  21377. height: math.unit(2.85, "feet"),
  21378. name: "Maw",
  21379. image: {
  21380. source: "./media/characters/saian/maw.svg"
  21381. }
  21382. },
  21383. },
  21384. [
  21385. {
  21386. name: "Normal",
  21387. height: math.unit(3, "feet"),
  21388. default: true
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21394. {
  21395. side: {
  21396. height: math.unit(8, "feet"),
  21397. weight: math.unit(300, "lb"),
  21398. name: "Side",
  21399. image: {
  21400. source: "./media/characters/equus-silvermane/side.svg",
  21401. extra: 2176 / 2050,
  21402. bottom: 65.7 / 2245
  21403. }
  21404. },
  21405. front: {
  21406. height: math.unit(8, "feet"),
  21407. weight: math.unit(300, "lb"),
  21408. name: "Front",
  21409. image: {
  21410. source: "./media/characters/equus-silvermane/front.svg",
  21411. extra: 4633 / 4400,
  21412. bottom: 71.3 / 4706.915
  21413. }
  21414. },
  21415. sideStepping: {
  21416. height: math.unit(8, "feet"),
  21417. weight: math.unit(300, "lb"),
  21418. name: "Side (Stepping)",
  21419. image: {
  21420. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21421. extra: 1968 / 1860,
  21422. bottom: 16.4 / 1989
  21423. }
  21424. },
  21425. },
  21426. [
  21427. {
  21428. name: "Normal",
  21429. height: math.unit(8, "feet")
  21430. },
  21431. {
  21432. name: "Minimacro",
  21433. height: math.unit(75, "feet"),
  21434. default: true
  21435. },
  21436. {
  21437. name: "Macro",
  21438. height: math.unit(150, "feet")
  21439. },
  21440. {
  21441. name: "Macro+",
  21442. height: math.unit(1000, "feet")
  21443. },
  21444. {
  21445. name: "Megamacro",
  21446. height: math.unit(1, "mile")
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21452. {
  21453. side: {
  21454. height: math.unit(20, "feet"),
  21455. weight: math.unit(30000, "kg"),
  21456. name: "Side",
  21457. image: {
  21458. source: "./media/characters/windar/side.svg",
  21459. extra: 1491 / 1248,
  21460. bottom: 82.56 / 1568
  21461. }
  21462. },
  21463. },
  21464. [
  21465. {
  21466. name: "Normal",
  21467. height: math.unit(20, "feet"),
  21468. default: true
  21469. },
  21470. ]
  21471. ))
  21472. characterMakers.push(() => makeCharacter(
  21473. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21474. {
  21475. side: {
  21476. height: math.unit(15.66, "feet"),
  21477. weight: math.unit(150, "lb"),
  21478. name: "Side",
  21479. image: {
  21480. source: "./media/characters/melody/side.svg",
  21481. extra: 1097 / 944,
  21482. bottom: 11.8 / 1109
  21483. }
  21484. },
  21485. sideOutfit: {
  21486. height: math.unit(15.66, "feet"),
  21487. weight: math.unit(150, "lb"),
  21488. name: "Side (Outfit)",
  21489. image: {
  21490. source: "./media/characters/melody/side-outfit.svg",
  21491. extra: 1097 / 944,
  21492. bottom: 11.8 / 1109
  21493. }
  21494. },
  21495. },
  21496. [
  21497. {
  21498. name: "Normal",
  21499. height: math.unit(15.66, "feet"),
  21500. default: true
  21501. },
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21506. {
  21507. front: {
  21508. height: math.unit(8, "feet"),
  21509. weight: math.unit(325, "lb"),
  21510. name: "Front",
  21511. image: {
  21512. source: "./media/characters/windera/front.svg",
  21513. extra: 3180 / 2845,
  21514. bottom: 178 / 3365
  21515. }
  21516. },
  21517. },
  21518. [
  21519. {
  21520. name: "Normal",
  21521. height: math.unit(8, "feet"),
  21522. default: true
  21523. },
  21524. ]
  21525. ))
  21526. characterMakers.push(() => makeCharacter(
  21527. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21528. {
  21529. front: {
  21530. height: math.unit(28.75, "feet"),
  21531. weight: math.unit(2000, "kg"),
  21532. name: "Front",
  21533. image: {
  21534. source: "./media/characters/sonear/front.svg",
  21535. extra: 1041.1 / 964.9,
  21536. bottom: 53.7 / 1096.6
  21537. }
  21538. },
  21539. },
  21540. [
  21541. {
  21542. name: "Normal",
  21543. height: math.unit(28.75, "feet"),
  21544. default: true
  21545. },
  21546. ]
  21547. ))
  21548. characterMakers.push(() => makeCharacter(
  21549. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21550. {
  21551. side: {
  21552. height: math.unit(25.5, "feet"),
  21553. weight: math.unit(23000, "kg"),
  21554. name: "Side",
  21555. image: {
  21556. source: "./media/characters/kanara/side.svg"
  21557. }
  21558. },
  21559. },
  21560. [
  21561. {
  21562. name: "Normal",
  21563. height: math.unit(25.5, "feet"),
  21564. default: true
  21565. },
  21566. ]
  21567. ))
  21568. characterMakers.push(() => makeCharacter(
  21569. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21570. {
  21571. side: {
  21572. height: math.unit(10, "feet"),
  21573. weight: math.unit(1000, "kg"),
  21574. name: "Side",
  21575. image: {
  21576. source: "./media/characters/ereus/side.svg",
  21577. extra: 1157 / 959,
  21578. bottom: 153 / 1312.5
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Normal",
  21585. height: math.unit(10, "feet"),
  21586. default: true
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21592. {
  21593. side: {
  21594. height: math.unit(4.5, "feet"),
  21595. weight: math.unit(500, "lb"),
  21596. name: "Side",
  21597. image: {
  21598. source: "./media/characters/e-ter/side.svg",
  21599. extra: 1550 / 1248,
  21600. bottom: 146 / 1694
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(4.5, "feet"),
  21608. default: true
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21614. {
  21615. side: {
  21616. height: math.unit(9.7, "feet"),
  21617. weight: math.unit(4000, "kg"),
  21618. name: "Side",
  21619. image: {
  21620. source: "./media/characters/yamie/side.svg"
  21621. }
  21622. },
  21623. },
  21624. [
  21625. {
  21626. name: "Normal",
  21627. height: math.unit(9.7, "feet"),
  21628. default: true
  21629. },
  21630. ]
  21631. ))
  21632. characterMakers.push(() => makeCharacter(
  21633. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21634. {
  21635. front: {
  21636. height: math.unit(50, "feet"),
  21637. weight: math.unit(50000, "kg"),
  21638. name: "Front",
  21639. image: {
  21640. source: "./media/characters/anders/front.svg",
  21641. extra: 570 / 539,
  21642. bottom: 14.7 / 586.7
  21643. }
  21644. },
  21645. },
  21646. [
  21647. {
  21648. name: "Large",
  21649. height: math.unit(50, "feet")
  21650. },
  21651. {
  21652. name: "Macro",
  21653. height: math.unit(2000, "feet"),
  21654. default: true
  21655. },
  21656. {
  21657. name: "Megamacro",
  21658. height: math.unit(12, "miles")
  21659. },
  21660. ]
  21661. ))
  21662. characterMakers.push(() => makeCharacter(
  21663. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21664. {
  21665. front: {
  21666. height: math.unit(7 + 2 / 12, "feet"),
  21667. weight: math.unit(300, "lb"),
  21668. name: "Front",
  21669. image: {
  21670. source: "./media/characters/reban/front.svg",
  21671. extra: 516 / 487,
  21672. bottom: 42.82 / 558.356
  21673. }
  21674. },
  21675. dick: {
  21676. height: math.unit(7 / 5, "feet"),
  21677. name: "Dick",
  21678. image: {
  21679. source: "./media/characters/reban/dick.svg"
  21680. }
  21681. },
  21682. },
  21683. [
  21684. {
  21685. name: "Natural Height",
  21686. height: math.unit(7 + 2 / 12, "feet")
  21687. },
  21688. {
  21689. name: "Macro",
  21690. height: math.unit(500, "feet"),
  21691. default: true
  21692. },
  21693. {
  21694. name: "Canon Height",
  21695. height: math.unit(50, "AU")
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21701. {
  21702. front: {
  21703. height: math.unit(6, "feet"),
  21704. weight: math.unit(150, "lb"),
  21705. name: "Front",
  21706. image: {
  21707. source: "./media/characters/terrance-keayes/front.svg",
  21708. extra: 1.005,
  21709. bottom: 151 / 1615
  21710. }
  21711. },
  21712. side: {
  21713. height: math.unit(6, "feet"),
  21714. weight: math.unit(150, "lb"),
  21715. name: "Side",
  21716. image: {
  21717. source: "./media/characters/terrance-keayes/side.svg",
  21718. extra: 1.005,
  21719. bottom: 129.4 / 1544
  21720. }
  21721. },
  21722. back: {
  21723. height: math.unit(6, "feet"),
  21724. weight: math.unit(150, "lb"),
  21725. name: "Back",
  21726. image: {
  21727. source: "./media/characters/terrance-keayes/back.svg",
  21728. extra: 1.005,
  21729. bottom: 58.4 / 1557.3
  21730. }
  21731. },
  21732. dick: {
  21733. height: math.unit(6 * 0.208, "feet"),
  21734. name: "Dick",
  21735. image: {
  21736. source: "./media/characters/terrance-keayes/dick.svg"
  21737. }
  21738. },
  21739. },
  21740. [
  21741. {
  21742. name: "Canon Height",
  21743. height: math.unit(35, "miles"),
  21744. default: true
  21745. },
  21746. ]
  21747. ))
  21748. characterMakers.push(() => makeCharacter(
  21749. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21750. {
  21751. front: {
  21752. height: math.unit(6, "feet"),
  21753. weight: math.unit(150, "lb"),
  21754. name: "Front",
  21755. image: {
  21756. source: "./media/characters/ofelia/front.svg",
  21757. extra: 546 / 541,
  21758. bottom: 39 / 583
  21759. }
  21760. },
  21761. back: {
  21762. height: math.unit(6, "feet"),
  21763. weight: math.unit(150, "lb"),
  21764. name: "Back",
  21765. image: {
  21766. source: "./media/characters/ofelia/back.svg",
  21767. extra: 564 / 559.5,
  21768. bottom: 8.69 / 573.02
  21769. }
  21770. },
  21771. maw: {
  21772. height: math.unit(1, "feet"),
  21773. name: "Maw",
  21774. image: {
  21775. source: "./media/characters/ofelia/maw.svg"
  21776. }
  21777. },
  21778. foot: {
  21779. height: math.unit(1.949, "feet"),
  21780. name: "Foot",
  21781. image: {
  21782. source: "./media/characters/ofelia/foot.svg"
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Canon Height",
  21789. height: math.unit(2000, "miles"),
  21790. default: true
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(6, "feet"),
  21799. weight: math.unit(150, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/samuel/front.svg",
  21803. extra: 265 / 258,
  21804. bottom: 2 / 266.1566
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Macro",
  21811. height: math.unit(100, "feet"),
  21812. default: true
  21813. },
  21814. {
  21815. name: "Full Size",
  21816. height: math.unit(1000, "miles")
  21817. },
  21818. ]
  21819. ))
  21820. characterMakers.push(() => makeCharacter(
  21821. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21822. {
  21823. front: {
  21824. height: math.unit(6, "feet"),
  21825. weight: math.unit(300, "lb"),
  21826. name: "Front",
  21827. image: {
  21828. source: "./media/characters/beishir-kiel/front.svg",
  21829. extra: 569 / 547,
  21830. bottom: 41.9 / 609
  21831. }
  21832. },
  21833. maw: {
  21834. height: math.unit(6 * 0.202, "feet"),
  21835. name: "Maw",
  21836. image: {
  21837. source: "./media/characters/beishir-kiel/maw.svg"
  21838. }
  21839. },
  21840. },
  21841. [
  21842. {
  21843. name: "Macro",
  21844. height: math.unit(300, "feet"),
  21845. default: true
  21846. },
  21847. ]
  21848. ))
  21849. characterMakers.push(() => makeCharacter(
  21850. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21851. {
  21852. front: {
  21853. height: math.unit(5 + 8 / 12, "feet"),
  21854. weight: math.unit(120, "lb"),
  21855. name: "Front",
  21856. image: {
  21857. source: "./media/characters/logan-grey/front.svg",
  21858. extra: 2539 / 2393,
  21859. bottom: 97.6 / 2636.37
  21860. }
  21861. },
  21862. frontAlt: {
  21863. height: math.unit(5 + 8 / 12, "feet"),
  21864. weight: math.unit(120, "lb"),
  21865. name: "Front (Alt)",
  21866. image: {
  21867. source: "./media/characters/logan-grey/front-alt.svg",
  21868. extra: 958 / 893,
  21869. bottom: 15 / 970.768
  21870. }
  21871. },
  21872. back: {
  21873. height: math.unit(5 + 8 / 12, "feet"),
  21874. weight: math.unit(120, "lb"),
  21875. name: "Back",
  21876. image: {
  21877. source: "./media/characters/logan-grey/back.svg",
  21878. extra: 958 / 893,
  21879. bottom: 2.1881 / 970.9788
  21880. }
  21881. },
  21882. dick: {
  21883. height: math.unit(1.437, "feet"),
  21884. name: "Dick",
  21885. image: {
  21886. source: "./media/characters/logan-grey/dick.svg"
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(5 + 8 / 12, "feet")
  21894. },
  21895. {
  21896. name: "The 500 Foot Femboy",
  21897. height: math.unit(500, "feet"),
  21898. default: true
  21899. },
  21900. {
  21901. name: "Megmacro",
  21902. height: math.unit(20, "miles")
  21903. },
  21904. ]
  21905. ))
  21906. characterMakers.push(() => makeCharacter(
  21907. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21908. {
  21909. front: {
  21910. height: math.unit(8 + 2 / 12, "feet"),
  21911. weight: math.unit(275, "lb"),
  21912. name: "Front",
  21913. image: {
  21914. source: "./media/characters/draganta/front.svg",
  21915. extra: 1177 / 1135,
  21916. bottom: 33.46 / 1212.1
  21917. }
  21918. },
  21919. },
  21920. [
  21921. {
  21922. name: "Normal",
  21923. height: math.unit(8 + 6 / 12, "feet"),
  21924. default: true
  21925. },
  21926. {
  21927. name: "Macro",
  21928. height: math.unit(150, "feet")
  21929. },
  21930. {
  21931. name: "Megamacro",
  21932. height: math.unit(1000, "miles")
  21933. },
  21934. ]
  21935. ))
  21936. characterMakers.push(() => makeCharacter(
  21937. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21938. {
  21939. front: {
  21940. height: math.unit(1.72, "m"),
  21941. weight: math.unit(80, "lb"),
  21942. name: "Front",
  21943. image: {
  21944. source: "./media/characters/voski/front.svg",
  21945. extra: 2076.22 / 2022.4,
  21946. bottom: 102.7 / 2177.3866
  21947. }
  21948. },
  21949. frontNsfw: {
  21950. height: math.unit(1.72, "m"),
  21951. weight: math.unit(80, "lb"),
  21952. name: "Front (NSFW)",
  21953. image: {
  21954. source: "./media/characters/voski/front-nsfw.svg",
  21955. extra: 2076.22 / 2022.4,
  21956. bottom: 102.7 / 2177.3866
  21957. }
  21958. },
  21959. back: {
  21960. height: math.unit(1.72, "m"),
  21961. weight: math.unit(80, "lb"),
  21962. name: "Back",
  21963. image: {
  21964. source: "./media/characters/voski/back.svg",
  21965. extra: 2104 / 2051,
  21966. bottom: 10.45 / 2113.63
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(1.72, "m")
  21974. },
  21975. {
  21976. name: "Macro",
  21977. height: math.unit(55, "m"),
  21978. default: true
  21979. },
  21980. {
  21981. name: "Macro+",
  21982. height: math.unit(300, "m")
  21983. },
  21984. {
  21985. name: "Macro++",
  21986. height: math.unit(700, "m")
  21987. },
  21988. {
  21989. name: "Macro+++",
  21990. height: math.unit(4500, "m")
  21991. },
  21992. {
  21993. name: "Macro++++",
  21994. height: math.unit(45, "km")
  21995. },
  21996. {
  21997. name: "Macro+++++",
  21998. height: math.unit(1220, "km")
  21999. },
  22000. ]
  22001. ))
  22002. characterMakers.push(() => makeCharacter(
  22003. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22004. {
  22005. front: {
  22006. height: math.unit(2.3, "m"),
  22007. weight: math.unit(304, "kg"),
  22008. name: "Front",
  22009. image: {
  22010. source: "./media/characters/icowom-lee/front.svg",
  22011. extra: 985 / 955,
  22012. bottom: 25.4 / 1012
  22013. }
  22014. },
  22015. fronttentacles: {
  22016. height: math.unit(2.3, "m"),
  22017. weight: math.unit(304, "kg"),
  22018. name: "Front-tentacles",
  22019. image: {
  22020. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22021. extra: 985 / 955,
  22022. bottom: 25.4 / 1012
  22023. }
  22024. },
  22025. back: {
  22026. height: math.unit(2.3, "m"),
  22027. weight: math.unit(304, "kg"),
  22028. name: "Back",
  22029. image: {
  22030. source: "./media/characters/icowom-lee/back.svg",
  22031. extra: 975 / 954,
  22032. bottom: 9.5 / 985
  22033. }
  22034. },
  22035. backtentacles: {
  22036. height: math.unit(2.3, "m"),
  22037. weight: math.unit(304, "kg"),
  22038. name: "Back-tentacles",
  22039. image: {
  22040. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22041. extra: 975 / 954,
  22042. bottom: 9.5 / 985
  22043. }
  22044. },
  22045. frontDressed: {
  22046. height: math.unit(2.3, "m"),
  22047. weight: math.unit(304, "kg"),
  22048. name: "Front (Dressed)",
  22049. image: {
  22050. source: "./media/characters/icowom-lee/front-dressed.svg",
  22051. extra: 3076 / 2933,
  22052. bottom: 51.4 / 3125.1889
  22053. }
  22054. },
  22055. rump: {
  22056. height: math.unit(0.776, "meters"),
  22057. name: "Rump",
  22058. image: {
  22059. source: "./media/characters/icowom-lee/rump.svg"
  22060. }
  22061. },
  22062. genitals: {
  22063. height: math.unit(0.78, "meters"),
  22064. name: "Genitals",
  22065. image: {
  22066. source: "./media/characters/icowom-lee/genitals.svg"
  22067. }
  22068. },
  22069. },
  22070. [
  22071. {
  22072. name: "Normal",
  22073. height: math.unit(2.3, "meters"),
  22074. default: true
  22075. },
  22076. {
  22077. name: "Macro",
  22078. height: math.unit(94, "meters"),
  22079. default: true
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22085. {
  22086. front: {
  22087. height: math.unit(22, "meters"),
  22088. weight: math.unit(21000, "kg"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/shock-diamond/front.svg",
  22092. extra: 2204 / 2053,
  22093. bottom: 65 / 2239.47
  22094. }
  22095. },
  22096. frontNude: {
  22097. height: math.unit(22, "meters"),
  22098. weight: math.unit(21000, "kg"),
  22099. name: "Front (Nude)",
  22100. image: {
  22101. source: "./media/characters/shock-diamond/front-nude.svg",
  22102. extra: 2514 / 2285,
  22103. bottom: 13 / 2527.56
  22104. }
  22105. },
  22106. },
  22107. [
  22108. {
  22109. name: "Normal",
  22110. height: math.unit(3, "meters")
  22111. },
  22112. {
  22113. name: "Macro",
  22114. height: math.unit(22, "meters"),
  22115. default: true
  22116. },
  22117. ]
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22121. {
  22122. front: {
  22123. height: math.unit(5 + 4 / 12, "feet"),
  22124. weight: math.unit(120, "lb"),
  22125. name: "Front",
  22126. image: {
  22127. source: "./media/characters/rory/front.svg",
  22128. extra: 589 / 556,
  22129. bottom: 45.7 / 635.76
  22130. }
  22131. },
  22132. frontNude: {
  22133. height: math.unit(5 + 4 / 12, "feet"),
  22134. weight: math.unit(120, "lb"),
  22135. name: "Front (Nude)",
  22136. image: {
  22137. source: "./media/characters/rory/front-nude.svg",
  22138. extra: 589 / 556,
  22139. bottom: 45.7 / 635.76
  22140. }
  22141. },
  22142. side: {
  22143. height: math.unit(5 + 4 / 12, "feet"),
  22144. weight: math.unit(120, "lb"),
  22145. name: "Side",
  22146. image: {
  22147. source: "./media/characters/rory/side.svg",
  22148. extra: 597 / 564,
  22149. bottom: 55 / 653
  22150. }
  22151. },
  22152. back: {
  22153. height: math.unit(5 + 4 / 12, "feet"),
  22154. weight: math.unit(120, "lb"),
  22155. name: "Back",
  22156. image: {
  22157. source: "./media/characters/rory/back.svg",
  22158. extra: 620 / 585,
  22159. bottom: 8.86 / 630.43
  22160. }
  22161. },
  22162. dick: {
  22163. height: math.unit(0.86, "feet"),
  22164. name: "Dick",
  22165. image: {
  22166. source: "./media/characters/rory/dick.svg"
  22167. }
  22168. },
  22169. },
  22170. [
  22171. {
  22172. name: "Normal",
  22173. height: math.unit(5 + 4 / 12, "feet"),
  22174. default: true
  22175. },
  22176. {
  22177. name: "Macro",
  22178. height: math.unit(100, "feet")
  22179. },
  22180. {
  22181. name: "Macro+",
  22182. height: math.unit(140, "feet")
  22183. },
  22184. {
  22185. name: "Macro++",
  22186. height: math.unit(300, "feet")
  22187. },
  22188. ]
  22189. ))
  22190. characterMakers.push(() => makeCharacter(
  22191. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22192. {
  22193. front: {
  22194. height: math.unit(5 + 9 / 12, "feet"),
  22195. weight: math.unit(190, "lb"),
  22196. name: "Front",
  22197. image: {
  22198. source: "./media/characters/sprisk/front.svg",
  22199. extra: 1225 / 1180,
  22200. bottom: 42.7 / 1266.4
  22201. }
  22202. },
  22203. frontNsfw: {
  22204. height: math.unit(5 + 9 / 12, "feet"),
  22205. weight: math.unit(190, "lb"),
  22206. name: "Front (NSFW)",
  22207. image: {
  22208. source: "./media/characters/sprisk/front-nsfw.svg",
  22209. extra: 1225 / 1180,
  22210. bottom: 42.7 / 1266.4
  22211. }
  22212. },
  22213. back: {
  22214. height: math.unit(5 + 9 / 12, "feet"),
  22215. weight: math.unit(190, "lb"),
  22216. name: "Back",
  22217. image: {
  22218. source: "./media/characters/sprisk/back.svg",
  22219. extra: 1247 / 1200,
  22220. bottom: 5.6 / 1253.04
  22221. }
  22222. },
  22223. },
  22224. [
  22225. {
  22226. name: "Tiny",
  22227. height: math.unit(2, "inches")
  22228. },
  22229. {
  22230. name: "Normal",
  22231. height: math.unit(5 + 9 / 12, "feet"),
  22232. default: true
  22233. },
  22234. {
  22235. name: "Mini Macro",
  22236. height: math.unit(18, "feet")
  22237. },
  22238. {
  22239. name: "Macro",
  22240. height: math.unit(100, "feet")
  22241. },
  22242. {
  22243. name: "MACRO",
  22244. height: math.unit(50, "miles")
  22245. },
  22246. {
  22247. name: "M A C R O",
  22248. height: math.unit(300, "miles")
  22249. },
  22250. ]
  22251. ))
  22252. characterMakers.push(() => makeCharacter(
  22253. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22254. {
  22255. side: {
  22256. height: math.unit(15.6, "meters"),
  22257. weight: math.unit(700000, "kg"),
  22258. name: "Side",
  22259. image: {
  22260. source: "./media/characters/bunsen/side.svg",
  22261. extra: 1644 / 358
  22262. }
  22263. },
  22264. foot: {
  22265. height: math.unit(1.611 * 1644 / 358, "meter"),
  22266. name: "Foot",
  22267. image: {
  22268. source: "./media/characters/bunsen/foot.svg"
  22269. }
  22270. },
  22271. },
  22272. [
  22273. {
  22274. name: "Small",
  22275. height: math.unit(10, "feet")
  22276. },
  22277. {
  22278. name: "Normal",
  22279. height: math.unit(15.6, "meters"),
  22280. default: true
  22281. },
  22282. ]
  22283. ))
  22284. characterMakers.push(() => makeCharacter(
  22285. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22286. {
  22287. front: {
  22288. height: math.unit(4 + 11 / 12, "feet"),
  22289. weight: math.unit(140, "lb"),
  22290. name: "Front",
  22291. image: {
  22292. source: "./media/characters/sesh/front.svg",
  22293. extra: 3420 / 3231,
  22294. bottom: 72 / 3949.5
  22295. }
  22296. },
  22297. },
  22298. [
  22299. {
  22300. name: "Normal",
  22301. height: math.unit(4 + 11 / 12, "feet")
  22302. },
  22303. {
  22304. name: "Grown",
  22305. height: math.unit(15, "feet"),
  22306. default: true
  22307. },
  22308. {
  22309. name: "Macro",
  22310. height: math.unit(1500, "feet")
  22311. },
  22312. {
  22313. name: "Megamacro",
  22314. height: math.unit(30, "miles")
  22315. },
  22316. {
  22317. name: "Continental",
  22318. height: math.unit(3000, "miles")
  22319. },
  22320. {
  22321. name: "Gravity Mass",
  22322. height: math.unit(300000, "miles")
  22323. },
  22324. {
  22325. name: "Planet Buster",
  22326. height: math.unit(30000000, "miles")
  22327. },
  22328. {
  22329. name: "Big",
  22330. height: math.unit(3000000000, "miles")
  22331. },
  22332. ]
  22333. ))
  22334. characterMakers.push(() => makeCharacter(
  22335. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22336. {
  22337. front: {
  22338. height: math.unit(9, "feet"),
  22339. weight: math.unit(350, "lb"),
  22340. name: "Front",
  22341. image: {
  22342. source: "./media/characters/pepper/front.svg",
  22343. extra: 1448 / 1312,
  22344. bottom: 9.4 / 1457.88
  22345. }
  22346. },
  22347. back: {
  22348. height: math.unit(9, "feet"),
  22349. weight: math.unit(350, "lb"),
  22350. name: "Back",
  22351. image: {
  22352. source: "./media/characters/pepper/back.svg",
  22353. extra: 1423 / 1300,
  22354. bottom: 4.6 / 1429
  22355. }
  22356. },
  22357. maw: {
  22358. height: math.unit(0.932, "feet"),
  22359. name: "Maw",
  22360. image: {
  22361. source: "./media/characters/pepper/maw.svg"
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Normal",
  22368. height: math.unit(9, "feet"),
  22369. default: true
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22375. {
  22376. front: {
  22377. height: math.unit(6, "feet"),
  22378. weight: math.unit(150, "lb"),
  22379. name: "Front",
  22380. image: {
  22381. source: "./media/characters/maelstrom/front.svg",
  22382. extra: 2100 / 1883,
  22383. bottom: 94 / 2196.7
  22384. }
  22385. },
  22386. },
  22387. [
  22388. {
  22389. name: "Less Kaiju",
  22390. height: math.unit(200, "feet")
  22391. },
  22392. {
  22393. name: "Kaiju",
  22394. height: math.unit(400, "feet"),
  22395. default: true
  22396. },
  22397. {
  22398. name: "Kaiju-er",
  22399. height: math.unit(600, "feet")
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22405. {
  22406. front: {
  22407. height: math.unit(6 + 5 / 12, "feet"),
  22408. weight: math.unit(180, "lb"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/lexir/front.svg",
  22412. extra: 180 / 172,
  22413. bottom: 12 / 192
  22414. }
  22415. },
  22416. back: {
  22417. height: math.unit(6 + 5 / 12, "feet"),
  22418. weight: math.unit(180, "lb"),
  22419. name: "Back",
  22420. image: {
  22421. source: "./media/characters/lexir/back.svg",
  22422. extra: 183.84 / 175.5,
  22423. bottom: 3.1 / 187
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Very Smal",
  22430. height: math.unit(1, "nm")
  22431. },
  22432. {
  22433. name: "Normal",
  22434. height: math.unit(6 + 5 / 12, "feet"),
  22435. default: true
  22436. },
  22437. {
  22438. name: "Macro",
  22439. height: math.unit(1, "mile")
  22440. },
  22441. {
  22442. name: "Megamacro",
  22443. height: math.unit(50, "miles")
  22444. },
  22445. ]
  22446. ))
  22447. characterMakers.push(() => makeCharacter(
  22448. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22449. {
  22450. front: {
  22451. height: math.unit(1.5, "meters"),
  22452. weight: math.unit(100, "lb"),
  22453. name: "Front",
  22454. image: {
  22455. source: "./media/characters/maksio/front.svg",
  22456. extra: 1549 / 1531,
  22457. bottom: 123.7 / 1674.5429
  22458. }
  22459. },
  22460. back: {
  22461. height: math.unit(1.5, "meters"),
  22462. weight: math.unit(100, "lb"),
  22463. name: "Back",
  22464. image: {
  22465. source: "./media/characters/maksio/back.svg",
  22466. extra: 1541 / 1509,
  22467. bottom: 97 / 1639
  22468. }
  22469. },
  22470. hand: {
  22471. height: math.unit(0.621, "feet"),
  22472. name: "Hand",
  22473. image: {
  22474. source: "./media/characters/maksio/hand.svg"
  22475. }
  22476. },
  22477. foot: {
  22478. height: math.unit(1.611, "feet"),
  22479. name: "Foot",
  22480. image: {
  22481. source: "./media/characters/maksio/foot.svg"
  22482. }
  22483. },
  22484. },
  22485. [
  22486. {
  22487. name: "Shrunken",
  22488. height: math.unit(10, "cm")
  22489. },
  22490. {
  22491. name: "Normal",
  22492. height: math.unit(150, "cm"),
  22493. default: true
  22494. },
  22495. ]
  22496. ))
  22497. characterMakers.push(() => makeCharacter(
  22498. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22499. {
  22500. front: {
  22501. height: math.unit(100, "feet"),
  22502. name: "Front",
  22503. image: {
  22504. source: "./media/characters/erza-bear/front.svg",
  22505. extra: 2449 / 2390,
  22506. bottom: 46 / 2494
  22507. }
  22508. },
  22509. back: {
  22510. height: math.unit(100, "feet"),
  22511. name: "Back",
  22512. image: {
  22513. source: "./media/characters/erza-bear/back.svg",
  22514. extra: 2489 / 2430,
  22515. bottom: 85.4 / 2480
  22516. }
  22517. },
  22518. tail: {
  22519. height: math.unit(42, "feet"),
  22520. name: "Tail",
  22521. image: {
  22522. source: "./media/characters/erza-bear/tail.svg"
  22523. }
  22524. },
  22525. tongue: {
  22526. height: math.unit(8, "feet"),
  22527. name: "Tongue",
  22528. image: {
  22529. source: "./media/characters/erza-bear/tongue.svg"
  22530. }
  22531. },
  22532. dick: {
  22533. height: math.unit(10.5, "feet"),
  22534. name: "Dick",
  22535. image: {
  22536. source: "./media/characters/erza-bear/dick.svg"
  22537. }
  22538. },
  22539. dickVertical: {
  22540. height: math.unit(16.9, "feet"),
  22541. name: "Dick (Vertical)",
  22542. image: {
  22543. source: "./media/characters/erza-bear/dick-vertical.svg"
  22544. }
  22545. },
  22546. },
  22547. [
  22548. {
  22549. name: "Macro",
  22550. height: math.unit(100, "feet"),
  22551. default: true
  22552. },
  22553. ]
  22554. ))
  22555. characterMakers.push(() => makeCharacter(
  22556. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22557. {
  22558. front: {
  22559. height: math.unit(172, "cm"),
  22560. weight: math.unit(73, "kg"),
  22561. name: "Front",
  22562. image: {
  22563. source: "./media/characters/violet-flor/front.svg",
  22564. extra: 1530 / 1442,
  22565. bottom: 61.9 / 1588.8
  22566. }
  22567. },
  22568. back: {
  22569. height: math.unit(180, "cm"),
  22570. weight: math.unit(73, "kg"),
  22571. name: "Back",
  22572. image: {
  22573. source: "./media/characters/violet-flor/back.svg",
  22574. extra: 1692 / 1630,
  22575. bottom: 20 / 1712
  22576. }
  22577. },
  22578. },
  22579. [
  22580. {
  22581. name: "Normal",
  22582. height: math.unit(172, "cm"),
  22583. default: true
  22584. },
  22585. ]
  22586. ))
  22587. characterMakers.push(() => makeCharacter(
  22588. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22589. {
  22590. front: {
  22591. height: math.unit(6, "feet"),
  22592. weight: math.unit(220, "lb"),
  22593. name: "Front",
  22594. image: {
  22595. source: "./media/characters/lynn-rhea/front.svg",
  22596. extra: 310 / 273
  22597. }
  22598. },
  22599. back: {
  22600. height: math.unit(6, "feet"),
  22601. weight: math.unit(220, "lb"),
  22602. name: "Back",
  22603. image: {
  22604. source: "./media/characters/lynn-rhea/back.svg",
  22605. extra: 310 / 273
  22606. }
  22607. },
  22608. dicks: {
  22609. height: math.unit(0.9, "feet"),
  22610. name: "Dicks",
  22611. image: {
  22612. source: "./media/characters/lynn-rhea/dicks.svg"
  22613. }
  22614. },
  22615. slit: {
  22616. height: math.unit(0.4, "feet"),
  22617. name: "Slit",
  22618. image: {
  22619. source: "./media/characters/lynn-rhea/slit.svg"
  22620. }
  22621. },
  22622. },
  22623. [
  22624. {
  22625. name: "Micro",
  22626. height: math.unit(1, "inch")
  22627. },
  22628. {
  22629. name: "Macro",
  22630. height: math.unit(60, "feet"),
  22631. default: true
  22632. },
  22633. {
  22634. name: "Megamacro",
  22635. height: math.unit(2, "miles")
  22636. },
  22637. {
  22638. name: "Gigamacro",
  22639. height: math.unit(3, "earths")
  22640. },
  22641. {
  22642. name: "Galactic",
  22643. height: math.unit(0.8, "galaxies")
  22644. },
  22645. ]
  22646. ))
  22647. characterMakers.push(() => makeCharacter(
  22648. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22649. {
  22650. front: {
  22651. height: math.unit(1600, "feet"),
  22652. weight: math.unit(85758785169, "kg"),
  22653. name: "Front",
  22654. image: {
  22655. source: "./media/characters/valathos/front.svg",
  22656. extra: 1451 / 1339
  22657. }
  22658. },
  22659. },
  22660. [
  22661. {
  22662. name: "Macro",
  22663. height: math.unit(1600, "feet"),
  22664. default: true
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22670. {
  22671. front: {
  22672. height: math.unit(7 + 5 / 12, "feet"),
  22673. weight: math.unit(300, "lb"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/azula/front.svg",
  22677. extra: 3208 / 2880,
  22678. bottom: 80.2 / 3277
  22679. }
  22680. },
  22681. back: {
  22682. height: math.unit(7 + 5 / 12, "feet"),
  22683. weight: math.unit(300, "lb"),
  22684. name: "Back",
  22685. image: {
  22686. source: "./media/characters/azula/back.svg",
  22687. extra: 3169 / 2822,
  22688. bottom: 150.6 / 3321
  22689. }
  22690. },
  22691. },
  22692. [
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(7 + 5 / 12, "feet"),
  22696. default: true
  22697. },
  22698. {
  22699. name: "Big",
  22700. height: math.unit(20, "feet")
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22706. {
  22707. front: {
  22708. height: math.unit(5 + 1 / 12, "feet"),
  22709. weight: math.unit(110, "lb"),
  22710. name: "Front",
  22711. image: {
  22712. source: "./media/characters/rupert/front.svg",
  22713. extra: 1549 / 1495,
  22714. bottom: 54.2 / 1604.4
  22715. }
  22716. },
  22717. },
  22718. [
  22719. {
  22720. name: "Normal",
  22721. height: math.unit(5 + 1 / 12, "feet"),
  22722. default: true
  22723. },
  22724. ]
  22725. ))
  22726. characterMakers.push(() => makeCharacter(
  22727. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22728. {
  22729. front: {
  22730. height: math.unit(8 + 4 / 12, "feet"),
  22731. weight: math.unit(350, "lb"),
  22732. name: "Front",
  22733. image: {
  22734. source: "./media/characters/sheera-castellar/front.svg",
  22735. extra: 1957 / 1894,
  22736. bottom: 26.97 / 1975.017
  22737. }
  22738. },
  22739. side: {
  22740. height: math.unit(8 + 4 / 12, "feet"),
  22741. weight: math.unit(350, "lb"),
  22742. name: "Side",
  22743. image: {
  22744. source: "./media/characters/sheera-castellar/side.svg",
  22745. extra: 1957 / 1894
  22746. }
  22747. },
  22748. back: {
  22749. height: math.unit(8 + 4 / 12, "feet"),
  22750. weight: math.unit(350, "lb"),
  22751. name: "Back",
  22752. image: {
  22753. source: "./media/characters/sheera-castellar/back.svg",
  22754. extra: 1957 / 1894
  22755. }
  22756. },
  22757. angled: {
  22758. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22759. weight: math.unit(350, "lb"),
  22760. name: "Angled",
  22761. image: {
  22762. source: "./media/characters/sheera-castellar/angled.svg",
  22763. extra: 1807 / 1707,
  22764. bottom: 68 / 1875
  22765. }
  22766. },
  22767. genitals: {
  22768. height: math.unit(2.2, "feet"),
  22769. name: "Genitals",
  22770. image: {
  22771. source: "./media/characters/sheera-castellar/genitals.svg"
  22772. }
  22773. },
  22774. taur: {
  22775. height: math.unit(10 + 6/12, "feet"),
  22776. name: "Taur",
  22777. image: {
  22778. source: "./media/characters/sheera-castellar/taur.svg",
  22779. extra: 2017/1909,
  22780. bottom: 185/2202
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Normal",
  22787. height: math.unit(8 + 4 / 12, "feet")
  22788. },
  22789. {
  22790. name: "Macro",
  22791. height: math.unit(150, "feet"),
  22792. default: true
  22793. },
  22794. {
  22795. name: "Macro+",
  22796. height: math.unit(800, "feet")
  22797. },
  22798. ]
  22799. ))
  22800. characterMakers.push(() => makeCharacter(
  22801. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22802. {
  22803. front: {
  22804. height: math.unit(6, "feet"),
  22805. weight: math.unit(150, "lb"),
  22806. name: "Front",
  22807. image: {
  22808. source: "./media/characters/jaipur/front.svg",
  22809. extra: 3860 / 3731,
  22810. bottom: 287 / 4140
  22811. }
  22812. },
  22813. back: {
  22814. height: math.unit(6, "feet"),
  22815. weight: math.unit(150, "lb"),
  22816. name: "Back",
  22817. image: {
  22818. source: "./media/characters/jaipur/back.svg",
  22819. extra: 4060 / 3930,
  22820. bottom: 151 / 4200
  22821. }
  22822. },
  22823. },
  22824. [
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(1.85, "meters"),
  22828. default: true
  22829. },
  22830. {
  22831. name: "Macro",
  22832. height: math.unit(150, "meters")
  22833. },
  22834. {
  22835. name: "Macro+",
  22836. height: math.unit(0.5, "miles")
  22837. },
  22838. {
  22839. name: "Macro++",
  22840. height: math.unit(2.5, "miles")
  22841. },
  22842. {
  22843. name: "Macro+++",
  22844. height: math.unit(12, "miles")
  22845. },
  22846. {
  22847. name: "Macro++++",
  22848. height: math.unit(120, "miles")
  22849. },
  22850. {
  22851. name: "Macro+++++",
  22852. height: math.unit(1200, "miles")
  22853. },
  22854. ]
  22855. ))
  22856. characterMakers.push(() => makeCharacter(
  22857. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22858. {
  22859. front: {
  22860. height: math.unit(6, "feet"),
  22861. weight: math.unit(150, "lb"),
  22862. name: "Front",
  22863. image: {
  22864. source: "./media/characters/sheila-wolf/front.svg",
  22865. extra: 1931 / 1808,
  22866. bottom: 29.5 / 1960
  22867. }
  22868. },
  22869. dick: {
  22870. height: math.unit(1.464, "feet"),
  22871. name: "Dick",
  22872. image: {
  22873. source: "./media/characters/sheila-wolf/dick.svg"
  22874. }
  22875. },
  22876. muzzle: {
  22877. height: math.unit(0.513, "feet"),
  22878. name: "Muzzle",
  22879. image: {
  22880. source: "./media/characters/sheila-wolf/muzzle.svg"
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Macro",
  22887. height: math.unit(70, "feet"),
  22888. default: true
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22894. {
  22895. front: {
  22896. height: math.unit(32, "meters"),
  22897. weight: math.unit(300000, "kg"),
  22898. name: "Front",
  22899. image: {
  22900. source: "./media/characters/almor/front.svg",
  22901. extra: 1408 / 1322,
  22902. bottom: 94.6 / 1506.5
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Macro",
  22909. height: math.unit(32, "meters"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22916. {
  22917. front: {
  22918. height: math.unit(7, "feet"),
  22919. weight: math.unit(200, "lb"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/silver/front.svg",
  22923. extra: 472.1 / 450.5,
  22924. bottom: 26.5 / 499.424
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Normal",
  22931. height: math.unit(7, "feet"),
  22932. default: true
  22933. },
  22934. {
  22935. name: "Macro",
  22936. height: math.unit(800, "feet")
  22937. },
  22938. {
  22939. name: "Megamacro",
  22940. height: math.unit(250, "miles")
  22941. },
  22942. ]
  22943. ))
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22946. {
  22947. front: {
  22948. height: math.unit(6, "feet"),
  22949. weight: math.unit(150, "lb"),
  22950. name: "Front",
  22951. image: {
  22952. source: "./media/characters/pliskin/front.svg",
  22953. extra: 1469 / 1359,
  22954. bottom: 70 / 1540
  22955. }
  22956. },
  22957. },
  22958. [
  22959. {
  22960. name: "Micro",
  22961. height: math.unit(3, "inches")
  22962. },
  22963. {
  22964. name: "Normal",
  22965. height: math.unit(5 + 11 / 12, "feet"),
  22966. default: true
  22967. },
  22968. {
  22969. name: "Macro",
  22970. height: math.unit(120, "feet")
  22971. },
  22972. ]
  22973. ))
  22974. characterMakers.push(() => makeCharacter(
  22975. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22976. {
  22977. front: {
  22978. height: math.unit(6, "feet"),
  22979. weight: math.unit(150, "lb"),
  22980. name: "Front",
  22981. image: {
  22982. source: "./media/characters/sammy/front.svg",
  22983. extra: 1193 / 1089,
  22984. bottom: 30.5 / 1226
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "Macro",
  22991. height: math.unit(1700, "feet"),
  22992. default: true
  22993. },
  22994. {
  22995. name: "Examacro",
  22996. height: math.unit(2.5e9, "lightyears")
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23002. {
  23003. front: {
  23004. height: math.unit(21, "meters"),
  23005. weight: math.unit(12, "tonnes"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/kuru/front.svg",
  23009. extra: 4301 / 3785,
  23010. bottom: 371.3 / 4691
  23011. }
  23012. },
  23013. },
  23014. [
  23015. {
  23016. name: "Macro",
  23017. height: math.unit(21, "meters"),
  23018. default: true
  23019. },
  23020. ]
  23021. ))
  23022. characterMakers.push(() => makeCharacter(
  23023. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23024. {
  23025. front: {
  23026. height: math.unit(23, "meters"),
  23027. weight: math.unit(12.2, "tonnes"),
  23028. name: "Front",
  23029. image: {
  23030. source: "./media/characters/rakka/front.svg",
  23031. extra: 4670 / 4169,
  23032. bottom: 301 / 4968.7
  23033. }
  23034. },
  23035. },
  23036. [
  23037. {
  23038. name: "Macro",
  23039. height: math.unit(23, "meters"),
  23040. default: true
  23041. },
  23042. ]
  23043. ))
  23044. characterMakers.push(() => makeCharacter(
  23045. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23046. {
  23047. front: {
  23048. height: math.unit(6, "feet"),
  23049. weight: math.unit(150, "lb"),
  23050. name: "Front",
  23051. image: {
  23052. source: "./media/characters/rhys-feline/front.svg",
  23053. extra: 2488 / 2308,
  23054. bottom: 35.67 / 2519.19
  23055. }
  23056. },
  23057. },
  23058. [
  23059. {
  23060. name: "Really Small",
  23061. height: math.unit(1, "nm")
  23062. },
  23063. {
  23064. name: "Micro",
  23065. height: math.unit(4, "inches")
  23066. },
  23067. {
  23068. name: "Normal",
  23069. height: math.unit(4 + 10 / 12, "feet"),
  23070. default: true
  23071. },
  23072. {
  23073. name: "Macro",
  23074. height: math.unit(100, "feet")
  23075. },
  23076. {
  23077. name: "Megamacto",
  23078. height: math.unit(50, "miles")
  23079. },
  23080. ]
  23081. ))
  23082. characterMakers.push(() => makeCharacter(
  23083. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23084. {
  23085. side: {
  23086. height: math.unit(30, "feet"),
  23087. weight: math.unit(35000, "kg"),
  23088. name: "Side",
  23089. image: {
  23090. source: "./media/characters/alydar/side.svg",
  23091. extra: 234 / 222,
  23092. bottom: 6.5 / 241
  23093. }
  23094. },
  23095. front: {
  23096. height: math.unit(30, "feet"),
  23097. weight: math.unit(35000, "kg"),
  23098. name: "Front",
  23099. image: {
  23100. source: "./media/characters/alydar/front.svg",
  23101. extra: 223.37 / 210.2,
  23102. bottom: 22.3 / 246.76
  23103. }
  23104. },
  23105. top: {
  23106. height: math.unit(64.54, "feet"),
  23107. weight: math.unit(35000, "kg"),
  23108. name: "Top",
  23109. image: {
  23110. source: "./media/characters/alydar/top.svg"
  23111. }
  23112. },
  23113. anthro: {
  23114. height: math.unit(30, "feet"),
  23115. weight: math.unit(9000, "kg"),
  23116. name: "Anthro",
  23117. image: {
  23118. source: "./media/characters/alydar/anthro.svg",
  23119. extra: 432 / 421,
  23120. bottom: 7.18 / 440
  23121. }
  23122. },
  23123. maw: {
  23124. height: math.unit(11.693, "feet"),
  23125. name: "Maw",
  23126. image: {
  23127. source: "./media/characters/alydar/maw.svg"
  23128. }
  23129. },
  23130. head: {
  23131. height: math.unit(11.693, "feet"),
  23132. name: "Head",
  23133. image: {
  23134. source: "./media/characters/alydar/head.svg"
  23135. }
  23136. },
  23137. headAlt: {
  23138. height: math.unit(12.861, "feet"),
  23139. name: "Head (Alt)",
  23140. image: {
  23141. source: "./media/characters/alydar/head-alt.svg"
  23142. }
  23143. },
  23144. wing: {
  23145. height: math.unit(20.712, "feet"),
  23146. name: "Wing",
  23147. image: {
  23148. source: "./media/characters/alydar/wing.svg"
  23149. }
  23150. },
  23151. wingFeather: {
  23152. height: math.unit(9.662, "feet"),
  23153. name: "Wing Feather",
  23154. image: {
  23155. source: "./media/characters/alydar/wing-feather.svg"
  23156. }
  23157. },
  23158. countourFeather: {
  23159. height: math.unit(4.154, "feet"),
  23160. name: "Contour Feather",
  23161. image: {
  23162. source: "./media/characters/alydar/contour-feather.svg"
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Diplomatic",
  23169. height: math.unit(13, "feet"),
  23170. default: true
  23171. },
  23172. {
  23173. name: "Small",
  23174. height: math.unit(30, "feet")
  23175. },
  23176. {
  23177. name: "Normal",
  23178. height: math.unit(95, "feet"),
  23179. default: true
  23180. },
  23181. {
  23182. name: "Large",
  23183. height: math.unit(285, "feet")
  23184. },
  23185. {
  23186. name: "Incomprehensible",
  23187. height: math.unit(450, "megameters")
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23193. {
  23194. side: {
  23195. height: math.unit(11, "feet"),
  23196. weight: math.unit(1750, "kg"),
  23197. name: "Side",
  23198. image: {
  23199. source: "./media/characters/selicia/side.svg",
  23200. extra: 440 / 396,
  23201. bottom: 24.8 / 465.979
  23202. }
  23203. },
  23204. maw: {
  23205. height: math.unit(4.665, "feet"),
  23206. name: "Maw",
  23207. image: {
  23208. source: "./media/characters/selicia/maw.svg"
  23209. }
  23210. },
  23211. },
  23212. [
  23213. {
  23214. name: "Normal",
  23215. height: math.unit(11, "feet"),
  23216. default: true
  23217. },
  23218. ]
  23219. ))
  23220. characterMakers.push(() => makeCharacter(
  23221. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23222. {
  23223. side: {
  23224. height: math.unit(2 + 6 / 12, "feet"),
  23225. weight: math.unit(30, "lb"),
  23226. name: "Side",
  23227. image: {
  23228. source: "./media/characters/layla/side.svg",
  23229. extra: 244 / 188,
  23230. bottom: 18.2 / 262.1
  23231. }
  23232. },
  23233. back: {
  23234. height: math.unit(2 + 6 / 12, "feet"),
  23235. weight: math.unit(30, "lb"),
  23236. name: "Back",
  23237. image: {
  23238. source: "./media/characters/layla/back.svg",
  23239. extra: 308 / 241.5,
  23240. bottom: 8.9 / 316.8
  23241. }
  23242. },
  23243. cumming: {
  23244. height: math.unit(2 + 6 / 12, "feet"),
  23245. weight: math.unit(30, "lb"),
  23246. name: "Cumming",
  23247. image: {
  23248. source: "./media/characters/layla/cumming.svg",
  23249. extra: 342 / 279,
  23250. bottom: 595 / 938
  23251. }
  23252. },
  23253. dickFlaccid: {
  23254. height: math.unit(2.595, "feet"),
  23255. name: "Flaccid Genitals",
  23256. image: {
  23257. source: "./media/characters/layla/dick-flaccid.svg"
  23258. }
  23259. },
  23260. dickErect: {
  23261. height: math.unit(2.359, "feet"),
  23262. name: "Erect Genitals",
  23263. image: {
  23264. source: "./media/characters/layla/dick-erect.svg"
  23265. }
  23266. },
  23267. dragon: {
  23268. height: math.unit(40, "feet"),
  23269. name: "Dragon",
  23270. image: {
  23271. source: "./media/characters/layla/dragon.svg",
  23272. extra: 610/535,
  23273. bottom: 367/977
  23274. }
  23275. },
  23276. taur: {
  23277. height: math.unit(30, "feet"),
  23278. name: "Taur",
  23279. image: {
  23280. source: "./media/characters/layla/taur.svg",
  23281. extra: 1268/1199,
  23282. bottom: 112/1380
  23283. }
  23284. },
  23285. },
  23286. [
  23287. {
  23288. name: "Micro",
  23289. height: math.unit(1, "inch")
  23290. },
  23291. {
  23292. name: "Small",
  23293. height: math.unit(1, "foot")
  23294. },
  23295. {
  23296. name: "Normal",
  23297. height: math.unit(2 + 6 / 12, "feet"),
  23298. default: true
  23299. },
  23300. {
  23301. name: "Macro",
  23302. height: math.unit(200, "feet")
  23303. },
  23304. {
  23305. name: "Megamacro",
  23306. height: math.unit(1000, "miles")
  23307. },
  23308. {
  23309. name: "Planetary",
  23310. height: math.unit(8000, "miles")
  23311. },
  23312. {
  23313. name: "True Layla",
  23314. height: math.unit(200000 * 7, "multiverses")
  23315. },
  23316. ]
  23317. ))
  23318. characterMakers.push(() => makeCharacter(
  23319. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23320. {
  23321. back: {
  23322. height: math.unit(10.5, "feet"),
  23323. weight: math.unit(800, "lb"),
  23324. name: "Back",
  23325. image: {
  23326. source: "./media/characters/knox/back.svg",
  23327. extra: 1486 / 1089,
  23328. bottom: 107 / 1601.4
  23329. }
  23330. },
  23331. side: {
  23332. height: math.unit(10.5, "feet"),
  23333. weight: math.unit(800, "lb"),
  23334. name: "Side",
  23335. image: {
  23336. source: "./media/characters/knox/side.svg",
  23337. extra: 244 / 218,
  23338. bottom: 14 / 260
  23339. }
  23340. },
  23341. },
  23342. [
  23343. {
  23344. name: "Compact",
  23345. height: math.unit(10.5, "feet"),
  23346. default: true
  23347. },
  23348. {
  23349. name: "Dynamax",
  23350. height: math.unit(210, "feet")
  23351. },
  23352. {
  23353. name: "Full Macro",
  23354. height: math.unit(850, "feet")
  23355. },
  23356. ]
  23357. ))
  23358. characterMakers.push(() => makeCharacter(
  23359. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23360. {
  23361. front: {
  23362. height: math.unit(6, "feet"),
  23363. weight: math.unit(152, "lb"),
  23364. name: "Front",
  23365. image: {
  23366. source: "./media/characters/shin-pikachu/front.svg",
  23367. extra: 1854/1602,
  23368. bottom: 166/2020
  23369. }
  23370. },
  23371. hand: {
  23372. height: math.unit(1.055, "feet"),
  23373. name: "Hand",
  23374. image: {
  23375. source: "./media/characters/shin-pikachu/hand.svg"
  23376. }
  23377. },
  23378. foot: {
  23379. height: math.unit(1.1, "feet"),
  23380. name: "Foot",
  23381. image: {
  23382. source: "./media/characters/shin-pikachu/foot.svg"
  23383. }
  23384. },
  23385. collar: {
  23386. height: math.unit(0.386, "feet"),
  23387. name: "Collar",
  23388. image: {
  23389. source: "./media/characters/shin-pikachu/collar.svg"
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Smallest",
  23396. height: math.unit(0.5, "inches")
  23397. },
  23398. {
  23399. name: "Micro",
  23400. height: math.unit(6, "inches")
  23401. },
  23402. {
  23403. name: "Normal",
  23404. height: math.unit(6, "feet"),
  23405. default: true
  23406. },
  23407. {
  23408. name: "Macro",
  23409. height: math.unit(150, "feet")
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23415. {
  23416. front: {
  23417. height: math.unit(28, "feet"),
  23418. weight: math.unit(10500, "lb"),
  23419. name: "Front",
  23420. image: {
  23421. source: "./media/characters/kayda/front.svg",
  23422. extra: 1536 / 1428,
  23423. bottom: 68.7 / 1603
  23424. }
  23425. },
  23426. back: {
  23427. height: math.unit(28, "feet"),
  23428. weight: math.unit(10500, "lb"),
  23429. name: "Back",
  23430. image: {
  23431. source: "./media/characters/kayda/back.svg",
  23432. extra: 1557 / 1464,
  23433. bottom: 39.5 / 1597.49
  23434. }
  23435. },
  23436. dick: {
  23437. height: math.unit(3.858, "feet"),
  23438. name: "Dick",
  23439. image: {
  23440. source: "./media/characters/kayda/dick.svg"
  23441. }
  23442. },
  23443. },
  23444. [
  23445. {
  23446. name: "Macro",
  23447. height: math.unit(28, "feet"),
  23448. default: true
  23449. },
  23450. ]
  23451. ))
  23452. characterMakers.push(() => makeCharacter(
  23453. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23454. {
  23455. front: {
  23456. height: math.unit(10 + 11 / 12, "feet"),
  23457. weight: math.unit(1400, "lb"),
  23458. name: "Front",
  23459. image: {
  23460. source: "./media/characters/brian/front.svg",
  23461. extra: 737 / 692,
  23462. bottom: 55.4 / 785
  23463. }
  23464. },
  23465. },
  23466. [
  23467. {
  23468. name: "Normal",
  23469. height: math.unit(10 + 11 / 12, "feet"),
  23470. default: true
  23471. },
  23472. ]
  23473. ))
  23474. characterMakers.push(() => makeCharacter(
  23475. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23476. {
  23477. front: {
  23478. height: math.unit(5 + 8 / 12, "feet"),
  23479. weight: math.unit(140, "lb"),
  23480. name: "Front",
  23481. image: {
  23482. source: "./media/characters/khemri/front.svg",
  23483. extra: 4780 / 4059,
  23484. bottom: 80.1 / 4859.25
  23485. }
  23486. },
  23487. },
  23488. [
  23489. {
  23490. name: "Micro",
  23491. height: math.unit(6, "inches")
  23492. },
  23493. {
  23494. name: "Normal",
  23495. height: math.unit(5 + 8 / 12, "feet"),
  23496. default: true
  23497. },
  23498. ]
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23502. {
  23503. front: {
  23504. height: math.unit(13, "feet"),
  23505. weight: math.unit(1700, "lb"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/felix-braveheart/front.svg",
  23509. extra: 1222 / 1157,
  23510. bottom: 53.2 / 1280
  23511. }
  23512. },
  23513. back: {
  23514. height: math.unit(13, "feet"),
  23515. weight: math.unit(1700, "lb"),
  23516. name: "Back",
  23517. image: {
  23518. source: "./media/characters/felix-braveheart/back.svg",
  23519. extra: 1277 / 1203,
  23520. bottom: 50.2 / 1327
  23521. }
  23522. },
  23523. feral: {
  23524. height: math.unit(6, "feet"),
  23525. weight: math.unit(400, "lb"),
  23526. name: "Feral",
  23527. image: {
  23528. source: "./media/characters/felix-braveheart/feral.svg",
  23529. extra: 682 / 625,
  23530. bottom: 6.9 / 688
  23531. }
  23532. },
  23533. },
  23534. [
  23535. {
  23536. name: "Normal",
  23537. height: math.unit(13, "feet"),
  23538. default: true
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23544. {
  23545. side: {
  23546. height: math.unit(5 + 11 / 12, "feet"),
  23547. weight: math.unit(1400, "lb"),
  23548. name: "Side",
  23549. image: {
  23550. source: "./media/characters/shadow-blade/side.svg",
  23551. extra: 1726 / 1267,
  23552. bottom: 58.4 / 1785
  23553. }
  23554. },
  23555. },
  23556. [
  23557. {
  23558. name: "Normal",
  23559. height: math.unit(5 + 11 / 12, "feet"),
  23560. default: true
  23561. },
  23562. ]
  23563. ))
  23564. characterMakers.push(() => makeCharacter(
  23565. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23566. {
  23567. front: {
  23568. height: math.unit(1 + 6 / 12, "feet"),
  23569. weight: math.unit(25, "lb"),
  23570. name: "Front",
  23571. image: {
  23572. source: "./media/characters/karla-halldor/front.svg",
  23573. extra: 1459 / 1383,
  23574. bottom: 12 / 1472
  23575. }
  23576. },
  23577. },
  23578. [
  23579. {
  23580. name: "Normal",
  23581. height: math.unit(1 + 6 / 12, "feet"),
  23582. default: true
  23583. },
  23584. ]
  23585. ))
  23586. characterMakers.push(() => makeCharacter(
  23587. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23588. {
  23589. front: {
  23590. height: math.unit(6 + 2 / 12, "feet"),
  23591. weight: math.unit(160, "lb"),
  23592. name: "Front",
  23593. image: {
  23594. source: "./media/characters/ariam/front.svg",
  23595. extra: 714 / 617,
  23596. bottom: 23.4 / 737,
  23597. }
  23598. },
  23599. squatting: {
  23600. height: math.unit(4.1, "feet"),
  23601. weight: math.unit(160, "lb"),
  23602. name: "Squatting",
  23603. image: {
  23604. source: "./media/characters/ariam/squatting.svg",
  23605. extra: 2617 / 2112,
  23606. bottom: 61.2 / 2681,
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(6 + 2 / 12, "feet"),
  23614. default: true
  23615. },
  23616. {
  23617. name: "Normal+",
  23618. height: math.unit(4, "meters")
  23619. },
  23620. {
  23621. name: "Macro",
  23622. height: math.unit(50, "meters")
  23623. },
  23624. {
  23625. name: "Macro+",
  23626. height: math.unit(100, "meters")
  23627. },
  23628. {
  23629. name: "Megamacro",
  23630. height: math.unit(20, "km")
  23631. },
  23632. ]
  23633. ))
  23634. characterMakers.push(() => makeCharacter(
  23635. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23636. {
  23637. front: {
  23638. height: math.unit(1.67, "meters"),
  23639. weight: math.unit(140, "lb"),
  23640. name: "Front",
  23641. image: {
  23642. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23643. extra: 438 / 410,
  23644. bottom: 0.75 / 439
  23645. }
  23646. },
  23647. },
  23648. [
  23649. {
  23650. name: "Shrunken",
  23651. height: math.unit(7.6, "cm")
  23652. },
  23653. {
  23654. name: "Human Scale",
  23655. height: math.unit(1.67, "meters")
  23656. },
  23657. {
  23658. name: "Wolxi Scale",
  23659. height: math.unit(36.7, "meters"),
  23660. default: true
  23661. },
  23662. ]
  23663. ))
  23664. characterMakers.push(() => makeCharacter(
  23665. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23666. {
  23667. front: {
  23668. height: math.unit(1.73, "meters"),
  23669. weight: math.unit(240, "lb"),
  23670. name: "Front",
  23671. image: {
  23672. source: "./media/characters/izue-two-mothers/front.svg",
  23673. extra: 469 / 437,
  23674. bottom: 1.24 / 470.6
  23675. }
  23676. },
  23677. },
  23678. [
  23679. {
  23680. name: "Shrunken",
  23681. height: math.unit(7.86, "cm")
  23682. },
  23683. {
  23684. name: "Human Scale",
  23685. height: math.unit(1.73, "meters")
  23686. },
  23687. {
  23688. name: "Wolxi Scale",
  23689. height: math.unit(38, "meters"),
  23690. default: true
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23696. {
  23697. front: {
  23698. height: math.unit(1.55, "meters"),
  23699. weight: math.unit(120, "lb"),
  23700. name: "Front",
  23701. image: {
  23702. source: "./media/characters/teeku-love-shack/front.svg",
  23703. extra: 387 / 362,
  23704. bottom: 1.51 / 388
  23705. }
  23706. },
  23707. },
  23708. [
  23709. {
  23710. name: "Shrunken",
  23711. height: math.unit(7, "cm")
  23712. },
  23713. {
  23714. name: "Human Scale",
  23715. height: math.unit(1.55, "meters")
  23716. },
  23717. {
  23718. name: "Wolxi Scale",
  23719. height: math.unit(34.1, "meters"),
  23720. default: true
  23721. },
  23722. ]
  23723. ))
  23724. characterMakers.push(() => makeCharacter(
  23725. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23726. {
  23727. front: {
  23728. height: math.unit(1.83, "meters"),
  23729. weight: math.unit(135, "lb"),
  23730. name: "Front",
  23731. image: {
  23732. source: "./media/characters/dejma-the-red/front.svg",
  23733. extra: 480 / 458,
  23734. bottom: 1.8 / 482
  23735. }
  23736. },
  23737. },
  23738. [
  23739. {
  23740. name: "Shrunken",
  23741. height: math.unit(8.3, "cm")
  23742. },
  23743. {
  23744. name: "Human Scale",
  23745. height: math.unit(1.83, "meters")
  23746. },
  23747. {
  23748. name: "Wolxi Scale",
  23749. height: math.unit(40, "meters"),
  23750. default: true
  23751. },
  23752. ]
  23753. ))
  23754. characterMakers.push(() => makeCharacter(
  23755. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23756. {
  23757. front: {
  23758. height: math.unit(1.78, "meters"),
  23759. weight: math.unit(65, "kg"),
  23760. name: "Front",
  23761. image: {
  23762. source: "./media/characters/aki/front.svg",
  23763. extra: 452 / 415
  23764. }
  23765. },
  23766. frontNsfw: {
  23767. height: math.unit(1.78, "meters"),
  23768. weight: math.unit(65, "kg"),
  23769. name: "Front (NSFW)",
  23770. image: {
  23771. source: "./media/characters/aki/front-nsfw.svg",
  23772. extra: 452 / 415
  23773. }
  23774. },
  23775. back: {
  23776. height: math.unit(1.78, "meters"),
  23777. weight: math.unit(65, "kg"),
  23778. name: "Back",
  23779. image: {
  23780. source: "./media/characters/aki/back.svg",
  23781. extra: 452 / 415
  23782. }
  23783. },
  23784. rump: {
  23785. height: math.unit(2.05, "feet"),
  23786. name: "Rump",
  23787. image: {
  23788. source: "./media/characters/aki/rump.svg"
  23789. }
  23790. },
  23791. dick: {
  23792. height: math.unit(0.95, "feet"),
  23793. name: "Dick",
  23794. image: {
  23795. source: "./media/characters/aki/dick.svg"
  23796. }
  23797. },
  23798. },
  23799. [
  23800. {
  23801. name: "Micro",
  23802. height: math.unit(15, "cm")
  23803. },
  23804. {
  23805. name: "Normal",
  23806. height: math.unit(178, "cm"),
  23807. default: true
  23808. },
  23809. {
  23810. name: "Macro",
  23811. height: math.unit(214, "m")
  23812. },
  23813. {
  23814. name: "Macro+",
  23815. height: math.unit(534, "m")
  23816. },
  23817. ]
  23818. ))
  23819. characterMakers.push(() => makeCharacter(
  23820. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23821. {
  23822. front: {
  23823. height: math.unit(5 + 5 / 12, "feet"),
  23824. weight: math.unit(120, "lb"),
  23825. name: "Front",
  23826. image: {
  23827. source: "./media/characters/ari/front.svg",
  23828. extra: 714.5 / 682,
  23829. bottom: 8 / 722.5
  23830. }
  23831. },
  23832. },
  23833. [
  23834. {
  23835. name: "Normal",
  23836. height: math.unit(5 + 5 / 12, "feet")
  23837. },
  23838. {
  23839. name: "Macro",
  23840. height: math.unit(100, "feet"),
  23841. default: true
  23842. },
  23843. {
  23844. name: "Megamacro",
  23845. height: math.unit(100, "miles")
  23846. },
  23847. {
  23848. name: "Gigamacro",
  23849. height: math.unit(80000, "miles")
  23850. },
  23851. ]
  23852. ))
  23853. characterMakers.push(() => makeCharacter(
  23854. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23855. {
  23856. side: {
  23857. height: math.unit(9, "feet"),
  23858. weight: math.unit(400, "kg"),
  23859. name: "Side",
  23860. image: {
  23861. source: "./media/characters/bolt/side.svg",
  23862. extra: 1126 / 896,
  23863. bottom: 60 / 1187.3,
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "Micro",
  23870. height: math.unit(5, "inches")
  23871. },
  23872. {
  23873. name: "Normal",
  23874. height: math.unit(9, "feet"),
  23875. default: true
  23876. },
  23877. {
  23878. name: "Macro",
  23879. height: math.unit(700, "feet")
  23880. },
  23881. {
  23882. name: "Max Size",
  23883. height: math.unit(1.52e22, "yottameters")
  23884. },
  23885. ]
  23886. ))
  23887. characterMakers.push(() => makeCharacter(
  23888. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23889. {
  23890. front: {
  23891. height: math.unit(4.53, "meters"),
  23892. weight: math.unit(3, "tons"),
  23893. name: "Front",
  23894. image: {
  23895. source: "./media/characters/draekon-sylviar/front.svg",
  23896. extra: 1228 / 1068,
  23897. bottom: 41 / 1270
  23898. }
  23899. },
  23900. tail: {
  23901. height: math.unit(1.772, "meter"),
  23902. name: "Tail",
  23903. image: {
  23904. source: "./media/characters/draekon-sylviar/tail.svg"
  23905. }
  23906. },
  23907. head: {
  23908. height: math.unit(1.331, "meter"),
  23909. name: "Head",
  23910. image: {
  23911. source: "./media/characters/draekon-sylviar/head.svg"
  23912. }
  23913. },
  23914. hand: {
  23915. height: math.unit(0.564, "meter"),
  23916. name: "Hand",
  23917. image: {
  23918. source: "./media/characters/draekon-sylviar/hand.svg"
  23919. }
  23920. },
  23921. foot: {
  23922. height: math.unit(0.621, "meter"),
  23923. name: "Foot",
  23924. image: {
  23925. source: "./media/characters/draekon-sylviar/foot.svg",
  23926. bottom: 32 / 324
  23927. }
  23928. },
  23929. dick: {
  23930. height: math.unit(61, "cm"),
  23931. name: "Dick",
  23932. image: {
  23933. source: "./media/characters/draekon-sylviar/dick.svg"
  23934. }
  23935. },
  23936. dickseparated: {
  23937. height: math.unit(61, "cm"),
  23938. name: "Dick-separated",
  23939. image: {
  23940. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Small",
  23947. height: math.unit(4.53 / 2, "meters"),
  23948. default: true
  23949. },
  23950. {
  23951. name: "Normal",
  23952. height: math.unit(4.53, "meters"),
  23953. default: true
  23954. },
  23955. {
  23956. name: "Large",
  23957. height: math.unit(4.53 * 2, "meters"),
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23963. {
  23964. front: {
  23965. height: math.unit(6 + 2 / 12, "feet"),
  23966. weight: math.unit(180, "lb"),
  23967. name: "Front",
  23968. image: {
  23969. source: "./media/characters/brawler/front.svg",
  23970. extra: 3301 / 3027,
  23971. bottom: 138 / 3439
  23972. }
  23973. },
  23974. },
  23975. [
  23976. {
  23977. name: "Normal",
  23978. height: math.unit(6 + 2 / 12, "feet"),
  23979. default: true
  23980. },
  23981. ]
  23982. ))
  23983. characterMakers.push(() => makeCharacter(
  23984. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23985. {
  23986. front: {
  23987. height: math.unit(11, "feet"),
  23988. weight: math.unit(1000, "lb"),
  23989. name: "Front",
  23990. image: {
  23991. source: "./media/characters/alex/front.svg",
  23992. bottom: 44.5 / 620
  23993. }
  23994. },
  23995. },
  23996. [
  23997. {
  23998. name: "Micro",
  23999. height: math.unit(5, "inches")
  24000. },
  24001. {
  24002. name: "Normal",
  24003. height: math.unit(11, "feet"),
  24004. default: true
  24005. },
  24006. {
  24007. name: "Macro",
  24008. height: math.unit(9.5e9, "feet")
  24009. },
  24010. {
  24011. name: "Max Size",
  24012. height: math.unit(1.4e283, "yottameters")
  24013. },
  24014. ]
  24015. ))
  24016. characterMakers.push(() => makeCharacter(
  24017. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24018. {
  24019. female: {
  24020. height: math.unit(29.9, "m"),
  24021. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24022. name: "Female",
  24023. image: {
  24024. source: "./media/characters/zenari/female.svg",
  24025. extra: 3281.6 / 3217,
  24026. bottom: 72.2 / 3353
  24027. }
  24028. },
  24029. male: {
  24030. height: math.unit(27.7, "m"),
  24031. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24032. name: "Male",
  24033. image: {
  24034. source: "./media/characters/zenari/male.svg",
  24035. extra: 3008 / 2991,
  24036. bottom: 54.6 / 3069
  24037. }
  24038. },
  24039. },
  24040. [
  24041. {
  24042. name: "Macro",
  24043. height: math.unit(29.7, "meters"),
  24044. default: true
  24045. },
  24046. ]
  24047. ))
  24048. characterMakers.push(() => makeCharacter(
  24049. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24050. {
  24051. female: {
  24052. height: math.unit(23.8, "m"),
  24053. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24054. name: "Female",
  24055. image: {
  24056. source: "./media/characters/mactarian/female.svg",
  24057. extra: 2662 / 2569,
  24058. bottom: 73 / 2736
  24059. }
  24060. },
  24061. male: {
  24062. height: math.unit(23.8, "m"),
  24063. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24064. name: "Male",
  24065. image: {
  24066. source: "./media/characters/mactarian/male.svg",
  24067. extra: 2673 / 2600,
  24068. bottom: 76 / 2750
  24069. }
  24070. },
  24071. },
  24072. [
  24073. {
  24074. name: "Macro",
  24075. height: math.unit(23.8, "meters"),
  24076. default: true
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24082. {
  24083. female: {
  24084. height: math.unit(19.3, "m"),
  24085. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24086. name: "Female",
  24087. image: {
  24088. source: "./media/characters/umok/female.svg",
  24089. extra: 2186 / 2078,
  24090. bottom: 87 / 2277
  24091. }
  24092. },
  24093. male: {
  24094. height: math.unit(19.5, "m"),
  24095. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24096. name: "Male",
  24097. image: {
  24098. source: "./media/characters/umok/male.svg",
  24099. extra: 2233 / 2140,
  24100. bottom: 24.4 / 2258
  24101. }
  24102. },
  24103. },
  24104. [
  24105. {
  24106. name: "Macro",
  24107. height: math.unit(19.3, "meters"),
  24108. default: true
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24114. {
  24115. female: {
  24116. height: math.unit(26.15, "m"),
  24117. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24118. name: "Female",
  24119. image: {
  24120. source: "./media/characters/joraxian/female.svg",
  24121. extra: 2912 / 2824,
  24122. bottom: 36 / 2956
  24123. }
  24124. },
  24125. male: {
  24126. height: math.unit(25.4, "m"),
  24127. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24128. name: "Male",
  24129. image: {
  24130. source: "./media/characters/joraxian/male.svg",
  24131. extra: 2877 / 2721,
  24132. bottom: 82 / 2967
  24133. }
  24134. },
  24135. },
  24136. [
  24137. {
  24138. name: "Macro",
  24139. height: math.unit(26.15, "meters"),
  24140. default: true
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24146. {
  24147. female: {
  24148. height: math.unit(21.6, "m"),
  24149. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24150. name: "Female",
  24151. image: {
  24152. source: "./media/characters/sthara/female.svg",
  24153. extra: 2516 / 2347,
  24154. bottom: 21.5 / 2537
  24155. }
  24156. },
  24157. male: {
  24158. height: math.unit(24, "m"),
  24159. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24160. name: "Male",
  24161. image: {
  24162. source: "./media/characters/sthara/male.svg",
  24163. extra: 2732 / 2607,
  24164. bottom: 23 / 2732
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Macro",
  24171. height: math.unit(21.6, "meters"),
  24172. default: true
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24178. {
  24179. front: {
  24180. height: math.unit(6 + 4 / 12, "feet"),
  24181. weight: math.unit(175, "lb"),
  24182. name: "Front",
  24183. image: {
  24184. source: "./media/characters/luka-bryzant/front.svg",
  24185. extra: 311 / 289,
  24186. bottom: 4 / 315
  24187. }
  24188. },
  24189. back: {
  24190. height: math.unit(6 + 4 / 12, "feet"),
  24191. weight: math.unit(175, "lb"),
  24192. name: "Back",
  24193. image: {
  24194. source: "./media/characters/luka-bryzant/back.svg",
  24195. extra: 311 / 289,
  24196. bottom: 3.8 / 313.7
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "Micro",
  24203. height: math.unit(10, "inches")
  24204. },
  24205. {
  24206. name: "Normal",
  24207. height: math.unit(6 + 4 / 12, "feet"),
  24208. default: true
  24209. },
  24210. {
  24211. name: "Large",
  24212. height: math.unit(12, "feet")
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24218. {
  24219. front: {
  24220. height: math.unit(5 + 7 / 12, "feet"),
  24221. weight: math.unit(185, "lb"),
  24222. name: "Front",
  24223. image: {
  24224. source: "./media/characters/aman-aquila/front.svg",
  24225. extra: 1013 / 976,
  24226. bottom: 45.6 / 1057
  24227. }
  24228. },
  24229. side: {
  24230. height: math.unit(5 + 7 / 12, "feet"),
  24231. weight: math.unit(185, "lb"),
  24232. name: "Side",
  24233. image: {
  24234. source: "./media/characters/aman-aquila/side.svg",
  24235. extra: 1054 / 1011,
  24236. bottom: 15 / 1070
  24237. }
  24238. },
  24239. back: {
  24240. height: math.unit(5 + 7 / 12, "feet"),
  24241. weight: math.unit(185, "lb"),
  24242. name: "Back",
  24243. image: {
  24244. source: "./media/characters/aman-aquila/back.svg",
  24245. extra: 1026 / 970,
  24246. bottom: 12 / 1039
  24247. }
  24248. },
  24249. head: {
  24250. height: math.unit(1.211, "feet"),
  24251. name: "Head",
  24252. image: {
  24253. source: "./media/characters/aman-aquila/head.svg",
  24254. }
  24255. },
  24256. },
  24257. [
  24258. {
  24259. name: "Minimicro",
  24260. height: math.unit(0.057, "inches")
  24261. },
  24262. {
  24263. name: "Micro",
  24264. height: math.unit(7, "inches")
  24265. },
  24266. {
  24267. name: "Mini",
  24268. height: math.unit(3 + 7 / 12, "feet")
  24269. },
  24270. {
  24271. name: "Normal",
  24272. height: math.unit(5 + 7 / 12, "feet"),
  24273. default: true
  24274. },
  24275. {
  24276. name: "Macro",
  24277. height: math.unit(157 + 7 / 12, "feet")
  24278. },
  24279. {
  24280. name: "Megamacro",
  24281. height: math.unit(1557 + 7 / 12, "feet")
  24282. },
  24283. {
  24284. name: "Gigamacro",
  24285. height: math.unit(15557 + 7 / 12, "feet")
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24291. {
  24292. front: {
  24293. height: math.unit(3 + 2 / 12, "inches"),
  24294. weight: math.unit(0.3, "ounces"),
  24295. name: "Front",
  24296. image: {
  24297. source: "./media/characters/hiphae/front.svg",
  24298. extra: 1931 / 1683,
  24299. bottom: 24 / 1955
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Normal",
  24306. height: math.unit(3 + 1 / 2, "inches"),
  24307. default: true
  24308. },
  24309. ]
  24310. ))
  24311. characterMakers.push(() => makeCharacter(
  24312. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24313. {
  24314. front: {
  24315. height: math.unit(5 + 10 / 12, "feet"),
  24316. weight: math.unit(165, "lb"),
  24317. name: "Front",
  24318. image: {
  24319. source: "./media/characters/nicky/front.svg",
  24320. extra: 3144 / 2886,
  24321. bottom: 45.6 / 3192
  24322. }
  24323. },
  24324. back: {
  24325. height: math.unit(5 + 10 / 12, "feet"),
  24326. weight: math.unit(165, "lb"),
  24327. name: "Back",
  24328. image: {
  24329. source: "./media/characters/nicky/back.svg",
  24330. extra: 3055 / 2804,
  24331. bottom: 28.4 / 3087
  24332. }
  24333. },
  24334. frontclothed: {
  24335. height: math.unit(5 + 10 / 12, "feet"),
  24336. weight: math.unit(165, "lb"),
  24337. name: "Front-clothed",
  24338. image: {
  24339. source: "./media/characters/nicky/front-clothed.svg",
  24340. extra: 3184.9 / 2926.9,
  24341. bottom: 86.5 / 3239.9
  24342. }
  24343. },
  24344. foot: {
  24345. height: math.unit(1.16, "feet"),
  24346. name: "Foot",
  24347. image: {
  24348. source: "./media/characters/nicky/foot.svg"
  24349. }
  24350. },
  24351. feet: {
  24352. height: math.unit(1.34, "feet"),
  24353. name: "Feet",
  24354. image: {
  24355. source: "./media/characters/nicky/feet.svg"
  24356. }
  24357. },
  24358. maw: {
  24359. height: math.unit(0.9, "feet"),
  24360. name: "Maw",
  24361. image: {
  24362. source: "./media/characters/nicky/maw.svg"
  24363. }
  24364. },
  24365. },
  24366. [
  24367. {
  24368. name: "Normal",
  24369. height: math.unit(5 + 10 / 12, "feet"),
  24370. default: true
  24371. },
  24372. {
  24373. name: "Macro",
  24374. height: math.unit(60, "feet")
  24375. },
  24376. {
  24377. name: "Megamacro",
  24378. height: math.unit(1, "mile")
  24379. },
  24380. ]
  24381. ))
  24382. characterMakers.push(() => makeCharacter(
  24383. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24384. {
  24385. side: {
  24386. height: math.unit(10, "feet"),
  24387. weight: math.unit(600, "lb"),
  24388. name: "Side",
  24389. image: {
  24390. source: "./media/characters/blair/side.svg",
  24391. bottom: 16.6 / 475,
  24392. extra: 458 / 431
  24393. }
  24394. },
  24395. },
  24396. [
  24397. {
  24398. name: "Micro",
  24399. height: math.unit(8, "inches")
  24400. },
  24401. {
  24402. name: "Normal",
  24403. height: math.unit(10, "feet"),
  24404. default: true
  24405. },
  24406. {
  24407. name: "Macro",
  24408. height: math.unit(180, "feet")
  24409. },
  24410. ]
  24411. ))
  24412. characterMakers.push(() => makeCharacter(
  24413. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24414. {
  24415. front: {
  24416. height: math.unit(5 + 4 / 12, "feet"),
  24417. weight: math.unit(125, "lb"),
  24418. name: "Front",
  24419. image: {
  24420. source: "./media/characters/fisher/front.svg",
  24421. extra: 444 / 390,
  24422. bottom: 2 / 444.8
  24423. }
  24424. },
  24425. },
  24426. [
  24427. {
  24428. name: "Micro",
  24429. height: math.unit(4, "inches")
  24430. },
  24431. {
  24432. name: "Normal",
  24433. height: math.unit(5 + 4 / 12, "feet"),
  24434. default: true
  24435. },
  24436. {
  24437. name: "Macro",
  24438. height: math.unit(100, "feet")
  24439. },
  24440. ]
  24441. ))
  24442. characterMakers.push(() => makeCharacter(
  24443. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24444. {
  24445. front: {
  24446. height: math.unit(6.71, "feet"),
  24447. weight: math.unit(200, "lb"),
  24448. capacity: math.unit(1000000, "people"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/gliss/front.svg",
  24452. extra: 2347 / 2231,
  24453. bottom: 113 / 2462
  24454. }
  24455. },
  24456. hammerspaceSize: {
  24457. height: math.unit(6.71 * 717, "feet"),
  24458. weight: math.unit(200, "lb"),
  24459. capacity: math.unit(1000000, "people"),
  24460. name: "Hammerspace Size",
  24461. image: {
  24462. source: "./media/characters/gliss/front.svg",
  24463. extra: 2347 / 2231,
  24464. bottom: 113 / 2462
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Normal",
  24471. height: math.unit(6.71, "feet"),
  24472. default: true
  24473. },
  24474. ]
  24475. ))
  24476. characterMakers.push(() => makeCharacter(
  24477. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24478. {
  24479. side: {
  24480. height: math.unit(1.44, "m"),
  24481. weight: math.unit(80, "kg"),
  24482. name: "Side",
  24483. image: {
  24484. source: "./media/characters/dune-anderson/side.svg",
  24485. bottom: 49 / 1426
  24486. }
  24487. },
  24488. },
  24489. [
  24490. {
  24491. name: "Wolf-sized",
  24492. height: math.unit(1.44, "meters")
  24493. },
  24494. {
  24495. name: "Normal",
  24496. height: math.unit(5.05, "meters"),
  24497. default: true
  24498. },
  24499. {
  24500. name: "Big",
  24501. height: math.unit(14.4, "meters")
  24502. },
  24503. {
  24504. name: "Huge",
  24505. height: math.unit(144, "meters")
  24506. },
  24507. ]
  24508. ))
  24509. characterMakers.push(() => makeCharacter(
  24510. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24511. {
  24512. front: {
  24513. height: math.unit(7, "feet"),
  24514. weight: math.unit(425, "lb"),
  24515. name: "Front",
  24516. image: {
  24517. source: "./media/characters/hind/front.svg",
  24518. extra: 2091 / 1860,
  24519. bottom: 129 / 2220
  24520. }
  24521. },
  24522. back: {
  24523. height: math.unit(7, "feet"),
  24524. weight: math.unit(425, "lb"),
  24525. name: "Back",
  24526. image: {
  24527. source: "./media/characters/hind/back.svg",
  24528. extra: 2091 / 1860,
  24529. bottom: 24.6 / 2309
  24530. }
  24531. },
  24532. tail: {
  24533. height: math.unit(2.8, "feet"),
  24534. name: "Tail",
  24535. image: {
  24536. source: "./media/characters/hind/tail.svg"
  24537. }
  24538. },
  24539. head: {
  24540. height: math.unit(2.55, "feet"),
  24541. name: "Head",
  24542. image: {
  24543. source: "./media/characters/hind/head.svg"
  24544. }
  24545. },
  24546. },
  24547. [
  24548. {
  24549. name: "XS",
  24550. height: math.unit(0.7, "feet")
  24551. },
  24552. {
  24553. name: "Normal",
  24554. height: math.unit(7, "feet"),
  24555. default: true
  24556. },
  24557. {
  24558. name: "XL",
  24559. height: math.unit(70, "feet")
  24560. },
  24561. ]
  24562. ))
  24563. characterMakers.push(() => makeCharacter(
  24564. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24565. {
  24566. front: {
  24567. height: math.unit(6, "feet"),
  24568. weight: math.unit(150, "lb"),
  24569. name: "Front",
  24570. image: {
  24571. source: "./media/characters/dylan-skaven/front.svg",
  24572. extra: 2318 / 2063,
  24573. bottom: 93.4 / 2410
  24574. }
  24575. },
  24576. },
  24577. [
  24578. {
  24579. name: "Nano",
  24580. height: math.unit(1, "mm")
  24581. },
  24582. {
  24583. name: "Micro",
  24584. height: math.unit(1, "cm")
  24585. },
  24586. {
  24587. name: "Normal",
  24588. height: math.unit(2.1, "meters"),
  24589. default: true
  24590. },
  24591. ]
  24592. ))
  24593. characterMakers.push(() => makeCharacter(
  24594. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24595. {
  24596. front: {
  24597. height: math.unit(7 + 5 / 12, "feet"),
  24598. weight: math.unit(357, "lb"),
  24599. name: "Front",
  24600. image: {
  24601. source: "./media/characters/solex-draconov/front.svg",
  24602. extra: 1993 / 1865,
  24603. bottom: 117 / 2111
  24604. }
  24605. },
  24606. },
  24607. [
  24608. {
  24609. name: "Natural Height",
  24610. height: math.unit(7 + 5 / 12, "feet"),
  24611. default: true
  24612. },
  24613. {
  24614. name: "Macro",
  24615. height: math.unit(350, "feet")
  24616. },
  24617. {
  24618. name: "Macro+",
  24619. height: math.unit(1000, "feet")
  24620. },
  24621. {
  24622. name: "Megamacro",
  24623. height: math.unit(20, "km")
  24624. },
  24625. {
  24626. name: "Megamacro+",
  24627. height: math.unit(1000, "km")
  24628. },
  24629. {
  24630. name: "Gigamacro",
  24631. height: math.unit(2.5, "Gm")
  24632. },
  24633. {
  24634. name: "Teramacro",
  24635. height: math.unit(15, "Tm")
  24636. },
  24637. {
  24638. name: "Galactic",
  24639. height: math.unit(30, "Zm")
  24640. },
  24641. {
  24642. name: "Universal",
  24643. height: math.unit(21000, "Ym")
  24644. },
  24645. {
  24646. name: "Omniversal",
  24647. height: math.unit(9.861e50, "Ym")
  24648. },
  24649. {
  24650. name: "Existential",
  24651. height: math.unit(1e300, "meters")
  24652. },
  24653. ]
  24654. ))
  24655. characterMakers.push(() => makeCharacter(
  24656. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24657. {
  24658. side: {
  24659. height: math.unit(25, "feet"),
  24660. weight: math.unit(90000, "lb"),
  24661. name: "Side",
  24662. image: {
  24663. source: "./media/characters/mandarax/side.svg",
  24664. extra: 614 / 332,
  24665. bottom: 55 / 630
  24666. }
  24667. },
  24668. head: {
  24669. height: math.unit(11.4, "feet"),
  24670. name: "Head",
  24671. image: {
  24672. source: "./media/characters/mandarax/head.svg"
  24673. }
  24674. },
  24675. belly: {
  24676. height: math.unit(33, "feet"),
  24677. name: "Belly",
  24678. capacity: math.unit(500, "people"),
  24679. image: {
  24680. source: "./media/characters/mandarax/belly.svg"
  24681. }
  24682. },
  24683. dick: {
  24684. height: math.unit(8.46, "feet"),
  24685. name: "Dick",
  24686. image: {
  24687. source: "./media/characters/mandarax/dick.svg"
  24688. }
  24689. },
  24690. top: {
  24691. height: math.unit(28, "meters"),
  24692. name: "Top",
  24693. image: {
  24694. source: "./media/characters/mandarax/top.svg"
  24695. }
  24696. },
  24697. },
  24698. [
  24699. {
  24700. name: "Normal",
  24701. height: math.unit(25, "feet"),
  24702. default: true
  24703. },
  24704. ]
  24705. ))
  24706. characterMakers.push(() => makeCharacter(
  24707. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24708. {
  24709. front: {
  24710. height: math.unit(5, "feet"),
  24711. weight: math.unit(90, "lb"),
  24712. name: "Front",
  24713. image: {
  24714. source: "./media/characters/pixil/front.svg",
  24715. extra: 2000 / 1618,
  24716. bottom: 12.3 / 2011
  24717. }
  24718. },
  24719. },
  24720. [
  24721. {
  24722. name: "Normal",
  24723. height: math.unit(5, "feet"),
  24724. default: true
  24725. },
  24726. {
  24727. name: "Megamacro",
  24728. height: math.unit(10, "miles"),
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(7 + 2 / 12, "feet"),
  24737. weight: math.unit(200, "lb"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/angel/front.svg",
  24741. extra: 1830 / 1737,
  24742. bottom: 22.6 / 1854,
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Normal",
  24749. height: math.unit(7 + 2 / 12, "feet"),
  24750. default: true
  24751. },
  24752. {
  24753. name: "Macro",
  24754. height: math.unit(1000, "feet")
  24755. },
  24756. {
  24757. name: "Megamacro",
  24758. height: math.unit(2, "miles")
  24759. },
  24760. {
  24761. name: "Gigamacro",
  24762. height: math.unit(20, "earths")
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24768. {
  24769. front: {
  24770. height: math.unit(5, "feet"),
  24771. weight: math.unit(180, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/mekana/front.svg",
  24775. extra: 1671 / 1605,
  24776. bottom: 3.5 / 1691
  24777. }
  24778. },
  24779. side: {
  24780. height: math.unit(5, "feet"),
  24781. weight: math.unit(180, "lb"),
  24782. name: "Side",
  24783. image: {
  24784. source: "./media/characters/mekana/side.svg",
  24785. extra: 1671 / 1605,
  24786. bottom: 3.5 / 1691
  24787. }
  24788. },
  24789. back: {
  24790. height: math.unit(5, "feet"),
  24791. weight: math.unit(180, "lb"),
  24792. name: "Back",
  24793. image: {
  24794. source: "./media/characters/mekana/back.svg",
  24795. extra: 1671 / 1605,
  24796. bottom: 3.5 / 1691
  24797. }
  24798. },
  24799. },
  24800. [
  24801. {
  24802. name: "Normal",
  24803. height: math.unit(5, "feet"),
  24804. default: true
  24805. },
  24806. ]
  24807. ))
  24808. characterMakers.push(() => makeCharacter(
  24809. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24810. {
  24811. front: {
  24812. height: math.unit(4 + 6 / 12, "feet"),
  24813. weight: math.unit(80, "lb"),
  24814. name: "Front",
  24815. image: {
  24816. source: "./media/characters/pixie/front.svg",
  24817. extra: 1924 / 1825,
  24818. bottom: 22.4 / 1946
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Normal",
  24825. height: math.unit(4 + 6 / 12, "feet"),
  24826. default: true
  24827. },
  24828. {
  24829. name: "Macro",
  24830. height: math.unit(40, "feet")
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(2.1, "meters"),
  24839. weight: math.unit(200, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/the-lascivious/front.svg",
  24843. extra: 1 / 0.893,
  24844. bottom: 3.5 / 573.7
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Human Scale",
  24851. height: math.unit(2.1, "meters")
  24852. },
  24853. {
  24854. name: "Wolxi Scale",
  24855. height: math.unit(46.2, "m"),
  24856. default: true
  24857. },
  24858. {
  24859. name: "Boinker of Buildings",
  24860. height: math.unit(10, "km")
  24861. },
  24862. {
  24863. name: "Shagger of Skyscrapers",
  24864. height: math.unit(40, "km")
  24865. },
  24866. {
  24867. name: "Banger of Boroughs",
  24868. height: math.unit(4000, "km")
  24869. },
  24870. {
  24871. name: "Screwer of States",
  24872. height: math.unit(100000, "km")
  24873. },
  24874. {
  24875. name: "Pounder of Planets",
  24876. height: math.unit(2000000, "km")
  24877. },
  24878. ]
  24879. ))
  24880. characterMakers.push(() => makeCharacter(
  24881. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24882. {
  24883. front: {
  24884. height: math.unit(6, "feet"),
  24885. weight: math.unit(150, "lb"),
  24886. name: "Front",
  24887. image: {
  24888. source: "./media/characters/aj/front.svg",
  24889. extra: 2039 / 1562,
  24890. bottom: 40 / 2079
  24891. }
  24892. },
  24893. },
  24894. [
  24895. {
  24896. name: "Normal",
  24897. height: math.unit(11 + 6 / 12, "feet"),
  24898. default: true
  24899. },
  24900. {
  24901. name: "Megamacro",
  24902. height: math.unit(60, "megameters")
  24903. },
  24904. ]
  24905. ))
  24906. characterMakers.push(() => makeCharacter(
  24907. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24908. {
  24909. side: {
  24910. height: math.unit(31 + 8 / 12, "feet"),
  24911. weight: math.unit(75000, "kg"),
  24912. name: "Side",
  24913. image: {
  24914. source: "./media/characters/koros/side.svg",
  24915. extra: 1442 / 1297,
  24916. bottom: 122.7 / 1562
  24917. }
  24918. },
  24919. dicksKingsCrown: {
  24920. height: math.unit(6, "feet"),
  24921. name: "Dicks (King's Crown)",
  24922. image: {
  24923. source: "./media/characters/koros/dicks-kings-crown.svg"
  24924. }
  24925. },
  24926. dicksTailSet: {
  24927. height: math.unit(3, "feet"),
  24928. name: "Dicks (Tail Set)",
  24929. image: {
  24930. source: "./media/characters/koros/dicks-tail-set.svg"
  24931. }
  24932. },
  24933. dickCumming: {
  24934. height: math.unit(7.98, "feet"),
  24935. name: "Dick (Cumming)",
  24936. image: {
  24937. source: "./media/characters/koros/dick-cumming.svg"
  24938. }
  24939. },
  24940. dicksBack: {
  24941. height: math.unit(5.9, "feet"),
  24942. name: "Dicks (Back)",
  24943. image: {
  24944. source: "./media/characters/koros/dicks-back.svg"
  24945. }
  24946. },
  24947. dicksFront: {
  24948. height: math.unit(3.72, "feet"),
  24949. name: "Dicks (Front)",
  24950. image: {
  24951. source: "./media/characters/koros/dicks-front.svg"
  24952. }
  24953. },
  24954. dicksPeeking: {
  24955. height: math.unit(3.0, "feet"),
  24956. name: "Dicks (Peeking)",
  24957. image: {
  24958. source: "./media/characters/koros/dicks-peeking.svg"
  24959. }
  24960. },
  24961. eye: {
  24962. height: math.unit(1.7, "feet"),
  24963. name: "Eye",
  24964. image: {
  24965. source: "./media/characters/koros/eye.svg"
  24966. }
  24967. },
  24968. headFront: {
  24969. height: math.unit(11.69, "feet"),
  24970. name: "Head (Front)",
  24971. image: {
  24972. source: "./media/characters/koros/head-front.svg"
  24973. }
  24974. },
  24975. headSide: {
  24976. height: math.unit(14, "feet"),
  24977. name: "Head (Side)",
  24978. image: {
  24979. source: "./media/characters/koros/head-side.svg"
  24980. }
  24981. },
  24982. leg: {
  24983. height: math.unit(17, "feet"),
  24984. name: "Leg",
  24985. image: {
  24986. source: "./media/characters/koros/leg.svg"
  24987. }
  24988. },
  24989. mawSide: {
  24990. height: math.unit(12.8, "feet"),
  24991. name: "Maw (Side)",
  24992. image: {
  24993. source: "./media/characters/koros/maw-side.svg"
  24994. }
  24995. },
  24996. mawSpitting: {
  24997. height: math.unit(17, "feet"),
  24998. name: "Maw (Spitting)",
  24999. image: {
  25000. source: "./media/characters/koros/maw-spitting.svg"
  25001. }
  25002. },
  25003. slit: {
  25004. height: math.unit(2.8, "feet"),
  25005. name: "Slit",
  25006. image: {
  25007. source: "./media/characters/koros/slit.svg"
  25008. }
  25009. },
  25010. stomach: {
  25011. height: math.unit(6.8, "feet"),
  25012. capacity: math.unit(20, "people"),
  25013. name: "Stomach",
  25014. image: {
  25015. source: "./media/characters/koros/stomach.svg"
  25016. }
  25017. },
  25018. wingspanBottom: {
  25019. height: math.unit(114, "feet"),
  25020. name: "Wingspan (Bottom)",
  25021. image: {
  25022. source: "./media/characters/koros/wingspan-bottom.svg"
  25023. }
  25024. },
  25025. wingspanTop: {
  25026. height: math.unit(104, "feet"),
  25027. name: "Wingspan (Top)",
  25028. image: {
  25029. source: "./media/characters/koros/wingspan-top.svg"
  25030. }
  25031. },
  25032. },
  25033. [
  25034. {
  25035. name: "Normal",
  25036. height: math.unit(31 + 8 / 12, "feet"),
  25037. default: true
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25043. {
  25044. front: {
  25045. height: math.unit(18 + 5 / 12, "feet"),
  25046. weight: math.unit(3750, "kg"),
  25047. name: "Front",
  25048. image: {
  25049. source: "./media/characters/vexx/front.svg",
  25050. extra: 426 / 396,
  25051. bottom: 31.5 / 458
  25052. }
  25053. },
  25054. maw: {
  25055. height: math.unit(6, "feet"),
  25056. name: "Maw",
  25057. image: {
  25058. source: "./media/characters/vexx/maw.svg"
  25059. }
  25060. },
  25061. },
  25062. [
  25063. {
  25064. name: "Normal",
  25065. height: math.unit(18 + 5 / 12, "feet"),
  25066. default: true
  25067. },
  25068. ]
  25069. ))
  25070. characterMakers.push(() => makeCharacter(
  25071. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25072. {
  25073. front: {
  25074. height: math.unit(17 + 6 / 12, "feet"),
  25075. weight: math.unit(150, "lb"),
  25076. name: "Front",
  25077. image: {
  25078. source: "./media/characters/baadra/front.svg",
  25079. extra: 3137 / 2890,
  25080. bottom: 168.4 / 3305
  25081. }
  25082. },
  25083. back: {
  25084. height: math.unit(17 + 6 / 12, "feet"),
  25085. weight: math.unit(150, "lb"),
  25086. name: "Back",
  25087. image: {
  25088. source: "./media/characters/baadra/back.svg",
  25089. extra: 3142 / 2890,
  25090. bottom: 220 / 3371
  25091. }
  25092. },
  25093. head: {
  25094. height: math.unit(5.45, "feet"),
  25095. name: "Head",
  25096. image: {
  25097. source: "./media/characters/baadra/head.svg"
  25098. }
  25099. },
  25100. headAngry: {
  25101. height: math.unit(4.95, "feet"),
  25102. name: "Head (Angry)",
  25103. image: {
  25104. source: "./media/characters/baadra/head-angry.svg"
  25105. }
  25106. },
  25107. headOpen: {
  25108. height: math.unit(6, "feet"),
  25109. name: "Head (Open)",
  25110. image: {
  25111. source: "./media/characters/baadra/head-open.svg"
  25112. }
  25113. },
  25114. },
  25115. [
  25116. {
  25117. name: "Normal",
  25118. height: math.unit(17 + 6 / 12, "feet"),
  25119. default: true
  25120. },
  25121. ]
  25122. ))
  25123. characterMakers.push(() => makeCharacter(
  25124. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25125. {
  25126. front: {
  25127. height: math.unit(7 + 3 / 12, "feet"),
  25128. weight: math.unit(180, "lb"),
  25129. name: "Front",
  25130. image: {
  25131. source: "./media/characters/juri/front.svg",
  25132. extra: 1401 / 1237,
  25133. bottom: 18.5 / 1418
  25134. }
  25135. },
  25136. side: {
  25137. height: math.unit(7 + 3 / 12, "feet"),
  25138. weight: math.unit(180, "lb"),
  25139. name: "Side",
  25140. image: {
  25141. source: "./media/characters/juri/side.svg",
  25142. extra: 1424 / 1242,
  25143. bottom: 18.5 / 1447
  25144. }
  25145. },
  25146. sitting: {
  25147. height: math.unit(6, "feet"),
  25148. weight: math.unit(180, "lb"),
  25149. name: "Sitting",
  25150. image: {
  25151. source: "./media/characters/juri/sitting.svg",
  25152. extra: 1270 / 1143,
  25153. bottom: 100 / 1343
  25154. }
  25155. },
  25156. back: {
  25157. height: math.unit(7 + 3 / 12, "feet"),
  25158. weight: math.unit(180, "lb"),
  25159. name: "Back",
  25160. image: {
  25161. source: "./media/characters/juri/back.svg",
  25162. extra: 1377 / 1240,
  25163. bottom: 23.7 / 1405
  25164. }
  25165. },
  25166. maw: {
  25167. height: math.unit(2.8, "feet"),
  25168. name: "Maw",
  25169. image: {
  25170. source: "./media/characters/juri/maw.svg"
  25171. }
  25172. },
  25173. stomach: {
  25174. height: math.unit(0.89, "feet"),
  25175. capacity: math.unit(4, "liters"),
  25176. name: "Stomach",
  25177. image: {
  25178. source: "./media/characters/juri/stomach.svg"
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(7 + 3 / 12, "feet"),
  25186. default: true
  25187. },
  25188. ]
  25189. ))
  25190. characterMakers.push(() => makeCharacter(
  25191. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25192. {
  25193. fox: {
  25194. height: math.unit(5 + 6 / 12, "feet"),
  25195. weight: math.unit(140, "lb"),
  25196. name: "Fox",
  25197. image: {
  25198. source: "./media/characters/maxene-sita/fox.svg",
  25199. extra: 146 / 138,
  25200. bottom: 2.1 / 148.19
  25201. }
  25202. },
  25203. foxLaying: {
  25204. height: math.unit(1.70, "feet"),
  25205. weight: math.unit(140, "lb"),
  25206. name: "Fox (Laying)",
  25207. image: {
  25208. source: "./media/characters/maxene-sita/fox-laying.svg",
  25209. extra: 910 / 572,
  25210. bottom: 71 / 981
  25211. }
  25212. },
  25213. kitsune: {
  25214. height: math.unit(10, "feet"),
  25215. weight: math.unit(800, "lb"),
  25216. name: "Kitsune",
  25217. image: {
  25218. source: "./media/characters/maxene-sita/kitsune.svg",
  25219. extra: 185 / 176,
  25220. bottom: 4.7 / 189.9
  25221. }
  25222. },
  25223. hellhound: {
  25224. height: math.unit(10, "feet"),
  25225. weight: math.unit(700, "lb"),
  25226. name: "Hellhound",
  25227. image: {
  25228. source: "./media/characters/maxene-sita/hellhound.svg",
  25229. extra: 1600 / 1545,
  25230. bottom: 81 / 1681
  25231. }
  25232. },
  25233. },
  25234. [
  25235. {
  25236. name: "Normal",
  25237. height: math.unit(5 + 6 / 12, "feet"),
  25238. default: true
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25244. {
  25245. front: {
  25246. height: math.unit(3 + 4 / 12, "feet"),
  25247. weight: math.unit(70, "lb"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/maia/front.svg",
  25251. extra: 227 / 219.5,
  25252. bottom: 40 / 267
  25253. }
  25254. },
  25255. back: {
  25256. height: math.unit(3 + 4 / 12, "feet"),
  25257. weight: math.unit(70, "lb"),
  25258. name: "Back",
  25259. image: {
  25260. source: "./media/characters/maia/back.svg",
  25261. extra: 237 / 225
  25262. }
  25263. },
  25264. },
  25265. [
  25266. {
  25267. name: "Normal",
  25268. height: math.unit(3 + 4 / 12, "feet"),
  25269. default: true
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25275. {
  25276. front: {
  25277. height: math.unit(5 + 10 / 12, "feet"),
  25278. weight: math.unit(197, "lb"),
  25279. name: "Front",
  25280. image: {
  25281. source: "./media/characters/jabaro/front.svg",
  25282. extra: 225 / 216,
  25283. bottom: 5.06 / 230
  25284. }
  25285. },
  25286. back: {
  25287. height: math.unit(5 + 10 / 12, "feet"),
  25288. weight: math.unit(197, "lb"),
  25289. name: "Back",
  25290. image: {
  25291. source: "./media/characters/jabaro/back.svg",
  25292. extra: 225 / 219,
  25293. bottom: 1.9 / 227
  25294. }
  25295. },
  25296. },
  25297. [
  25298. {
  25299. name: "Normal",
  25300. height: math.unit(5 + 10 / 12, "feet"),
  25301. default: true
  25302. },
  25303. ]
  25304. ))
  25305. characterMakers.push(() => makeCharacter(
  25306. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25307. {
  25308. front: {
  25309. height: math.unit(5 + 8 / 12, "feet"),
  25310. weight: math.unit(139, "lb"),
  25311. name: "Front",
  25312. image: {
  25313. source: "./media/characters/risa/front.svg",
  25314. extra: 270 / 260,
  25315. bottom: 11.2 / 282
  25316. }
  25317. },
  25318. back: {
  25319. height: math.unit(5 + 8 / 12, "feet"),
  25320. weight: math.unit(139, "lb"),
  25321. name: "Back",
  25322. image: {
  25323. source: "./media/characters/risa/back.svg",
  25324. extra: 264 / 255,
  25325. bottom: 4 / 268
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Normal",
  25332. height: math.unit(5 + 8 / 12, "feet"),
  25333. default: true
  25334. },
  25335. ]
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25339. {
  25340. front: {
  25341. height: math.unit(2 + 11 / 12, "feet"),
  25342. weight: math.unit(30, "lb"),
  25343. name: "Front",
  25344. image: {
  25345. source: "./media/characters/weatley/front.svg",
  25346. bottom: 10.7 / 414,
  25347. extra: 403.5 / 362
  25348. }
  25349. },
  25350. back: {
  25351. height: math.unit(2 + 11 / 12, "feet"),
  25352. weight: math.unit(30, "lb"),
  25353. name: "Back",
  25354. image: {
  25355. source: "./media/characters/weatley/back.svg",
  25356. bottom: 10.7 / 414,
  25357. extra: 403.5 / 362
  25358. }
  25359. },
  25360. },
  25361. [
  25362. {
  25363. name: "Normal",
  25364. height: math.unit(2 + 11 / 12, "feet"),
  25365. default: true
  25366. },
  25367. ]
  25368. ))
  25369. characterMakers.push(() => makeCharacter(
  25370. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25371. {
  25372. front: {
  25373. height: math.unit(5 + 2 / 12, "feet"),
  25374. weight: math.unit(50, "kg"),
  25375. name: "Front",
  25376. image: {
  25377. source: "./media/characters/mercury-crescent/front.svg",
  25378. extra: 1088 / 1033,
  25379. bottom: 18.9 / 1109
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Normal",
  25386. height: math.unit(5 + 2 / 12, "feet"),
  25387. default: true
  25388. },
  25389. ]
  25390. ))
  25391. characterMakers.push(() => makeCharacter(
  25392. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25393. {
  25394. front: {
  25395. height: math.unit(2, "feet"),
  25396. weight: math.unit(15, "kg"),
  25397. name: "Front",
  25398. image: {
  25399. source: "./media/characters/diamond-jones/front.svg",
  25400. bottom: 16 / 568
  25401. }
  25402. },
  25403. },
  25404. [
  25405. {
  25406. name: "Normal",
  25407. height: math.unit(2, "feet"),
  25408. default: true
  25409. },
  25410. ]
  25411. ))
  25412. characterMakers.push(() => makeCharacter(
  25413. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25414. {
  25415. front: {
  25416. height: math.unit(3, "feet"),
  25417. weight: math.unit(30, "kg"),
  25418. name: "Front",
  25419. image: {
  25420. source: "./media/characters/sweet-bit/front.svg",
  25421. extra: 675 / 567,
  25422. bottom: 27.7 / 703
  25423. }
  25424. },
  25425. },
  25426. [
  25427. {
  25428. name: "Normal",
  25429. height: math.unit(3, "feet"),
  25430. default: true
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25436. {
  25437. side: {
  25438. height: math.unit(9.178, "feet"),
  25439. weight: math.unit(500, "lb"),
  25440. name: "Side",
  25441. image: {
  25442. source: "./media/characters/umbrazen/side.svg",
  25443. extra: 1730 / 1473,
  25444. bottom: 34.6 / 1765
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(9.178, "feet"),
  25452. default: true
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25458. {
  25459. front: {
  25460. height: math.unit(10, "feet"),
  25461. weight: math.unit(750, "lb"),
  25462. name: "Front",
  25463. image: {
  25464. source: "./media/characters/arlist/front.svg",
  25465. extra: 961 / 778,
  25466. bottom: 6.2 / 986
  25467. }
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Normal",
  25473. height: math.unit(10, "feet"),
  25474. default: true
  25475. },
  25476. ]
  25477. ))
  25478. characterMakers.push(() => makeCharacter(
  25479. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25480. {
  25481. front: {
  25482. height: math.unit(5 + 1 / 12, "feet"),
  25483. weight: math.unit(110, "lb"),
  25484. name: "Front",
  25485. image: {
  25486. source: "./media/characters/aradel/front.svg",
  25487. extra: 324 / 303,
  25488. bottom: 3.6 / 329.4
  25489. }
  25490. },
  25491. },
  25492. [
  25493. {
  25494. name: "Normal",
  25495. height: math.unit(5 + 1 / 12, "feet"),
  25496. default: true
  25497. },
  25498. ]
  25499. ))
  25500. characterMakers.push(() => makeCharacter(
  25501. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25502. {
  25503. front: {
  25504. height: math.unit(3 + 8 / 12, "feet"),
  25505. weight: math.unit(50, "lb"),
  25506. name: "Front",
  25507. image: {
  25508. source: "./media/characters/serryn/front.svg",
  25509. extra: 1792 / 1656,
  25510. bottom: 43.5 / 1840
  25511. }
  25512. },
  25513. },
  25514. [
  25515. {
  25516. name: "Normal",
  25517. height: math.unit(3 + 8 / 12, "feet"),
  25518. default: true
  25519. },
  25520. ]
  25521. ))
  25522. characterMakers.push(() => makeCharacter(
  25523. { name: "Xavier Thyme" },
  25524. {
  25525. front: {
  25526. height: math.unit(7 + 10 / 12, "feet"),
  25527. weight: math.unit(255, "lb"),
  25528. name: "Front",
  25529. image: {
  25530. source: "./media/characters/xavier-thyme/front.svg",
  25531. extra: 3733 / 3642,
  25532. bottom: 131 / 3869
  25533. }
  25534. },
  25535. frontRaven: {
  25536. height: math.unit(7 + 10 / 12, "feet"),
  25537. weight: math.unit(255, "lb"),
  25538. name: "Front (Raven)",
  25539. image: {
  25540. source: "./media/characters/xavier-thyme/front-raven.svg",
  25541. extra: 4385 / 3642,
  25542. bottom: 131 / 4517
  25543. }
  25544. },
  25545. },
  25546. [
  25547. {
  25548. name: "Normal",
  25549. height: math.unit(7 + 10 / 12, "feet"),
  25550. default: true
  25551. },
  25552. ]
  25553. ))
  25554. characterMakers.push(() => makeCharacter(
  25555. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25556. {
  25557. front: {
  25558. height: math.unit(1.6, "m"),
  25559. weight: math.unit(50, "kg"),
  25560. name: "Front",
  25561. image: {
  25562. source: "./media/characters/kiki/front.svg",
  25563. extra: 4682 / 3610,
  25564. bottom: 115 / 4777
  25565. }
  25566. },
  25567. },
  25568. [
  25569. {
  25570. name: "Normal",
  25571. height: math.unit(1.6, "meters"),
  25572. default: true
  25573. },
  25574. ]
  25575. ))
  25576. characterMakers.push(() => makeCharacter(
  25577. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25578. {
  25579. front: {
  25580. height: math.unit(50, "m"),
  25581. weight: math.unit(500, "tonnes"),
  25582. name: "Front",
  25583. image: {
  25584. source: "./media/characters/ryoko/front.svg",
  25585. extra: 4632 / 3926,
  25586. bottom: 193 / 4823
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Normal",
  25593. height: math.unit(50, "meters"),
  25594. default: true
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25600. {
  25601. front: {
  25602. height: math.unit(30, "m"),
  25603. weight: math.unit(22, "tonnes"),
  25604. name: "Front",
  25605. image: {
  25606. source: "./media/characters/elio/front.svg",
  25607. extra: 4582 / 3720,
  25608. bottom: 236 / 4828
  25609. }
  25610. },
  25611. },
  25612. [
  25613. {
  25614. name: "Normal",
  25615. height: math.unit(30, "meters"),
  25616. default: true
  25617. },
  25618. ]
  25619. ))
  25620. characterMakers.push(() => makeCharacter(
  25621. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25622. {
  25623. front: {
  25624. height: math.unit(6 + 3 / 12, "feet"),
  25625. weight: math.unit(120, "lb"),
  25626. name: "Front",
  25627. image: {
  25628. source: "./media/characters/azura/front.svg",
  25629. extra: 1149 / 1135,
  25630. bottom: 45 / 1194
  25631. }
  25632. },
  25633. frontClothed: {
  25634. height: math.unit(6 + 3 / 12, "feet"),
  25635. weight: math.unit(120, "lb"),
  25636. name: "Front (Clothed)",
  25637. image: {
  25638. source: "./media/characters/azura/front-clothed.svg",
  25639. extra: 1149 / 1135,
  25640. bottom: 45 / 1194
  25641. }
  25642. },
  25643. },
  25644. [
  25645. {
  25646. name: "Normal",
  25647. height: math.unit(6 + 3 / 12, "feet"),
  25648. default: true
  25649. },
  25650. {
  25651. name: "Macro",
  25652. height: math.unit(20 + 6 / 12, "feet")
  25653. },
  25654. {
  25655. name: "Megamacro",
  25656. height: math.unit(12, "miles")
  25657. },
  25658. {
  25659. name: "Gigamacro",
  25660. height: math.unit(10000, "miles")
  25661. },
  25662. {
  25663. name: "Teramacro",
  25664. height: math.unit(900000, "miles")
  25665. },
  25666. ]
  25667. ))
  25668. characterMakers.push(() => makeCharacter(
  25669. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25670. {
  25671. front: {
  25672. height: math.unit(12, "feet"),
  25673. weight: math.unit(1, "ton"),
  25674. capacity: math.unit(660000, "gallons"),
  25675. name: "Front",
  25676. image: {
  25677. source: "./media/characters/zeus/front.svg",
  25678. extra: 5005 / 4717,
  25679. bottom: 363 / 5388
  25680. }
  25681. },
  25682. },
  25683. [
  25684. {
  25685. name: "Normal",
  25686. height: math.unit(12, "feet")
  25687. },
  25688. {
  25689. name: "Preferred Size",
  25690. height: math.unit(0.5, "miles"),
  25691. default: true
  25692. },
  25693. {
  25694. name: "Giga Horse",
  25695. height: math.unit(300, "miles")
  25696. },
  25697. {
  25698. name: "Riding Planets",
  25699. height: math.unit(30, "megameters")
  25700. },
  25701. {
  25702. name: "Cosmic Giant",
  25703. height: math.unit(3, "zettameters")
  25704. },
  25705. {
  25706. name: "Breeding God",
  25707. height: math.unit(9.92e22, "yottameters")
  25708. },
  25709. ]
  25710. ))
  25711. characterMakers.push(() => makeCharacter(
  25712. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25713. {
  25714. side: {
  25715. height: math.unit(9, "feet"),
  25716. weight: math.unit(1500, "kg"),
  25717. name: "Side",
  25718. image: {
  25719. source: "./media/characters/fang/side.svg",
  25720. extra: 924 / 866,
  25721. bottom: 47.5 / 972.3
  25722. }
  25723. },
  25724. },
  25725. [
  25726. {
  25727. name: "Normal",
  25728. height: math.unit(9, "feet"),
  25729. default: true
  25730. },
  25731. {
  25732. name: "Macro",
  25733. height: math.unit(75 + 6 / 12, "feet")
  25734. },
  25735. {
  25736. name: "Teramacro",
  25737. height: math.unit(50000, "miles")
  25738. },
  25739. ]
  25740. ))
  25741. characterMakers.push(() => makeCharacter(
  25742. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25743. {
  25744. front: {
  25745. height: math.unit(10, "feet"),
  25746. weight: math.unit(2, "tons"),
  25747. name: "Front",
  25748. image: {
  25749. source: "./media/characters/rekhit/front.svg",
  25750. extra: 2796 / 2590,
  25751. bottom: 225 / 3022
  25752. }
  25753. },
  25754. },
  25755. [
  25756. {
  25757. name: "Normal",
  25758. height: math.unit(10, "feet"),
  25759. default: true
  25760. },
  25761. {
  25762. name: "Macro",
  25763. height: math.unit(500, "feet")
  25764. },
  25765. ]
  25766. ))
  25767. characterMakers.push(() => makeCharacter(
  25768. { name: "Dahlia Verrick" },
  25769. {
  25770. front: {
  25771. height: math.unit(7 + 6.451 / 12, "feet"),
  25772. weight: math.unit(310, "lb"),
  25773. name: "Front",
  25774. image: {
  25775. source: "./media/characters/dahlia-verrick/front.svg",
  25776. extra: 1488 / 1365,
  25777. bottom: 6.2 / 1495
  25778. }
  25779. },
  25780. back: {
  25781. height: math.unit(7 + 6.451 / 12, "feet"),
  25782. weight: math.unit(310, "lb"),
  25783. name: "Back",
  25784. image: {
  25785. source: "./media/characters/dahlia-verrick/back.svg",
  25786. extra: 1472 / 1351,
  25787. bottom: 5.28 / 1477
  25788. }
  25789. },
  25790. frontBusiness: {
  25791. height: math.unit(7 + 6.451 / 12, "feet"),
  25792. weight: math.unit(200, "lb"),
  25793. name: "Front (Business)",
  25794. image: {
  25795. source: "./media/characters/dahlia-verrick/front-business.svg",
  25796. extra: 1478 / 1381,
  25797. bottom: 5.5 / 1484
  25798. }
  25799. },
  25800. frontCasual: {
  25801. height: math.unit(7 + 6.451 / 12, "feet"),
  25802. weight: math.unit(200, "lb"),
  25803. name: "Front (Casual)",
  25804. image: {
  25805. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25806. extra: 1478 / 1381,
  25807. bottom: 5.5 / 1484
  25808. }
  25809. },
  25810. },
  25811. [
  25812. {
  25813. name: "Travel-Sized",
  25814. height: math.unit(7.45, "inches")
  25815. },
  25816. {
  25817. name: "Normal",
  25818. height: math.unit(7 + 6.451 / 12, "feet"),
  25819. default: true
  25820. },
  25821. {
  25822. name: "Hitting the Town",
  25823. height: math.unit(37 + 8 / 12, "feet")
  25824. },
  25825. {
  25826. name: "Stomp in the Suburbs",
  25827. height: math.unit(964 + 9.728 / 12, "feet")
  25828. },
  25829. {
  25830. name: "Sit on the City",
  25831. height: math.unit(61747 + 10.592 / 12, "feet")
  25832. },
  25833. {
  25834. name: "Glomp the Globe",
  25835. height: math.unit(252919327 + 4.832 / 12, "feet")
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25841. {
  25842. front: {
  25843. height: math.unit(6 + 4 / 12, "feet"),
  25844. weight: math.unit(320, "lb"),
  25845. name: "Front",
  25846. image: {
  25847. source: "./media/characters/balina-mahigan/front.svg",
  25848. extra: 447 / 428,
  25849. bottom: 18 / 466
  25850. }
  25851. },
  25852. back: {
  25853. height: math.unit(6 + 4 / 12, "feet"),
  25854. weight: math.unit(320, "lb"),
  25855. name: "Back",
  25856. image: {
  25857. source: "./media/characters/balina-mahigan/back.svg",
  25858. extra: 445 / 428,
  25859. bottom: 4.07 / 448
  25860. }
  25861. },
  25862. arm: {
  25863. height: math.unit(1.88, "feet"),
  25864. name: "Arm",
  25865. image: {
  25866. source: "./media/characters/balina-mahigan/arm.svg"
  25867. }
  25868. },
  25869. backPort: {
  25870. height: math.unit(0.685, "feet"),
  25871. name: "Back Port",
  25872. image: {
  25873. source: "./media/characters/balina-mahigan/back-port.svg"
  25874. }
  25875. },
  25876. hoofpaw: {
  25877. height: math.unit(1.41, "feet"),
  25878. name: "Hoofpaw",
  25879. image: {
  25880. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25881. }
  25882. },
  25883. leftHandBack: {
  25884. height: math.unit(0.938, "feet"),
  25885. name: "Left Hand (Back)",
  25886. image: {
  25887. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25888. }
  25889. },
  25890. leftHandFront: {
  25891. height: math.unit(0.938, "feet"),
  25892. name: "Left Hand (Front)",
  25893. image: {
  25894. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25895. }
  25896. },
  25897. rightHandBack: {
  25898. height: math.unit(0.95, "feet"),
  25899. name: "Right Hand (Back)",
  25900. image: {
  25901. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25902. }
  25903. },
  25904. rightHandFront: {
  25905. height: math.unit(0.95, "feet"),
  25906. name: "Right Hand (Front)",
  25907. image: {
  25908. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25909. }
  25910. },
  25911. },
  25912. [
  25913. {
  25914. name: "Normal",
  25915. height: math.unit(6 + 4 / 12, "feet"),
  25916. default: true
  25917. },
  25918. ]
  25919. ))
  25920. characterMakers.push(() => makeCharacter(
  25921. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25922. {
  25923. front: {
  25924. height: math.unit(6, "feet"),
  25925. weight: math.unit(320, "lb"),
  25926. name: "Front",
  25927. image: {
  25928. source: "./media/characters/balina-mejeri/front.svg",
  25929. extra: 517 / 488,
  25930. bottom: 44.2 / 561
  25931. }
  25932. },
  25933. },
  25934. [
  25935. {
  25936. name: "Normal",
  25937. height: math.unit(6 + 4 / 12, "feet")
  25938. },
  25939. {
  25940. name: "Business",
  25941. height: math.unit(155, "feet"),
  25942. default: true
  25943. },
  25944. ]
  25945. ))
  25946. characterMakers.push(() => makeCharacter(
  25947. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25948. {
  25949. kneeling: {
  25950. height: math.unit(6 + 4 / 12, "feet"),
  25951. weight: math.unit(300 * 20, "lb"),
  25952. name: "Kneeling",
  25953. image: {
  25954. source: "./media/characters/balbarian/kneeling.svg",
  25955. extra: 922 / 862,
  25956. bottom: 42.4 / 965
  25957. }
  25958. },
  25959. },
  25960. [
  25961. {
  25962. name: "Normal",
  25963. height: math.unit(6 + 4 / 12, "feet")
  25964. },
  25965. {
  25966. name: "Treasured",
  25967. height: math.unit(18 + 9 / 12, "feet"),
  25968. default: true
  25969. },
  25970. {
  25971. name: "Macro",
  25972. height: math.unit(900, "feet")
  25973. },
  25974. ]
  25975. ))
  25976. characterMakers.push(() => makeCharacter(
  25977. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25978. {
  25979. front: {
  25980. height: math.unit(6 + 4 / 12, "feet"),
  25981. weight: math.unit(325, "lb"),
  25982. name: "Front",
  25983. image: {
  25984. source: "./media/characters/balina-amarini/front.svg",
  25985. extra: 415 / 403,
  25986. bottom: 19 / 433.4
  25987. }
  25988. },
  25989. back: {
  25990. height: math.unit(6 + 4 / 12, "feet"),
  25991. weight: math.unit(325, "lb"),
  25992. name: "Back",
  25993. image: {
  25994. source: "./media/characters/balina-amarini/back.svg",
  25995. extra: 415 / 403,
  25996. bottom: 13.5 / 432
  25997. }
  25998. },
  25999. overdrive: {
  26000. height: math.unit(6 + 4 / 12, "feet"),
  26001. weight: math.unit(400, "lb"),
  26002. name: "Overdrive",
  26003. image: {
  26004. source: "./media/characters/balina-amarini/overdrive.svg",
  26005. extra: 269 / 259,
  26006. bottom: 12 / 282
  26007. }
  26008. },
  26009. },
  26010. [
  26011. {
  26012. name: "Boom",
  26013. height: math.unit(9 + 10 / 12, "feet"),
  26014. default: true
  26015. },
  26016. {
  26017. name: "Macro",
  26018. height: math.unit(280, "feet")
  26019. },
  26020. ]
  26021. ))
  26022. characterMakers.push(() => makeCharacter(
  26023. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26024. {
  26025. goddess: {
  26026. height: math.unit(600, "feet"),
  26027. weight: math.unit(2000000, "tons"),
  26028. name: "Goddess",
  26029. image: {
  26030. source: "./media/characters/lady-kubwa/goddess.svg",
  26031. extra: 1240.5 / 1223,
  26032. bottom: 22 / 1263
  26033. }
  26034. },
  26035. goddesser: {
  26036. height: math.unit(900, "feet"),
  26037. weight: math.unit(20000000, "lb"),
  26038. name: "Goddess-er",
  26039. image: {
  26040. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26041. extra: 899 / 888,
  26042. bottom: 12.6 / 912
  26043. }
  26044. },
  26045. },
  26046. [
  26047. {
  26048. name: "Macro",
  26049. height: math.unit(600, "feet"),
  26050. default: true
  26051. },
  26052. {
  26053. name: "Megamacro",
  26054. height: math.unit(250, "miles")
  26055. },
  26056. ]
  26057. ))
  26058. characterMakers.push(() => makeCharacter(
  26059. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26060. {
  26061. front: {
  26062. height: math.unit(7 + 7 / 12, "feet"),
  26063. weight: math.unit(250, "lb"),
  26064. name: "Front",
  26065. image: {
  26066. source: "./media/characters/tala-grovehorn/front.svg",
  26067. extra: 2636 / 2525,
  26068. bottom: 147 / 2781
  26069. }
  26070. },
  26071. back: {
  26072. height: math.unit(7 + 7 / 12, "feet"),
  26073. weight: math.unit(250, "lb"),
  26074. name: "Back",
  26075. image: {
  26076. source: "./media/characters/tala-grovehorn/back.svg",
  26077. extra: 2635 / 2539,
  26078. bottom: 100 / 2732.8
  26079. }
  26080. },
  26081. mouth: {
  26082. height: math.unit(1.15, "feet"),
  26083. name: "Mouth",
  26084. image: {
  26085. source: "./media/characters/tala-grovehorn/mouth.svg"
  26086. }
  26087. },
  26088. dick: {
  26089. height: math.unit(2.36, "feet"),
  26090. name: "Dick",
  26091. image: {
  26092. source: "./media/characters/tala-grovehorn/dick.svg"
  26093. }
  26094. },
  26095. slit: {
  26096. height: math.unit(0.61, "feet"),
  26097. name: "Slit",
  26098. image: {
  26099. source: "./media/characters/tala-grovehorn/slit.svg"
  26100. }
  26101. },
  26102. },
  26103. [
  26104. ]
  26105. ))
  26106. characterMakers.push(() => makeCharacter(
  26107. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26108. {
  26109. front: {
  26110. height: math.unit(7 + 7 / 12, "feet"),
  26111. weight: math.unit(225, "lb"),
  26112. name: "Front",
  26113. image: {
  26114. source: "./media/characters/epona/front.svg",
  26115. extra: 2445 / 2290,
  26116. bottom: 251 / 2696
  26117. }
  26118. },
  26119. back: {
  26120. height: math.unit(7 + 7 / 12, "feet"),
  26121. weight: math.unit(225, "lb"),
  26122. name: "Back",
  26123. image: {
  26124. source: "./media/characters/epona/back.svg",
  26125. extra: 2546 / 2408,
  26126. bottom: 44 / 2589
  26127. }
  26128. },
  26129. genitals: {
  26130. height: math.unit(1.5, "feet"),
  26131. name: "Genitals",
  26132. image: {
  26133. source: "./media/characters/epona/genitals.svg"
  26134. }
  26135. },
  26136. },
  26137. [
  26138. {
  26139. name: "Normal",
  26140. height: math.unit(7 + 7 / 12, "feet"),
  26141. default: true
  26142. },
  26143. ]
  26144. ))
  26145. characterMakers.push(() => makeCharacter(
  26146. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26147. {
  26148. front: {
  26149. height: math.unit(7, "feet"),
  26150. weight: math.unit(518, "lb"),
  26151. name: "Front",
  26152. image: {
  26153. source: "./media/characters/avia-bloodbourn/front.svg",
  26154. extra: 1466 / 1350,
  26155. bottom: 65 / 1527
  26156. }
  26157. },
  26158. },
  26159. [
  26160. ]
  26161. ))
  26162. characterMakers.push(() => makeCharacter(
  26163. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26164. {
  26165. front: {
  26166. height: math.unit(9.35, "feet"),
  26167. weight: math.unit(600, "lb"),
  26168. name: "Front",
  26169. image: {
  26170. source: "./media/characters/amera/front.svg",
  26171. extra: 891 / 818,
  26172. bottom: 30 / 922.7
  26173. }
  26174. },
  26175. back: {
  26176. height: math.unit(9.35, "feet"),
  26177. weight: math.unit(600, "lb"),
  26178. name: "Back",
  26179. image: {
  26180. source: "./media/characters/amera/back.svg",
  26181. extra: 876 / 824,
  26182. bottom: 6.8 / 884
  26183. }
  26184. },
  26185. dick: {
  26186. height: math.unit(2.14, "feet"),
  26187. name: "Dick",
  26188. image: {
  26189. source: "./media/characters/amera/dick.svg"
  26190. }
  26191. },
  26192. },
  26193. [
  26194. {
  26195. name: "Normal",
  26196. height: math.unit(9.35, "feet"),
  26197. default: true
  26198. },
  26199. ]
  26200. ))
  26201. characterMakers.push(() => makeCharacter(
  26202. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26203. {
  26204. kneeling: {
  26205. height: math.unit(3 + 4 / 12, "feet"),
  26206. weight: math.unit(90, "lb"),
  26207. name: "Kneeling",
  26208. image: {
  26209. source: "./media/characters/rosewen/kneeling.svg",
  26210. extra: 1835 / 1571,
  26211. bottom: 27.7 / 1862
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Normal",
  26218. height: math.unit(3 + 4 / 12, "feet"),
  26219. default: true
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26225. {
  26226. front: {
  26227. height: math.unit(5 + 10 / 12, "feet"),
  26228. weight: math.unit(200, "lb"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/sabah/front.svg",
  26232. extra: 849 / 763,
  26233. bottom: 33.9 / 881
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Normal",
  26240. height: math.unit(5 + 10 / 12, "feet"),
  26241. default: true
  26242. },
  26243. ]
  26244. ))
  26245. characterMakers.push(() => makeCharacter(
  26246. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26247. {
  26248. front: {
  26249. height: math.unit(3 + 5 / 12, "feet"),
  26250. weight: math.unit(40, "kg"),
  26251. name: "Front",
  26252. image: {
  26253. source: "./media/characters/purple-flame/front.svg",
  26254. extra: 1577 / 1412,
  26255. bottom: 97 / 1694
  26256. }
  26257. },
  26258. frontDressed: {
  26259. height: math.unit(3 + 5 / 12, "feet"),
  26260. weight: math.unit(40, "kg"),
  26261. name: "Front (Dressed)",
  26262. image: {
  26263. source: "./media/characters/purple-flame/front-dressed.svg",
  26264. extra: 1577 / 1412,
  26265. bottom: 97 / 1694
  26266. }
  26267. },
  26268. headphones: {
  26269. height: math.unit(0.85, "feet"),
  26270. name: "Headphones",
  26271. image: {
  26272. source: "./media/characters/purple-flame/headphones.svg"
  26273. }
  26274. },
  26275. },
  26276. [
  26277. {
  26278. name: "Really Small",
  26279. height: math.unit(5, "cm")
  26280. },
  26281. {
  26282. name: "Micro",
  26283. height: math.unit(1 + 5 / 12, "feet")
  26284. },
  26285. {
  26286. name: "Normal",
  26287. height: math.unit(3 + 5 / 12, "feet"),
  26288. default: true
  26289. },
  26290. {
  26291. name: "Minimacro",
  26292. height: math.unit(125, "feet")
  26293. },
  26294. {
  26295. name: "Macro",
  26296. height: math.unit(0.5, "miles")
  26297. },
  26298. {
  26299. name: "Megamacro",
  26300. height: math.unit(50, "miles")
  26301. },
  26302. {
  26303. name: "Gigantic",
  26304. height: math.unit(750, "miles")
  26305. },
  26306. {
  26307. name: "Planetary",
  26308. height: math.unit(15000, "miles")
  26309. },
  26310. ]
  26311. ))
  26312. characterMakers.push(() => makeCharacter(
  26313. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26314. {
  26315. front: {
  26316. height: math.unit(14, "feet"),
  26317. weight: math.unit(959, "lb"),
  26318. name: "Front",
  26319. image: {
  26320. source: "./media/characters/arsenal/front.svg",
  26321. extra: 2357 / 2157,
  26322. bottom: 93 / 2458
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Normal",
  26329. height: math.unit(14, "feet"),
  26330. default: true
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26336. {
  26337. front: {
  26338. height: math.unit(6, "feet"),
  26339. weight: math.unit(150, "lb"),
  26340. name: "Front",
  26341. image: {
  26342. source: "./media/characters/adira/front.svg",
  26343. extra: 1078 / 1029,
  26344. bottom: 87 / 1166
  26345. }
  26346. },
  26347. },
  26348. [
  26349. {
  26350. name: "Micro",
  26351. height: math.unit(4, "inches"),
  26352. default: true
  26353. },
  26354. {
  26355. name: "Macro",
  26356. height: math.unit(50, "feet")
  26357. },
  26358. ]
  26359. ))
  26360. characterMakers.push(() => makeCharacter(
  26361. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26362. {
  26363. front: {
  26364. height: math.unit(16, "feet"),
  26365. weight: math.unit(1000, "lb"),
  26366. name: "Front",
  26367. image: {
  26368. source: "./media/characters/grim/front.svg",
  26369. extra: 622 / 614,
  26370. bottom: 18.1 / 642
  26371. }
  26372. },
  26373. back: {
  26374. height: math.unit(16, "feet"),
  26375. weight: math.unit(1000, "lb"),
  26376. name: "Back",
  26377. image: {
  26378. source: "./media/characters/grim/back.svg",
  26379. extra: 610.6 / 602,
  26380. bottom: 40.8 / 652
  26381. }
  26382. },
  26383. hunched: {
  26384. height: math.unit(9.75, "feet"),
  26385. weight: math.unit(1000, "lb"),
  26386. name: "Hunched",
  26387. image: {
  26388. source: "./media/characters/grim/hunched.svg",
  26389. extra: 304 / 297,
  26390. bottom: 35.4 / 394
  26391. }
  26392. },
  26393. },
  26394. [
  26395. {
  26396. name: "Normal",
  26397. height: math.unit(16, "feet"),
  26398. default: true
  26399. },
  26400. ]
  26401. ))
  26402. characterMakers.push(() => makeCharacter(
  26403. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26404. {
  26405. front: {
  26406. height: math.unit(2.3, "meters"),
  26407. weight: math.unit(300, "lb"),
  26408. name: "Front",
  26409. image: {
  26410. source: "./media/characters/sinja/front-sfw.svg",
  26411. extra: 1393 / 1294,
  26412. bottom: 70 / 1463
  26413. }
  26414. },
  26415. frontNsfw: {
  26416. height: math.unit(2.3, "meters"),
  26417. weight: math.unit(300, "lb"),
  26418. name: "Front (NSFW)",
  26419. image: {
  26420. source: "./media/characters/sinja/front-nsfw.svg",
  26421. extra: 1393 / 1294,
  26422. bottom: 70 / 1463
  26423. }
  26424. },
  26425. back: {
  26426. height: math.unit(2.3, "meters"),
  26427. weight: math.unit(300, "lb"),
  26428. name: "Back",
  26429. image: {
  26430. source: "./media/characters/sinja/back.svg",
  26431. extra: 1393 / 1294,
  26432. bottom: 70 / 1463
  26433. }
  26434. },
  26435. head: {
  26436. height: math.unit(1.771, "feet"),
  26437. name: "Head",
  26438. image: {
  26439. source: "./media/characters/sinja/head.svg"
  26440. }
  26441. },
  26442. slit: {
  26443. height: math.unit(0.8, "feet"),
  26444. name: "Slit",
  26445. image: {
  26446. source: "./media/characters/sinja/slit.svg"
  26447. }
  26448. },
  26449. },
  26450. [
  26451. {
  26452. name: "Normal",
  26453. height: math.unit(2.3, "meters")
  26454. },
  26455. {
  26456. name: "Macro",
  26457. height: math.unit(91, "meters"),
  26458. default: true
  26459. },
  26460. {
  26461. name: "Megamacro",
  26462. height: math.unit(91440, "meters")
  26463. },
  26464. {
  26465. name: "Gigamacro",
  26466. height: math.unit(60960000, "meters")
  26467. },
  26468. {
  26469. name: "Teramacro",
  26470. height: math.unit(9144000000, "meters")
  26471. },
  26472. ]
  26473. ))
  26474. characterMakers.push(() => makeCharacter(
  26475. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26476. {
  26477. front: {
  26478. height: math.unit(1.7, "meters"),
  26479. weight: math.unit(130, "lb"),
  26480. name: "Front",
  26481. image: {
  26482. source: "./media/characters/kyu/front.svg",
  26483. extra: 415 / 395,
  26484. bottom: 5 / 420
  26485. }
  26486. },
  26487. head: {
  26488. height: math.unit(1.75, "feet"),
  26489. name: "Head",
  26490. image: {
  26491. source: "./media/characters/kyu/head.svg"
  26492. }
  26493. },
  26494. foot: {
  26495. height: math.unit(0.81, "feet"),
  26496. name: "Foot",
  26497. image: {
  26498. source: "./media/characters/kyu/foot.svg"
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Normal",
  26505. height: math.unit(1.7, "meters")
  26506. },
  26507. {
  26508. name: "Macro",
  26509. height: math.unit(131, "feet"),
  26510. default: true
  26511. },
  26512. {
  26513. name: "Megamacro",
  26514. height: math.unit(91440, "meters")
  26515. },
  26516. {
  26517. name: "Gigamacro",
  26518. height: math.unit(60960000, "meters")
  26519. },
  26520. {
  26521. name: "Teramacro",
  26522. height: math.unit(9144000000, "meters")
  26523. },
  26524. ]
  26525. ))
  26526. characterMakers.push(() => makeCharacter(
  26527. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26528. {
  26529. front: {
  26530. height: math.unit(7 + 1 / 12, "feet"),
  26531. weight: math.unit(250, "lb"),
  26532. name: "Front",
  26533. image: {
  26534. source: "./media/characters/joey/front.svg",
  26535. extra: 1791 / 1537,
  26536. bottom: 28 / 1816
  26537. }
  26538. },
  26539. },
  26540. [
  26541. {
  26542. name: "Micro",
  26543. height: math.unit(3, "inches")
  26544. },
  26545. {
  26546. name: "Normal",
  26547. height: math.unit(7 + 1 / 12, "feet"),
  26548. default: true
  26549. },
  26550. ]
  26551. ))
  26552. characterMakers.push(() => makeCharacter(
  26553. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26554. {
  26555. front: {
  26556. height: math.unit(165, "cm"),
  26557. weight: math.unit(140, "lb"),
  26558. name: "Front",
  26559. image: {
  26560. source: "./media/characters/sam-evans/front.svg",
  26561. extra: 3417 / 3230,
  26562. bottom: 41.3 / 3417
  26563. }
  26564. },
  26565. frontSixTails: {
  26566. height: math.unit(165, "cm"),
  26567. weight: math.unit(140, "lb"),
  26568. name: "Front-six-tails",
  26569. image: {
  26570. source: "./media/characters/sam-evans/front-six-tails.svg",
  26571. extra: 3417 / 3230,
  26572. bottom: 41.3 / 3417
  26573. }
  26574. },
  26575. back: {
  26576. height: math.unit(165, "cm"),
  26577. weight: math.unit(140, "lb"),
  26578. name: "Back",
  26579. image: {
  26580. source: "./media/characters/sam-evans/back.svg",
  26581. extra: 3227 / 3032,
  26582. bottom: 6.8 / 3234
  26583. }
  26584. },
  26585. face: {
  26586. height: math.unit(0.68, "feet"),
  26587. name: "Face",
  26588. image: {
  26589. source: "./media/characters/sam-evans/face.svg"
  26590. }
  26591. },
  26592. },
  26593. [
  26594. {
  26595. name: "Normal",
  26596. height: math.unit(165, "cm"),
  26597. default: true
  26598. },
  26599. {
  26600. name: "Macro",
  26601. height: math.unit(100, "meters")
  26602. },
  26603. {
  26604. name: "Macro+",
  26605. height: math.unit(800, "meters")
  26606. },
  26607. {
  26608. name: "Macro++",
  26609. height: math.unit(3, "km")
  26610. },
  26611. {
  26612. name: "Macro+++",
  26613. height: math.unit(30, "km")
  26614. },
  26615. ]
  26616. ))
  26617. characterMakers.push(() => makeCharacter(
  26618. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26619. {
  26620. front: {
  26621. height: math.unit(10, "feet"),
  26622. weight: math.unit(750, "lb"),
  26623. name: "Front",
  26624. image: {
  26625. source: "./media/characters/juliet-a/front.svg",
  26626. extra: 1766 / 1720,
  26627. bottom: 43 / 1809
  26628. }
  26629. },
  26630. back: {
  26631. height: math.unit(10, "feet"),
  26632. weight: math.unit(750, "lb"),
  26633. name: "Back",
  26634. image: {
  26635. source: "./media/characters/juliet-a/back.svg",
  26636. extra: 1781 / 1734,
  26637. bottom: 35 / 1810,
  26638. }
  26639. },
  26640. },
  26641. [
  26642. {
  26643. name: "Normal",
  26644. height: math.unit(10, "feet"),
  26645. default: true
  26646. },
  26647. {
  26648. name: "Dragon Form",
  26649. height: math.unit(250, "feet")
  26650. },
  26651. {
  26652. name: "Macro",
  26653. height: math.unit(1000, "feet")
  26654. },
  26655. {
  26656. name: "Megamacro",
  26657. height: math.unit(10000, "feet")
  26658. }
  26659. ]
  26660. ))
  26661. characterMakers.push(() => makeCharacter(
  26662. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26663. {
  26664. regular: {
  26665. height: math.unit(7 + 3 / 12, "feet"),
  26666. weight: math.unit(260, "lb"),
  26667. name: "Regular",
  26668. image: {
  26669. source: "./media/characters/wild/regular.svg",
  26670. extra: 97.45 / 92,
  26671. bottom: 6.8 / 104.3
  26672. }
  26673. },
  26674. biggums: {
  26675. height: math.unit(8 + 6 / 12, "feet"),
  26676. weight: math.unit(425, "lb"),
  26677. name: "Biggums",
  26678. image: {
  26679. source: "./media/characters/wild/biggums.svg",
  26680. extra: 97.45 / 92,
  26681. bottom: 7.5 / 132.34
  26682. }
  26683. },
  26684. mawRegular: {
  26685. height: math.unit(1.24, "feet"),
  26686. name: "Maw (Regular)",
  26687. image: {
  26688. source: "./media/characters/wild/maw.svg"
  26689. }
  26690. },
  26691. mawBiggums: {
  26692. height: math.unit(1.47, "feet"),
  26693. name: "Maw (Biggums)",
  26694. image: {
  26695. source: "./media/characters/wild/maw.svg"
  26696. }
  26697. },
  26698. },
  26699. [
  26700. {
  26701. name: "Normal",
  26702. height: math.unit(7 + 3 / 12, "feet"),
  26703. default: true
  26704. },
  26705. ]
  26706. ))
  26707. characterMakers.push(() => makeCharacter(
  26708. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26709. {
  26710. front: {
  26711. height: math.unit(2.5, "meters"),
  26712. weight: math.unit(200, "kg"),
  26713. name: "Front",
  26714. image: {
  26715. source: "./media/characters/vidar/front.svg",
  26716. extra: 2994 / 2795,
  26717. bottom: 56 / 3061
  26718. }
  26719. },
  26720. back: {
  26721. height: math.unit(2.5, "meters"),
  26722. weight: math.unit(200, "kg"),
  26723. name: "Back",
  26724. image: {
  26725. source: "./media/characters/vidar/back.svg",
  26726. extra: 3131 / 2928,
  26727. bottom: 13.5 / 3141.5
  26728. }
  26729. },
  26730. feral: {
  26731. height: math.unit(2.5, "meters"),
  26732. weight: math.unit(2000, "kg"),
  26733. name: "Feral",
  26734. image: {
  26735. source: "./media/characters/vidar/feral.svg",
  26736. extra: 2790 / 1765,
  26737. bottom: 6 / 2796
  26738. }
  26739. },
  26740. },
  26741. [
  26742. {
  26743. name: "Normal",
  26744. height: math.unit(2.5, "meters"),
  26745. default: true
  26746. },
  26747. {
  26748. name: "Macro",
  26749. height: math.unit(100, "meters")
  26750. },
  26751. ]
  26752. ))
  26753. characterMakers.push(() => makeCharacter(
  26754. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26755. {
  26756. front: {
  26757. height: math.unit(5 + 9 / 12, "feet"),
  26758. weight: math.unit(120, "lb"),
  26759. name: "Front",
  26760. image: {
  26761. source: "./media/characters/ash/front.svg",
  26762. extra: 2189 / 1961,
  26763. bottom: 5.2 / 2194
  26764. }
  26765. },
  26766. },
  26767. [
  26768. {
  26769. name: "Normal",
  26770. height: math.unit(5 + 9 / 12, "feet"),
  26771. default: true
  26772. },
  26773. ]
  26774. ))
  26775. characterMakers.push(() => makeCharacter(
  26776. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26777. {
  26778. front: {
  26779. height: math.unit(9, "feet"),
  26780. weight: math.unit(10000, "lb"),
  26781. name: "Front",
  26782. image: {
  26783. source: "./media/characters/gygabite/front.svg",
  26784. bottom: 31.7 / 537.8,
  26785. extra: 505 / 370
  26786. }
  26787. },
  26788. },
  26789. [
  26790. {
  26791. name: "Normal",
  26792. height: math.unit(9, "feet"),
  26793. default: true
  26794. },
  26795. ]
  26796. ))
  26797. characterMakers.push(() => makeCharacter(
  26798. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26799. {
  26800. front: {
  26801. height: math.unit(12, "feet"),
  26802. weight: math.unit(35000, "lb"),
  26803. name: "Front",
  26804. image: {
  26805. source: "./media/characters/p0tat0/front.svg",
  26806. extra: 1065 / 921,
  26807. bottom: 55.7 / 1121.25
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Normal",
  26814. height: math.unit(12, "feet"),
  26815. default: true
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26821. {
  26822. side: {
  26823. height: math.unit(6.5, "feet"),
  26824. weight: math.unit(800, "lb"),
  26825. name: "Side",
  26826. image: {
  26827. source: "./media/characters/dusk/side.svg",
  26828. extra: 615 / 373,
  26829. bottom: 53 / 664
  26830. }
  26831. },
  26832. sitting: {
  26833. height: math.unit(7, "feet"),
  26834. weight: math.unit(800, "lb"),
  26835. name: "Sitting",
  26836. image: {
  26837. source: "./media/characters/dusk/sitting.svg",
  26838. extra: 753 / 425,
  26839. bottom: 33 / 774
  26840. }
  26841. },
  26842. head: {
  26843. height: math.unit(6.1, "feet"),
  26844. name: "Head",
  26845. image: {
  26846. source: "./media/characters/dusk/head.svg"
  26847. }
  26848. },
  26849. },
  26850. [
  26851. {
  26852. name: "Normal",
  26853. height: math.unit(7, "feet"),
  26854. default: true
  26855. },
  26856. ]
  26857. ))
  26858. characterMakers.push(() => makeCharacter(
  26859. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26860. {
  26861. front: {
  26862. height: math.unit(15, "feet"),
  26863. weight: math.unit(7000, "lb"),
  26864. name: "Front",
  26865. image: {
  26866. source: "./media/characters/jay-direwolf/front.svg",
  26867. extra: 1810 / 1732,
  26868. bottom: 66 / 1892
  26869. }
  26870. },
  26871. },
  26872. [
  26873. {
  26874. name: "Normal",
  26875. height: math.unit(15, "feet"),
  26876. default: true
  26877. },
  26878. ]
  26879. ))
  26880. characterMakers.push(() => makeCharacter(
  26881. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26882. {
  26883. front: {
  26884. height: math.unit(4 + 9 / 12, "feet"),
  26885. weight: math.unit(130, "lb"),
  26886. name: "Front",
  26887. image: {
  26888. source: "./media/characters/anchovie/front.svg",
  26889. extra: 382 / 350,
  26890. bottom: 25 / 409
  26891. }
  26892. },
  26893. back: {
  26894. height: math.unit(4 + 9 / 12, "feet"),
  26895. weight: math.unit(130, "lb"),
  26896. name: "Back",
  26897. image: {
  26898. source: "./media/characters/anchovie/back.svg",
  26899. extra: 385 / 352,
  26900. bottom: 16.6 / 402
  26901. }
  26902. },
  26903. frontDressed: {
  26904. height: math.unit(4 + 9 / 12, "feet"),
  26905. weight: math.unit(130, "lb"),
  26906. name: "Front (Dressed)",
  26907. image: {
  26908. source: "./media/characters/anchovie/front-dressed.svg",
  26909. extra: 382 / 350,
  26910. bottom: 25 / 409
  26911. }
  26912. },
  26913. backDressed: {
  26914. height: math.unit(4 + 9 / 12, "feet"),
  26915. weight: math.unit(130, "lb"),
  26916. name: "Back (Dressed)",
  26917. image: {
  26918. source: "./media/characters/anchovie/back-dressed.svg",
  26919. extra: 385 / 352,
  26920. bottom: 16.6 / 402
  26921. }
  26922. },
  26923. },
  26924. [
  26925. {
  26926. name: "Micro",
  26927. height: math.unit(6.4, "inches")
  26928. },
  26929. {
  26930. name: "Normal",
  26931. height: math.unit(4 + 9 / 12, "feet"),
  26932. default: true
  26933. },
  26934. ]
  26935. ))
  26936. characterMakers.push(() => makeCharacter(
  26937. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26938. {
  26939. front: {
  26940. height: math.unit(2, "meters"),
  26941. weight: math.unit(180, "lb"),
  26942. name: "Front",
  26943. image: {
  26944. source: "./media/characters/acidrenamon/front.svg",
  26945. extra: 987 / 890,
  26946. bottom: 22.8 / 1009
  26947. }
  26948. },
  26949. back: {
  26950. height: math.unit(2, "meters"),
  26951. weight: math.unit(180, "lb"),
  26952. name: "Back",
  26953. image: {
  26954. source: "./media/characters/acidrenamon/back.svg",
  26955. extra: 983 / 891,
  26956. bottom: 8.4 / 992
  26957. }
  26958. },
  26959. head: {
  26960. height: math.unit(1.92, "feet"),
  26961. name: "Head",
  26962. image: {
  26963. source: "./media/characters/acidrenamon/head.svg"
  26964. }
  26965. },
  26966. rump: {
  26967. height: math.unit(1.72, "feet"),
  26968. name: "Rump",
  26969. image: {
  26970. source: "./media/characters/acidrenamon/rump.svg"
  26971. }
  26972. },
  26973. tail: {
  26974. height: math.unit(4.2, "feet"),
  26975. name: "Tail",
  26976. image: {
  26977. source: "./media/characters/acidrenamon/tail.svg"
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Normal",
  26984. height: math.unit(2, "meters"),
  26985. default: true
  26986. },
  26987. {
  26988. name: "Minimacro",
  26989. height: math.unit(7, "meters")
  26990. },
  26991. {
  26992. name: "Macro",
  26993. height: math.unit(200, "meters")
  26994. },
  26995. {
  26996. name: "Gigamacro",
  26997. height: math.unit(0.2, "earths")
  26998. },
  26999. ]
  27000. ))
  27001. characterMakers.push(() => makeCharacter(
  27002. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27003. {
  27004. front: {
  27005. height: math.unit(6, "feet"),
  27006. weight: math.unit(150, "lb"),
  27007. name: "Front",
  27008. image: {
  27009. source: "./media/characters/kenzie-lee/front.svg",
  27010. extra: 1525 / 1465,
  27011. bottom: 45 / 1570
  27012. }
  27013. },
  27014. side: {
  27015. height: math.unit(6, "feet"),
  27016. weight: math.unit(150, "lb"),
  27017. name: "Side",
  27018. image: {
  27019. source: "./media/characters/kenzie-lee/side.svg",
  27020. extra: 5505 / 5383,
  27021. bottom: 60 / 5573
  27022. }
  27023. },
  27024. paw: {
  27025. height: math.unit(0.57, "feet"),
  27026. name: "Paw",
  27027. image: {
  27028. source: "./media/characters/kenzie-lee/paw.svg"
  27029. }
  27030. },
  27031. },
  27032. [
  27033. {
  27034. name: "Normal",
  27035. height: math.unit(152, "feet"),
  27036. default: true
  27037. },
  27038. {
  27039. name: "Megamacro",
  27040. height: math.unit(7, "miles")
  27041. },
  27042. {
  27043. name: "Gigamacro",
  27044. height: math.unit(8000, "miles")
  27045. },
  27046. ]
  27047. ))
  27048. characterMakers.push(() => makeCharacter(
  27049. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27050. {
  27051. side: {
  27052. height: math.unit(6, "feet"),
  27053. weight: math.unit(150, "lb"),
  27054. name: "Side",
  27055. image: {
  27056. source: "./media/characters/withers/side.svg",
  27057. extra: 1830 / 1728,
  27058. bottom: 96 / 1927
  27059. }
  27060. },
  27061. front: {
  27062. height: math.unit(6, "feet"),
  27063. weight: math.unit(150, "lb"),
  27064. name: "Front",
  27065. image: {
  27066. source: "./media/characters/withers/front.svg",
  27067. extra: 1514 / 1438,
  27068. bottom: 118 / 1632
  27069. }
  27070. },
  27071. },
  27072. [
  27073. {
  27074. name: "Macro",
  27075. height: math.unit(168, "feet"),
  27076. default: true
  27077. },
  27078. {
  27079. name: "Megamacro",
  27080. height: math.unit(15, "miles")
  27081. }
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27086. {
  27087. front: {
  27088. height: math.unit(6 + 7 / 12, "feet"),
  27089. weight: math.unit(250, "lb"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/nemoskii/front.svg",
  27093. extra: 2270 / 1734,
  27094. bottom: 86 / 2354
  27095. }
  27096. },
  27097. back: {
  27098. height: math.unit(6 + 7 / 12, "feet"),
  27099. weight: math.unit(250, "lb"),
  27100. name: "Back",
  27101. image: {
  27102. source: "./media/characters/nemoskii/back.svg",
  27103. extra: 1845 / 1788,
  27104. bottom: 10.5 / 1852
  27105. }
  27106. },
  27107. head: {
  27108. height: math.unit(1.31, "feet"),
  27109. name: "Head",
  27110. image: {
  27111. source: "./media/characters/nemoskii/head.svg"
  27112. }
  27113. },
  27114. },
  27115. [
  27116. {
  27117. name: "Micro",
  27118. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27119. },
  27120. {
  27121. name: "Normal",
  27122. height: math.unit(6 + 7 / 12, "feet"),
  27123. default: true
  27124. },
  27125. {
  27126. name: "Macro",
  27127. height: math.unit((6 + 7 / 12) * 150, "feet")
  27128. },
  27129. {
  27130. name: "Macro+",
  27131. height: math.unit((6 + 7 / 12) * 500, "feet")
  27132. },
  27133. {
  27134. name: "Megamacro",
  27135. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27136. },
  27137. ]
  27138. ))
  27139. characterMakers.push(() => makeCharacter(
  27140. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27141. {
  27142. front: {
  27143. height: math.unit(1, "mile"),
  27144. weight: math.unit(265261.9, "lb"),
  27145. name: "Front",
  27146. image: {
  27147. source: "./media/characters/shui/front.svg",
  27148. extra: 1633 / 1564,
  27149. bottom: 91.5 / 1726
  27150. }
  27151. },
  27152. },
  27153. [
  27154. {
  27155. name: "Macro",
  27156. height: math.unit(1, "mile"),
  27157. default: true
  27158. },
  27159. ]
  27160. ))
  27161. characterMakers.push(() => makeCharacter(
  27162. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27163. {
  27164. front: {
  27165. height: math.unit(12 + 6 / 12, "feet"),
  27166. weight: math.unit(1342, "lb"),
  27167. name: "Front",
  27168. image: {
  27169. source: "./media/characters/arokh-takakura/front.svg",
  27170. extra: 1089 / 1043,
  27171. bottom: 77.4 / 1176.7
  27172. }
  27173. },
  27174. back: {
  27175. height: math.unit(12 + 6 / 12, "feet"),
  27176. weight: math.unit(1342, "lb"),
  27177. name: "Back",
  27178. image: {
  27179. source: "./media/characters/arokh-takakura/back.svg",
  27180. extra: 1046 / 1019,
  27181. bottom: 102 / 1150
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Big",
  27188. height: math.unit(12 + 6 / 12, "feet"),
  27189. default: true
  27190. },
  27191. ]
  27192. ))
  27193. characterMakers.push(() => makeCharacter(
  27194. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27195. {
  27196. front: {
  27197. height: math.unit(5 + 6 / 12, "feet"),
  27198. weight: math.unit(150, "lb"),
  27199. name: "Front",
  27200. image: {
  27201. source: "./media/characters/theo/front.svg",
  27202. extra: 1184 / 1131,
  27203. bottom: 7.4 / 1191
  27204. }
  27205. },
  27206. },
  27207. [
  27208. {
  27209. name: "Micro",
  27210. height: math.unit(5, "inches")
  27211. },
  27212. {
  27213. name: "Normal",
  27214. height: math.unit(5 + 6 / 12, "feet"),
  27215. default: true
  27216. },
  27217. ]
  27218. ))
  27219. characterMakers.push(() => makeCharacter(
  27220. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27221. {
  27222. front: {
  27223. height: math.unit(5 + 9 / 12, "feet"),
  27224. weight: math.unit(130, "lb"),
  27225. name: "Front",
  27226. image: {
  27227. source: "./media/characters/cecelia-swift/front.svg",
  27228. extra: 502 / 484,
  27229. bottom: 23 / 523
  27230. }
  27231. },
  27232. back: {
  27233. height: math.unit(5 + 9 / 12, "feet"),
  27234. weight: math.unit(130, "lb"),
  27235. name: "Back",
  27236. image: {
  27237. source: "./media/characters/cecelia-swift/back.svg",
  27238. extra: 499 / 485,
  27239. bottom: 12 / 511
  27240. }
  27241. },
  27242. head: {
  27243. height: math.unit(0.90, "feet"),
  27244. name: "Head",
  27245. image: {
  27246. source: "./media/characters/cecelia-swift/head.svg"
  27247. }
  27248. },
  27249. rump: {
  27250. height: math.unit(1.75, "feet"),
  27251. name: "Rump",
  27252. image: {
  27253. source: "./media/characters/cecelia-swift/rump.svg"
  27254. }
  27255. },
  27256. },
  27257. [
  27258. {
  27259. name: "Normal",
  27260. height: math.unit(5 + 9 / 12, "feet"),
  27261. default: true
  27262. },
  27263. {
  27264. name: "Big",
  27265. height: math.unit(50, "feet")
  27266. },
  27267. {
  27268. name: "Macro",
  27269. height: math.unit(100, "feet")
  27270. },
  27271. {
  27272. name: "Macro+",
  27273. height: math.unit(500, "feet")
  27274. },
  27275. {
  27276. name: "Macro++",
  27277. height: math.unit(1000, "feet")
  27278. },
  27279. ]
  27280. ))
  27281. characterMakers.push(() => makeCharacter(
  27282. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27283. {
  27284. front: {
  27285. height: math.unit(6, "feet"),
  27286. weight: math.unit(150, "lb"),
  27287. name: "Front",
  27288. image: {
  27289. source: "./media/characters/kaunan/front.svg",
  27290. extra: 2890 / 2523,
  27291. bottom: 49 / 2939
  27292. }
  27293. },
  27294. },
  27295. [
  27296. {
  27297. name: "Macro",
  27298. height: math.unit(150, "feet"),
  27299. default: true
  27300. },
  27301. ]
  27302. ))
  27303. characterMakers.push(() => makeCharacter(
  27304. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27305. {
  27306. front: {
  27307. height: math.unit(175, "cm"),
  27308. weight: math.unit(60, "kg"),
  27309. name: "Front",
  27310. image: {
  27311. source: "./media/characters/fei/front.svg",
  27312. extra: 2581 / 2400,
  27313. bottom: 82.2 / 2663
  27314. }
  27315. },
  27316. },
  27317. [
  27318. {
  27319. name: "Mortal",
  27320. height: math.unit(175, "cm")
  27321. },
  27322. {
  27323. name: "Normal",
  27324. height: math.unit(3500, "m"),
  27325. default: true
  27326. },
  27327. {
  27328. name: "Stroll",
  27329. height: math.unit(17.5, "km")
  27330. },
  27331. {
  27332. name: "Showoff",
  27333. height: math.unit(175, "km")
  27334. },
  27335. ]
  27336. ))
  27337. characterMakers.push(() => makeCharacter(
  27338. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27339. {
  27340. front: {
  27341. height: math.unit(7, "feet"),
  27342. weight: math.unit(1000, "kg"),
  27343. name: "Front",
  27344. image: {
  27345. source: "./media/characters/edrax/front.svg",
  27346. extra: 2838 / 2550,
  27347. bottom: 130 / 2968
  27348. }
  27349. },
  27350. },
  27351. [
  27352. {
  27353. name: "Small",
  27354. height: math.unit(7, "feet")
  27355. },
  27356. {
  27357. name: "Normal",
  27358. height: math.unit(1500, "meters")
  27359. },
  27360. {
  27361. name: "Mega",
  27362. height: math.unit(12000000, "km"),
  27363. default: true
  27364. },
  27365. {
  27366. name: "Megamacro",
  27367. height: math.unit(10600000, "lightyears")
  27368. },
  27369. {
  27370. name: "Hypermacro",
  27371. height: math.unit(256, "yottameters")
  27372. },
  27373. ]
  27374. ))
  27375. characterMakers.push(() => makeCharacter(
  27376. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27377. {
  27378. front: {
  27379. height: math.unit(10, "feet"),
  27380. weight: math.unit(750, "lb"),
  27381. name: "Front",
  27382. image: {
  27383. source: "./media/characters/clove/front.svg",
  27384. extra: 2031 / 1860,
  27385. bottom: 47.8 / 2080
  27386. }
  27387. },
  27388. back: {
  27389. height: math.unit(10, "feet"),
  27390. weight: math.unit(750, "lb"),
  27391. name: "Back",
  27392. image: {
  27393. source: "./media/characters/clove/back.svg",
  27394. extra: 2025 / 1859,
  27395. bottom: 46 / 2071
  27396. }
  27397. },
  27398. },
  27399. [
  27400. {
  27401. name: "Normal",
  27402. height: math.unit(10, "feet"),
  27403. default: true
  27404. },
  27405. ]
  27406. ))
  27407. characterMakers.push(() => makeCharacter(
  27408. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27409. {
  27410. front: {
  27411. height: math.unit(4, "feet"),
  27412. weight: math.unit(50, "lb"),
  27413. name: "Front",
  27414. image: {
  27415. source: "./media/characters/alex-rabbit/front.svg",
  27416. extra: 507 / 458,
  27417. bottom: 18.5 / 527
  27418. }
  27419. },
  27420. back: {
  27421. height: math.unit(4, "feet"),
  27422. weight: math.unit(50, "lb"),
  27423. name: "Back",
  27424. image: {
  27425. source: "./media/characters/alex-rabbit/back.svg",
  27426. extra: 502 / 460,
  27427. bottom: 18.9 / 521
  27428. }
  27429. },
  27430. },
  27431. [
  27432. {
  27433. name: "Normal",
  27434. height: math.unit(4, "feet"),
  27435. default: true
  27436. },
  27437. ]
  27438. ))
  27439. characterMakers.push(() => makeCharacter(
  27440. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27441. {
  27442. front: {
  27443. height: math.unit(1 + 3 / 12, "feet"),
  27444. weight: math.unit(80, "lb"),
  27445. name: "Front",
  27446. image: {
  27447. source: "./media/characters/zander-rose/front.svg",
  27448. extra: 916 / 797,
  27449. bottom: 17 / 933
  27450. }
  27451. },
  27452. back: {
  27453. height: math.unit(1 + 3 / 12, "feet"),
  27454. weight: math.unit(80, "lb"),
  27455. name: "Back",
  27456. image: {
  27457. source: "./media/characters/zander-rose/back.svg",
  27458. extra: 903 / 779,
  27459. bottom: 31 / 934
  27460. }
  27461. },
  27462. },
  27463. [
  27464. {
  27465. name: "Normal",
  27466. height: math.unit(1 + 3 / 12, "feet"),
  27467. default: true
  27468. },
  27469. ]
  27470. ))
  27471. characterMakers.push(() => makeCharacter(
  27472. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27473. {
  27474. anthro: {
  27475. height: math.unit(6, "feet"),
  27476. weight: math.unit(150, "lb"),
  27477. name: "Anthro",
  27478. image: {
  27479. source: "./media/characters/razz/anthro.svg",
  27480. extra: 1437 / 1343,
  27481. bottom: 48 / 1485
  27482. }
  27483. },
  27484. feral: {
  27485. height: math.unit(6, "feet"),
  27486. weight: math.unit(150, "lb"),
  27487. name: "Feral",
  27488. image: {
  27489. source: "./media/characters/razz/feral.svg",
  27490. extra: 2569 / 1385,
  27491. bottom: 95 / 2664
  27492. }
  27493. },
  27494. },
  27495. [
  27496. {
  27497. name: "Normal",
  27498. height: math.unit(6, "feet"),
  27499. default: true
  27500. },
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27505. {
  27506. front: {
  27507. height: math.unit(9 + 4 / 12, "feet"),
  27508. weight: math.unit(500, "lb"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/morrigan/front.svg",
  27512. extra: 2707 / 2579,
  27513. bottom: 156 / 2863
  27514. }
  27515. },
  27516. },
  27517. [
  27518. {
  27519. name: "Normal",
  27520. height: math.unit(9 + 4 / 12, "feet"),
  27521. default: true
  27522. },
  27523. ]
  27524. ))
  27525. characterMakers.push(() => makeCharacter(
  27526. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27527. {
  27528. front: {
  27529. height: math.unit(5, "stories"),
  27530. weight: math.unit(4000, "lb"),
  27531. name: "Front",
  27532. image: {
  27533. source: "./media/characters/jenene/front.svg",
  27534. extra: 1780 / 1710,
  27535. bottom: 57 / 1837
  27536. }
  27537. },
  27538. },
  27539. [
  27540. {
  27541. name: "Normal",
  27542. height: math.unit(5, "stories"),
  27543. default: true
  27544. },
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27549. {
  27550. front: {
  27551. height: math.unit(6, "feet"),
  27552. weight: math.unit(150, "lb"),
  27553. name: "Front",
  27554. image: {
  27555. source: "./media/characters/vix-archaser/front.svg",
  27556. extra: 2767 / 2562,
  27557. bottom: 36 / 2803
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Micro",
  27564. height: math.unit(1, "foot")
  27565. },
  27566. {
  27567. name: "Normal",
  27568. height: math.unit(6 + 5 / 12, "feet")
  27569. },
  27570. {
  27571. name: "Minimacro",
  27572. height: math.unit(500, "feet")
  27573. },
  27574. {
  27575. name: "Macro",
  27576. height: math.unit(4, "miles")
  27577. },
  27578. {
  27579. name: "Megamacro",
  27580. height: math.unit(250, "miles"),
  27581. default: true
  27582. },
  27583. {
  27584. name: "Gigamacro",
  27585. height: math.unit(1, "universe")
  27586. },
  27587. {
  27588. name: "Endgame",
  27589. height: math.unit(100, "multiverses")
  27590. }
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27595. {
  27596. taurSfw: {
  27597. height: math.unit(10, "meters"),
  27598. weight: math.unit(17500, "kg"),
  27599. name: "Taur",
  27600. image: {
  27601. source: "./media/characters/faey/taur-sfw.svg",
  27602. extra: 1200 / 968,
  27603. bottom: 41 / 1241
  27604. }
  27605. },
  27606. chestmaw: {
  27607. height: math.unit(2.01, "meters"),
  27608. name: "Chestmaw",
  27609. image: {
  27610. source: "./media/characters/faey/chestmaw.svg"
  27611. }
  27612. },
  27613. foot: {
  27614. height: math.unit(2.43, "meters"),
  27615. name: "Foot",
  27616. image: {
  27617. source: "./media/characters/faey/foot.svg"
  27618. }
  27619. },
  27620. jaws: {
  27621. height: math.unit(1.66, "meters"),
  27622. name: "Jaws",
  27623. image: {
  27624. source: "./media/characters/faey/jaws.svg"
  27625. }
  27626. },
  27627. tongues: {
  27628. height: math.unit(2.01, "meters"),
  27629. name: "Tongues",
  27630. image: {
  27631. source: "./media/characters/faey/tongues.svg"
  27632. }
  27633. },
  27634. },
  27635. [
  27636. {
  27637. name: "Small",
  27638. height: math.unit(10, "meters"),
  27639. default: true
  27640. },
  27641. {
  27642. name: "Big",
  27643. height: math.unit(500000, "km")
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27649. {
  27650. front: {
  27651. height: math.unit(7, "feet"),
  27652. weight: math.unit(275, "lb"),
  27653. name: "Front",
  27654. image: {
  27655. source: "./media/characters/roku/front.svg",
  27656. extra: 903 / 878,
  27657. bottom: 37 / 940
  27658. }
  27659. },
  27660. },
  27661. [
  27662. {
  27663. name: "Normal",
  27664. height: math.unit(7, "feet"),
  27665. default: true
  27666. },
  27667. {
  27668. name: "Macro",
  27669. height: math.unit(500, "feet")
  27670. },
  27671. {
  27672. name: "Megamacro",
  27673. height: math.unit(200, "miles")
  27674. },
  27675. ]
  27676. ))
  27677. characterMakers.push(() => makeCharacter(
  27678. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27679. {
  27680. front: {
  27681. height: math.unit(6 + 2 / 12, "feet"),
  27682. weight: math.unit(150, "lb"),
  27683. name: "Front",
  27684. image: {
  27685. source: "./media/characters/lira/front.svg",
  27686. extra: 1727 / 1605,
  27687. bottom: 26 / 1753
  27688. }
  27689. },
  27690. back: {
  27691. height: math.unit(6 + 2 / 12, "feet"),
  27692. weight: math.unit(150, "lb"),
  27693. name: "Back",
  27694. image: {
  27695. source: "./media/characters/lira/back.svg",
  27696. extra: 1713/1621,
  27697. bottom: 20/1733
  27698. }
  27699. },
  27700. hand: {
  27701. height: math.unit(0.75, "feet"),
  27702. name: "Hand",
  27703. image: {
  27704. source: "./media/characters/lira/hand.svg"
  27705. }
  27706. },
  27707. maw: {
  27708. height: math.unit(0.65, "feet"),
  27709. name: "Maw",
  27710. image: {
  27711. source: "./media/characters/lira/maw.svg"
  27712. }
  27713. },
  27714. pawDigi: {
  27715. height: math.unit(1.6, "feet"),
  27716. name: "Paw Digi",
  27717. image: {
  27718. source: "./media/characters/lira/paw-digi.svg"
  27719. }
  27720. },
  27721. pawPlanti: {
  27722. height: math.unit(1.4, "feet"),
  27723. name: "Paw Planti",
  27724. image: {
  27725. source: "./media/characters/lira/paw-planti.svg"
  27726. }
  27727. },
  27728. },
  27729. [
  27730. {
  27731. name: "Normal",
  27732. height: math.unit(6 + 2 / 12, "feet"),
  27733. default: true
  27734. },
  27735. {
  27736. name: "Macro",
  27737. height: math.unit(100, "feet")
  27738. },
  27739. {
  27740. name: "Macro²",
  27741. height: math.unit(1600, "feet")
  27742. },
  27743. {
  27744. name: "Planetary",
  27745. height: math.unit(20, "earths")
  27746. },
  27747. ]
  27748. ))
  27749. characterMakers.push(() => makeCharacter(
  27750. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27751. {
  27752. front: {
  27753. height: math.unit(6, "feet"),
  27754. weight: math.unit(150, "lb"),
  27755. name: "Front",
  27756. image: {
  27757. source: "./media/characters/hadjet/front.svg",
  27758. extra: 1480 / 1346,
  27759. bottom: 26 / 1506
  27760. }
  27761. },
  27762. frontNsfw: {
  27763. height: math.unit(6, "feet"),
  27764. weight: math.unit(150, "lb"),
  27765. name: "Front (NSFW)",
  27766. image: {
  27767. source: "./media/characters/hadjet/front-nsfw.svg",
  27768. extra: 1440 / 1358,
  27769. bottom: 52 / 1492
  27770. }
  27771. },
  27772. },
  27773. [
  27774. {
  27775. name: "Macro",
  27776. height: math.unit(10, "stories"),
  27777. default: true
  27778. },
  27779. {
  27780. name: "Megamacro",
  27781. height: math.unit(1.5, "miles")
  27782. },
  27783. {
  27784. name: "Megamacro+",
  27785. height: math.unit(5, "miles")
  27786. },
  27787. ]
  27788. ))
  27789. characterMakers.push(() => makeCharacter(
  27790. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27791. {
  27792. side: {
  27793. height: math.unit(106, "feet"),
  27794. weight: math.unit(500, "tonnes"),
  27795. name: "Side",
  27796. image: {
  27797. source: "./media/characters/kodran/side.svg",
  27798. extra: 553 / 480,
  27799. bottom: 33 / 586
  27800. }
  27801. },
  27802. front: {
  27803. height: math.unit(132, "feet"),
  27804. weight: math.unit(500, "tonnes"),
  27805. name: "Front",
  27806. image: {
  27807. source: "./media/characters/kodran/front.svg",
  27808. extra: 667 / 643,
  27809. bottom: 42 / 709
  27810. }
  27811. },
  27812. flying: {
  27813. height: math.unit(350, "feet"),
  27814. weight: math.unit(500, "tonnes"),
  27815. name: "Flying",
  27816. image: {
  27817. source: "./media/characters/kodran/flying.svg"
  27818. }
  27819. },
  27820. foot: {
  27821. height: math.unit(33, "feet"),
  27822. name: "Foot",
  27823. image: {
  27824. source: "./media/characters/kodran/foot.svg"
  27825. }
  27826. },
  27827. footFront: {
  27828. height: math.unit(19, "feet"),
  27829. name: "Foot (Front)",
  27830. image: {
  27831. source: "./media/characters/kodran/foot-front.svg",
  27832. extra: 261 / 261,
  27833. bottom: 91 / 352
  27834. }
  27835. },
  27836. headFront: {
  27837. height: math.unit(53, "feet"),
  27838. name: "Head (Front)",
  27839. image: {
  27840. source: "./media/characters/kodran/head-front.svg"
  27841. }
  27842. },
  27843. headSide: {
  27844. height: math.unit(65, "feet"),
  27845. name: "Head (Side)",
  27846. image: {
  27847. source: "./media/characters/kodran/head-side.svg"
  27848. }
  27849. },
  27850. throat: {
  27851. height: math.unit(79, "feet"),
  27852. name: "Throat",
  27853. image: {
  27854. source: "./media/characters/kodran/throat.svg"
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Large",
  27861. height: math.unit(106, "feet"),
  27862. default: true
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27868. {
  27869. side: {
  27870. height: math.unit(11, "feet"),
  27871. weight: math.unit(150, "lb"),
  27872. name: "Side",
  27873. image: {
  27874. source: "./media/characters/pyxaron/side.svg",
  27875. extra: 305 / 195,
  27876. bottom: 17 / 322
  27877. }
  27878. },
  27879. },
  27880. [
  27881. {
  27882. name: "Normal",
  27883. height: math.unit(11, "feet"),
  27884. default: true
  27885. },
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27890. {
  27891. front: {
  27892. height: math.unit(6, "feet"),
  27893. weight: math.unit(150, "lb"),
  27894. name: "Front",
  27895. image: {
  27896. source: "./media/characters/meep/front.svg",
  27897. extra: 88 / 80,
  27898. bottom: 6 / 94
  27899. }
  27900. },
  27901. },
  27902. [
  27903. {
  27904. name: "Fun Sized",
  27905. height: math.unit(2, "inches"),
  27906. default: true
  27907. },
  27908. {
  27909. name: "Friend Sized",
  27910. height: math.unit(8, "inches")
  27911. },
  27912. ]
  27913. ))
  27914. characterMakers.push(() => makeCharacter(
  27915. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27916. {
  27917. front: {
  27918. height: math.unit(15, "feet"),
  27919. weight: math.unit(2500, "lb"),
  27920. name: "Front",
  27921. image: {
  27922. source: "./media/characters/holly-rabbit/front.svg",
  27923. extra: 1433 / 1233,
  27924. bottom: 125 / 1558
  27925. }
  27926. },
  27927. dick: {
  27928. height: math.unit(4.6, "feet"),
  27929. name: "Dick",
  27930. image: {
  27931. source: "./media/characters/holly-rabbit/dick.svg"
  27932. }
  27933. },
  27934. },
  27935. [
  27936. {
  27937. name: "Normal",
  27938. height: math.unit(15, "feet"),
  27939. default: true
  27940. },
  27941. {
  27942. name: "Macro",
  27943. height: math.unit(250, "feet")
  27944. },
  27945. {
  27946. name: "Macro+",
  27947. height: math.unit(2500, "feet")
  27948. },
  27949. ]
  27950. ))
  27951. characterMakers.push(() => makeCharacter(
  27952. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27953. {
  27954. front: {
  27955. height: math.unit(3.02, "meters"),
  27956. weight: math.unit(500, "kg"),
  27957. name: "Front",
  27958. image: {
  27959. source: "./media/characters/drena/front.svg",
  27960. extra: 282 / 243,
  27961. bottom: 8 / 290
  27962. }
  27963. },
  27964. side: {
  27965. height: math.unit(3.02, "meters"),
  27966. weight: math.unit(500, "kg"),
  27967. name: "Side",
  27968. image: {
  27969. source: "./media/characters/drena/side.svg",
  27970. extra: 280 / 245,
  27971. bottom: 10 / 290
  27972. }
  27973. },
  27974. back: {
  27975. height: math.unit(3.02, "meters"),
  27976. weight: math.unit(500, "kg"),
  27977. name: "Back",
  27978. image: {
  27979. source: "./media/characters/drena/back.svg",
  27980. extra: 278 / 243,
  27981. bottom: 2 / 280
  27982. }
  27983. },
  27984. foot: {
  27985. height: math.unit(0.75, "meters"),
  27986. name: "Foot",
  27987. image: {
  27988. source: "./media/characters/drena/foot.svg"
  27989. }
  27990. },
  27991. maw: {
  27992. height: math.unit(0.82, "meters"),
  27993. name: "Maw",
  27994. image: {
  27995. source: "./media/characters/drena/maw.svg"
  27996. }
  27997. },
  27998. rump: {
  27999. height: math.unit(0.93, "meters"),
  28000. name: "Rump",
  28001. image: {
  28002. source: "./media/characters/drena/rump.svg"
  28003. }
  28004. },
  28005. },
  28006. [
  28007. {
  28008. name: "Normal",
  28009. height: math.unit(3.02, "meters"),
  28010. default: true
  28011. },
  28012. ]
  28013. ))
  28014. characterMakers.push(() => makeCharacter(
  28015. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28016. {
  28017. front: {
  28018. height: math.unit(6 + 4 / 12, "feet"),
  28019. weight: math.unit(250, "lb"),
  28020. name: "Front",
  28021. image: {
  28022. source: "./media/characters/remmyzilla/front.svg",
  28023. extra: 4033 / 3588,
  28024. bottom: 123 / 4156
  28025. }
  28026. },
  28027. back: {
  28028. height: math.unit(6 + 4 / 12, "feet"),
  28029. weight: math.unit(250, "lb"),
  28030. name: "Back",
  28031. image: {
  28032. source: "./media/characters/remmyzilla/back.svg",
  28033. extra: 2687 / 2555,
  28034. bottom: 48 / 2735
  28035. }
  28036. },
  28037. frontFancy: {
  28038. height: math.unit(6 + 4 / 12, "feet"),
  28039. weight: math.unit(250, "lb"),
  28040. name: "Front (Fancy)",
  28041. image: {
  28042. source: "./media/characters/remmyzilla/front-fancy.svg",
  28043. extra: 4119 / 3419,
  28044. bottom: 237 / 4356
  28045. }
  28046. },
  28047. paw: {
  28048. height: math.unit(1.73, "feet"),
  28049. name: "Paw",
  28050. image: {
  28051. source: "./media/characters/remmyzilla/paw.svg"
  28052. }
  28053. },
  28054. maw: {
  28055. height: math.unit(1.73, "feet"),
  28056. name: "Maw",
  28057. image: {
  28058. source: "./media/characters/remmyzilla/maw.svg"
  28059. }
  28060. },
  28061. },
  28062. [
  28063. {
  28064. name: "Normal",
  28065. height: math.unit(6 + 4 / 12, "feet")
  28066. },
  28067. {
  28068. name: "Minimacro",
  28069. height: math.unit(12 + 8 / 12, "feet")
  28070. },
  28071. {
  28072. name: "Normal",
  28073. height: math.unit(640, "feet"),
  28074. default: true
  28075. },
  28076. {
  28077. name: "Megamacro",
  28078. height: math.unit(6400, "feet")
  28079. },
  28080. {
  28081. name: "Gigamacro",
  28082. height: math.unit(64000, "miles")
  28083. },
  28084. ]
  28085. ))
  28086. characterMakers.push(() => makeCharacter(
  28087. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28088. {
  28089. front: {
  28090. height: math.unit(2.5, "meters"),
  28091. weight: math.unit(300, "lb"),
  28092. name: "Front",
  28093. image: {
  28094. source: "./media/characters/lawrence/front.svg",
  28095. extra: 357 / 335,
  28096. bottom: 30 / 387
  28097. }
  28098. },
  28099. back: {
  28100. height: math.unit(2.5, "meters"),
  28101. weight: math.unit(300, "lb"),
  28102. name: "Back",
  28103. image: {
  28104. source: "./media/characters/lawrence/back.svg",
  28105. extra: 357 / 338,
  28106. bottom: 16 / 373
  28107. }
  28108. },
  28109. head: {
  28110. height: math.unit(0.9, "meter"),
  28111. name: "Head",
  28112. image: {
  28113. source: "./media/characters/lawrence/head.svg"
  28114. }
  28115. },
  28116. maw: {
  28117. height: math.unit(0.7, "meter"),
  28118. name: "Maw",
  28119. image: {
  28120. source: "./media/characters/lawrence/maw.svg"
  28121. }
  28122. },
  28123. footBottom: {
  28124. height: math.unit(0.5, "meter"),
  28125. name: "Foot (Bottom)",
  28126. image: {
  28127. source: "./media/characters/lawrence/foot-bottom.svg"
  28128. }
  28129. },
  28130. footTop: {
  28131. height: math.unit(0.5, "meter"),
  28132. name: "Foot (Top)",
  28133. image: {
  28134. source: "./media/characters/lawrence/foot-top.svg"
  28135. }
  28136. },
  28137. },
  28138. [
  28139. {
  28140. name: "Normal",
  28141. height: math.unit(2.5, "meters"),
  28142. default: true
  28143. },
  28144. {
  28145. name: "Macro",
  28146. height: math.unit(95, "meters")
  28147. },
  28148. {
  28149. name: "Megamacro",
  28150. height: math.unit(150, "km")
  28151. },
  28152. ]
  28153. ))
  28154. characterMakers.push(() => makeCharacter(
  28155. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28156. {
  28157. front: {
  28158. height: math.unit(4.2, "meters"),
  28159. name: "Front",
  28160. image: {
  28161. source: "./media/characters/sydney/front.svg",
  28162. extra: 1323 / 1277,
  28163. bottom: 111 / 1434
  28164. }
  28165. },
  28166. },
  28167. [
  28168. {
  28169. name: "Normal",
  28170. height: math.unit(4.2, "meters"),
  28171. default: true
  28172. },
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28177. {
  28178. back: {
  28179. height: math.unit(201, "feet"),
  28180. name: "Back",
  28181. image: {
  28182. source: "./media/characters/jessica/back.svg",
  28183. extra: 273 / 259,
  28184. bottom: 7 / 280
  28185. }
  28186. },
  28187. },
  28188. [
  28189. {
  28190. name: "Normal",
  28191. height: math.unit(201, "feet"),
  28192. default: true
  28193. },
  28194. {
  28195. name: "Megamacro",
  28196. height: math.unit(8, "miles")
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28202. {
  28203. side: {
  28204. height: math.unit(320, "cm"),
  28205. name: "Side",
  28206. image: {
  28207. source: "./media/characters/victoria/side.svg",
  28208. extra: 778 / 346,
  28209. bottom: 56 / 834
  28210. }
  28211. },
  28212. maw: {
  28213. height: math.unit(5.9, "feet"),
  28214. name: "Maw",
  28215. image: {
  28216. source: "./media/characters/victoria/maw.svg"
  28217. }
  28218. },
  28219. },
  28220. [
  28221. {
  28222. name: "Normal",
  28223. height: math.unit(320, "cm"),
  28224. default: true
  28225. },
  28226. ]
  28227. ))
  28228. characterMakers.push(() => makeCharacter(
  28229. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28230. {
  28231. front: {
  28232. height: math.unit(5 + 6 / 12, "feet"),
  28233. name: "Front",
  28234. image: {
  28235. source: "./media/characters/cat/front.svg",
  28236. extra: 1374 / 1257,
  28237. bottom: 59 / 1433
  28238. }
  28239. },
  28240. back: {
  28241. height: math.unit(5 + 6 / 12, "feet"),
  28242. name: "Back",
  28243. image: {
  28244. source: "./media/characters/cat/back.svg",
  28245. extra: 1337 / 1226,
  28246. bottom: 34 / 1371
  28247. }
  28248. },
  28249. taur: {
  28250. height: math.unit(7, "feet"),
  28251. name: "Taur",
  28252. image: {
  28253. source: "./media/characters/cat/taur.svg",
  28254. extra: 1345 / 1231,
  28255. bottom: 66 / 1411
  28256. }
  28257. },
  28258. lucario: {
  28259. height: math.unit(4, "feet"),
  28260. name: "Lucario",
  28261. image: {
  28262. source: "./media/characters/cat/lucario.svg",
  28263. extra: 1470 / 1318,
  28264. bottom: 65 / 1535
  28265. }
  28266. },
  28267. megaLucario: {
  28268. height: math.unit(4, "feet"),
  28269. name: "Mega Lucario",
  28270. image: {
  28271. source: "./media/characters/cat/mega-lucario.svg",
  28272. extra: 1515 / 1319,
  28273. bottom: 63 / 1578
  28274. }
  28275. },
  28276. nickit: {
  28277. height: math.unit(2, "feet"),
  28278. name: "Nickit",
  28279. image: {
  28280. source: "./media/characters/cat/nickit.svg",
  28281. extra: 1980 / 1585,
  28282. bottom: 102 / 2082
  28283. }
  28284. },
  28285. lopunnyFront: {
  28286. height: math.unit(5, "feet"),
  28287. name: "Lopunny (Front)",
  28288. image: {
  28289. source: "./media/characters/cat/lopunny-front.svg",
  28290. extra: 1782 / 1469,
  28291. bottom: 38 / 1820
  28292. }
  28293. },
  28294. lopunnyBack: {
  28295. height: math.unit(5, "feet"),
  28296. name: "Lopunny (Back)",
  28297. image: {
  28298. source: "./media/characters/cat/lopunny-back.svg",
  28299. extra: 1660 / 1490,
  28300. bottom: 25 / 1685
  28301. }
  28302. },
  28303. },
  28304. [
  28305. {
  28306. name: "Really small",
  28307. height: math.unit(1, "nm")
  28308. },
  28309. {
  28310. name: "Micro",
  28311. height: math.unit(5, "inches")
  28312. },
  28313. {
  28314. name: "Normal",
  28315. height: math.unit(5 + 6 / 12, "feet"),
  28316. default: true
  28317. },
  28318. {
  28319. name: "Macro",
  28320. height: math.unit(50, "feet")
  28321. },
  28322. {
  28323. name: "Macro+",
  28324. height: math.unit(150, "feet")
  28325. },
  28326. {
  28327. name: "Megamacro",
  28328. height: math.unit(100, "miles")
  28329. },
  28330. ]
  28331. ))
  28332. characterMakers.push(() => makeCharacter(
  28333. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28334. {
  28335. front: {
  28336. height: math.unit(63.4, "meters"),
  28337. weight: math.unit(3.28349e+6, "kilograms"),
  28338. name: "Front",
  28339. image: {
  28340. source: "./media/characters/kirina-violet/front.svg",
  28341. extra: 2812 / 2725,
  28342. bottom: 0 / 2812
  28343. }
  28344. },
  28345. back: {
  28346. height: math.unit(63.4, "meters"),
  28347. weight: math.unit(3.28349e+6, "kilograms"),
  28348. name: "Back",
  28349. image: {
  28350. source: "./media/characters/kirina-violet/back.svg",
  28351. extra: 2812 / 2725,
  28352. bottom: 0 / 2812
  28353. }
  28354. },
  28355. mouth: {
  28356. height: math.unit(4.35, "meters"),
  28357. name: "Mouth",
  28358. image: {
  28359. source: "./media/characters/kirina-violet/mouth.svg"
  28360. }
  28361. },
  28362. paw: {
  28363. height: math.unit(5.6, "meters"),
  28364. name: "Paw",
  28365. image: {
  28366. source: "./media/characters/kirina-violet/paw.svg"
  28367. }
  28368. },
  28369. tail: {
  28370. height: math.unit(18, "meters"),
  28371. name: "Tail",
  28372. image: {
  28373. source: "./media/characters/kirina-violet/tail.svg"
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Macro",
  28380. height: math.unit(63.4, "meters"),
  28381. default: true
  28382. },
  28383. ]
  28384. ))
  28385. characterMakers.push(() => makeCharacter(
  28386. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28387. {
  28388. front: {
  28389. height: math.unit(75, "feet"),
  28390. name: "Front",
  28391. image: {
  28392. source: "./media/characters/cat-gigachu/front.svg",
  28393. extra: 1239/1027,
  28394. bottom: 32/1271
  28395. }
  28396. },
  28397. back: {
  28398. height: math.unit(75, "feet"),
  28399. name: "Back",
  28400. image: {
  28401. source: "./media/characters/cat-gigachu/back.svg",
  28402. extra: 1229/1030,
  28403. bottom: 9/1238
  28404. }
  28405. },
  28406. },
  28407. [
  28408. {
  28409. name: "Dynamax",
  28410. height: math.unit(75, "feet"),
  28411. default: true
  28412. },
  28413. ]
  28414. ))
  28415. characterMakers.push(() => makeCharacter(
  28416. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28417. {
  28418. front: {
  28419. height: math.unit(6, "feet"),
  28420. weight: math.unit(150, "lb"),
  28421. name: "Front",
  28422. image: {
  28423. source: "./media/characters/sfaiyan/front.svg",
  28424. extra: 999 / 978,
  28425. bottom: 5 / 1004
  28426. }
  28427. },
  28428. },
  28429. [
  28430. {
  28431. name: "Normal",
  28432. height: math.unit(1.82, "meters")
  28433. },
  28434. {
  28435. name: "Giant",
  28436. height: math.unit(2.27, "km"),
  28437. default: true
  28438. },
  28439. ]
  28440. ))
  28441. characterMakers.push(() => makeCharacter(
  28442. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28443. {
  28444. front: {
  28445. height: math.unit(179, "cm"),
  28446. weight: math.unit(100, "kg"),
  28447. name: "Front",
  28448. image: {
  28449. source: "./media/characters/raunehkeli/front.svg",
  28450. extra: 1934 / 1926,
  28451. bottom: 0 / 1934
  28452. }
  28453. },
  28454. },
  28455. [
  28456. {
  28457. name: "Normal",
  28458. height: math.unit(179, "cm")
  28459. },
  28460. {
  28461. name: "Maximum",
  28462. height: math.unit(575, "meters"),
  28463. default: true
  28464. },
  28465. ]
  28466. ))
  28467. characterMakers.push(() => makeCharacter(
  28468. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28469. {
  28470. front: {
  28471. height: math.unit(6, "feet"),
  28472. weight: math.unit(150, "lb"),
  28473. name: "Front",
  28474. image: {
  28475. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28476. extra: 2625 / 2518,
  28477. bottom: 60 / 2685
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Normal",
  28484. height: math.unit(6 + 2 / 12, "feet")
  28485. },
  28486. {
  28487. name: "Macro",
  28488. height: math.unit(1180, "feet"),
  28489. default: true
  28490. },
  28491. ]
  28492. ))
  28493. characterMakers.push(() => makeCharacter(
  28494. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28495. {
  28496. front: {
  28497. height: math.unit(5 + 6 / 12, "feet"),
  28498. weight: math.unit(108, "lb"),
  28499. name: "Front",
  28500. image: {
  28501. source: "./media/characters/lilith-zott/front.svg",
  28502. extra: 2510 / 2238,
  28503. bottom: 100 / 2610
  28504. }
  28505. },
  28506. frontDressed: {
  28507. height: math.unit(5 + 6 / 12, "feet"),
  28508. weight: math.unit(108, "lb"),
  28509. name: "Front (Dressed)",
  28510. image: {
  28511. source: "./media/characters/lilith-zott/front-dressed.svg",
  28512. extra: 2510 / 2238,
  28513. bottom: 100 / 2610
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Normal",
  28520. height: math.unit(5 + 6 / 12, "feet")
  28521. },
  28522. {
  28523. name: "Macro",
  28524. height: math.unit(1030, "feet"),
  28525. default: true
  28526. },
  28527. ]
  28528. ))
  28529. characterMakers.push(() => makeCharacter(
  28530. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28531. {
  28532. front: {
  28533. height: math.unit(6, "feet"),
  28534. weight: math.unit(150, "lb"),
  28535. name: "Front",
  28536. image: {
  28537. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28538. extra: 2567 / 2435,
  28539. bottom: 39 / 2606
  28540. }
  28541. },
  28542. frontSuper: {
  28543. height: math.unit(6, "feet"),
  28544. name: "Front (Super)",
  28545. image: {
  28546. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28547. extra: 2567 / 2435,
  28548. bottom: 39 / 2606
  28549. }
  28550. },
  28551. },
  28552. [
  28553. {
  28554. name: "Normal",
  28555. height: math.unit(5 + 10 / 12, "feet")
  28556. },
  28557. {
  28558. name: "Macro",
  28559. height: math.unit(1100, "feet"),
  28560. default: true
  28561. },
  28562. ]
  28563. ))
  28564. characterMakers.push(() => makeCharacter(
  28565. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28566. {
  28567. front: {
  28568. height: math.unit(100, "miles"),
  28569. name: "Front",
  28570. image: {
  28571. source: "./media/characters/sona/front.svg",
  28572. extra: 2433 / 2201,
  28573. bottom: 53 / 2486
  28574. }
  28575. },
  28576. foot: {
  28577. height: math.unit(16.1, "miles"),
  28578. name: "Foot",
  28579. image: {
  28580. source: "./media/characters/sona/foot.svg"
  28581. }
  28582. },
  28583. },
  28584. [
  28585. {
  28586. name: "Macro",
  28587. height: math.unit(100, "miles"),
  28588. default: true
  28589. },
  28590. ]
  28591. ))
  28592. characterMakers.push(() => makeCharacter(
  28593. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28594. {
  28595. front: {
  28596. height: math.unit(6, "feet"),
  28597. weight: math.unit(150, "lb"),
  28598. name: "Front",
  28599. image: {
  28600. source: "./media/characters/bailey/front.svg",
  28601. extra: 1778 / 1724,
  28602. bottom: 30 / 1808
  28603. }
  28604. },
  28605. },
  28606. [
  28607. {
  28608. name: "Micro",
  28609. height: math.unit(4, "inches")
  28610. },
  28611. {
  28612. name: "Normal",
  28613. height: math.unit(5 + 5 / 12, "feet"),
  28614. default: true
  28615. },
  28616. {
  28617. name: "Macro",
  28618. height: math.unit(250, "feet")
  28619. },
  28620. {
  28621. name: "Megamacro",
  28622. height: math.unit(100, "miles")
  28623. },
  28624. ]
  28625. ))
  28626. characterMakers.push(() => makeCharacter(
  28627. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28628. {
  28629. front: {
  28630. height: math.unit(5 + 2 / 12, "feet"),
  28631. weight: math.unit(120, "lb"),
  28632. name: "Front",
  28633. image: {
  28634. source: "./media/characters/snaps/front.svg",
  28635. extra: 2370 / 2177,
  28636. bottom: 48 / 2418
  28637. }
  28638. },
  28639. back: {
  28640. height: math.unit(5 + 2 / 12, "feet"),
  28641. weight: math.unit(120, "lb"),
  28642. name: "Back",
  28643. image: {
  28644. source: "./media/characters/snaps/back.svg",
  28645. extra: 2408 / 2258,
  28646. bottom: 15 / 2423
  28647. }
  28648. },
  28649. },
  28650. [
  28651. {
  28652. name: "Micro",
  28653. height: math.unit(9, "inches")
  28654. },
  28655. {
  28656. name: "Normal",
  28657. height: math.unit(5 + 2 / 12, "feet"),
  28658. default: true
  28659. },
  28660. {
  28661. name: "Mini Macro",
  28662. height: math.unit(10, "feet")
  28663. },
  28664. ]
  28665. ))
  28666. characterMakers.push(() => makeCharacter(
  28667. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28668. {
  28669. front: {
  28670. height: math.unit(1.8, "meters"),
  28671. weight: math.unit(85, "kg"),
  28672. name: "Front",
  28673. image: {
  28674. source: "./media/characters/azteck/front.svg",
  28675. extra: 2815 / 2625,
  28676. bottom: 89 / 2904
  28677. }
  28678. },
  28679. back: {
  28680. height: math.unit(1.8, "meters"),
  28681. weight: math.unit(85, "kg"),
  28682. name: "Back",
  28683. image: {
  28684. source: "./media/characters/azteck/back.svg",
  28685. extra: 2856 / 2648,
  28686. bottom: 85 / 2941
  28687. }
  28688. },
  28689. frontDressed: {
  28690. height: math.unit(1.8, "meters"),
  28691. weight: math.unit(85, "kg"),
  28692. name: "Front (Dressed)",
  28693. image: {
  28694. source: "./media/characters/azteck/front-dressed.svg",
  28695. extra: 2147 / 2003,
  28696. bottom: 68 / 2215
  28697. }
  28698. },
  28699. head: {
  28700. height: math.unit(0.47, "meters"),
  28701. weight: math.unit(85, "kg"),
  28702. name: "Head",
  28703. image: {
  28704. source: "./media/characters/azteck/head.svg"
  28705. }
  28706. },
  28707. },
  28708. [
  28709. {
  28710. name: "Bite sized",
  28711. height: math.unit(16, "cm")
  28712. },
  28713. {
  28714. name: "Normal",
  28715. height: math.unit(1.8, "meters"),
  28716. default: true
  28717. },
  28718. ]
  28719. ))
  28720. characterMakers.push(() => makeCharacter(
  28721. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28722. {
  28723. front: {
  28724. height: math.unit(6, "feet"),
  28725. weight: math.unit(150, "lb"),
  28726. name: "Front",
  28727. image: {
  28728. source: "./media/characters/pidge/front.svg",
  28729. extra: 620 / 588,
  28730. bottom: 9 / 629
  28731. }
  28732. },
  28733. back: {
  28734. height: math.unit(6, "feet"),
  28735. weight: math.unit(150, "lb"),
  28736. name: "Back",
  28737. image: {
  28738. source: "./media/characters/pidge/back.svg",
  28739. extra: 620 / 588,
  28740. bottom: 9 / 629
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Macro",
  28747. height: math.unit(1, "mile"),
  28748. default: true
  28749. },
  28750. ]
  28751. ))
  28752. characterMakers.push(() => makeCharacter(
  28753. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28754. {
  28755. front: {
  28756. height: math.unit(6, "feet"),
  28757. weight: math.unit(150, "lb"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/en/front.svg",
  28761. extra: 1697 / 1563,
  28762. bottom: 103 / 1800
  28763. }
  28764. },
  28765. back: {
  28766. height: math.unit(6, "feet"),
  28767. weight: math.unit(150, "lb"),
  28768. name: "Back",
  28769. image: {
  28770. source: "./media/characters/en/back.svg",
  28771. extra: 1700 / 1570,
  28772. bottom: 51 / 1751
  28773. }
  28774. },
  28775. frontDressed: {
  28776. height: math.unit(6, "feet"),
  28777. weight: math.unit(150, "lb"),
  28778. name: "Front (Dressed)",
  28779. image: {
  28780. source: "./media/characters/en/front-dressed.svg",
  28781. extra: 1697 / 1563,
  28782. bottom: 103 / 1800
  28783. }
  28784. },
  28785. backDressed: {
  28786. height: math.unit(6, "feet"),
  28787. weight: math.unit(150, "lb"),
  28788. name: "Back (Dressed)",
  28789. image: {
  28790. source: "./media/characters/en/back-dressed.svg",
  28791. extra: 1700 / 1570,
  28792. bottom: 51 / 1751
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Macro",
  28799. height: math.unit(210, "feet"),
  28800. default: true
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28806. {
  28807. front: {
  28808. height: math.unit(6, "feet"),
  28809. weight: math.unit(150, "lb"),
  28810. name: "Front",
  28811. image: {
  28812. source: "./media/characters/haze-orris/front.svg",
  28813. extra: 3975 / 3525,
  28814. bottom: 137 / 4112
  28815. }
  28816. },
  28817. },
  28818. [
  28819. {
  28820. name: "Micro",
  28821. height: math.unit(150, "mm"),
  28822. default: true
  28823. },
  28824. ]
  28825. ))
  28826. characterMakers.push(() => makeCharacter(
  28827. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28828. {
  28829. front: {
  28830. height: math.unit(6, "feet"),
  28831. weight: math.unit(150, "lb"),
  28832. name: "Front",
  28833. image: {
  28834. source: "./media/characters/casselene-yaro/front.svg",
  28835. extra: 4721 / 4541,
  28836. bottom: 82 / 4803
  28837. }
  28838. },
  28839. back: {
  28840. height: math.unit(6, "feet"),
  28841. weight: math.unit(150, "lb"),
  28842. name: "Back",
  28843. image: {
  28844. source: "./media/characters/casselene-yaro/back.svg",
  28845. extra: 4569 / 4377,
  28846. bottom: 69 / 4638
  28847. }
  28848. },
  28849. frontDressed: {
  28850. height: math.unit(6, "feet"),
  28851. weight: math.unit(150, "lb"),
  28852. name: "Front-dressed",
  28853. image: {
  28854. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28855. extra: 4721 / 4541,
  28856. bottom: 82 / 4803
  28857. }
  28858. },
  28859. },
  28860. [
  28861. {
  28862. name: "Macro",
  28863. height: math.unit(190, "feet"),
  28864. default: true
  28865. },
  28866. ]
  28867. ))
  28868. characterMakers.push(() => makeCharacter(
  28869. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28870. {
  28871. front: {
  28872. height: math.unit(6, "feet"),
  28873. weight: math.unit(150, "lb"),
  28874. name: "Front",
  28875. image: {
  28876. source: "./media/characters/myra-rue-delore/front.svg",
  28877. extra: 1340 / 1308,
  28878. bottom: 67 / 1407
  28879. }
  28880. },
  28881. back: {
  28882. height: math.unit(6, "feet"),
  28883. weight: math.unit(150, "lb"),
  28884. name: "Back",
  28885. image: {
  28886. source: "./media/characters/myra-rue-delore/back.svg",
  28887. extra: 1341 / 1310,
  28888. bottom: 40 / 1381
  28889. }
  28890. },
  28891. frontDressed: {
  28892. height: math.unit(6, "feet"),
  28893. weight: math.unit(150, "lb"),
  28894. name: "Front (Dressed)",
  28895. image: {
  28896. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28897. extra: 1340 / 1308,
  28898. bottom: 67 / 1407
  28899. }
  28900. },
  28901. },
  28902. [
  28903. {
  28904. name: "Macro",
  28905. height: math.unit(150, "feet"),
  28906. default: true
  28907. },
  28908. ]
  28909. ))
  28910. characterMakers.push(() => makeCharacter(
  28911. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28912. {
  28913. front: {
  28914. height: math.unit(10, "feet"),
  28915. weight: math.unit(15015, "lb"),
  28916. name: "Front",
  28917. image: {
  28918. source: "./media/characters/fem!plat/front.svg",
  28919. extra: 2799 / 2604,
  28920. bottom: 149 / 2948
  28921. }
  28922. },
  28923. },
  28924. [
  28925. {
  28926. name: "Normal",
  28927. height: math.unit(10, "feet"),
  28928. default: true
  28929. },
  28930. {
  28931. name: "Macro",
  28932. height: math.unit(100, "feet")
  28933. },
  28934. {
  28935. name: "Megamacro",
  28936. height: math.unit(1000, "feet")
  28937. },
  28938. ]
  28939. ))
  28940. characterMakers.push(() => makeCharacter(
  28941. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28942. {
  28943. front: {
  28944. height: math.unit(15 + 5 / 12, "feet"),
  28945. weight: math.unit(4600, "lb"),
  28946. name: "Front",
  28947. image: {
  28948. source: "./media/characters/neapolitan-ananassa/front.svg",
  28949. extra: 2903 / 2736,
  28950. bottom: 0 / 2903
  28951. }
  28952. },
  28953. side: {
  28954. height: math.unit(15 + 5 / 12, "feet"),
  28955. weight: math.unit(4600, "lb"),
  28956. name: "Side",
  28957. image: {
  28958. source: "./media/characters/neapolitan-ananassa/side.svg",
  28959. extra: 2925 / 2719,
  28960. bottom: 0 / 2925
  28961. }
  28962. },
  28963. back: {
  28964. height: math.unit(15 + 5 / 12, "feet"),
  28965. weight: math.unit(4600, "lb"),
  28966. name: "Back",
  28967. image: {
  28968. source: "./media/characters/neapolitan-ananassa/back.svg",
  28969. extra: 2903 / 2736,
  28970. bottom: 0 / 2903
  28971. }
  28972. },
  28973. },
  28974. [
  28975. {
  28976. name: "Normal",
  28977. height: math.unit(15 + 5 / 12, "feet"),
  28978. default: true
  28979. },
  28980. {
  28981. name: "Post-Millenium",
  28982. height: math.unit(35 + 5 / 12, "feet")
  28983. },
  28984. {
  28985. name: "Post-Era",
  28986. height: math.unit(450 + 5 / 12, "feet")
  28987. },
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28992. {
  28993. front: {
  28994. height: math.unit(300, "meters"),
  28995. weight: math.unit(125000, "tonnes"),
  28996. name: "Front",
  28997. image: {
  28998. source: "./media/characters/pazuzu/front.svg",
  28999. extra: 877 / 794,
  29000. bottom: 47 / 924
  29001. }
  29002. },
  29003. },
  29004. [
  29005. {
  29006. name: "Macro",
  29007. height: math.unit(300, "meters"),
  29008. default: true
  29009. },
  29010. ]
  29011. ))
  29012. characterMakers.push(() => makeCharacter(
  29013. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29014. {
  29015. side: {
  29016. height: math.unit(10 + 7 / 12, "feet"),
  29017. weight: math.unit(2.5, "tons"),
  29018. name: "Side",
  29019. image: {
  29020. source: "./media/characters/aasha/side.svg",
  29021. extra: 1345 / 1245,
  29022. bottom: 111 / 1456
  29023. }
  29024. },
  29025. back: {
  29026. height: math.unit(10 + 7 / 12, "feet"),
  29027. weight: math.unit(2.5, "tons"),
  29028. name: "Back",
  29029. image: {
  29030. source: "./media/characters/aasha/back.svg",
  29031. extra: 1133 / 1057,
  29032. bottom: 257 / 1390
  29033. }
  29034. },
  29035. },
  29036. [
  29037. {
  29038. name: "Normal",
  29039. height: math.unit(10 + 7 / 12, "feet"),
  29040. default: true
  29041. },
  29042. ]
  29043. ))
  29044. characterMakers.push(() => makeCharacter(
  29045. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29046. {
  29047. front: {
  29048. height: math.unit(6 + 3 / 12, "feet"),
  29049. name: "Front",
  29050. image: {
  29051. source: "./media/characters/nevan/front.svg",
  29052. extra: 704 / 704,
  29053. bottom: 28 / 732
  29054. }
  29055. },
  29056. back: {
  29057. height: math.unit(6 + 3 / 12, "feet"),
  29058. name: "Back",
  29059. image: {
  29060. source: "./media/characters/nevan/back.svg",
  29061. extra: 714 / 714,
  29062. bottom: 21 / 735
  29063. }
  29064. },
  29065. frontFlaccid: {
  29066. height: math.unit(6 + 3 / 12, "feet"),
  29067. name: "Front (Flaccid)",
  29068. image: {
  29069. source: "./media/characters/nevan/front-flaccid.svg",
  29070. extra: 704 / 704,
  29071. bottom: 28 / 732
  29072. }
  29073. },
  29074. frontErect: {
  29075. height: math.unit(6 + 3 / 12, "feet"),
  29076. name: "Front (Erect)",
  29077. image: {
  29078. source: "./media/characters/nevan/front-erect.svg",
  29079. extra: 704 / 704,
  29080. bottom: 28 / 732
  29081. }
  29082. },
  29083. backFlaccid: {
  29084. height: math.unit(6 + 3 / 12, "feet"),
  29085. name: "Back (Flaccid)",
  29086. image: {
  29087. source: "./media/characters/nevan/back-flaccid.svg",
  29088. extra: 714 / 714,
  29089. bottom: 21 / 735
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Normal",
  29096. height: math.unit(6 + 3 / 12, "feet"),
  29097. default: true
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29103. {
  29104. front: {
  29105. height: math.unit(4, "feet"),
  29106. name: "Front",
  29107. image: {
  29108. source: "./media/characters/arhan/front.svg",
  29109. extra: 3368 / 3133,
  29110. bottom: 0 / 3368
  29111. }
  29112. },
  29113. side: {
  29114. height: math.unit(4, "feet"),
  29115. name: "Side",
  29116. image: {
  29117. source: "./media/characters/arhan/side.svg",
  29118. extra: 3347 / 3105,
  29119. bottom: 0 / 3347
  29120. }
  29121. },
  29122. tongue: {
  29123. height: math.unit(1.42, "feet"),
  29124. name: "Tongue",
  29125. image: {
  29126. source: "./media/characters/arhan/tongue.svg"
  29127. }
  29128. },
  29129. head: {
  29130. height: math.unit(0.85, "feet"),
  29131. name: "Head",
  29132. image: {
  29133. source: "./media/characters/arhan/head.svg"
  29134. }
  29135. },
  29136. },
  29137. [
  29138. {
  29139. name: "Normal",
  29140. height: math.unit(4, "feet"),
  29141. default: true
  29142. },
  29143. ]
  29144. ))
  29145. characterMakers.push(() => makeCharacter(
  29146. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29147. {
  29148. front: {
  29149. height: math.unit(5 + 7.5 / 12, "feet"),
  29150. weight: math.unit(120, "lb"),
  29151. name: "Front",
  29152. image: {
  29153. source: "./media/characters/digi-duncan/front.svg",
  29154. extra: 330 / 326,
  29155. bottom: 16 / 346
  29156. }
  29157. },
  29158. side: {
  29159. height: math.unit(5 + 7.5 / 12, "feet"),
  29160. weight: math.unit(120, "lb"),
  29161. name: "Side",
  29162. image: {
  29163. source: "./media/characters/digi-duncan/side.svg",
  29164. extra: 341 / 337,
  29165. bottom: 1 / 342
  29166. }
  29167. },
  29168. back: {
  29169. height: math.unit(5 + 7.5 / 12, "feet"),
  29170. weight: math.unit(120, "lb"),
  29171. name: "Back",
  29172. image: {
  29173. source: "./media/characters/digi-duncan/back.svg",
  29174. extra: 330 / 326,
  29175. bottom: 12 / 342
  29176. }
  29177. },
  29178. },
  29179. [
  29180. {
  29181. name: "Speck",
  29182. height: math.unit(0.25, "mm")
  29183. },
  29184. {
  29185. name: "Micro",
  29186. height: math.unit(5, "mm")
  29187. },
  29188. {
  29189. name: "Tiny",
  29190. height: math.unit(0.5, "inches"),
  29191. default: true
  29192. },
  29193. {
  29194. name: "Human",
  29195. height: math.unit(5 + 7.5 / 12, "feet")
  29196. },
  29197. {
  29198. name: "Minigiant",
  29199. height: math.unit(8 + 5.25, "feet")
  29200. },
  29201. {
  29202. name: "Giant",
  29203. height: math.unit(2000, "feet")
  29204. },
  29205. {
  29206. name: "Mega",
  29207. height: math.unit(371.1, "miles")
  29208. },
  29209. ]
  29210. ))
  29211. characterMakers.push(() => makeCharacter(
  29212. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29213. {
  29214. front: {
  29215. height: math.unit(2, "meters"),
  29216. weight: math.unit(350, "kg"),
  29217. name: "Front",
  29218. image: {
  29219. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29220. extra: 898 / 838,
  29221. bottom: 9 / 907
  29222. }
  29223. },
  29224. },
  29225. [
  29226. {
  29227. name: "Micro",
  29228. height: math.unit(8, "meters")
  29229. },
  29230. {
  29231. name: "Normal",
  29232. height: math.unit(50, "meters"),
  29233. default: true
  29234. },
  29235. {
  29236. name: "Macro",
  29237. height: math.unit(500, "meters")
  29238. },
  29239. ]
  29240. ))
  29241. characterMakers.push(() => makeCharacter(
  29242. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29243. {
  29244. front: {
  29245. height: math.unit(6 + 6 / 12, "feet"),
  29246. name: "Front",
  29247. image: {
  29248. source: "./media/characters/khardesh/front.svg",
  29249. extra: 888 / 797,
  29250. bottom: 25 / 913
  29251. }
  29252. },
  29253. },
  29254. [
  29255. {
  29256. name: "Normal",
  29257. height: math.unit(6 + 6 / 12, "feet"),
  29258. default: true
  29259. },
  29260. {
  29261. name: "Normal+",
  29262. height: math.unit(4, "meters")
  29263. },
  29264. {
  29265. name: "Macro",
  29266. height: math.unit(50, "meters")
  29267. },
  29268. {
  29269. name: "Macro+",
  29270. height: math.unit(100, "meters")
  29271. },
  29272. {
  29273. name: "Megamacro",
  29274. height: math.unit(20, "km")
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(6, "feet"),
  29283. weight: math.unit(150, "lb"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/kosho/front.svg",
  29287. extra: 1847 / 1847,
  29288. bottom: 86 / 1933
  29289. }
  29290. },
  29291. },
  29292. [
  29293. {
  29294. name: "Second-stage micro",
  29295. height: math.unit(0.5, "inches")
  29296. },
  29297. {
  29298. name: "First-stage micro",
  29299. height: math.unit(6, "inches")
  29300. },
  29301. {
  29302. name: "Normal",
  29303. height: math.unit(6, "feet"),
  29304. default: true
  29305. },
  29306. {
  29307. name: "First-stage macro",
  29308. height: math.unit(72, "feet")
  29309. },
  29310. {
  29311. name: "Second-stage macro",
  29312. height: math.unit(864, "feet")
  29313. },
  29314. ]
  29315. ))
  29316. characterMakers.push(() => makeCharacter(
  29317. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29318. {
  29319. normal: {
  29320. height: math.unit(4 + 6 / 12, "feet"),
  29321. name: "Normal",
  29322. image: {
  29323. source: "./media/characters/hydra/normal.svg",
  29324. extra: 2833 / 2634,
  29325. bottom: 68 / 2901
  29326. }
  29327. },
  29328. smol: {
  29329. height: math.unit(0.705, "inches"),
  29330. name: "Smol",
  29331. image: {
  29332. source: "./media/characters/hydra/smol.svg",
  29333. extra: 2715 / 2540,
  29334. bottom: 0 / 2715
  29335. }
  29336. },
  29337. },
  29338. [
  29339. {
  29340. name: "Normal",
  29341. height: math.unit(4 + 6 / 12, "feet"),
  29342. default: true
  29343. }
  29344. ]
  29345. ))
  29346. characterMakers.push(() => makeCharacter(
  29347. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29348. {
  29349. front: {
  29350. height: math.unit(0.6, "cm"),
  29351. name: "Front",
  29352. image: {
  29353. source: "./media/characters/daz/front.svg",
  29354. extra: 1682 / 1164,
  29355. bottom: 42 / 1724
  29356. }
  29357. },
  29358. },
  29359. [
  29360. {
  29361. name: "Normal",
  29362. height: math.unit(0.6, "cm"),
  29363. default: true
  29364. },
  29365. ]
  29366. ))
  29367. characterMakers.push(() => makeCharacter(
  29368. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29369. {
  29370. front: {
  29371. height: math.unit(6, "feet"),
  29372. weight: math.unit(235, "lb"),
  29373. name: "Front",
  29374. image: {
  29375. source: "./media/characters/theo-pangolin/front.svg",
  29376. extra: 1996 / 1969,
  29377. bottom: 115 / 2111
  29378. }
  29379. },
  29380. back: {
  29381. height: math.unit(6, "feet"),
  29382. weight: math.unit(235, "lb"),
  29383. name: "Back",
  29384. image: {
  29385. source: "./media/characters/theo-pangolin/back.svg",
  29386. extra: 1979 / 1979,
  29387. bottom: 40 / 2019
  29388. }
  29389. },
  29390. feral: {
  29391. height: math.unit(2, "feet"),
  29392. weight: math.unit(30, "lb"),
  29393. name: "Feral",
  29394. image: {
  29395. source: "./media/characters/theo-pangolin/feral.svg",
  29396. extra: 803 / 791,
  29397. bottom: 181 / 984
  29398. }
  29399. },
  29400. footFive: {
  29401. height: math.unit(1.43, "feet"),
  29402. name: "Foot (Five Toes)",
  29403. image: {
  29404. source: "./media/characters/theo-pangolin/foot-five.svg"
  29405. }
  29406. },
  29407. footFour: {
  29408. height: math.unit(1.43, "feet"),
  29409. name: "Foot (Four Toes)",
  29410. image: {
  29411. source: "./media/characters/theo-pangolin/foot-four.svg"
  29412. }
  29413. },
  29414. handFour: {
  29415. height: math.unit(0.81, "feet"),
  29416. name: "Hand (Four Fingers)",
  29417. image: {
  29418. source: "./media/characters/theo-pangolin/hand-four.svg"
  29419. }
  29420. },
  29421. handThree: {
  29422. height: math.unit(0.81, "feet"),
  29423. name: "Hand (Three Fingers)",
  29424. image: {
  29425. source: "./media/characters/theo-pangolin/hand-three.svg"
  29426. }
  29427. },
  29428. headFront: {
  29429. height: math.unit(1.37, "feet"),
  29430. name: "Head (Front)",
  29431. image: {
  29432. source: "./media/characters/theo-pangolin/head-front.svg"
  29433. }
  29434. },
  29435. headSide: {
  29436. height: math.unit(1.43, "feet"),
  29437. name: "Head (Side)",
  29438. image: {
  29439. source: "./media/characters/theo-pangolin/head-side.svg"
  29440. }
  29441. },
  29442. tongue: {
  29443. height: math.unit(2.29, "feet"),
  29444. name: "Tongue",
  29445. image: {
  29446. source: "./media/characters/theo-pangolin/tongue.svg"
  29447. }
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Normal",
  29453. height: math.unit(6, "feet")
  29454. },
  29455. {
  29456. name: "Macro",
  29457. height: math.unit(400, "feet"),
  29458. default: true
  29459. },
  29460. ]
  29461. ))
  29462. characterMakers.push(() => makeCharacter(
  29463. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29464. {
  29465. front: {
  29466. height: math.unit(6, "inches"),
  29467. weight: math.unit(0.036, "kg"),
  29468. name: "Front",
  29469. image: {
  29470. source: "./media/characters/renée/front.svg",
  29471. extra: 900 / 886,
  29472. bottom: 8 / 908
  29473. }
  29474. },
  29475. },
  29476. [
  29477. {
  29478. name: "Nano",
  29479. height: math.unit(1, "nm")
  29480. },
  29481. {
  29482. name: "Micro",
  29483. height: math.unit(1, "mm")
  29484. },
  29485. {
  29486. name: "Normal",
  29487. height: math.unit(6, "inches")
  29488. },
  29489. {
  29490. name: "Macro",
  29491. height: math.unit(2000, "feet"),
  29492. default: true
  29493. },
  29494. {
  29495. name: "Megamacro",
  29496. height: math.unit(2, "km")
  29497. },
  29498. {
  29499. name: "Gigamacro",
  29500. height: math.unit(2000, "km")
  29501. },
  29502. {
  29503. name: "Teramacro",
  29504. height: math.unit(250000, "km")
  29505. },
  29506. ]
  29507. ))
  29508. characterMakers.push(() => makeCharacter(
  29509. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29510. {
  29511. front: {
  29512. height: math.unit(4, "meters"),
  29513. weight: math.unit(150, "kg"),
  29514. name: "Front",
  29515. image: {
  29516. source: "./media/characters/caledvwlch/front.svg",
  29517. extra: 1760 / 1551,
  29518. bottom: 28 / 1788
  29519. }
  29520. },
  29521. side: {
  29522. height: math.unit(4, "meters"),
  29523. weight: math.unit(150, "kg"),
  29524. name: "Side",
  29525. image: {
  29526. source: "./media/characters/caledvwlch/side.svg",
  29527. extra: 1605 / 1536,
  29528. bottom: 31 / 1636
  29529. }
  29530. },
  29531. back: {
  29532. height: math.unit(4, "meters"),
  29533. weight: math.unit(150, "kg"),
  29534. name: "Back",
  29535. image: {
  29536. source: "./media/characters/caledvwlch/back.svg",
  29537. extra: 1635 / 1565,
  29538. bottom: 27 / 1662
  29539. }
  29540. },
  29541. },
  29542. [
  29543. {
  29544. name: "\"Incognito\"",
  29545. height: math.unit(4, "meters")
  29546. },
  29547. {
  29548. name: "Small rampage",
  29549. height: math.unit(600, "meters")
  29550. },
  29551. {
  29552. name: "Mega",
  29553. height: math.unit(30, "km")
  29554. },
  29555. {
  29556. name: "Home-size",
  29557. height: math.unit(50, "km"),
  29558. default: true
  29559. },
  29560. {
  29561. name: "Giga",
  29562. height: math.unit(300, "km")
  29563. },
  29564. {
  29565. name: "Lounging",
  29566. height: math.unit(11000, "km")
  29567. },
  29568. {
  29569. name: "Planet snacking",
  29570. height: math.unit(2000000, "km")
  29571. },
  29572. ]
  29573. ))
  29574. characterMakers.push(() => makeCharacter(
  29575. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29576. {
  29577. front: {
  29578. height: math.unit(6, "feet"),
  29579. weight: math.unit(215, "lb"),
  29580. name: "Front",
  29581. image: {
  29582. source: "./media/characters/sapphire-svell/front.svg",
  29583. extra: 495 / 455,
  29584. bottom: 20 / 515
  29585. }
  29586. },
  29587. back: {
  29588. height: math.unit(6, "feet"),
  29589. weight: math.unit(216, "lb"),
  29590. name: "Back",
  29591. image: {
  29592. source: "./media/characters/sapphire-svell/back.svg",
  29593. extra: 497 / 477,
  29594. bottom: 7 / 504
  29595. }
  29596. },
  29597. maw: {
  29598. height: math.unit(1.57, "feet"),
  29599. name: "Maw",
  29600. image: {
  29601. source: "./media/characters/sapphire-svell/maw.svg"
  29602. }
  29603. },
  29604. foot: {
  29605. height: math.unit(1.07, "feet"),
  29606. name: "Foot",
  29607. image: {
  29608. source: "./media/characters/sapphire-svell/foot.svg"
  29609. }
  29610. },
  29611. toering: {
  29612. height: math.unit(1.7, "inch"),
  29613. name: "Toering",
  29614. image: {
  29615. source: "./media/characters/sapphire-svell/toering.svg"
  29616. }
  29617. },
  29618. },
  29619. [
  29620. {
  29621. name: "Normal",
  29622. height: math.unit(300, "feet"),
  29623. default: true
  29624. },
  29625. {
  29626. name: "Augmented",
  29627. height: math.unit(1250, "feet")
  29628. },
  29629. {
  29630. name: "Unleashed",
  29631. height: math.unit(3000, "feet")
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29637. {
  29638. side: {
  29639. height: math.unit(2 + 3 / 12, "feet"),
  29640. weight: math.unit(110, "lb"),
  29641. name: "Side",
  29642. image: {
  29643. source: "./media/characters/glitch-flux/side.svg",
  29644. extra: 997 / 805,
  29645. bottom: 20 / 1017
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Normal",
  29652. height: math.unit(2 + 3 / 12, "feet"),
  29653. default: true
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(4, "meters"),
  29662. name: "Front",
  29663. image: {
  29664. source: "./media/characters/mid/front.svg",
  29665. extra: 507 / 476,
  29666. bottom: 17 / 524
  29667. }
  29668. },
  29669. back: {
  29670. height: math.unit(4, "meters"),
  29671. name: "Back",
  29672. image: {
  29673. source: "./media/characters/mid/back.svg",
  29674. extra: 519 / 487,
  29675. bottom: 7 / 526
  29676. }
  29677. },
  29678. stuck: {
  29679. height: math.unit(2.2, "meters"),
  29680. name: "Stuck",
  29681. image: {
  29682. source: "./media/characters/mid/stuck.svg",
  29683. extra: 1951 / 1869,
  29684. bottom: 88 / 2039
  29685. }
  29686. }
  29687. },
  29688. [
  29689. {
  29690. name: "Normal",
  29691. height: math.unit(4, "meters"),
  29692. default: true
  29693. },
  29694. {
  29695. name: "Big",
  29696. height: math.unit(10, "meters")
  29697. },
  29698. {
  29699. name: "Macro",
  29700. height: math.unit(800, "meters")
  29701. },
  29702. {
  29703. name: "Megamacro",
  29704. height: math.unit(100, "km")
  29705. },
  29706. {
  29707. name: "Overgrown",
  29708. height: math.unit(1, "parsec")
  29709. },
  29710. ]
  29711. ))
  29712. characterMakers.push(() => makeCharacter(
  29713. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29714. {
  29715. front: {
  29716. height: math.unit(2.5, "meters"),
  29717. weight: math.unit(225, "kg"),
  29718. name: "Front",
  29719. image: {
  29720. source: "./media/characters/iris/front.svg",
  29721. extra: 3348 / 3251,
  29722. bottom: 205 / 3553
  29723. }
  29724. },
  29725. maw: {
  29726. height: math.unit(0.56, "meter"),
  29727. name: "Maw",
  29728. image: {
  29729. source: "./media/characters/iris/maw.svg"
  29730. }
  29731. },
  29732. },
  29733. [
  29734. {
  29735. name: "Mewter cat",
  29736. height: math.unit(1.2, "meters")
  29737. },
  29738. {
  29739. name: "Minimacro",
  29740. height: math.unit(2.5, "meters"),
  29741. default: true
  29742. },
  29743. {
  29744. name: "Macro",
  29745. height: math.unit(180, "meters")
  29746. },
  29747. {
  29748. name: "Megamacro",
  29749. height: math.unit(2746, "meters")
  29750. },
  29751. ]
  29752. ))
  29753. characterMakers.push(() => makeCharacter(
  29754. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29755. {
  29756. front: {
  29757. height: math.unit(6, "feet"),
  29758. weight: math.unit(135, "lb"),
  29759. name: "Front",
  29760. image: {
  29761. source: "./media/characters/axel/front.svg",
  29762. extra: 908 / 908,
  29763. bottom: 58 / 966
  29764. }
  29765. },
  29766. side: {
  29767. height: math.unit(6, "feet"),
  29768. weight: math.unit(135, "lb"),
  29769. name: "Side",
  29770. image: {
  29771. source: "./media/characters/axel/side.svg",
  29772. extra: 958 / 958,
  29773. bottom: 11 / 969
  29774. }
  29775. },
  29776. back: {
  29777. height: math.unit(6, "feet"),
  29778. weight: math.unit(135, "lb"),
  29779. name: "Back",
  29780. image: {
  29781. source: "./media/characters/axel/back.svg",
  29782. extra: 887 / 887,
  29783. bottom: 34 / 921
  29784. }
  29785. },
  29786. head: {
  29787. height: math.unit(1.07, "feet"),
  29788. name: "Head",
  29789. image: {
  29790. source: "./media/characters/axel/head.svg"
  29791. }
  29792. },
  29793. beak: {
  29794. height: math.unit(1.4, "feet"),
  29795. name: "Beak",
  29796. image: {
  29797. source: "./media/characters/axel/beak.svg"
  29798. }
  29799. },
  29800. beakSide: {
  29801. height: math.unit(1.4, "feet"),
  29802. name: "Beak Side",
  29803. image: {
  29804. source: "./media/characters/axel/beak-side.svg"
  29805. }
  29806. },
  29807. sheath: {
  29808. height: math.unit(0.5, "feet"),
  29809. name: "Sheath",
  29810. image: {
  29811. source: "./media/characters/axel/sheath.svg"
  29812. }
  29813. },
  29814. dick: {
  29815. height: math.unit(0.98, "feet"),
  29816. name: "Dick",
  29817. image: {
  29818. source: "./media/characters/axel/dick.svg"
  29819. }
  29820. },
  29821. },
  29822. [
  29823. {
  29824. name: "Macro",
  29825. height: math.unit(68, "meters"),
  29826. default: true
  29827. },
  29828. ]
  29829. ))
  29830. characterMakers.push(() => makeCharacter(
  29831. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29832. {
  29833. front: {
  29834. height: math.unit(3.5, "meters"),
  29835. weight: math.unit(1200, "kg"),
  29836. name: "Front",
  29837. image: {
  29838. source: "./media/characters/joanna/front.svg",
  29839. extra: 1596 / 1488,
  29840. bottom: 29 / 1625
  29841. }
  29842. },
  29843. back: {
  29844. height: math.unit(3.5, "meters"),
  29845. weight: math.unit(1200, "kg"),
  29846. name: "Back",
  29847. image: {
  29848. source: "./media/characters/joanna/back.svg",
  29849. extra: 1594 / 1495,
  29850. bottom: 26 / 1620
  29851. }
  29852. },
  29853. frontShorts: {
  29854. height: math.unit(3.5, "meters"),
  29855. weight: math.unit(1200, "kg"),
  29856. name: "Front (Shorts)",
  29857. image: {
  29858. source: "./media/characters/joanna/front-shorts.svg",
  29859. extra: 1596 / 1488,
  29860. bottom: 29 / 1625
  29861. }
  29862. },
  29863. frontBiker: {
  29864. height: math.unit(3.5, "meters"),
  29865. weight: math.unit(1200, "kg"),
  29866. name: "Front (Biker)",
  29867. image: {
  29868. source: "./media/characters/joanna/front-biker.svg",
  29869. extra: 1596 / 1488,
  29870. bottom: 29 / 1625
  29871. }
  29872. },
  29873. backBiker: {
  29874. height: math.unit(3.5, "meters"),
  29875. weight: math.unit(1200, "kg"),
  29876. name: "Back (Biker)",
  29877. image: {
  29878. source: "./media/characters/joanna/back-biker.svg",
  29879. extra: 1594 / 1495,
  29880. bottom: 88 / 1682
  29881. }
  29882. },
  29883. bikeLeft: {
  29884. height: math.unit(2.4, "meters"),
  29885. weight: math.unit(1600, "kg"),
  29886. name: "Bike (Left)",
  29887. image: {
  29888. source: "./media/characters/joanna/bike-left.svg",
  29889. extra: 720 / 720,
  29890. bottom: 8 / 728
  29891. }
  29892. },
  29893. bikeRight: {
  29894. height: math.unit(2.4, "meters"),
  29895. weight: math.unit(1600, "kg"),
  29896. name: "Bike (Right)",
  29897. image: {
  29898. source: "./media/characters/joanna/bike-right.svg",
  29899. extra: 720 / 720,
  29900. bottom: 8 / 728
  29901. }
  29902. },
  29903. },
  29904. [
  29905. {
  29906. name: "Incognito",
  29907. height: math.unit(3.5, "meters")
  29908. },
  29909. {
  29910. name: "Casual Big",
  29911. height: math.unit(200, "meters")
  29912. },
  29913. {
  29914. name: "Macro",
  29915. height: math.unit(600, "meters")
  29916. },
  29917. {
  29918. name: "Original",
  29919. height: math.unit(20, "km"),
  29920. default: true
  29921. },
  29922. {
  29923. name: "Giga",
  29924. height: math.unit(400, "km")
  29925. },
  29926. {
  29927. name: "Lounging",
  29928. height: math.unit(1500, "km")
  29929. },
  29930. {
  29931. name: "Planetary",
  29932. height: math.unit(200000, "km")
  29933. },
  29934. ]
  29935. ))
  29936. characterMakers.push(() => makeCharacter(
  29937. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29938. {
  29939. front: {
  29940. height: math.unit(6, "feet"),
  29941. weight: math.unit(150, "lb"),
  29942. name: "Front",
  29943. image: {
  29944. source: "./media/characters/hugo-sigil/front.svg",
  29945. extra: 522 / 500,
  29946. bottom: 2 / 524
  29947. }
  29948. },
  29949. back: {
  29950. height: math.unit(6, "feet"),
  29951. weight: math.unit(150, "lb"),
  29952. name: "Back",
  29953. image: {
  29954. source: "./media/characters/hugo-sigil/back.svg",
  29955. extra: 519 / 495,
  29956. bottom: 5 / 524
  29957. }
  29958. },
  29959. maw: {
  29960. height: math.unit(1.4, "feet"),
  29961. weight: math.unit(150, "lb"),
  29962. name: "Maw",
  29963. image: {
  29964. source: "./media/characters/hugo-sigil/maw.svg"
  29965. }
  29966. },
  29967. feet: {
  29968. height: math.unit(1.56, "feet"),
  29969. weight: math.unit(150, "lb"),
  29970. name: "Feet",
  29971. image: {
  29972. source: "./media/characters/hugo-sigil/feet.svg",
  29973. extra: 177 / 177,
  29974. bottom: 12 / 189
  29975. }
  29976. },
  29977. },
  29978. [
  29979. {
  29980. name: "Normal",
  29981. height: math.unit(6, "feet")
  29982. },
  29983. {
  29984. name: "Macro",
  29985. height: math.unit(200, "feet"),
  29986. default: true
  29987. },
  29988. ]
  29989. ))
  29990. characterMakers.push(() => makeCharacter(
  29991. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29992. {
  29993. front: {
  29994. height: math.unit(6, "feet"),
  29995. weight: math.unit(150, "lb"),
  29996. name: "Front",
  29997. image: {
  29998. source: "./media/characters/peri/front.svg",
  29999. extra: 2354 / 2233,
  30000. bottom: 49 / 2403
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Really Small",
  30007. height: math.unit(1, "nm")
  30008. },
  30009. {
  30010. name: "Micro",
  30011. height: math.unit(4, "inches")
  30012. },
  30013. {
  30014. name: "Normal",
  30015. height: math.unit(7, "inches"),
  30016. default: true
  30017. },
  30018. {
  30019. name: "Macro",
  30020. height: math.unit(400, "feet")
  30021. },
  30022. {
  30023. name: "Megamacro",
  30024. height: math.unit(100, "miles")
  30025. },
  30026. ]
  30027. ))
  30028. characterMakers.push(() => makeCharacter(
  30029. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30030. {
  30031. frontSlim: {
  30032. height: math.unit(7, "feet"),
  30033. name: "Front (Slim)",
  30034. image: {
  30035. source: "./media/characters/issilora/front-slim.svg",
  30036. extra: 529 / 449,
  30037. bottom: 53 / 582
  30038. }
  30039. },
  30040. sideSlim: {
  30041. height: math.unit(7, "feet"),
  30042. name: "Side (Slim)",
  30043. image: {
  30044. source: "./media/characters/issilora/side-slim.svg",
  30045. extra: 570 / 480,
  30046. bottom: 30 / 600
  30047. }
  30048. },
  30049. backSlim: {
  30050. height: math.unit(7, "feet"),
  30051. name: "Back (Slim)",
  30052. image: {
  30053. source: "./media/characters/issilora/back-slim.svg",
  30054. extra: 537 / 455,
  30055. bottom: 46 / 583
  30056. }
  30057. },
  30058. frontBuff: {
  30059. height: math.unit(7, "feet"),
  30060. name: "Front (Buff)",
  30061. image: {
  30062. source: "./media/characters/issilora/front-buff.svg",
  30063. extra: 2310 / 2035,
  30064. bottom: 335 / 2645
  30065. }
  30066. },
  30067. head: {
  30068. height: math.unit(1.94, "feet"),
  30069. name: "Head",
  30070. image: {
  30071. source: "./media/characters/issilora/head.svg"
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Minimum",
  30078. height: math.unit(7, "feet")
  30079. },
  30080. {
  30081. name: "Comfortable",
  30082. height: math.unit(17, "feet")
  30083. },
  30084. {
  30085. name: "Fun Size",
  30086. height: math.unit(47, "feet")
  30087. },
  30088. {
  30089. name: "Natural Macro",
  30090. height: math.unit(137, "feet"),
  30091. default: true
  30092. },
  30093. {
  30094. name: "Maximum Kaiju",
  30095. height: math.unit(397, "feet")
  30096. },
  30097. ]
  30098. ))
  30099. characterMakers.push(() => makeCharacter(
  30100. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30101. {
  30102. front: {
  30103. height: math.unit(50 + 9/12, "feet"),
  30104. weight: math.unit(32.8, "tons"),
  30105. name: "Front",
  30106. image: {
  30107. source: "./media/characters/irb'iiritaahn/front.svg",
  30108. extra: 1878/1826,
  30109. bottom: 326/2204
  30110. }
  30111. },
  30112. back: {
  30113. height: math.unit(50 + 9/12, "feet"),
  30114. weight: math.unit(32.8, "tons"),
  30115. name: "Back",
  30116. image: {
  30117. source: "./media/characters/irb'iiritaahn/back.svg",
  30118. extra: 2052/2018,
  30119. bottom: 152/2204
  30120. }
  30121. },
  30122. head: {
  30123. height: math.unit(12.86, "feet"),
  30124. name: "Head",
  30125. image: {
  30126. source: "./media/characters/irb'iiritaahn/head.svg"
  30127. }
  30128. },
  30129. maw: {
  30130. height: math.unit(9.66, "feet"),
  30131. name: "Maw",
  30132. image: {
  30133. source: "./media/characters/irb'iiritaahn/maw.svg"
  30134. }
  30135. },
  30136. frontDick: {
  30137. height: math.unit(8.78461, "feet"),
  30138. name: "Front Dick",
  30139. image: {
  30140. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30141. }
  30142. },
  30143. rearDick: {
  30144. height: math.unit(8.78461, "feet"),
  30145. name: "Rear Dick",
  30146. image: {
  30147. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30148. }
  30149. },
  30150. rearDickUnfolded: {
  30151. height: math.unit(8.78, "feet"),
  30152. name: "Rear Dick (Unfolded)",
  30153. image: {
  30154. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30155. }
  30156. },
  30157. wings: {
  30158. height: math.unit(43, "feet"),
  30159. name: "Wings",
  30160. image: {
  30161. source: "./media/characters/irb'iiritaahn/wings.svg"
  30162. }
  30163. },
  30164. },
  30165. [
  30166. {
  30167. name: "Macro",
  30168. height: math.unit(50 + 9/12, "feet"),
  30169. default: true
  30170. },
  30171. ]
  30172. ))
  30173. characterMakers.push(() => makeCharacter(
  30174. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30175. {
  30176. front: {
  30177. height: math.unit(205, "cm"),
  30178. weight: math.unit(102, "kg"),
  30179. name: "Front",
  30180. image: {
  30181. source: "./media/characters/irbisgreif/front.svg",
  30182. extra: 785/706,
  30183. bottom: 13/798
  30184. }
  30185. },
  30186. back: {
  30187. height: math.unit(205, "cm"),
  30188. weight: math.unit(102, "kg"),
  30189. name: "Back",
  30190. image: {
  30191. source: "./media/characters/irbisgreif/back.svg",
  30192. extra: 713/701,
  30193. bottom: 26/739
  30194. }
  30195. },
  30196. frontDressed: {
  30197. height: math.unit(216, "cm"),
  30198. weight: math.unit(102, "kg"),
  30199. name: "Front-dressed",
  30200. image: {
  30201. source: "./media/characters/irbisgreif/front-dressed.svg",
  30202. extra: 902/776,
  30203. bottom: 14/916
  30204. }
  30205. },
  30206. sideDressed: {
  30207. height: math.unit(195, "cm"),
  30208. weight: math.unit(102, "kg"),
  30209. name: "Side-dressed",
  30210. image: {
  30211. source: "./media/characters/irbisgreif/side-dressed.svg",
  30212. extra: 788/688,
  30213. bottom: 21/809
  30214. }
  30215. },
  30216. backDressed: {
  30217. height: math.unit(216, "cm"),
  30218. weight: math.unit(102, "kg"),
  30219. name: "Back-dressed",
  30220. image: {
  30221. source: "./media/characters/irbisgreif/back-dressed.svg",
  30222. extra: 901/783,
  30223. bottom: 10/911
  30224. }
  30225. },
  30226. dick: {
  30227. height: math.unit(0.49, "feet"),
  30228. name: "Dick",
  30229. image: {
  30230. source: "./media/characters/irbisgreif/dick.svg"
  30231. }
  30232. },
  30233. wingTop: {
  30234. height: math.unit(1.93 , "feet"),
  30235. name: "Wing-top",
  30236. image: {
  30237. source: "./media/characters/irbisgreif/wing-top.svg"
  30238. }
  30239. },
  30240. wingBottom: {
  30241. height: math.unit(1.93 , "feet"),
  30242. name: "Wing-bottom",
  30243. image: {
  30244. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30245. }
  30246. },
  30247. },
  30248. [
  30249. {
  30250. name: "Normal",
  30251. height: math.unit(216, "cm"),
  30252. default: true
  30253. },
  30254. ]
  30255. ))
  30256. characterMakers.push(() => makeCharacter(
  30257. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30258. {
  30259. front: {
  30260. height: math.unit(6, "feet"),
  30261. weight: math.unit(150, "lb"),
  30262. name: "Front",
  30263. image: {
  30264. source: "./media/characters/pride/front.svg",
  30265. extra: 1299/1230,
  30266. bottom: 18/1317
  30267. }
  30268. },
  30269. },
  30270. [
  30271. {
  30272. name: "Normal",
  30273. height: math.unit(7, "feet")
  30274. },
  30275. {
  30276. name: "Mini-macro",
  30277. height: math.unit(11, "feet")
  30278. },
  30279. {
  30280. name: "Macro",
  30281. height: math.unit(15, "meters"),
  30282. default: true
  30283. },
  30284. {
  30285. name: "Macro+",
  30286. height: math.unit(40, "meters")
  30287. },
  30288. ]
  30289. ))
  30290. characterMakers.push(() => makeCharacter(
  30291. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30292. {
  30293. front: {
  30294. height: math.unit(4 + 2 / 12, "feet"),
  30295. weight: math.unit(95, "lb"),
  30296. name: "Front",
  30297. image: {
  30298. source: "./media/characters/vaelophis-nyx/front.svg",
  30299. extra: 2532/2330,
  30300. bottom: 0/2532
  30301. }
  30302. },
  30303. back: {
  30304. height: math.unit(4 + 2 / 12, "feet"),
  30305. weight: math.unit(95, "lb"),
  30306. name: "Back",
  30307. image: {
  30308. source: "./media/characters/vaelophis-nyx/back.svg",
  30309. extra: 2484/2361,
  30310. bottom: 0/2484
  30311. }
  30312. },
  30313. feralSide: {
  30314. height: math.unit(2 + 1/12, "feet"),
  30315. weight: math.unit(20, "lb"),
  30316. name: "Feral (Side)",
  30317. image: {
  30318. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30319. extra: 1721/1581,
  30320. bottom: 70/1791
  30321. }
  30322. },
  30323. feralLazing: {
  30324. height: math.unit(1.08, "feet"),
  30325. weight: math.unit(20, "lb"),
  30326. name: "Feral (Lazing)",
  30327. image: {
  30328. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30329. extra: 822/822,
  30330. bottom: 248/1070
  30331. }
  30332. },
  30333. ear: {
  30334. height: math.unit(0.416, "feet"),
  30335. name: "Ear",
  30336. image: {
  30337. source: "./media/characters/vaelophis-nyx/ear.svg"
  30338. }
  30339. },
  30340. eye: {
  30341. height: math.unit(0.0748, "feet"),
  30342. name: "Eye",
  30343. image: {
  30344. source: "./media/characters/vaelophis-nyx/eye.svg"
  30345. }
  30346. },
  30347. mouth: {
  30348. height: math.unit(0.378, "feet"),
  30349. name: "Mouth",
  30350. image: {
  30351. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30352. }
  30353. },
  30354. spade: {
  30355. height: math.unit(0.55, "feet"),
  30356. name: "Spade",
  30357. image: {
  30358. source: "./media/characters/vaelophis-nyx/spade.svg"
  30359. }
  30360. },
  30361. },
  30362. [
  30363. {
  30364. name: "Normal",
  30365. height: math.unit(4 + 2/12, "feet"),
  30366. default: true
  30367. },
  30368. ]
  30369. ))
  30370. characterMakers.push(() => makeCharacter(
  30371. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30372. {
  30373. front: {
  30374. height: math.unit(7, "feet"),
  30375. weight: math.unit(231, "lb"),
  30376. name: "Front",
  30377. image: {
  30378. source: "./media/characters/flux/front.svg",
  30379. extra: 919/871,
  30380. bottom: 0/919
  30381. }
  30382. },
  30383. back: {
  30384. height: math.unit(7, "feet"),
  30385. weight: math.unit(231, "lb"),
  30386. name: "Back",
  30387. image: {
  30388. source: "./media/characters/flux/back.svg",
  30389. extra: 1040/992,
  30390. bottom: 0/1040
  30391. }
  30392. },
  30393. frontDressed: {
  30394. height: math.unit(7, "feet"),
  30395. weight: math.unit(231, "lb"),
  30396. name: "Front (Dressed)",
  30397. image: {
  30398. source: "./media/characters/flux/front-dressed.svg",
  30399. extra: 919/871,
  30400. bottom: 0/919
  30401. }
  30402. },
  30403. feralSide: {
  30404. height: math.unit(5, "feet"),
  30405. weight: math.unit(150, "lb"),
  30406. name: "Feral (Side)",
  30407. image: {
  30408. source: "./media/characters/flux/feral-side.svg",
  30409. extra: 598/528,
  30410. bottom: 28/626
  30411. }
  30412. },
  30413. head: {
  30414. height: math.unit(1.585, "feet"),
  30415. name: "Head",
  30416. image: {
  30417. source: "./media/characters/flux/head.svg"
  30418. }
  30419. },
  30420. headSide: {
  30421. height: math.unit(1.74, "feet"),
  30422. name: "Head (Side)",
  30423. image: {
  30424. source: "./media/characters/flux/head-side.svg"
  30425. }
  30426. },
  30427. headSideFire: {
  30428. height: math.unit(1.76, "feet"),
  30429. name: "Head (Side, Fire)",
  30430. image: {
  30431. source: "./media/characters/flux/head-side-fire.svg"
  30432. }
  30433. },
  30434. },
  30435. [
  30436. {
  30437. name: "Normal",
  30438. height: math.unit(7, "feet"),
  30439. default: true
  30440. },
  30441. ]
  30442. ))
  30443. characterMakers.push(() => makeCharacter(
  30444. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30445. {
  30446. front: {
  30447. height: math.unit(9, "feet"),
  30448. weight: math.unit(1012, "lb"),
  30449. name: "Front",
  30450. image: {
  30451. source: "./media/characters/ulfra-lupae/front.svg",
  30452. extra: 1083/1011,
  30453. bottom: 67/1150
  30454. }
  30455. },
  30456. },
  30457. [
  30458. {
  30459. name: "Micro",
  30460. height: math.unit(6, "inches")
  30461. },
  30462. {
  30463. name: "Socializing",
  30464. height: math.unit(6 + 5/12, "feet")
  30465. },
  30466. {
  30467. name: "Normal",
  30468. height: math.unit(9, "feet"),
  30469. default: true
  30470. },
  30471. {
  30472. name: "Macro",
  30473. height: math.unit(150, "feet")
  30474. },
  30475. ]
  30476. ))
  30477. characterMakers.push(() => makeCharacter(
  30478. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30479. {
  30480. front: {
  30481. height: math.unit(5 + 2/12, "feet"),
  30482. weight: math.unit(120, "lb"),
  30483. name: "Front",
  30484. image: {
  30485. source: "./media/characters/timber/front.svg",
  30486. extra: 2814/2705,
  30487. bottom: 181/2995
  30488. }
  30489. },
  30490. },
  30491. [
  30492. {
  30493. name: "Normal",
  30494. height: math.unit(5 + 2/12, "feet"),
  30495. default: true
  30496. },
  30497. ]
  30498. ))
  30499. characterMakers.push(() => makeCharacter(
  30500. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30501. {
  30502. front: {
  30503. height: math.unit(5 + 7/12, "feet"),
  30504. weight: math.unit(220, "lb"),
  30505. name: "Front",
  30506. image: {
  30507. source: "./media/characters/nicki/front.svg",
  30508. extra: 453/419,
  30509. bottom: 7/460
  30510. }
  30511. },
  30512. frontAlt: {
  30513. height: math.unit(5 + 7/12, "feet"),
  30514. weight: math.unit(220, "lb"),
  30515. name: "Front-alt",
  30516. image: {
  30517. source: "./media/characters/nicki/front-alt.svg",
  30518. extra: 435/411,
  30519. bottom: 12/447
  30520. }
  30521. },
  30522. back: {
  30523. height: math.unit(5 + 7/12, "feet"),
  30524. weight: math.unit(220, "lb"),
  30525. name: "Back",
  30526. image: {
  30527. source: "./media/characters/nicki/back.svg",
  30528. extra: 440/413,
  30529. bottom: 19/459
  30530. }
  30531. },
  30532. taur: {
  30533. height: math.unit(7 + 6/12, "feet"),
  30534. weight: math.unit(700, "lb"),
  30535. name: "Taur",
  30536. image: {
  30537. source: "./media/characters/nicki/taur.svg",
  30538. extra: 975/773,
  30539. bottom: 0/975
  30540. }
  30541. },
  30542. frontNsfw: {
  30543. height: math.unit(5 + 7/12, "feet"),
  30544. weight: math.unit(220, "lb"),
  30545. name: "Front (NSFW)",
  30546. image: {
  30547. source: "./media/characters/nicki/front-nsfw.svg",
  30548. extra: 453/419,
  30549. bottom: 7/460
  30550. }
  30551. },
  30552. frontNsfwAlt: {
  30553. height: math.unit(5 + 7/12, "feet"),
  30554. weight: math.unit(220, "lb"),
  30555. name: "Front (Alt, NSFW)",
  30556. image: {
  30557. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30558. extra: 435/411,
  30559. bottom: 12/447
  30560. }
  30561. },
  30562. backNsfw: {
  30563. height: math.unit(5 + 7/12, "feet"),
  30564. weight: math.unit(220, "lb"),
  30565. name: "Back (NSFW)",
  30566. image: {
  30567. source: "./media/characters/nicki/back-nsfw.svg",
  30568. extra: 440/413,
  30569. bottom: 19/459
  30570. }
  30571. },
  30572. head: {
  30573. height: math.unit(2.1, "feet"),
  30574. name: "Head",
  30575. image: {
  30576. source: "./media/characters/nicki/head.svg"
  30577. }
  30578. },
  30579. paw: {
  30580. height: math.unit(1.88, "feet"),
  30581. name: "Paw",
  30582. image: {
  30583. source: "./media/characters/nicki/paw.svg"
  30584. }
  30585. },
  30586. },
  30587. [
  30588. {
  30589. name: "Normal",
  30590. height: math.unit(5 + 7/12, "feet"),
  30591. default: true
  30592. },
  30593. ]
  30594. ))
  30595. characterMakers.push(() => makeCharacter(
  30596. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30597. {
  30598. front: {
  30599. height: math.unit(7 + 10/12, "feet"),
  30600. weight: math.unit(3.5, "tons"),
  30601. name: "Front",
  30602. image: {
  30603. source: "./media/characters/lee/front.svg",
  30604. extra: 1773/1615,
  30605. bottom: 86/1859
  30606. }
  30607. },
  30608. hand: {
  30609. height: math.unit(1.78, "feet"),
  30610. name: "Hand",
  30611. image: {
  30612. source: "./media/characters/lee/hand.svg"
  30613. }
  30614. },
  30615. maw: {
  30616. height: math.unit(1.18, "feet"),
  30617. name: "Maw",
  30618. image: {
  30619. source: "./media/characters/lee/maw.svg"
  30620. }
  30621. },
  30622. },
  30623. [
  30624. {
  30625. name: "Normal",
  30626. height: math.unit(7 + 10/12, "feet"),
  30627. default: true
  30628. },
  30629. ]
  30630. ))
  30631. characterMakers.push(() => makeCharacter(
  30632. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30633. {
  30634. front: {
  30635. height: math.unit(9, "feet"),
  30636. name: "Front",
  30637. image: {
  30638. source: "./media/characters/guti/front.svg",
  30639. extra: 4551/4355,
  30640. bottom: 123/4674
  30641. }
  30642. },
  30643. tongue: {
  30644. height: math.unit(1, "feet"),
  30645. name: "Tongue",
  30646. image: {
  30647. source: "./media/characters/guti/tongue.svg"
  30648. }
  30649. },
  30650. paw: {
  30651. height: math.unit(1.18, "feet"),
  30652. name: "Paw",
  30653. image: {
  30654. source: "./media/characters/guti/paw.svg"
  30655. }
  30656. },
  30657. },
  30658. [
  30659. {
  30660. name: "Normal",
  30661. height: math.unit(9, "feet"),
  30662. default: true
  30663. },
  30664. ]
  30665. ))
  30666. characterMakers.push(() => makeCharacter(
  30667. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30668. {
  30669. side: {
  30670. height: math.unit(5, "meters"),
  30671. name: "Side",
  30672. image: {
  30673. source: "./media/characters/vesper/side.svg",
  30674. extra: 1605/1518,
  30675. bottom: 0/1605
  30676. }
  30677. },
  30678. },
  30679. [
  30680. {
  30681. name: "Small",
  30682. height: math.unit(5, "meters")
  30683. },
  30684. {
  30685. name: "Sage",
  30686. height: math.unit(100, "meters"),
  30687. default: true
  30688. },
  30689. {
  30690. name: "Fun Size",
  30691. height: math.unit(600, "meters")
  30692. },
  30693. {
  30694. name: "Goddess",
  30695. height: math.unit(20000, "km")
  30696. },
  30697. {
  30698. name: "Maximum",
  30699. height: math.unit(5, "galaxies")
  30700. },
  30701. ]
  30702. ))
  30703. characterMakers.push(() => makeCharacter(
  30704. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30705. {
  30706. front: {
  30707. height: math.unit(6 + 3/12, "feet"),
  30708. weight: math.unit(190, "lb"),
  30709. name: "Front",
  30710. image: {
  30711. source: "./media/characters/gawain/front.svg",
  30712. extra: 2222/2139,
  30713. bottom: 90/2312
  30714. }
  30715. },
  30716. back: {
  30717. height: math.unit(6 + 3/12, "feet"),
  30718. weight: math.unit(190, "lb"),
  30719. name: "Back",
  30720. image: {
  30721. source: "./media/characters/gawain/back.svg",
  30722. extra: 2199/2111,
  30723. bottom: 73/2272
  30724. }
  30725. },
  30726. },
  30727. [
  30728. {
  30729. name: "Normal",
  30730. height: math.unit(6 + 3/12, "feet"),
  30731. default: true
  30732. },
  30733. ]
  30734. ))
  30735. characterMakers.push(() => makeCharacter(
  30736. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30737. {
  30738. side: {
  30739. height: math.unit(3.5, "meters"),
  30740. weight: math.unit(16000, "lb"),
  30741. name: "Side",
  30742. image: {
  30743. source: "./media/characters/dascalti/side.svg",
  30744. extra: 392/273,
  30745. bottom: 47/439
  30746. }
  30747. },
  30748. breath: {
  30749. height: math.unit(7.4, "feet"),
  30750. name: "Breath",
  30751. image: {
  30752. source: "./media/characters/dascalti/breath.svg"
  30753. }
  30754. },
  30755. fed: {
  30756. height: math.unit(3.6, "meters"),
  30757. weight: math.unit(16000, "lb"),
  30758. name: "Fed",
  30759. image: {
  30760. source: "./media/characters/dascalti/fed.svg",
  30761. extra: 1419/820,
  30762. bottom: 95/1514
  30763. }
  30764. },
  30765. },
  30766. [
  30767. {
  30768. name: "Normal",
  30769. height: math.unit(3.5, "meters"),
  30770. default: true
  30771. },
  30772. ]
  30773. ))
  30774. characterMakers.push(() => makeCharacter(
  30775. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30776. {
  30777. front: {
  30778. height: math.unit(3 + 5/12, "feet"),
  30779. name: "Front",
  30780. image: {
  30781. source: "./media/characters/mauve/front.svg",
  30782. extra: 1126/1033,
  30783. bottom: 65/1191
  30784. }
  30785. },
  30786. side: {
  30787. height: math.unit(3 + 5/12, "feet"),
  30788. name: "Side",
  30789. image: {
  30790. source: "./media/characters/mauve/side.svg",
  30791. extra: 1089/1001,
  30792. bottom: 29/1118
  30793. }
  30794. },
  30795. back: {
  30796. height: math.unit(3 + 5/12, "feet"),
  30797. name: "Back",
  30798. image: {
  30799. source: "./media/characters/mauve/back.svg",
  30800. extra: 1173/1053,
  30801. bottom: 109/1282
  30802. }
  30803. },
  30804. },
  30805. [
  30806. {
  30807. name: "Normal",
  30808. height: math.unit(3 + 5/12, "feet"),
  30809. default: true
  30810. },
  30811. ]
  30812. ))
  30813. characterMakers.push(() => makeCharacter(
  30814. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30815. {
  30816. front: {
  30817. height: math.unit(6 + 3/12, "feet"),
  30818. weight: math.unit(430, "lb"),
  30819. name: "Front",
  30820. image: {
  30821. source: "./media/characters/carlos/front.svg",
  30822. extra: 1964/1913,
  30823. bottom: 70/2034
  30824. }
  30825. },
  30826. },
  30827. [
  30828. {
  30829. name: "Normal",
  30830. height: math.unit(6 + 3/12, "feet"),
  30831. default: true
  30832. },
  30833. ]
  30834. ))
  30835. characterMakers.push(() => makeCharacter(
  30836. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30837. {
  30838. back: {
  30839. height: math.unit(5 + 10/12, "feet"),
  30840. weight: math.unit(200, "lb"),
  30841. name: "Back",
  30842. image: {
  30843. source: "./media/characters/jax/back.svg",
  30844. extra: 764/739,
  30845. bottom: 25/789
  30846. }
  30847. },
  30848. },
  30849. [
  30850. {
  30851. name: "Normal",
  30852. height: math.unit(5 + 10/12, "feet"),
  30853. default: true
  30854. },
  30855. ]
  30856. ))
  30857. characterMakers.push(() => makeCharacter(
  30858. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30859. {
  30860. front: {
  30861. height: math.unit(8, "feet"),
  30862. weight: math.unit(250, "lb"),
  30863. name: "Front",
  30864. image: {
  30865. source: "./media/characters/eikthynir/front.svg",
  30866. extra: 1332/1166,
  30867. bottom: 82/1414
  30868. }
  30869. },
  30870. back: {
  30871. height: math.unit(8, "feet"),
  30872. weight: math.unit(250, "lb"),
  30873. name: "Back",
  30874. image: {
  30875. source: "./media/characters/eikthynir/back.svg",
  30876. extra: 1342/1190,
  30877. bottom: 19/1361
  30878. }
  30879. },
  30880. dick: {
  30881. height: math.unit(2.35, "feet"),
  30882. name: "Dick",
  30883. image: {
  30884. source: "./media/characters/eikthynir/dick.svg"
  30885. }
  30886. },
  30887. },
  30888. [
  30889. {
  30890. name: "Normal",
  30891. height: math.unit(8, "feet"),
  30892. default: true
  30893. },
  30894. ]
  30895. ))
  30896. characterMakers.push(() => makeCharacter(
  30897. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30898. {
  30899. front: {
  30900. height: math.unit(99, "meters"),
  30901. weight: math.unit(13000, "tons"),
  30902. name: "Front",
  30903. image: {
  30904. source: "./media/characters/zlmos/front.svg",
  30905. extra: 2202/1992,
  30906. bottom: 315/2517
  30907. }
  30908. },
  30909. },
  30910. [
  30911. {
  30912. name: "Macro",
  30913. height: math.unit(99, "meters"),
  30914. default: true
  30915. },
  30916. ]
  30917. ))
  30918. characterMakers.push(() => makeCharacter(
  30919. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30920. {
  30921. front: {
  30922. height: math.unit(6 + 5/12, "feet"),
  30923. name: "Front",
  30924. image: {
  30925. source: "./media/characters/purri/front.svg",
  30926. extra: 1698/1610,
  30927. bottom: 32/1730
  30928. }
  30929. },
  30930. frontAlt: {
  30931. height: math.unit(6 + 5/12, "feet"),
  30932. name: "Front (Alt)",
  30933. image: {
  30934. source: "./media/characters/purri/front-alt.svg",
  30935. extra: 450/420,
  30936. bottom: 26/476
  30937. }
  30938. },
  30939. boots: {
  30940. height: math.unit(5.5, "feet"),
  30941. name: "Boots",
  30942. image: {
  30943. source: "./media/characters/purri/boots.svg",
  30944. extra: 905/853,
  30945. bottom: 18/923
  30946. }
  30947. },
  30948. lying: {
  30949. height: math.unit(2, "feet"),
  30950. name: "Lying",
  30951. image: {
  30952. source: "./media/characters/purri/lying.svg",
  30953. extra: 940/843,
  30954. bottom: 146/1086
  30955. }
  30956. },
  30957. devious: {
  30958. height: math.unit(1.77, "feet"),
  30959. name: "Devious",
  30960. image: {
  30961. source: "./media/characters/purri/devious.svg",
  30962. extra: 1440/1155,
  30963. bottom: 147/1587
  30964. }
  30965. },
  30966. bean: {
  30967. height: math.unit(1.94, "feet"),
  30968. name: "Bean",
  30969. image: {
  30970. source: "./media/characters/purri/bean.svg"
  30971. }
  30972. },
  30973. },
  30974. [
  30975. {
  30976. name: "Micro",
  30977. height: math.unit(1, "mm")
  30978. },
  30979. {
  30980. name: "Normal",
  30981. height: math.unit(6 + 5/12, "feet"),
  30982. default: true
  30983. },
  30984. {
  30985. name: "Macro :3c",
  30986. height: math.unit(2, "miles")
  30987. },
  30988. ]
  30989. ))
  30990. characterMakers.push(() => makeCharacter(
  30991. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30992. {
  30993. front: {
  30994. height: math.unit(6 + 2/12, "feet"),
  30995. weight: math.unit(250, "lb"),
  30996. name: "Front",
  30997. image: {
  30998. source: "./media/characters/moonlight/front.svg",
  30999. extra: 1044/908,
  31000. bottom: 56/1100
  31001. }
  31002. },
  31003. feral: {
  31004. height: math.unit(3 + 1/12, "feet"),
  31005. weight: math.unit(50, "kg"),
  31006. name: "Feral",
  31007. image: {
  31008. source: "./media/characters/moonlight/feral.svg",
  31009. extra: 3705/2791,
  31010. bottom: 145/3850
  31011. }
  31012. },
  31013. paw: {
  31014. height: math.unit(1, "feet"),
  31015. name: "Paw",
  31016. image: {
  31017. source: "./media/characters/moonlight/paw.svg"
  31018. }
  31019. },
  31020. paws: {
  31021. height: math.unit(0.98, "feet"),
  31022. name: "Paws",
  31023. image: {
  31024. source: "./media/characters/moonlight/paws.svg",
  31025. extra: 939/939,
  31026. bottom: 50/989
  31027. }
  31028. },
  31029. mouth: {
  31030. height: math.unit(0.48, "feet"),
  31031. name: "Mouth",
  31032. image: {
  31033. source: "./media/characters/moonlight/mouth.svg"
  31034. }
  31035. },
  31036. dick: {
  31037. height: math.unit(1.46, "feet"),
  31038. name: "Dick",
  31039. image: {
  31040. source: "./media/characters/moonlight/dick.svg"
  31041. }
  31042. },
  31043. },
  31044. [
  31045. {
  31046. name: "Normal",
  31047. height: math.unit(6 + 2/12, "feet"),
  31048. default: true
  31049. },
  31050. {
  31051. name: "Macro",
  31052. height: math.unit(300, "feet")
  31053. },
  31054. {
  31055. name: "Macro+",
  31056. height: math.unit(1, "mile")
  31057. },
  31058. {
  31059. name: "Mt. Moon",
  31060. height: math.unit(5, "miles")
  31061. },
  31062. {
  31063. name: "Megamacro",
  31064. height: math.unit(15, "miles")
  31065. },
  31066. ]
  31067. ))
  31068. characterMakers.push(() => makeCharacter(
  31069. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31070. {
  31071. back: {
  31072. height: math.unit(6, "feet"),
  31073. weight: math.unit(150, "lb"),
  31074. name: "Back",
  31075. image: {
  31076. source: "./media/characters/sylen/back.svg",
  31077. extra: 1335/1273,
  31078. bottom: 107/1442
  31079. }
  31080. },
  31081. },
  31082. [
  31083. {
  31084. name: "Normal",
  31085. height: math.unit(5 + 5/12, "feet")
  31086. },
  31087. {
  31088. name: "Megamacro",
  31089. height: math.unit(3, "miles"),
  31090. default: true
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31096. {
  31097. front: {
  31098. height: math.unit(6, "feet"),
  31099. weight: math.unit(190, "lb"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/huttser/front.svg",
  31103. extra: 1152/1058,
  31104. bottom: 23/1175
  31105. }
  31106. },
  31107. side: {
  31108. height: math.unit(6, "feet"),
  31109. weight: math.unit(190, "lb"),
  31110. name: "Side",
  31111. image: {
  31112. source: "./media/characters/huttser/side.svg",
  31113. extra: 1174/1065,
  31114. bottom: 18/1192
  31115. }
  31116. },
  31117. back: {
  31118. height: math.unit(6, "feet"),
  31119. weight: math.unit(190, "lb"),
  31120. name: "Back",
  31121. image: {
  31122. source: "./media/characters/huttser/back.svg",
  31123. extra: 1158/1056,
  31124. bottom: 12/1170
  31125. }
  31126. },
  31127. },
  31128. [
  31129. ]
  31130. ))
  31131. characterMakers.push(() => makeCharacter(
  31132. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31133. {
  31134. side: {
  31135. height: math.unit(12 + 9/12, "feet"),
  31136. weight: math.unit(15000, "lb"),
  31137. name: "Side",
  31138. image: {
  31139. source: "./media/characters/faan/side.svg",
  31140. extra: 2747/2697,
  31141. bottom: 0/2747
  31142. }
  31143. },
  31144. front: {
  31145. height: math.unit(12 + 9/12, "feet"),
  31146. weight: math.unit(15000, "lb"),
  31147. name: "Front",
  31148. image: {
  31149. source: "./media/characters/faan/front.svg",
  31150. extra: 607/571,
  31151. bottom: 24/631
  31152. }
  31153. },
  31154. head: {
  31155. height: math.unit(2.85, "feet"),
  31156. name: "Head",
  31157. image: {
  31158. source: "./media/characters/faan/head.svg"
  31159. }
  31160. },
  31161. headAlt: {
  31162. height: math.unit(3.13, "feet"),
  31163. name: "Head-alt",
  31164. image: {
  31165. source: "./media/characters/faan/head-alt.svg"
  31166. }
  31167. },
  31168. },
  31169. [
  31170. {
  31171. name: "Normal",
  31172. height: math.unit(12 + 9/12, "feet"),
  31173. default: true
  31174. },
  31175. ]
  31176. ))
  31177. characterMakers.push(() => makeCharacter(
  31178. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31179. {
  31180. front: {
  31181. height: math.unit(6, "feet"),
  31182. weight: math.unit(300, "lb"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/tanio/front.svg",
  31186. extra: 711/673,
  31187. bottom: 25/736
  31188. }
  31189. },
  31190. },
  31191. [
  31192. {
  31193. name: "Normal",
  31194. height: math.unit(6, "feet"),
  31195. default: true
  31196. },
  31197. ]
  31198. ))
  31199. characterMakers.push(() => makeCharacter(
  31200. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31201. {
  31202. front: {
  31203. height: math.unit(3, "inches"),
  31204. name: "Front",
  31205. image: {
  31206. source: "./media/characters/noboru/front.svg",
  31207. extra: 1039/932,
  31208. bottom: 18/1057
  31209. }
  31210. },
  31211. },
  31212. [
  31213. {
  31214. name: "Micro",
  31215. height: math.unit(3, "inches"),
  31216. default: true
  31217. },
  31218. ]
  31219. ))
  31220. characterMakers.push(() => makeCharacter(
  31221. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31222. {
  31223. front: {
  31224. height: math.unit(1.85, "meters"),
  31225. weight: math.unit(80, "kg"),
  31226. name: "Front",
  31227. image: {
  31228. source: "./media/characters/daniel-barrett/front.svg",
  31229. extra: 355/337,
  31230. bottom: 9/364
  31231. }
  31232. },
  31233. },
  31234. [
  31235. {
  31236. name: "Pico",
  31237. height: math.unit(0.0433, "mm")
  31238. },
  31239. {
  31240. name: "Nano",
  31241. height: math.unit(1.5, "mm")
  31242. },
  31243. {
  31244. name: "Micro",
  31245. height: math.unit(5.3, "cm"),
  31246. default: true
  31247. },
  31248. {
  31249. name: "Normal",
  31250. height: math.unit(1.85, "meters")
  31251. },
  31252. {
  31253. name: "Macro",
  31254. height: math.unit(64.7, "meters")
  31255. },
  31256. {
  31257. name: "Megamacro",
  31258. height: math.unit(2.26, "km")
  31259. },
  31260. {
  31261. name: "Gigamacro",
  31262. height: math.unit(79, "km")
  31263. },
  31264. {
  31265. name: "Teramacro",
  31266. height: math.unit(2765, "km")
  31267. },
  31268. {
  31269. name: "Petamacro",
  31270. height: math.unit(96678, "km")
  31271. },
  31272. ]
  31273. ))
  31274. characterMakers.push(() => makeCharacter(
  31275. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31276. {
  31277. front: {
  31278. height: math.unit(30, "meters"),
  31279. weight: math.unit(400, "tons"),
  31280. name: "Front",
  31281. image: {
  31282. source: "./media/characters/zeel/front.svg",
  31283. extra: 2599/2599,
  31284. bottom: 226/2825
  31285. }
  31286. },
  31287. },
  31288. [
  31289. {
  31290. name: "Macro",
  31291. height: math.unit(30, "meters"),
  31292. default: true
  31293. },
  31294. ]
  31295. ))
  31296. characterMakers.push(() => makeCharacter(
  31297. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31298. {
  31299. front: {
  31300. height: math.unit(6 + 7/12, "feet"),
  31301. weight: math.unit(210, "lb"),
  31302. name: "Front",
  31303. image: {
  31304. source: "./media/characters/tarn/front.svg",
  31305. extra: 3517/3220,
  31306. bottom: 91/3608
  31307. }
  31308. },
  31309. back: {
  31310. height: math.unit(6 + 7/12, "feet"),
  31311. weight: math.unit(210, "lb"),
  31312. name: "Back",
  31313. image: {
  31314. source: "./media/characters/tarn/back.svg",
  31315. extra: 3566/3241,
  31316. bottom: 34/3600
  31317. }
  31318. },
  31319. dick: {
  31320. height: math.unit(1.65, "feet"),
  31321. name: "Dick",
  31322. image: {
  31323. source: "./media/characters/tarn/dick.svg"
  31324. }
  31325. },
  31326. paw: {
  31327. height: math.unit(1.80, "feet"),
  31328. name: "Paw",
  31329. image: {
  31330. source: "./media/characters/tarn/paw.svg"
  31331. }
  31332. },
  31333. tongue: {
  31334. height: math.unit(0.97, "feet"),
  31335. name: "Tongue",
  31336. image: {
  31337. source: "./media/characters/tarn/tongue.svg"
  31338. }
  31339. },
  31340. },
  31341. [
  31342. {
  31343. name: "Micro",
  31344. height: math.unit(4, "inches")
  31345. },
  31346. {
  31347. name: "Normal",
  31348. height: math.unit(6 + 7/12, "feet"),
  31349. default: true
  31350. },
  31351. {
  31352. name: "Macro",
  31353. height: math.unit(300, "feet")
  31354. },
  31355. ]
  31356. ))
  31357. characterMakers.push(() => makeCharacter(
  31358. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31359. {
  31360. front: {
  31361. height: math.unit(5 + 7/12, "feet"),
  31362. weight: math.unit(80, "kg"),
  31363. name: "Front",
  31364. image: {
  31365. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31366. extra: 3023/2865,
  31367. bottom: 33/3056
  31368. }
  31369. },
  31370. back: {
  31371. height: math.unit(5 + 7/12, "feet"),
  31372. weight: math.unit(80, "kg"),
  31373. name: "Back",
  31374. image: {
  31375. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31376. extra: 3020/2886,
  31377. bottom: 30/3050
  31378. }
  31379. },
  31380. dick: {
  31381. height: math.unit(0.98, "feet"),
  31382. name: "Dick",
  31383. image: {
  31384. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31385. }
  31386. },
  31387. anatomy: {
  31388. height: math.unit(2.86, "feet"),
  31389. name: "Anatomy",
  31390. image: {
  31391. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31392. }
  31393. },
  31394. },
  31395. [
  31396. {
  31397. name: "Really Small",
  31398. height: math.unit(2, "inches")
  31399. },
  31400. {
  31401. name: "Micro",
  31402. height: math.unit(5.583, "inches")
  31403. },
  31404. {
  31405. name: "Normal",
  31406. height: math.unit(5 + 7/12, "feet"),
  31407. default: true
  31408. },
  31409. {
  31410. name: "Macro",
  31411. height: math.unit(67, "feet")
  31412. },
  31413. {
  31414. name: "Megamacro",
  31415. height: math.unit(134, "feet")
  31416. },
  31417. ]
  31418. ))
  31419. characterMakers.push(() => makeCharacter(
  31420. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31421. {
  31422. front: {
  31423. height: math.unit(9, "feet"),
  31424. weight: math.unit(120, "lb"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/sally/front.svg",
  31428. extra: 1506/1349,
  31429. bottom: 66/1572
  31430. }
  31431. },
  31432. },
  31433. [
  31434. {
  31435. name: "Normal",
  31436. height: math.unit(9, "feet"),
  31437. default: true
  31438. },
  31439. ]
  31440. ))
  31441. characterMakers.push(() => makeCharacter(
  31442. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31443. {
  31444. front: {
  31445. height: math.unit(8, "feet"),
  31446. weight: math.unit(900, "lb"),
  31447. name: "Front",
  31448. image: {
  31449. source: "./media/characters/owen/front.svg",
  31450. extra: 1761/1657,
  31451. bottom: 74/1835
  31452. }
  31453. },
  31454. side: {
  31455. height: math.unit(8, "feet"),
  31456. weight: math.unit(900, "lb"),
  31457. name: "Side",
  31458. image: {
  31459. source: "./media/characters/owen/side.svg",
  31460. extra: 1797/1734,
  31461. bottom: 30/1827
  31462. }
  31463. },
  31464. back: {
  31465. height: math.unit(8, "feet"),
  31466. weight: math.unit(900, "lb"),
  31467. name: "Back",
  31468. image: {
  31469. source: "./media/characters/owen/back.svg",
  31470. extra: 1796/1706,
  31471. bottom: 59/1855
  31472. }
  31473. },
  31474. maw: {
  31475. height: math.unit(1.76, "feet"),
  31476. name: "Maw",
  31477. image: {
  31478. source: "./media/characters/owen/maw.svg"
  31479. }
  31480. },
  31481. },
  31482. [
  31483. {
  31484. name: "Normal",
  31485. height: math.unit(8, "feet"),
  31486. default: true
  31487. },
  31488. ]
  31489. ))
  31490. characterMakers.push(() => makeCharacter(
  31491. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31492. {
  31493. front: {
  31494. height: math.unit(4, "feet"),
  31495. weight: math.unit(400, "lb"),
  31496. name: "Front",
  31497. image: {
  31498. source: "./media/characters/ryth/front.svg",
  31499. extra: 876/691,
  31500. bottom: 25/901
  31501. }
  31502. },
  31503. goia: {
  31504. height: math.unit(12, "feet"),
  31505. weight: math.unit(10800, "lb"),
  31506. name: "Goia",
  31507. image: {
  31508. source: "./media/characters/ryth/goia.svg",
  31509. extra: 3450/3198,
  31510. bottom: 61/3511
  31511. }
  31512. },
  31513. },
  31514. [
  31515. {
  31516. name: "Normal",
  31517. height: math.unit(4, "feet"),
  31518. default: true
  31519. },
  31520. ]
  31521. ))
  31522. characterMakers.push(() => makeCharacter(
  31523. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31524. {
  31525. front: {
  31526. height: math.unit(7, "feet"),
  31527. weight: math.unit(180, "lb"),
  31528. name: "Front",
  31529. image: {
  31530. source: "./media/characters/necrolance/front.svg",
  31531. extra: 1062/947,
  31532. bottom: 41/1103
  31533. }
  31534. },
  31535. back: {
  31536. height: math.unit(7, "feet"),
  31537. weight: math.unit(180, "lb"),
  31538. name: "Back",
  31539. image: {
  31540. source: "./media/characters/necrolance/back.svg",
  31541. extra: 1045/984,
  31542. bottom: 14/1059
  31543. }
  31544. },
  31545. wing: {
  31546. height: math.unit(2.67, "feet"),
  31547. name: "Wing",
  31548. image: {
  31549. source: "./media/characters/necrolance/wing.svg"
  31550. }
  31551. },
  31552. },
  31553. [
  31554. {
  31555. name: "Normal",
  31556. height: math.unit(7, "feet"),
  31557. default: true
  31558. },
  31559. ]
  31560. ))
  31561. characterMakers.push(() => makeCharacter(
  31562. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31563. {
  31564. front: {
  31565. height: math.unit(76, "meters"),
  31566. weight: math.unit(30000, "tons"),
  31567. name: "Front",
  31568. image: {
  31569. source: "./media/characters/tyler/front.svg",
  31570. extra: 1640/1640,
  31571. bottom: 114/1754
  31572. }
  31573. },
  31574. },
  31575. [
  31576. {
  31577. name: "Macro",
  31578. height: math.unit(76, "meters"),
  31579. default: true
  31580. },
  31581. ]
  31582. ))
  31583. characterMakers.push(() => makeCharacter(
  31584. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31585. {
  31586. front: {
  31587. height: math.unit(4 + 11/12, "feet"),
  31588. weight: math.unit(132, "lb"),
  31589. name: "Front",
  31590. image: {
  31591. source: "./media/characters/icey/front.svg",
  31592. extra: 2750/2550,
  31593. bottom: 33/2783
  31594. }
  31595. },
  31596. back: {
  31597. height: math.unit(4 + 11/12, "feet"),
  31598. weight: math.unit(132, "lb"),
  31599. name: "Back",
  31600. image: {
  31601. source: "./media/characters/icey/back.svg",
  31602. extra: 2624/2481,
  31603. bottom: 35/2659
  31604. }
  31605. },
  31606. },
  31607. [
  31608. {
  31609. name: "Normal",
  31610. height: math.unit(4 + 11/12, "feet"),
  31611. default: true
  31612. },
  31613. ]
  31614. ))
  31615. characterMakers.push(() => makeCharacter(
  31616. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31617. {
  31618. front: {
  31619. height: math.unit(100, "feet"),
  31620. weight: math.unit(0, "lb"),
  31621. name: "Front",
  31622. image: {
  31623. source: "./media/characters/smile/front.svg",
  31624. extra: 2983/2912,
  31625. bottom: 162/3145
  31626. }
  31627. },
  31628. back: {
  31629. height: math.unit(100, "feet"),
  31630. weight: math.unit(0, "lb"),
  31631. name: "Back",
  31632. image: {
  31633. source: "./media/characters/smile/back.svg",
  31634. extra: 3143/3031,
  31635. bottom: 91/3234
  31636. }
  31637. },
  31638. head: {
  31639. height: math.unit(26.3, "feet"),
  31640. weight: math.unit(0, "lb"),
  31641. name: "Head",
  31642. image: {
  31643. source: "./media/characters/smile/head.svg"
  31644. }
  31645. },
  31646. collar: {
  31647. height: math.unit(5.3, "feet"),
  31648. weight: math.unit(0, "lb"),
  31649. name: "Collar",
  31650. image: {
  31651. source: "./media/characters/smile/collar.svg"
  31652. }
  31653. },
  31654. },
  31655. [
  31656. {
  31657. name: "Macro",
  31658. height: math.unit(100, "feet"),
  31659. default: true
  31660. },
  31661. ]
  31662. ))
  31663. characterMakers.push(() => makeCharacter(
  31664. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31665. {
  31666. dragon: {
  31667. height: math.unit(26, "feet"),
  31668. weight: math.unit(36, "tons"),
  31669. name: "Dragon",
  31670. image: {
  31671. source: "./media/characters/arimphae/dragon.svg",
  31672. extra: 1574/983,
  31673. bottom: 357/1931
  31674. }
  31675. },
  31676. drake: {
  31677. height: math.unit(9, "feet"),
  31678. weight: math.unit(1.5, "tons"),
  31679. name: "Drake",
  31680. image: {
  31681. source: "./media/characters/arimphae/drake.svg",
  31682. extra: 1120/925,
  31683. bottom: 435/1555
  31684. }
  31685. },
  31686. },
  31687. [
  31688. {
  31689. name: "Small",
  31690. height: math.unit(26*5/9, "feet")
  31691. },
  31692. {
  31693. name: "Normal",
  31694. height: math.unit(26, "feet"),
  31695. default: true
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31701. {
  31702. front: {
  31703. height: math.unit(8 + 9/12, "feet"),
  31704. name: "Front",
  31705. image: {
  31706. source: "./media/characters/xander/front.svg",
  31707. extra: 848/673,
  31708. bottom: 62/910
  31709. }
  31710. },
  31711. },
  31712. [
  31713. {
  31714. name: "Normal",
  31715. height: math.unit(8 + 9/12, "feet"),
  31716. default: true
  31717. },
  31718. {
  31719. name: "Gaze Grabber",
  31720. height: math.unit(13 + 8/12, "feet")
  31721. },
  31722. {
  31723. name: "Jaw Dropper",
  31724. height: math.unit(27, "feet")
  31725. },
  31726. {
  31727. name: "Show Stopper",
  31728. height: math.unit(136, "feet")
  31729. },
  31730. {
  31731. name: "Superstar",
  31732. height: math.unit(1.9e6, "miles")
  31733. },
  31734. ]
  31735. ))
  31736. characterMakers.push(() => makeCharacter(
  31737. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31738. {
  31739. side: {
  31740. height: math.unit(2100, "feet"),
  31741. name: "Side",
  31742. image: {
  31743. source: "./media/characters/osiris/side.svg",
  31744. extra: 1105/939,
  31745. bottom: 167/1272
  31746. }
  31747. },
  31748. },
  31749. [
  31750. {
  31751. name: "Macro",
  31752. height: math.unit(2100, "feet"),
  31753. default: true
  31754. },
  31755. ]
  31756. ))
  31757. characterMakers.push(() => makeCharacter(
  31758. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31759. {
  31760. front: {
  31761. height: math.unit(6 + 8/12, "feet"),
  31762. weight: math.unit(225, "lb"),
  31763. name: "Front",
  31764. image: {
  31765. source: "./media/characters/rhys-londe/front.svg",
  31766. extra: 2258/2141,
  31767. bottom: 188/2446
  31768. }
  31769. },
  31770. back: {
  31771. height: math.unit(6 + 8/12, "feet"),
  31772. weight: math.unit(225, "lb"),
  31773. name: "Back",
  31774. image: {
  31775. source: "./media/characters/rhys-londe/back.svg",
  31776. extra: 2237/2137,
  31777. bottom: 63/2300
  31778. }
  31779. },
  31780. frontNsfw: {
  31781. height: math.unit(6 + 8/12, "feet"),
  31782. weight: math.unit(225, "lb"),
  31783. name: "Front (NSFW)",
  31784. image: {
  31785. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31786. extra: 2258/2141,
  31787. bottom: 188/2446
  31788. }
  31789. },
  31790. backNsfw: {
  31791. height: math.unit(6 + 8/12, "feet"),
  31792. weight: math.unit(225, "lb"),
  31793. name: "Back (NSFW)",
  31794. image: {
  31795. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31796. extra: 2237/2137,
  31797. bottom: 63/2300
  31798. }
  31799. },
  31800. dick: {
  31801. height: math.unit(30, "inches"),
  31802. name: "Dick",
  31803. image: {
  31804. source: "./media/characters/rhys-londe/dick.svg"
  31805. }
  31806. },
  31807. maw: {
  31808. height: math.unit(1.6, "feet"),
  31809. name: "Maw",
  31810. image: {
  31811. source: "./media/characters/rhys-londe/maw.svg"
  31812. }
  31813. },
  31814. },
  31815. [
  31816. {
  31817. name: "Normal",
  31818. height: math.unit(6 + 8/12, "feet"),
  31819. default: true
  31820. },
  31821. ]
  31822. ))
  31823. characterMakers.push(() => makeCharacter(
  31824. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31825. {
  31826. front: {
  31827. height: math.unit(3 + 10/12, "feet"),
  31828. weight: math.unit(90, "lb"),
  31829. name: "Front",
  31830. image: {
  31831. source: "./media/characters/taivas-ensim/front.svg",
  31832. extra: 1327/1216,
  31833. bottom: 96/1423
  31834. }
  31835. },
  31836. back: {
  31837. height: math.unit(3 + 10/12, "feet"),
  31838. weight: math.unit(90, "lb"),
  31839. name: "Back",
  31840. image: {
  31841. source: "./media/characters/taivas-ensim/back.svg",
  31842. extra: 1355/1247,
  31843. bottom: 11/1366
  31844. }
  31845. },
  31846. frontNsfw: {
  31847. height: math.unit(3 + 10/12, "feet"),
  31848. weight: math.unit(90, "lb"),
  31849. name: "Front (NSFW)",
  31850. image: {
  31851. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31852. extra: 1327/1216,
  31853. bottom: 96/1423
  31854. }
  31855. },
  31856. backNsfw: {
  31857. height: math.unit(3 + 10/12, "feet"),
  31858. weight: math.unit(90, "lb"),
  31859. name: "Back (NSFW)",
  31860. image: {
  31861. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31862. extra: 1355/1247,
  31863. bottom: 11/1366
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Normal",
  31870. height: math.unit(3 + 10/12, "feet"),
  31871. default: true
  31872. },
  31873. ]
  31874. ))
  31875. characterMakers.push(() => makeCharacter(
  31876. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31877. {
  31878. front: {
  31879. height: math.unit(9 + 6/12, "feet"),
  31880. weight: math.unit(940, "lb"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/byliss/front.svg",
  31884. extra: 1327/1290,
  31885. bottom: 82/1409
  31886. }
  31887. },
  31888. back: {
  31889. height: math.unit(9 + 6/12, "feet"),
  31890. weight: math.unit(940, "lb"),
  31891. name: "Back",
  31892. image: {
  31893. source: "./media/characters/byliss/back.svg",
  31894. extra: 1376/1349,
  31895. bottom: 9/1385
  31896. }
  31897. },
  31898. frontNsfw: {
  31899. height: math.unit(9 + 6/12, "feet"),
  31900. weight: math.unit(940, "lb"),
  31901. name: "Front (NSFW)",
  31902. image: {
  31903. source: "./media/characters/byliss/front-nsfw.svg",
  31904. extra: 1327/1290,
  31905. bottom: 82/1409
  31906. }
  31907. },
  31908. backNsfw: {
  31909. height: math.unit(9 + 6/12, "feet"),
  31910. weight: math.unit(940, "lb"),
  31911. name: "Back (NSFW)",
  31912. image: {
  31913. source: "./media/characters/byliss/back-nsfw.svg",
  31914. extra: 1376/1349,
  31915. bottom: 9/1385
  31916. }
  31917. },
  31918. },
  31919. [
  31920. {
  31921. name: "Normal",
  31922. height: math.unit(9 + 6/12, "feet"),
  31923. default: true
  31924. },
  31925. ]
  31926. ))
  31927. characterMakers.push(() => makeCharacter(
  31928. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31929. {
  31930. front: {
  31931. height: math.unit(5 + 2/12, "feet"),
  31932. weight: math.unit(200, "lb"),
  31933. name: "Front",
  31934. image: {
  31935. source: "./media/characters/noraly/front.svg",
  31936. extra: 4985/4773,
  31937. bottom: 150/5135
  31938. }
  31939. },
  31940. full: {
  31941. height: math.unit(5 + 2/12, "feet"),
  31942. weight: math.unit(164, "lb"),
  31943. name: "Full",
  31944. image: {
  31945. source: "./media/characters/noraly/full.svg",
  31946. extra: 1114/1059,
  31947. bottom: 35/1149
  31948. }
  31949. },
  31950. fuller: {
  31951. height: math.unit(5 + 2/12, "feet"),
  31952. weight: math.unit(230, "lb"),
  31953. name: "Fuller",
  31954. image: {
  31955. source: "./media/characters/noraly/fuller.svg",
  31956. extra: 1114/1059,
  31957. bottom: 35/1149
  31958. }
  31959. },
  31960. fullest: {
  31961. height: math.unit(5 + 2/12, "feet"),
  31962. weight: math.unit(300, "lb"),
  31963. name: "Fullest",
  31964. image: {
  31965. source: "./media/characters/noraly/fullest.svg",
  31966. extra: 1114/1059,
  31967. bottom: 35/1149
  31968. }
  31969. },
  31970. },
  31971. [
  31972. {
  31973. name: "Normal",
  31974. height: math.unit(5 + 2/12, "feet"),
  31975. default: true
  31976. },
  31977. ]
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31981. {
  31982. front: {
  31983. height: math.unit(5 + 2/12, "feet"),
  31984. weight: math.unit(210, "lb"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/pera/front.svg",
  31988. extra: 1560/1531,
  31989. bottom: 165/1725
  31990. }
  31991. },
  31992. back: {
  31993. height: math.unit(5 + 2/12, "feet"),
  31994. weight: math.unit(210, "lb"),
  31995. name: "Back",
  31996. image: {
  31997. source: "./media/characters/pera/back.svg",
  31998. extra: 1523/1493,
  31999. bottom: 152/1675
  32000. }
  32001. },
  32002. dick: {
  32003. height: math.unit(2.4, "feet"),
  32004. name: "Dick",
  32005. image: {
  32006. source: "./media/characters/pera/dick.svg"
  32007. }
  32008. },
  32009. },
  32010. [
  32011. {
  32012. name: "Normal",
  32013. height: math.unit(5 + 2/12, "feet"),
  32014. default: true
  32015. },
  32016. ]
  32017. ))
  32018. characterMakers.push(() => makeCharacter(
  32019. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32020. {
  32021. front: {
  32022. height: math.unit(12, "feet"),
  32023. weight: math.unit(3200, "lb"),
  32024. name: "Front",
  32025. image: {
  32026. source: "./media/characters/julian/front.svg",
  32027. extra: 2962/2701,
  32028. bottom: 184/3146
  32029. }
  32030. },
  32031. maw: {
  32032. height: math.unit(5.35, "feet"),
  32033. name: "Maw",
  32034. image: {
  32035. source: "./media/characters/julian/maw.svg"
  32036. }
  32037. },
  32038. paw: {
  32039. height: math.unit(3.07, "feet"),
  32040. name: "Paw",
  32041. image: {
  32042. source: "./media/characters/julian/paw.svg"
  32043. }
  32044. },
  32045. },
  32046. [
  32047. {
  32048. name: "Default",
  32049. height: math.unit(12, "feet"),
  32050. default: true
  32051. },
  32052. {
  32053. name: "Big",
  32054. height: math.unit(50, "feet")
  32055. },
  32056. {
  32057. name: "Really Big",
  32058. height: math.unit(1, "mile")
  32059. },
  32060. {
  32061. name: "Extremely Big",
  32062. height: math.unit(100, "miles")
  32063. },
  32064. {
  32065. name: "Planet Hugger",
  32066. height: math.unit(200, "megameters")
  32067. },
  32068. {
  32069. name: "Unreasonably Big",
  32070. height: math.unit(1e300, "meters")
  32071. },
  32072. ]
  32073. ))
  32074. characterMakers.push(() => makeCharacter(
  32075. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32076. {
  32077. solgooleo: {
  32078. height: math.unit(4, "meters"),
  32079. weight: math.unit(6000*1.5, "kg"),
  32080. volume: math.unit(6000, "liters"),
  32081. name: "Solgooleo",
  32082. image: {
  32083. source: "./media/characters/pi/solgooleo.svg",
  32084. extra: 388/331,
  32085. bottom: 29/417
  32086. }
  32087. },
  32088. },
  32089. [
  32090. {
  32091. name: "Normal",
  32092. height: math.unit(4, "meters"),
  32093. default: true
  32094. },
  32095. ]
  32096. ))
  32097. characterMakers.push(() => makeCharacter(
  32098. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32099. {
  32100. front: {
  32101. height: math.unit(8 + 2/12, "feet"),
  32102. weight: math.unit(4, "tons"),
  32103. name: "Front",
  32104. image: {
  32105. source: "./media/characters/shaun/front.svg",
  32106. extra: 1550/1505,
  32107. bottom: 353/1903
  32108. }
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Lorg",
  32114. height: math.unit(8 + 2/12, "feet"),
  32115. default: true
  32116. },
  32117. ]
  32118. ))
  32119. characterMakers.push(() => makeCharacter(
  32120. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32121. {
  32122. front: {
  32123. height: math.unit(7, "feet"),
  32124. name: "Front",
  32125. image: {
  32126. source: "./media/characters/sini/front.svg",
  32127. extra: 726/678,
  32128. bottom: 35/761
  32129. }
  32130. },
  32131. back: {
  32132. height: math.unit(7, "feet"),
  32133. name: "Back",
  32134. image: {
  32135. source: "./media/characters/sini/back.svg",
  32136. extra: 743/701,
  32137. bottom: 12/755
  32138. }
  32139. },
  32140. mawAnthro: {
  32141. height: math.unit(2.14, "feet"),
  32142. name: "Maw (Anthro)",
  32143. image: {
  32144. source: "./media/characters/sini/maw-anthro.svg"
  32145. }
  32146. },
  32147. dick: {
  32148. height: math.unit(1.45, "feet"),
  32149. name: "Dick (Anthro)",
  32150. image: {
  32151. source: "./media/characters/sini/dick-anthro.svg"
  32152. }
  32153. },
  32154. feral: {
  32155. height: math.unit(13, "feet"),
  32156. name: "Feral",
  32157. image: {
  32158. source: "./media/characters/sini/feral.svg",
  32159. extra: 814/605,
  32160. bottom: 11/825
  32161. }
  32162. },
  32163. mawFeral: {
  32164. height: math.unit(4.6, "feet"),
  32165. name: "Maw-feral",
  32166. image: {
  32167. source: "./media/characters/sini/maw-feral.svg"
  32168. }
  32169. },
  32170. footFeral: {
  32171. height: math.unit(4.2, "feet"),
  32172. name: "Foot-feral",
  32173. image: {
  32174. source: "./media/characters/sini/foot-feral.svg"
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Normal",
  32181. height: math.unit(7, "feet"),
  32182. default: true
  32183. },
  32184. ]
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32188. {
  32189. side: {
  32190. height: math.unit(13, "meters"),
  32191. weight: math.unit(9072, "kg"),
  32192. name: "Side",
  32193. image: {
  32194. source: "./media/characters/raylldo/side.svg",
  32195. extra: 403/344,
  32196. bottom: 42/445
  32197. }
  32198. },
  32199. leaping: {
  32200. height: math.unit(12.3, "meters"),
  32201. weight: math.unit(9072, "kg"),
  32202. name: "Leaping",
  32203. image: {
  32204. source: "./media/characters/raylldo/leaping.svg",
  32205. extra: 470/249,
  32206. bottom: 13/483
  32207. }
  32208. },
  32209. flying: {
  32210. height: math.unit(18, "meters"),
  32211. weight: math.unit(9072, "kg"),
  32212. name: "Flying",
  32213. image: {
  32214. source: "./media/characters/raylldo/flying.svg"
  32215. }
  32216. },
  32217. head: {
  32218. height: math.unit(5.85, "meters"),
  32219. name: "Head",
  32220. image: {
  32221. source: "./media/characters/raylldo/head.svg"
  32222. }
  32223. },
  32224. maw: {
  32225. height: math.unit(5.32, "meters"),
  32226. name: "Maw",
  32227. image: {
  32228. source: "./media/characters/raylldo/maw.svg"
  32229. }
  32230. },
  32231. eye: {
  32232. height: math.unit(0.54, "meters"),
  32233. name: "Eye",
  32234. image: {
  32235. source: "./media/characters/raylldo/eye.svg"
  32236. }
  32237. },
  32238. },
  32239. [
  32240. {
  32241. name: "Normal",
  32242. height: math.unit(13, "meters"),
  32243. default: true
  32244. },
  32245. ]
  32246. ))
  32247. characterMakers.push(() => makeCharacter(
  32248. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32249. {
  32250. anthroFront: {
  32251. height: math.unit(9, "feet"),
  32252. weight: math.unit(600, "lb"),
  32253. name: "Anthro (Front)",
  32254. image: {
  32255. source: "./media/characters/glint/anthro-front.svg",
  32256. extra: 1097/1018,
  32257. bottom: 28/1125
  32258. }
  32259. },
  32260. anthroBack: {
  32261. height: math.unit(9, "feet"),
  32262. weight: math.unit(600, "lb"),
  32263. name: "Anthro (Back)",
  32264. image: {
  32265. source: "./media/characters/glint/anthro-back.svg",
  32266. extra: 1154/997,
  32267. bottom: 36/1190
  32268. }
  32269. },
  32270. feral: {
  32271. height: math.unit(11, "feet"),
  32272. weight: math.unit(50000, "lb"),
  32273. name: "Feral",
  32274. image: {
  32275. source: "./media/characters/glint/feral.svg",
  32276. extra: 3035/1585,
  32277. bottom: 1169/4204
  32278. }
  32279. },
  32280. dickAnthro: {
  32281. height: math.unit(0.7, "meters"),
  32282. name: "Dick (Anthro)",
  32283. image: {
  32284. source: "./media/characters/glint/dick-anthro.svg"
  32285. }
  32286. },
  32287. dickFeral: {
  32288. height: math.unit(2.65, "meters"),
  32289. name: "Dick (Feral)",
  32290. image: {
  32291. source: "./media/characters/glint/dick-feral.svg"
  32292. }
  32293. },
  32294. slitHidden: {
  32295. height: math.unit(5.85, "meters"),
  32296. name: "Slit (Hidden)",
  32297. image: {
  32298. source: "./media/characters/glint/slit-hidden.svg"
  32299. }
  32300. },
  32301. slitErect: {
  32302. height: math.unit(5.85, "meters"),
  32303. name: "Slit (Erect)",
  32304. image: {
  32305. source: "./media/characters/glint/slit-erect.svg"
  32306. }
  32307. },
  32308. mawAnthro: {
  32309. height: math.unit(0.63, "meters"),
  32310. name: "Maw (Anthro)",
  32311. image: {
  32312. source: "./media/characters/glint/maw.svg"
  32313. }
  32314. },
  32315. mawFeral: {
  32316. height: math.unit(2.89, "meters"),
  32317. name: "Maw (Feral)",
  32318. image: {
  32319. source: "./media/characters/glint/maw.svg"
  32320. }
  32321. },
  32322. },
  32323. [
  32324. {
  32325. name: "Normal",
  32326. height: math.unit(9, "feet"),
  32327. default: true
  32328. },
  32329. ]
  32330. ))
  32331. characterMakers.push(() => makeCharacter(
  32332. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32333. {
  32334. side: {
  32335. height: math.unit(15, "feet"),
  32336. weight: math.unit(5000, "kg"),
  32337. name: "Side",
  32338. image: {
  32339. source: "./media/characters/kairne/side.svg",
  32340. extra: 979/811,
  32341. bottom: 13/992
  32342. }
  32343. },
  32344. front: {
  32345. height: math.unit(15, "feet"),
  32346. weight: math.unit(5000, "kg"),
  32347. name: "Front",
  32348. image: {
  32349. source: "./media/characters/kairne/front.svg",
  32350. extra: 908/814,
  32351. bottom: 26/934
  32352. }
  32353. },
  32354. sideNsfw: {
  32355. height: math.unit(15, "feet"),
  32356. weight: math.unit(5000, "kg"),
  32357. name: "Side (NSFW)",
  32358. image: {
  32359. source: "./media/characters/kairne/side-nsfw.svg",
  32360. extra: 979/811,
  32361. bottom: 13/992
  32362. }
  32363. },
  32364. frontNsfw: {
  32365. height: math.unit(15, "feet"),
  32366. weight: math.unit(5000, "kg"),
  32367. name: "Front (NSFW)",
  32368. image: {
  32369. source: "./media/characters/kairne/front-nsfw.svg",
  32370. extra: 908/814,
  32371. bottom: 26/934
  32372. }
  32373. },
  32374. dickCaged: {
  32375. height: math.unit(0.65, "meters"),
  32376. name: "Dick-caged",
  32377. image: {
  32378. source: "./media/characters/kairne/dick-caged.svg"
  32379. }
  32380. },
  32381. dick: {
  32382. height: math.unit(0.79, "meters"),
  32383. name: "Dick",
  32384. image: {
  32385. source: "./media/characters/kairne/dick.svg"
  32386. }
  32387. },
  32388. genitals: {
  32389. height: math.unit(1.29, "meters"),
  32390. name: "Genitals",
  32391. image: {
  32392. source: "./media/characters/kairne/genitals.svg"
  32393. }
  32394. },
  32395. maw: {
  32396. height: math.unit(1.73, "meters"),
  32397. name: "Maw",
  32398. image: {
  32399. source: "./media/characters/kairne/maw.svg"
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Normal",
  32406. height: math.unit(15, "feet"),
  32407. default: true
  32408. },
  32409. ]
  32410. ))
  32411. characterMakers.push(() => makeCharacter(
  32412. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32413. {
  32414. front: {
  32415. height: math.unit(5 + 8/12, "feet"),
  32416. weight: math.unit(139, "lb"),
  32417. name: "Front",
  32418. image: {
  32419. source: "./media/characters/biscuit-jackal/front.svg",
  32420. extra: 2106/1961,
  32421. bottom: 58/2164
  32422. }
  32423. },
  32424. back: {
  32425. height: math.unit(5 + 8/12, "feet"),
  32426. weight: math.unit(139, "lb"),
  32427. name: "Back",
  32428. image: {
  32429. source: "./media/characters/biscuit-jackal/back.svg",
  32430. extra: 2132/1976,
  32431. bottom: 57/2189
  32432. }
  32433. },
  32434. werejackal: {
  32435. height: math.unit(6 + 3/12, "feet"),
  32436. weight: math.unit(188, "lb"),
  32437. name: "Werejackal",
  32438. image: {
  32439. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32440. extra: 2373/2178,
  32441. bottom: 53/2426
  32442. }
  32443. },
  32444. },
  32445. [
  32446. {
  32447. name: "Normal",
  32448. height: math.unit(5 + 8/12, "feet"),
  32449. default: true
  32450. },
  32451. ]
  32452. ))
  32453. characterMakers.push(() => makeCharacter(
  32454. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32455. {
  32456. front: {
  32457. height: math.unit(140, "cm"),
  32458. weight: math.unit(45, "kg"),
  32459. name: "Front",
  32460. image: {
  32461. source: "./media/characters/tayra-white/front.svg",
  32462. extra: 2229/2192,
  32463. bottom: 75/2304
  32464. }
  32465. },
  32466. },
  32467. [
  32468. {
  32469. name: "Normal",
  32470. height: math.unit(140, "cm"),
  32471. default: true
  32472. },
  32473. ]
  32474. ))
  32475. characterMakers.push(() => makeCharacter(
  32476. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32477. {
  32478. front: {
  32479. height: math.unit(4 + 5/12, "feet"),
  32480. name: "Front",
  32481. image: {
  32482. source: "./media/characters/scoop/front.svg",
  32483. extra: 1257/1136,
  32484. bottom: 69/1326
  32485. }
  32486. },
  32487. back: {
  32488. height: math.unit(4 + 5/12, "feet"),
  32489. name: "Back",
  32490. image: {
  32491. source: "./media/characters/scoop/back.svg",
  32492. extra: 1321/1152,
  32493. bottom: 32/1353
  32494. }
  32495. },
  32496. maw: {
  32497. height: math.unit(0.68, "feet"),
  32498. name: "Maw",
  32499. image: {
  32500. source: "./media/characters/scoop/maw.svg"
  32501. }
  32502. },
  32503. },
  32504. [
  32505. {
  32506. name: "Really Small",
  32507. height: math.unit(1, "mm")
  32508. },
  32509. {
  32510. name: "Micro",
  32511. height: math.unit(1, "inch")
  32512. },
  32513. {
  32514. name: "Normal",
  32515. height: math.unit(4 + 5/12, "feet"),
  32516. default: true
  32517. },
  32518. {
  32519. name: "Macro",
  32520. height: math.unit(200, "feet")
  32521. },
  32522. {
  32523. name: "Megamacro",
  32524. height: math.unit(3240, "feet")
  32525. },
  32526. {
  32527. name: "Teramacro",
  32528. height: math.unit(2500, "miles")
  32529. },
  32530. ]
  32531. ))
  32532. characterMakers.push(() => makeCharacter(
  32533. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32534. {
  32535. front: {
  32536. height: math.unit(15 + 7/12, "feet"),
  32537. name: "Front",
  32538. image: {
  32539. source: "./media/characters/saphinara/front.svg",
  32540. extra: 604/546,
  32541. bottom: 19/623
  32542. }
  32543. },
  32544. side: {
  32545. height: math.unit(15 + 7/12, "feet"),
  32546. name: "Side",
  32547. image: {
  32548. source: "./media/characters/saphinara/side.svg",
  32549. extra: 605/547,
  32550. bottom: 6/611
  32551. }
  32552. },
  32553. back: {
  32554. height: math.unit(15 + 7/12, "feet"),
  32555. name: "Back",
  32556. image: {
  32557. source: "./media/characters/saphinara/back.svg",
  32558. extra: 591/531,
  32559. bottom: 13/604
  32560. }
  32561. },
  32562. frontTail: {
  32563. height: math.unit(15 + 7/12, "feet"),
  32564. name: "Front (Full Tail)",
  32565. image: {
  32566. source: "./media/characters/saphinara/front-tail.svg",
  32567. extra: 748/547,
  32568. bottom: 66/814
  32569. }
  32570. },
  32571. },
  32572. [
  32573. {
  32574. name: "Normal",
  32575. height: math.unit(15 + 7/12, "feet"),
  32576. default: true
  32577. },
  32578. {
  32579. name: "Angry",
  32580. height: math.unit(30 + 6/12, "feet")
  32581. },
  32582. {
  32583. name: "Enraged",
  32584. height: math.unit(102 + 1/12, "feet")
  32585. },
  32586. ]
  32587. ))
  32588. characterMakers.push(() => makeCharacter(
  32589. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32590. {
  32591. front: {
  32592. height: math.unit(6 + 8/12, "feet"),
  32593. weight: math.unit(300, "lb"),
  32594. name: "Front",
  32595. image: {
  32596. source: "./media/characters/jrain/front.svg",
  32597. extra: 3039/2865,
  32598. bottom: 399/3438
  32599. }
  32600. },
  32601. back: {
  32602. height: math.unit(6 + 8/12, "feet"),
  32603. weight: math.unit(300, "lb"),
  32604. name: "Back",
  32605. image: {
  32606. source: "./media/characters/jrain/back.svg",
  32607. extra: 3089/2938,
  32608. bottom: 172/3261
  32609. }
  32610. },
  32611. head: {
  32612. height: math.unit(2.14, "feet"),
  32613. name: "Head",
  32614. image: {
  32615. source: "./media/characters/jrain/head.svg"
  32616. }
  32617. },
  32618. maw: {
  32619. height: math.unit(1.77, "feet"),
  32620. name: "Maw",
  32621. image: {
  32622. source: "./media/characters/jrain/maw.svg"
  32623. }
  32624. },
  32625. leftHand: {
  32626. height: math.unit(1.1, "feet"),
  32627. name: "Left Hand",
  32628. image: {
  32629. source: "./media/characters/jrain/left-hand.svg"
  32630. }
  32631. },
  32632. rightHand: {
  32633. height: math.unit(1.1, "feet"),
  32634. name: "Right Hand",
  32635. image: {
  32636. source: "./media/characters/jrain/right-hand.svg"
  32637. }
  32638. },
  32639. eye: {
  32640. height: math.unit(0.35, "feet"),
  32641. name: "Eye",
  32642. image: {
  32643. source: "./media/characters/jrain/eye.svg"
  32644. }
  32645. },
  32646. },
  32647. [
  32648. {
  32649. name: "Normal",
  32650. height: math.unit(6 + 8/12, "feet"),
  32651. default: true
  32652. },
  32653. {
  32654. name: "Casually Large",
  32655. height: math.unit(25, "feet")
  32656. },
  32657. {
  32658. name: "Giant",
  32659. height: math.unit(100, "feet")
  32660. },
  32661. {
  32662. name: "Kaiju",
  32663. height: math.unit(300, "feet")
  32664. },
  32665. ]
  32666. ))
  32667. characterMakers.push(() => makeCharacter(
  32668. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32669. {
  32670. dragon: {
  32671. height: math.unit(5, "meters"),
  32672. name: "Dragon",
  32673. image: {
  32674. source: "./media/characters/sabrina/dragon.svg",
  32675. extra: 3670 / 2365,
  32676. bottom: 333 / 4003
  32677. }
  32678. },
  32679. gryphon: {
  32680. height: math.unit(3, "meters"),
  32681. name: "Gryphon",
  32682. image: {
  32683. source: "./media/characters/sabrina/gryphon.svg",
  32684. extra: 1576 / 945,
  32685. bottom: 71 / 1647
  32686. }
  32687. },
  32688. snake: {
  32689. height: math.unit(12, "meters"),
  32690. name: "Snake",
  32691. image: {
  32692. source: "./media/characters/sabrina/snake.svg",
  32693. extra: 1758 / 1320,
  32694. bottom: 186 / 1944
  32695. }
  32696. },
  32697. collar: {
  32698. height: math.unit(1.86, "meters"),
  32699. name: "Collar",
  32700. image: {
  32701. source: "./media/characters/sabrina/collar.svg"
  32702. }
  32703. },
  32704. eye: {
  32705. height: math.unit(0.53, "meters"),
  32706. name: "Eye",
  32707. image: {
  32708. source: "./media/characters/sabrina/eye.svg"
  32709. }
  32710. },
  32711. foot: {
  32712. height: math.unit(1.86, "meters"),
  32713. name: "Foot",
  32714. image: {
  32715. source: "./media/characters/sabrina/foot.svg"
  32716. }
  32717. },
  32718. hand: {
  32719. height: math.unit(1.32, "meters"),
  32720. name: "Hand",
  32721. image: {
  32722. source: "./media/characters/sabrina/hand.svg"
  32723. }
  32724. },
  32725. head: {
  32726. height: math.unit(2.44, "meters"),
  32727. name: "Head",
  32728. image: {
  32729. source: "./media/characters/sabrina/head.svg"
  32730. }
  32731. },
  32732. headAngry: {
  32733. height: math.unit(2.44, "meters"),
  32734. name: "Head (Angry))",
  32735. image: {
  32736. source: "./media/characters/sabrina/head-angry.svg"
  32737. }
  32738. },
  32739. maw: {
  32740. height: math.unit(1.65, "meters"),
  32741. name: "Maw",
  32742. image: {
  32743. source: "./media/characters/sabrina/maw.svg"
  32744. }
  32745. },
  32746. spikes: {
  32747. height: math.unit(1.69, "meters"),
  32748. name: "Spikes",
  32749. image: {
  32750. source: "./media/characters/sabrina/spikes.svg"
  32751. }
  32752. },
  32753. stomach: {
  32754. height: math.unit(1.15, "meters"),
  32755. name: "Stomach",
  32756. image: {
  32757. source: "./media/characters/sabrina/stomach.svg"
  32758. }
  32759. },
  32760. tongue: {
  32761. height: math.unit(1.27, "meters"),
  32762. name: "Tongue",
  32763. image: {
  32764. source: "./media/characters/sabrina/tongue.svg"
  32765. }
  32766. },
  32767. wingDorsal: {
  32768. height: math.unit(4.85, "meters"),
  32769. name: "Wing (Dorsal)",
  32770. image: {
  32771. source: "./media/characters/sabrina/wing-dorsal.svg"
  32772. }
  32773. },
  32774. wingVentral: {
  32775. height: math.unit(4.85, "meters"),
  32776. name: "Wing (Ventral)",
  32777. image: {
  32778. source: "./media/characters/sabrina/wing-ventral.svg"
  32779. }
  32780. },
  32781. },
  32782. [
  32783. {
  32784. name: "Normal",
  32785. height: math.unit(5, "meters"),
  32786. default: true
  32787. },
  32788. ]
  32789. ))
  32790. characterMakers.push(() => makeCharacter(
  32791. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32792. {
  32793. frontMaid: {
  32794. height: math.unit(5 + 5/12, "feet"),
  32795. weight: math.unit(130, "lb"),
  32796. name: "Front (Maid)",
  32797. image: {
  32798. source: "./media/characters/midnight-tales/front-maid.svg",
  32799. extra: 489/454,
  32800. bottom: 61/550
  32801. }
  32802. },
  32803. frontFormal: {
  32804. height: math.unit(5 + 5/12, "feet"),
  32805. weight: math.unit(130, "lb"),
  32806. name: "Front (Formal)",
  32807. image: {
  32808. source: "./media/characters/midnight-tales/front-formal.svg",
  32809. extra: 489/454,
  32810. bottom: 61/550
  32811. }
  32812. },
  32813. back: {
  32814. height: math.unit(5 + 5/12, "feet"),
  32815. weight: math.unit(130, "lb"),
  32816. name: "Back",
  32817. image: {
  32818. source: "./media/characters/midnight-tales/back.svg",
  32819. extra: 498/456,
  32820. bottom: 33/531
  32821. }
  32822. },
  32823. frontBeast: {
  32824. height: math.unit(40, "feet"),
  32825. weight: math.unit(64000, "lb"),
  32826. name: "Front (Beast)",
  32827. image: {
  32828. source: "./media/characters/midnight-tales/front-beast.svg",
  32829. extra: 927/860,
  32830. bottom: 53/980
  32831. }
  32832. },
  32833. backBeast: {
  32834. height: math.unit(40, "feet"),
  32835. weight: math.unit(64000, "lb"),
  32836. name: "Back (Beast)",
  32837. image: {
  32838. source: "./media/characters/midnight-tales/back-beast.svg",
  32839. extra: 929/855,
  32840. bottom: 16/945
  32841. }
  32842. },
  32843. footBeast: {
  32844. height: math.unit(6.7, "feet"),
  32845. name: "Foot (Beast)",
  32846. image: {
  32847. source: "./media/characters/midnight-tales/foot-beast.svg"
  32848. }
  32849. },
  32850. headBeast: {
  32851. height: math.unit(8, "feet"),
  32852. name: "Head (Beast)",
  32853. image: {
  32854. source: "./media/characters/midnight-tales/head-beast.svg"
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Normal",
  32861. height: math.unit(5 + 5 / 12, "feet"),
  32862. default: true
  32863. },
  32864. {
  32865. name: "Macro",
  32866. height: math.unit(25, "feet")
  32867. },
  32868. ]
  32869. ))
  32870. characterMakers.push(() => makeCharacter(
  32871. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32872. {
  32873. front: {
  32874. height: math.unit(5 + 10/12, "feet"),
  32875. name: "Front",
  32876. image: {
  32877. source: "./media/characters/argon/front.svg",
  32878. extra: 2009/1935,
  32879. bottom: 118/2127
  32880. }
  32881. },
  32882. back: {
  32883. height: math.unit(5 + 10/12, "feet"),
  32884. name: "Back",
  32885. image: {
  32886. source: "./media/characters/argon/back.svg",
  32887. extra: 2047/1992,
  32888. bottom: 20/2067
  32889. }
  32890. },
  32891. frontDressed: {
  32892. height: math.unit(5 + 10/12, "feet"),
  32893. name: "Front (Dressed)",
  32894. image: {
  32895. source: "./media/characters/argon/front-dressed.svg",
  32896. extra: 2009/1935,
  32897. bottom: 118/2127
  32898. }
  32899. },
  32900. },
  32901. [
  32902. {
  32903. name: "Normal",
  32904. height: math.unit(5 + 10/12, "feet"),
  32905. default: true
  32906. },
  32907. ]
  32908. ))
  32909. characterMakers.push(() => makeCharacter(
  32910. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32911. {
  32912. front: {
  32913. height: math.unit(8 + 6/12, "feet"),
  32914. weight: math.unit(1150, "lb"),
  32915. name: "Front",
  32916. image: {
  32917. source: "./media/characters/kichi/front.svg",
  32918. extra: 1267/1164,
  32919. bottom: 61/1328
  32920. }
  32921. },
  32922. back: {
  32923. height: math.unit(8 + 6/12, "feet"),
  32924. weight: math.unit(1150, "lb"),
  32925. name: "Back",
  32926. image: {
  32927. source: "./media/characters/kichi/back.svg",
  32928. extra: 1273/1166,
  32929. bottom: 33/1306
  32930. }
  32931. },
  32932. },
  32933. [
  32934. {
  32935. name: "Normal",
  32936. height: math.unit(8 + 6/12, "feet"),
  32937. default: true
  32938. },
  32939. ]
  32940. ))
  32941. characterMakers.push(() => makeCharacter(
  32942. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32943. {
  32944. front: {
  32945. height: math.unit(6, "feet"),
  32946. weight: math.unit(210, "lb"),
  32947. name: "Front",
  32948. image: {
  32949. source: "./media/characters/manetel-greyscale/front.svg",
  32950. extra: 350/312,
  32951. bottom: 8/358
  32952. }
  32953. },
  32954. },
  32955. [
  32956. {
  32957. name: "Micro",
  32958. height: math.unit(2, "inches")
  32959. },
  32960. {
  32961. name: "Normal",
  32962. height: math.unit(6, "feet"),
  32963. default: true
  32964. },
  32965. {
  32966. name: "Minimacro",
  32967. height: math.unit(17, "feet")
  32968. },
  32969. {
  32970. name: "Macro",
  32971. height: math.unit(117, "feet")
  32972. },
  32973. ]
  32974. ))
  32975. characterMakers.push(() => makeCharacter(
  32976. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32977. {
  32978. side: {
  32979. height: math.unit(5 + 1/12, "feet"),
  32980. weight: math.unit(418, "lb"),
  32981. name: "Side",
  32982. image: {
  32983. source: "./media/characters/softpurr/side.svg",
  32984. extra: 1993/1945,
  32985. bottom: 134/2127
  32986. }
  32987. },
  32988. front: {
  32989. height: math.unit(5 + 1/12, "feet"),
  32990. weight: math.unit(418, "lb"),
  32991. name: "Front",
  32992. image: {
  32993. source: "./media/characters/softpurr/front.svg",
  32994. extra: 1950/1856,
  32995. bottom: 174/2124
  32996. }
  32997. },
  32998. paw: {
  32999. height: math.unit(1, "feet"),
  33000. name: "Paw",
  33001. image: {
  33002. source: "./media/characters/softpurr/paw.svg"
  33003. }
  33004. },
  33005. },
  33006. [
  33007. {
  33008. name: "Normal",
  33009. height: math.unit(5 + 1/12, "feet"),
  33010. default: true
  33011. },
  33012. ]
  33013. ))
  33014. characterMakers.push(() => makeCharacter(
  33015. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33016. {
  33017. front: {
  33018. height: math.unit(260, "meters"),
  33019. name: "Front",
  33020. image: {
  33021. source: "./media/characters/anahita/front.svg",
  33022. extra: 665/635,
  33023. bottom: 89/754
  33024. }
  33025. },
  33026. },
  33027. [
  33028. {
  33029. name: "Macro",
  33030. height: math.unit(260, "meters"),
  33031. default: true
  33032. },
  33033. ]
  33034. ))
  33035. characterMakers.push(() => makeCharacter(
  33036. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33037. {
  33038. front: {
  33039. height: math.unit(4 + 10/12, "feet"),
  33040. weight: math.unit(160, "lb"),
  33041. name: "Front",
  33042. image: {
  33043. source: "./media/characters/chip-mouse/front.svg",
  33044. extra: 3528/3408,
  33045. bottom: 0/3528
  33046. }
  33047. },
  33048. frontNsfw: {
  33049. height: math.unit(4 + 10/12, "feet"),
  33050. weight: math.unit(160, "lb"),
  33051. name: "Front (NSFW)",
  33052. image: {
  33053. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33054. extra: 3528/3408,
  33055. bottom: 0/3528
  33056. }
  33057. },
  33058. },
  33059. [
  33060. {
  33061. name: "Normal",
  33062. height: math.unit(4 + 10/12, "feet"),
  33063. default: true
  33064. },
  33065. ]
  33066. ))
  33067. characterMakers.push(() => makeCharacter(
  33068. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33069. {
  33070. side: {
  33071. height: math.unit(10, "feet"),
  33072. weight: math.unit(14000, "lb"),
  33073. name: "Side",
  33074. image: {
  33075. source: "./media/characters/kremm/side.svg",
  33076. extra: 1390/1053,
  33077. bottom: 90/1480
  33078. }
  33079. },
  33080. gut: {
  33081. height: math.unit(5.8, "feet"),
  33082. name: "Gut",
  33083. image: {
  33084. source: "./media/characters/kremm/gut.svg"
  33085. }
  33086. },
  33087. ass: {
  33088. height: math.unit(6.1, "feet"),
  33089. name: "Ass",
  33090. image: {
  33091. source: "./media/characters/kremm/ass.svg"
  33092. }
  33093. },
  33094. jaws: {
  33095. height: math.unit(2.2, "feet"),
  33096. name: "Jaws",
  33097. image: {
  33098. source: "./media/characters/kremm/jaws.svg"
  33099. }
  33100. },
  33101. dick: {
  33102. height: math.unit(4.26, "feet"),
  33103. name: "Dick",
  33104. image: {
  33105. source: "./media/characters/kremm/dick.svg"
  33106. }
  33107. },
  33108. },
  33109. [
  33110. {
  33111. name: "Normal",
  33112. height: math.unit(10, "feet"),
  33113. default: true
  33114. },
  33115. ]
  33116. ))
  33117. characterMakers.push(() => makeCharacter(
  33118. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33119. {
  33120. front: {
  33121. height: math.unit(30, "stories"),
  33122. name: "Front",
  33123. image: {
  33124. source: "./media/characters/kai/front.svg",
  33125. extra: 1892/1718,
  33126. bottom: 162/2054
  33127. }
  33128. },
  33129. },
  33130. [
  33131. {
  33132. name: "Macro",
  33133. height: math.unit(30, "stories"),
  33134. default: true
  33135. },
  33136. ]
  33137. ))
  33138. characterMakers.push(() => makeCharacter(
  33139. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33140. {
  33141. front: {
  33142. height: math.unit(6 + 4/12, "feet"),
  33143. weight: math.unit(145, "lb"),
  33144. name: "Front",
  33145. image: {
  33146. source: "./media/characters/sykes/front.svg",
  33147. extra: 1321 / 1187,
  33148. bottom: 66 / 1387
  33149. }
  33150. },
  33151. back: {
  33152. height: math.unit(6 + 4/12, "feet"),
  33153. weight: math.unit(145, "lb"),
  33154. name: "Back",
  33155. image: {
  33156. source: "./media/characters/sykes/back.svg",
  33157. extra: 1326/1181,
  33158. bottom: 31/1357
  33159. }
  33160. },
  33161. handBack: {
  33162. height: math.unit(0.9, "feet"),
  33163. name: "Hand (Back)",
  33164. image: {
  33165. source: "./media/characters/sykes/hand-back.svg"
  33166. }
  33167. },
  33168. handFront: {
  33169. height: math.unit(0.839, "feet"),
  33170. name: "Hand (Front)",
  33171. image: {
  33172. source: "./media/characters/sykes/hand-front.svg"
  33173. }
  33174. },
  33175. leftFoot: {
  33176. height: math.unit(1.2, "feet"),
  33177. name: "Foot (Left)",
  33178. image: {
  33179. source: "./media/characters/sykes/foot-left.svg"
  33180. }
  33181. },
  33182. rightFoot: {
  33183. height: math.unit(1.2, "feet"),
  33184. name: "Foot (Right)",
  33185. image: {
  33186. source: "./media/characters/sykes/foot-right.svg"
  33187. }
  33188. },
  33189. maw: {
  33190. height: math.unit(1.93, "feet"),
  33191. name: "Maw",
  33192. image: {
  33193. source: "./media/characters/sykes/maw.svg"
  33194. }
  33195. },
  33196. teeth: {
  33197. height: math.unit(0.51, "feet"),
  33198. name: "Teeth",
  33199. image: {
  33200. source: "./media/characters/sykes/teeth.svg"
  33201. }
  33202. },
  33203. tongue: {
  33204. height: math.unit(2.13, "feet"),
  33205. name: "Tongue",
  33206. image: {
  33207. source: "./media/characters/sykes/tongue.svg"
  33208. }
  33209. },
  33210. uvula: {
  33211. height: math.unit(0.16, "feet"),
  33212. name: "Uvula",
  33213. image: {
  33214. source: "./media/characters/sykes/uvula.svg"
  33215. }
  33216. },
  33217. collar: {
  33218. height: math.unit(0.287, "feet"),
  33219. name: "Collar",
  33220. image: {
  33221. source: "./media/characters/sykes/collar.svg"
  33222. }
  33223. },
  33224. },
  33225. [
  33226. {
  33227. name: "Shrunken",
  33228. height: math.unit(5, "inches")
  33229. },
  33230. {
  33231. name: "Normal",
  33232. height: math.unit(6 + 4 / 12, "feet"),
  33233. default: true
  33234. },
  33235. {
  33236. name: "Big",
  33237. height: math.unit(15, "feet")
  33238. },
  33239. ]
  33240. ))
  33241. characterMakers.push(() => makeCharacter(
  33242. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33243. {
  33244. front: {
  33245. height: math.unit(5 + 8/12, "feet"),
  33246. weight: math.unit(190, "lb"),
  33247. name: "Front",
  33248. image: {
  33249. source: "./media/characters/oven-otter/front.svg",
  33250. extra: 1809/1740,
  33251. bottom: 181/1990
  33252. }
  33253. },
  33254. back: {
  33255. height: math.unit(5 + 8/12, "feet"),
  33256. weight: math.unit(190, "lb"),
  33257. name: "Back",
  33258. image: {
  33259. source: "./media/characters/oven-otter/back.svg",
  33260. extra: 1709/1635,
  33261. bottom: 118/1827
  33262. }
  33263. },
  33264. hand: {
  33265. height: math.unit(1.07, "feet"),
  33266. name: "Hand",
  33267. image: {
  33268. source: "./media/characters/oven-otter/hand.svg"
  33269. }
  33270. },
  33271. beans: {
  33272. height: math.unit(1.74, "feet"),
  33273. name: "Beans",
  33274. image: {
  33275. source: "./media/characters/oven-otter/beans.svg"
  33276. }
  33277. },
  33278. },
  33279. [
  33280. {
  33281. name: "Micro",
  33282. height: math.unit(0.5, "inches")
  33283. },
  33284. {
  33285. name: "Normal",
  33286. height: math.unit(5 + 8/12, "feet"),
  33287. default: true
  33288. },
  33289. {
  33290. name: "Macro",
  33291. height: math.unit(250, "feet")
  33292. },
  33293. {
  33294. name: "Really High",
  33295. height: math.unit(420, "feet")
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33301. {
  33302. front: {
  33303. height: math.unit(5, "meters"),
  33304. weight: math.unit(292000000000000, "kg"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/devourer/front.svg",
  33308. extra: 1800/1733,
  33309. bottom: 211/2011
  33310. }
  33311. },
  33312. maw: {
  33313. height: math.unit(1.1, "meter"),
  33314. name: "Maw",
  33315. image: {
  33316. source: "./media/characters/devourer/maw.svg"
  33317. }
  33318. },
  33319. },
  33320. [
  33321. {
  33322. name: "Small",
  33323. height: math.unit(3, "meters")
  33324. },
  33325. {
  33326. name: "Large",
  33327. height: math.unit(5, "meters"),
  33328. default: true
  33329. },
  33330. ]
  33331. ))
  33332. characterMakers.push(() => makeCharacter(
  33333. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33334. {
  33335. front: {
  33336. height: math.unit(6, "feet"),
  33337. weight: math.unit(400, "lb"),
  33338. name: "Front",
  33339. image: {
  33340. source: "./media/characters/ellarby/front.svg",
  33341. extra: 1909/1763,
  33342. bottom: 80/1989
  33343. }
  33344. },
  33345. back: {
  33346. height: math.unit(6, "feet"),
  33347. weight: math.unit(400, "lb"),
  33348. name: "Back",
  33349. image: {
  33350. source: "./media/characters/ellarby/back.svg",
  33351. extra: 1914/1784,
  33352. bottom: 172/2086
  33353. }
  33354. },
  33355. },
  33356. [
  33357. {
  33358. name: "Mischief",
  33359. height: math.unit(18, "inches")
  33360. },
  33361. {
  33362. name: "Trouble",
  33363. height: math.unit(12, "feet")
  33364. },
  33365. {
  33366. name: "Havoc",
  33367. height: math.unit(200, "feet"),
  33368. default: true
  33369. },
  33370. {
  33371. name: "Pandemonium",
  33372. height: math.unit(1, "mile")
  33373. },
  33374. {
  33375. name: "Catastrophe",
  33376. height: math.unit(100, "miles")
  33377. },
  33378. ]
  33379. ))
  33380. characterMakers.push(() => makeCharacter(
  33381. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33382. {
  33383. front: {
  33384. height: math.unit(4.7, "meters"),
  33385. weight: math.unit(6500, "kg"),
  33386. name: "Front",
  33387. image: {
  33388. source: "./media/characters/vex/front.svg",
  33389. extra: 1288/1140,
  33390. bottom: 100/1388
  33391. }
  33392. },
  33393. },
  33394. [
  33395. {
  33396. name: "Normal",
  33397. height: math.unit(4.7, "meters"),
  33398. default: true
  33399. },
  33400. ]
  33401. ))
  33402. characterMakers.push(() => makeCharacter(
  33403. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33404. {
  33405. normal: {
  33406. height: math.unit(6, "feet"),
  33407. weight: math.unit(350, "lb"),
  33408. name: "Normal",
  33409. image: {
  33410. source: "./media/characters/teshy/normal.svg",
  33411. extra: 1795/1735,
  33412. bottom: 16/1811
  33413. }
  33414. },
  33415. monsterFront: {
  33416. height: math.unit(12, "feet"),
  33417. weight: math.unit(4700, "lb"),
  33418. name: "Monster (Front)",
  33419. image: {
  33420. source: "./media/characters/teshy/monster-front.svg",
  33421. extra: 2042/2034,
  33422. bottom: 128/2170
  33423. }
  33424. },
  33425. monsterSide: {
  33426. height: math.unit(12, "feet"),
  33427. weight: math.unit(4700, "lb"),
  33428. name: "Monster (Side)",
  33429. image: {
  33430. source: "./media/characters/teshy/monster-side.svg",
  33431. extra: 2067/2056,
  33432. bottom: 70/2137
  33433. }
  33434. },
  33435. monsterBack: {
  33436. height: math.unit(12, "feet"),
  33437. weight: math.unit(4700, "lb"),
  33438. name: "Monster (Back)",
  33439. image: {
  33440. source: "./media/characters/teshy/monster-back.svg",
  33441. extra: 1921/1914,
  33442. bottom: 171/2092
  33443. }
  33444. },
  33445. },
  33446. [
  33447. {
  33448. name: "Normal",
  33449. height: math.unit(6, "feet"),
  33450. default: true
  33451. },
  33452. ]
  33453. ))
  33454. characterMakers.push(() => makeCharacter(
  33455. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33456. {
  33457. front: {
  33458. height: math.unit(6, "feet"),
  33459. name: "Front",
  33460. image: {
  33461. source: "./media/characters/ramey/front.svg",
  33462. extra: 790/787,
  33463. bottom: 27/817
  33464. }
  33465. },
  33466. },
  33467. [
  33468. {
  33469. name: "Normal",
  33470. height: math.unit(6, "feet"),
  33471. default: true
  33472. },
  33473. ]
  33474. ))
  33475. characterMakers.push(() => makeCharacter(
  33476. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33477. {
  33478. front: {
  33479. height: math.unit(5 + 5/12, "feet"),
  33480. weight: math.unit(120, "lb"),
  33481. name: "Front",
  33482. image: {
  33483. source: "./media/characters/phirae/front.svg",
  33484. extra: 2491/2436,
  33485. bottom: 38/2529
  33486. }
  33487. },
  33488. },
  33489. [
  33490. {
  33491. name: "Normal",
  33492. height: math.unit(5 + 5/12, "feet"),
  33493. default: true
  33494. },
  33495. ]
  33496. ))
  33497. characterMakers.push(() => makeCharacter(
  33498. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33499. {
  33500. front: {
  33501. height: math.unit(6, "feet"),
  33502. weight: math.unit(150, "lb"),
  33503. name: "Front",
  33504. image: {
  33505. source: "./media/characters/stagglas/front.svg",
  33506. extra: 962/882,
  33507. bottom: 53/1015
  33508. }
  33509. },
  33510. },
  33511. [
  33512. {
  33513. name: "Normal",
  33514. height: math.unit(5 + 3/12, "feet"),
  33515. default: true
  33516. },
  33517. ]
  33518. ))
  33519. characterMakers.push(() => makeCharacter(
  33520. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33521. {
  33522. front: {
  33523. height: math.unit(5 + 4/12, "feet"),
  33524. weight: math.unit(145, "lb"),
  33525. name: "Front",
  33526. image: {
  33527. source: "./media/characters/starra/front.svg",
  33528. extra: 1790/1691,
  33529. bottom: 91/1881
  33530. }
  33531. },
  33532. },
  33533. [
  33534. {
  33535. name: "Normal",
  33536. height: math.unit(5 + 4/12, "feet"),
  33537. default: true
  33538. },
  33539. ]
  33540. ))
  33541. characterMakers.push(() => makeCharacter(
  33542. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33543. {
  33544. front: {
  33545. height: math.unit(2.2, "meters"),
  33546. name: "Front",
  33547. image: {
  33548. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33549. extra: 1194/1005,
  33550. bottom: 25/1219
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(2.2, "meters"),
  33558. default: true
  33559. },
  33560. ]
  33561. ))
  33562. characterMakers.push(() => makeCharacter(
  33563. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33564. {
  33565. side: {
  33566. height: math.unit(8 + 2/12, "feet"),
  33567. weight: math.unit(1240, "lb"),
  33568. name: "Side",
  33569. image: {
  33570. source: "./media/characters/mika-valentine/side.svg",
  33571. extra: 2670/2501,
  33572. bottom: 250/2920
  33573. }
  33574. },
  33575. },
  33576. [
  33577. {
  33578. name: "Normal",
  33579. height: math.unit(8 + 2/12, "feet"),
  33580. default: true
  33581. },
  33582. ]
  33583. ))
  33584. characterMakers.push(() => makeCharacter(
  33585. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33586. {
  33587. front: {
  33588. height: math.unit(7 + 2/12, "feet"),
  33589. name: "Front",
  33590. image: {
  33591. source: "./media/characters/xoltol/front.svg",
  33592. extra: 2212/2124,
  33593. bottom: 84/2296
  33594. }
  33595. },
  33596. side: {
  33597. height: math.unit(7 + 2/12, "feet"),
  33598. name: "Side",
  33599. image: {
  33600. source: "./media/characters/xoltol/side.svg",
  33601. extra: 2273/2197,
  33602. bottom: 26/2299
  33603. }
  33604. },
  33605. hand: {
  33606. height: math.unit(2.5, "feet"),
  33607. name: "Hand",
  33608. image: {
  33609. source: "./media/characters/xoltol/hand.svg"
  33610. }
  33611. },
  33612. },
  33613. [
  33614. {
  33615. name: "Small-ish",
  33616. height: math.unit(5 + 11/12, "feet")
  33617. },
  33618. {
  33619. name: "Normal",
  33620. height: math.unit(7 + 2/12, "feet")
  33621. },
  33622. {
  33623. name: "\"Macro\"",
  33624. height: math.unit(14 + 9/12, "feet"),
  33625. default: true
  33626. },
  33627. {
  33628. name: "Alternate Height",
  33629. height: math.unit(20, "feet")
  33630. },
  33631. {
  33632. name: "Actually Macro",
  33633. height: math.unit(100, "feet")
  33634. },
  33635. ]
  33636. ))
  33637. characterMakers.push(() => makeCharacter(
  33638. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33639. {
  33640. front: {
  33641. height: math.unit(5 + 2/12, "feet"),
  33642. name: "Front",
  33643. image: {
  33644. source: "./media/characters/kotetsu-redwood/front.svg",
  33645. extra: 1053/942,
  33646. bottom: 60/1113
  33647. }
  33648. },
  33649. },
  33650. [
  33651. {
  33652. name: "Normal",
  33653. height: math.unit(5 + 2/12, "feet"),
  33654. default: true
  33655. },
  33656. ]
  33657. ))
  33658. characterMakers.push(() => makeCharacter(
  33659. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33660. {
  33661. front: {
  33662. height: math.unit(2.4, "meters"),
  33663. weight: math.unit(125, "kg"),
  33664. name: "Front",
  33665. image: {
  33666. source: "./media/characters/lilith/front.svg",
  33667. extra: 1590/1513,
  33668. bottom: 203/1793
  33669. }
  33670. },
  33671. },
  33672. [
  33673. {
  33674. name: "Humanoid",
  33675. height: math.unit(2.4, "meters")
  33676. },
  33677. {
  33678. name: "Normal",
  33679. height: math.unit(6, "meters"),
  33680. default: true
  33681. },
  33682. {
  33683. name: "Largest",
  33684. height: math.unit(55, "meters")
  33685. },
  33686. ]
  33687. ))
  33688. characterMakers.push(() => makeCharacter(
  33689. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33690. {
  33691. front: {
  33692. height: math.unit(8 + 4/12, "feet"),
  33693. weight: math.unit(535, "lb"),
  33694. name: "Front",
  33695. image: {
  33696. source: "./media/characters/beh'kah-bolger/front.svg",
  33697. extra: 1660/1603,
  33698. bottom: 37/1697
  33699. }
  33700. },
  33701. },
  33702. [
  33703. {
  33704. name: "Normal",
  33705. height: math.unit(8 + 4/12, "feet"),
  33706. default: true
  33707. },
  33708. {
  33709. name: "Kaiju",
  33710. height: math.unit(250, "feet")
  33711. },
  33712. {
  33713. name: "Still Growing",
  33714. height: math.unit(10, "miles")
  33715. },
  33716. {
  33717. name: "Continental",
  33718. height: math.unit(5000, "miles")
  33719. },
  33720. {
  33721. name: "Final Form",
  33722. height: math.unit(2500000, "miles")
  33723. },
  33724. ]
  33725. ))
  33726. characterMakers.push(() => makeCharacter(
  33727. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33728. {
  33729. front: {
  33730. height: math.unit(7 + 2/12, "feet"),
  33731. weight: math.unit(230, "kg"),
  33732. name: "Front",
  33733. image: {
  33734. source: "./media/characters/tatyana-milewska/front.svg",
  33735. extra: 1199/1150,
  33736. bottom: 86/1285
  33737. }
  33738. },
  33739. },
  33740. [
  33741. {
  33742. name: "Normal",
  33743. height: math.unit(7 + 2/12, "feet"),
  33744. default: true
  33745. },
  33746. {
  33747. name: "Big",
  33748. height: math.unit(12, "feet")
  33749. },
  33750. {
  33751. name: "Minimacro",
  33752. height: math.unit(20, "feet")
  33753. },
  33754. {
  33755. name: "Macro",
  33756. height: math.unit(120, "feet")
  33757. },
  33758. ]
  33759. ))
  33760. characterMakers.push(() => makeCharacter(
  33761. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33762. {
  33763. front: {
  33764. height: math.unit(7 + 8/12, "feet"),
  33765. weight: math.unit(152, "kg"),
  33766. name: "Front",
  33767. image: {
  33768. source: "./media/characters/helen-arri/front.svg",
  33769. extra: 440/423,
  33770. bottom: 14/454
  33771. }
  33772. },
  33773. back: {
  33774. height: math.unit(7 + 8/12, "feet"),
  33775. weight: math.unit(152, "kg"),
  33776. name: "Back",
  33777. image: {
  33778. source: "./media/characters/helen-arri/back.svg",
  33779. extra: 443/426,
  33780. bottom: 8/451
  33781. }
  33782. },
  33783. },
  33784. [
  33785. {
  33786. name: "Normal",
  33787. height: math.unit(7 + 8/12, "feet"),
  33788. default: true
  33789. },
  33790. {
  33791. name: "Big",
  33792. height: math.unit(14, "feet")
  33793. },
  33794. {
  33795. name: "Minimacro",
  33796. height: math.unit(24, "feet")
  33797. },
  33798. {
  33799. name: "Macro",
  33800. height: math.unit(140, "feet")
  33801. },
  33802. ]
  33803. ))
  33804. characterMakers.push(() => makeCharacter(
  33805. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33806. {
  33807. front: {
  33808. height: math.unit(6, "meters"),
  33809. name: "Front",
  33810. image: {
  33811. source: "./media/characters/ehanu-rehu/front.svg",
  33812. extra: 1800/1800,
  33813. bottom: 59/1859
  33814. }
  33815. },
  33816. },
  33817. [
  33818. {
  33819. name: "Normal",
  33820. height: math.unit(6, "meters"),
  33821. default: true
  33822. },
  33823. ]
  33824. ))
  33825. characterMakers.push(() => makeCharacter(
  33826. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33827. {
  33828. front: {
  33829. height: math.unit(7 + 3/12, "feet"),
  33830. name: "Front",
  33831. image: {
  33832. source: "./media/characters/renholder/front.svg",
  33833. extra: 3096/2960,
  33834. bottom: 250/3346
  33835. }
  33836. },
  33837. },
  33838. [
  33839. {
  33840. name: "Normal Bat",
  33841. height: math.unit(7 + 3/12, "feet"),
  33842. default: true
  33843. },
  33844. {
  33845. name: "Slightly Tall Bat",
  33846. height: math.unit(100, "feet")
  33847. },
  33848. {
  33849. name: "Big Bat",
  33850. height: math.unit(1000, "feet")
  33851. },
  33852. {
  33853. name: "City-Sized Bat",
  33854. height: math.unit(200000, "feet")
  33855. },
  33856. {
  33857. name: "Bigger Bat",
  33858. height: math.unit(10000, "miles")
  33859. },
  33860. {
  33861. name: "Solar Sized Bat",
  33862. height: math.unit(100, "AU")
  33863. },
  33864. {
  33865. name: "Galactic Bat",
  33866. height: math.unit(200000, "lightyears")
  33867. },
  33868. {
  33869. name: "Universally Known Bat",
  33870. height: math.unit(1, "universe")
  33871. },
  33872. ]
  33873. ))
  33874. characterMakers.push(() => makeCharacter(
  33875. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33876. {
  33877. front: {
  33878. height: math.unit(6 + 11/12, "feet"),
  33879. weight: math.unit(250, "lb"),
  33880. name: "Front",
  33881. image: {
  33882. source: "./media/characters/cookiecat/front.svg",
  33883. extra: 893/827,
  33884. bottom: 14/907
  33885. }
  33886. },
  33887. },
  33888. [
  33889. {
  33890. name: "Micro",
  33891. height: math.unit(3, "inches")
  33892. },
  33893. {
  33894. name: "Normal",
  33895. height: math.unit(6 + 11/12, "feet"),
  33896. default: true
  33897. },
  33898. {
  33899. name: "Macro",
  33900. height: math.unit(100, "feet")
  33901. },
  33902. {
  33903. name: "Macro+",
  33904. height: math.unit(404, "feet")
  33905. },
  33906. {
  33907. name: "Megamacro",
  33908. height: math.unit(165, "miles")
  33909. },
  33910. {
  33911. name: "Planetary",
  33912. height: math.unit(4600, "miles")
  33913. },
  33914. ]
  33915. ))
  33916. characterMakers.push(() => makeCharacter(
  33917. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33918. {
  33919. front: {
  33920. height: math.unit(10 + 3/12, "feet"),
  33921. weight: math.unit(1500, "lb"),
  33922. name: "Front",
  33923. image: {
  33924. source: "./media/characters/tux-kusanagi/front.svg",
  33925. extra: 944/840,
  33926. bottom: 39/983
  33927. }
  33928. },
  33929. back: {
  33930. height: math.unit(10 + 3/12, "feet"),
  33931. weight: math.unit(1500, "lb"),
  33932. name: "Back",
  33933. image: {
  33934. source: "./media/characters/tux-kusanagi/back.svg",
  33935. extra: 941/842,
  33936. bottom: 28/969
  33937. }
  33938. },
  33939. rump: {
  33940. height: math.unit(5.25, "feet"),
  33941. name: "Rump",
  33942. image: {
  33943. source: "./media/characters/tux-kusanagi/rump.svg"
  33944. }
  33945. },
  33946. beak: {
  33947. height: math.unit(1.54, "feet"),
  33948. name: "Beak",
  33949. image: {
  33950. source: "./media/characters/tux-kusanagi/beak.svg"
  33951. }
  33952. },
  33953. },
  33954. [
  33955. {
  33956. name: "Normal",
  33957. height: math.unit(10 + 3/12, "feet"),
  33958. default: true
  33959. },
  33960. ]
  33961. ))
  33962. characterMakers.push(() => makeCharacter(
  33963. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33964. {
  33965. front: {
  33966. height: math.unit(58, "feet"),
  33967. weight: math.unit(200, "tons"),
  33968. name: "Front",
  33969. image: {
  33970. source: "./media/characters/uzarmazari/front.svg",
  33971. extra: 1575/1455,
  33972. bottom: 152/1727
  33973. }
  33974. },
  33975. back: {
  33976. height: math.unit(58, "feet"),
  33977. weight: math.unit(200, "tons"),
  33978. name: "Back",
  33979. image: {
  33980. source: "./media/characters/uzarmazari/back.svg",
  33981. extra: 1585/1510,
  33982. bottom: 157/1742
  33983. }
  33984. },
  33985. head: {
  33986. height: math.unit(26, "feet"),
  33987. name: "Head",
  33988. image: {
  33989. source: "./media/characters/uzarmazari/head.svg"
  33990. }
  33991. },
  33992. },
  33993. [
  33994. {
  33995. name: "Normal",
  33996. height: math.unit(58, "feet"),
  33997. default: true
  33998. },
  33999. ]
  34000. ))
  34001. characterMakers.push(() => makeCharacter(
  34002. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34003. {
  34004. side: {
  34005. height: math.unit(15, "feet"),
  34006. name: "Side",
  34007. image: {
  34008. source: "./media/characters/akitu/side.svg",
  34009. extra: 1421/1321,
  34010. bottom: 157/1578
  34011. }
  34012. },
  34013. front: {
  34014. height: math.unit(15, "feet"),
  34015. name: "Front",
  34016. image: {
  34017. source: "./media/characters/akitu/front.svg",
  34018. extra: 1435/1326,
  34019. bottom: 232/1667
  34020. }
  34021. },
  34022. },
  34023. [
  34024. {
  34025. name: "Normal",
  34026. height: math.unit(15, "feet"),
  34027. default: true
  34028. },
  34029. ]
  34030. ))
  34031. characterMakers.push(() => makeCharacter(
  34032. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34033. {
  34034. front: {
  34035. height: math.unit(10 + 8/12, "feet"),
  34036. name: "Front",
  34037. image: {
  34038. source: "./media/characters/azalie-croixland/front.svg",
  34039. extra: 1972/1856,
  34040. bottom: 31/2003
  34041. }
  34042. },
  34043. },
  34044. [
  34045. {
  34046. name: "Original Height",
  34047. height: math.unit(5 + 4/12, "feet")
  34048. },
  34049. {
  34050. name: "Normal Height",
  34051. height: math.unit(10 + 8/12, "feet"),
  34052. default: true
  34053. },
  34054. ]
  34055. ))
  34056. characterMakers.push(() => makeCharacter(
  34057. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34058. {
  34059. side: {
  34060. height: math.unit(7 + 1/12, "feet"),
  34061. weight: math.unit(245, "lb"),
  34062. name: "Side",
  34063. image: {
  34064. source: "./media/characters/kavus-kazian/side.svg",
  34065. extra: 349/342,
  34066. bottom: 15/364
  34067. }
  34068. },
  34069. },
  34070. [
  34071. {
  34072. name: "Normal",
  34073. height: math.unit(7 + 1/12, "feet"),
  34074. default: true
  34075. },
  34076. ]
  34077. ))
  34078. characterMakers.push(() => makeCharacter(
  34079. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34080. {
  34081. normal: {
  34082. height: math.unit(5 + 11/12, "feet"),
  34083. name: "Normal",
  34084. image: {
  34085. source: "./media/characters/moonlight-rose/normal.svg",
  34086. extra: 1979/1835,
  34087. bottom: 14/1993
  34088. }
  34089. },
  34090. demon: {
  34091. height: math.unit(5, "km"),
  34092. name: "Demon",
  34093. image: {
  34094. source: "./media/characters/moonlight-rose/demon.svg",
  34095. extra: 986/916,
  34096. bottom: 28/1014
  34097. }
  34098. },
  34099. },
  34100. [
  34101. {
  34102. name: "\"Natural\" height",
  34103. height: math.unit(5 + 11/12, "feet")
  34104. },
  34105. {
  34106. name: "Comfortable Size",
  34107. height: math.unit(40, "meters")
  34108. },
  34109. {
  34110. name: "Common Size",
  34111. height: math.unit(50, "km"),
  34112. default: true
  34113. },
  34114. {
  34115. name: "Demonic",
  34116. height: math.unit(1.24415e+21, "meters")
  34117. },
  34118. ]
  34119. ))
  34120. characterMakers.push(() => makeCharacter(
  34121. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34122. {
  34123. front: {
  34124. height: math.unit(16, "feet"),
  34125. weight: math.unit(610, "kg"),
  34126. name: "Front",
  34127. image: {
  34128. source: "./media/characters/huckle/front.svg",
  34129. extra: 1731/1625,
  34130. bottom: 33/1764
  34131. }
  34132. },
  34133. back: {
  34134. height: math.unit(16, "feet"),
  34135. weight: math.unit(610, "kg"),
  34136. name: "Back",
  34137. image: {
  34138. source: "./media/characters/huckle/back.svg",
  34139. extra: 1738/1651,
  34140. bottom: 37/1775
  34141. }
  34142. },
  34143. laughing: {
  34144. height: math.unit(3.75, "feet"),
  34145. name: "Laughing",
  34146. image: {
  34147. source: "./media/characters/huckle/laughing.svg"
  34148. }
  34149. },
  34150. angry: {
  34151. height: math.unit(4.15, "feet"),
  34152. name: "Angry",
  34153. image: {
  34154. source: "./media/characters/huckle/angry.svg"
  34155. }
  34156. },
  34157. },
  34158. [
  34159. {
  34160. name: "Normal",
  34161. height: math.unit(16, "feet"),
  34162. default: true
  34163. },
  34164. {
  34165. name: "Mini Macro",
  34166. height: math.unit(463, "feet")
  34167. },
  34168. {
  34169. name: "Macro",
  34170. height: math.unit(1680, "meters")
  34171. },
  34172. {
  34173. name: "Mega Macro",
  34174. height: math.unit(175, "km")
  34175. },
  34176. {
  34177. name: "Terra Macro",
  34178. height: math.unit(32, "gigameters")
  34179. },
  34180. {
  34181. name: "Multiverse+",
  34182. height: math.unit(2.56e23, "yottameters")
  34183. },
  34184. ]
  34185. ))
  34186. characterMakers.push(() => makeCharacter(
  34187. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34188. {
  34189. front: {
  34190. height: math.unit(6 + 9/12, "feet"),
  34191. weight: math.unit(280, "lb"),
  34192. name: "Front",
  34193. image: {
  34194. source: "./media/characters/candy/front.svg",
  34195. extra: 234/217,
  34196. bottom: 11/245
  34197. }
  34198. },
  34199. },
  34200. [
  34201. {
  34202. name: "Really Small",
  34203. height: math.unit(0.1, "nm")
  34204. },
  34205. {
  34206. name: "Micro",
  34207. height: math.unit(2, "inches")
  34208. },
  34209. {
  34210. name: "Normal",
  34211. height: math.unit(6 + 9/12, "feet"),
  34212. default: true
  34213. },
  34214. {
  34215. name: "Small Macro",
  34216. height: math.unit(69, "feet")
  34217. },
  34218. {
  34219. name: "Macro",
  34220. height: math.unit(160, "feet")
  34221. },
  34222. {
  34223. name: "Megamacro",
  34224. height: math.unit(22000, "miles")
  34225. },
  34226. {
  34227. name: "Gigamacro",
  34228. height: math.unit(50000, "miles")
  34229. },
  34230. ]
  34231. ))
  34232. characterMakers.push(() => makeCharacter(
  34233. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34234. {
  34235. front: {
  34236. height: math.unit(4, "feet"),
  34237. weight: math.unit(90, "lb"),
  34238. name: "Front",
  34239. image: {
  34240. source: "./media/characters/joey-mcdonald/front.svg",
  34241. extra: 1059/852,
  34242. bottom: 33/1092
  34243. }
  34244. },
  34245. back: {
  34246. height: math.unit(4, "feet"),
  34247. weight: math.unit(90, "lb"),
  34248. name: "Back",
  34249. image: {
  34250. source: "./media/characters/joey-mcdonald/back.svg",
  34251. extra: 1077/879,
  34252. bottom: 5/1082
  34253. }
  34254. },
  34255. },
  34256. [
  34257. {
  34258. name: "Normal",
  34259. height: math.unit(4, "feet"),
  34260. default: true
  34261. },
  34262. ]
  34263. ))
  34264. characterMakers.push(() => makeCharacter(
  34265. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34266. {
  34267. front: {
  34268. height: math.unit(12 + 6/12, "feet"),
  34269. name: "Front",
  34270. image: {
  34271. source: "./media/characters/kass-lockheed/front.svg",
  34272. extra: 354/343,
  34273. bottom: 9/363
  34274. }
  34275. },
  34276. back: {
  34277. height: math.unit(12 + 6/12, "feet"),
  34278. name: "Back",
  34279. image: {
  34280. source: "./media/characters/kass-lockheed/back.svg",
  34281. extra: 364/352,
  34282. bottom: 3/367
  34283. }
  34284. },
  34285. dick: {
  34286. height: math.unit(3.12, "feet"),
  34287. name: "Dick",
  34288. image: {
  34289. source: "./media/characters/kass-lockheed/dick.svg"
  34290. }
  34291. },
  34292. head: {
  34293. height: math.unit(2.6, "feet"),
  34294. name: "Head",
  34295. image: {
  34296. source: "./media/characters/kass-lockheed/head.svg"
  34297. }
  34298. },
  34299. bleh: {
  34300. height: math.unit(2.85, "feet"),
  34301. name: "Bleh",
  34302. image: {
  34303. source: "./media/characters/kass-lockheed/bleh.svg"
  34304. }
  34305. },
  34306. smug: {
  34307. height: math.unit(2.85, "feet"),
  34308. name: "Smug",
  34309. image: {
  34310. source: "./media/characters/kass-lockheed/smug.svg"
  34311. }
  34312. },
  34313. },
  34314. [
  34315. {
  34316. name: "Normal",
  34317. height: math.unit(12 + 6/12, "feet"),
  34318. default: true
  34319. },
  34320. ]
  34321. ))
  34322. characterMakers.push(() => makeCharacter(
  34323. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34324. {
  34325. front: {
  34326. height: math.unit(6 + 2/12, "feet"),
  34327. name: "Front",
  34328. image: {
  34329. source: "./media/characters/taylor/front.svg",
  34330. extra: 639/495,
  34331. bottom: 12/651
  34332. }
  34333. },
  34334. },
  34335. [
  34336. {
  34337. name: "Normal",
  34338. height: math.unit(6 + 2/12, "feet"),
  34339. default: true
  34340. },
  34341. {
  34342. name: "Big",
  34343. height: math.unit(15, "feet")
  34344. },
  34345. {
  34346. name: "Lorg",
  34347. height: math.unit(80, "feet")
  34348. },
  34349. {
  34350. name: "Too Lorg",
  34351. height: math.unit(120, "feet")
  34352. },
  34353. ]
  34354. ))
  34355. characterMakers.push(() => makeCharacter(
  34356. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34357. {
  34358. front: {
  34359. height: math.unit(15, "feet"),
  34360. name: "Front",
  34361. image: {
  34362. source: "./media/characters/kaizer/front.svg",
  34363. extra: 1612/1436,
  34364. bottom: 43/1655
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(15, "feet"),
  34372. default: true
  34373. },
  34374. ]
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34378. {
  34379. front: {
  34380. height: math.unit(2, "feet"),
  34381. weight: math.unit(30, "lb"),
  34382. name: "Front",
  34383. image: {
  34384. source: "./media/characters/sandy/front.svg",
  34385. extra: 1439/1307,
  34386. bottom: 194/1633
  34387. }
  34388. },
  34389. },
  34390. [
  34391. {
  34392. name: "Normal",
  34393. height: math.unit(2, "feet"),
  34394. default: true
  34395. },
  34396. ]
  34397. ))
  34398. characterMakers.push(() => makeCharacter(
  34399. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34400. {
  34401. front: {
  34402. height: math.unit(3, "feet"),
  34403. name: "Front",
  34404. image: {
  34405. source: "./media/characters/mellvi/front.svg",
  34406. extra: 1831/1630,
  34407. bottom: 58/1889
  34408. }
  34409. },
  34410. },
  34411. [
  34412. {
  34413. name: "Normal",
  34414. height: math.unit(3, "feet"),
  34415. default: true
  34416. },
  34417. ]
  34418. ))
  34419. characterMakers.push(() => makeCharacter(
  34420. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34421. {
  34422. front: {
  34423. height: math.unit(5 + 11/12, "feet"),
  34424. weight: math.unit(200, "lb"),
  34425. name: "Front",
  34426. image: {
  34427. source: "./media/characters/shirou/front.svg",
  34428. extra: 2491/2383,
  34429. bottom: 189/2680
  34430. }
  34431. },
  34432. back: {
  34433. height: math.unit(5 + 11/12, "feet"),
  34434. weight: math.unit(200, "lb"),
  34435. name: "Back",
  34436. image: {
  34437. source: "./media/characters/shirou/back.svg",
  34438. extra: 2554/2450,
  34439. bottom: 76/2630
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Normal",
  34446. height: math.unit(5 + 11/12, "feet"),
  34447. default: true
  34448. },
  34449. ]
  34450. ))
  34451. characterMakers.push(() => makeCharacter(
  34452. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34453. {
  34454. front: {
  34455. height: math.unit(6 + 3/12, "feet"),
  34456. weight: math.unit(177, "lb"),
  34457. name: "Front",
  34458. image: {
  34459. source: "./media/characters/noryu/front.svg",
  34460. extra: 973/885,
  34461. bottom: 10/983
  34462. }
  34463. },
  34464. },
  34465. [
  34466. {
  34467. name: "Normal",
  34468. height: math.unit(6 + 3/12, "feet"),
  34469. default: true
  34470. },
  34471. ]
  34472. ))
  34473. characterMakers.push(() => makeCharacter(
  34474. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34475. {
  34476. front: {
  34477. height: math.unit(5 + 6/12, "feet"),
  34478. weight: math.unit(170, "lb"),
  34479. name: "Front",
  34480. image: {
  34481. source: "./media/characters/mevolas-rubenido/front.svg",
  34482. extra: 2109/1901,
  34483. bottom: 96/2205
  34484. }
  34485. },
  34486. },
  34487. [
  34488. {
  34489. name: "Normal",
  34490. height: math.unit(5 + 6/12, "feet"),
  34491. default: true
  34492. },
  34493. ]
  34494. ))
  34495. characterMakers.push(() => makeCharacter(
  34496. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34497. {
  34498. front: {
  34499. height: math.unit(100, "feet"),
  34500. name: "Front",
  34501. image: {
  34502. source: "./media/characters/dee/front.svg",
  34503. extra: 2153/2036,
  34504. bottom: 59/2212
  34505. }
  34506. },
  34507. back: {
  34508. height: math.unit(100, "feet"),
  34509. name: "Back",
  34510. image: {
  34511. source: "./media/characters/dee/back.svg",
  34512. extra: 2183/2058,
  34513. bottom: 75/2258
  34514. }
  34515. },
  34516. foot: {
  34517. height: math.unit(19.43, "feet"),
  34518. name: "Foot",
  34519. image: {
  34520. source: "./media/characters/dee/foot.svg"
  34521. }
  34522. },
  34523. hoof: {
  34524. height: math.unit(20.6, "feet"),
  34525. name: "Hoof",
  34526. image: {
  34527. source: "./media/characters/dee/hoof.svg"
  34528. }
  34529. },
  34530. },
  34531. [
  34532. {
  34533. name: "Macro",
  34534. height: math.unit(100, "feet"),
  34535. default: true
  34536. },
  34537. ]
  34538. ))
  34539. characterMakers.push(() => makeCharacter(
  34540. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34541. {
  34542. front: {
  34543. height: math.unit(5 + 6/12, "feet"),
  34544. name: "Front",
  34545. image: {
  34546. source: "./media/characters/teh/front.svg",
  34547. extra: 1002/847,
  34548. bottom: 62/1064
  34549. }
  34550. },
  34551. },
  34552. [
  34553. {
  34554. name: "Normal",
  34555. height: math.unit(5 + 6/12, "feet"),
  34556. default: true
  34557. },
  34558. ]
  34559. ))
  34560. characterMakers.push(() => makeCharacter(
  34561. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34562. {
  34563. side: {
  34564. height: math.unit(6 + 1/12, "feet"),
  34565. weight: math.unit(204, "lb"),
  34566. name: "Side",
  34567. image: {
  34568. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34569. extra: 974/775,
  34570. bottom: 169/1143
  34571. }
  34572. },
  34573. sitting: {
  34574. height: math.unit(6 + 2/12, "feet"),
  34575. weight: math.unit(204, "lb"),
  34576. name: "Sitting",
  34577. image: {
  34578. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34579. extra: 1175/964,
  34580. bottom: 378/1553
  34581. }
  34582. },
  34583. },
  34584. [
  34585. {
  34586. name: "Normal",
  34587. height: math.unit(6 + 1/12, "feet"),
  34588. default: true
  34589. },
  34590. ]
  34591. ))
  34592. characterMakers.push(() => makeCharacter(
  34593. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34594. {
  34595. front: {
  34596. height: math.unit(6, "inches"),
  34597. name: "Front",
  34598. image: {
  34599. source: "./media/characters/tululi/front.svg",
  34600. extra: 1997/1876,
  34601. bottom: 20/2017
  34602. }
  34603. },
  34604. },
  34605. [
  34606. {
  34607. name: "Normal",
  34608. height: math.unit(6, "inches"),
  34609. default: true
  34610. },
  34611. ]
  34612. ))
  34613. characterMakers.push(() => makeCharacter(
  34614. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34615. {
  34616. front: {
  34617. height: math.unit(4 + 1/12, "feet"),
  34618. name: "Front",
  34619. image: {
  34620. source: "./media/characters/star/front.svg",
  34621. extra: 1493/1189,
  34622. bottom: 48/1541
  34623. }
  34624. },
  34625. },
  34626. [
  34627. {
  34628. name: "Normal",
  34629. height: math.unit(4 + 1/12, "feet"),
  34630. default: true
  34631. },
  34632. ]
  34633. ))
  34634. characterMakers.push(() => makeCharacter(
  34635. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34636. {
  34637. front: {
  34638. height: math.unit(6 + 3/12, "feet"),
  34639. name: "Front",
  34640. image: {
  34641. source: "./media/characters/comet/front.svg",
  34642. extra: 1681/1462,
  34643. bottom: 26/1707
  34644. }
  34645. },
  34646. },
  34647. [
  34648. {
  34649. name: "Normal",
  34650. height: math.unit(6 + 3/12, "feet"),
  34651. default: true
  34652. },
  34653. ]
  34654. ))
  34655. characterMakers.push(() => makeCharacter(
  34656. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34657. {
  34658. front: {
  34659. height: math.unit(950, "feet"),
  34660. name: "Front",
  34661. image: {
  34662. source: "./media/characters/vortex/front.svg",
  34663. extra: 1497/1434,
  34664. bottom: 56/1553
  34665. }
  34666. },
  34667. maw: {
  34668. height: math.unit(285, "feet"),
  34669. name: "Maw",
  34670. image: {
  34671. source: "./media/characters/vortex/maw.svg"
  34672. }
  34673. },
  34674. },
  34675. [
  34676. {
  34677. name: "Macro",
  34678. height: math.unit(950, "feet"),
  34679. default: true
  34680. },
  34681. ]
  34682. ))
  34683. characterMakers.push(() => makeCharacter(
  34684. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34685. {
  34686. front: {
  34687. height: math.unit(600, "feet"),
  34688. weight: math.unit(0.02, "grams"),
  34689. name: "Front",
  34690. image: {
  34691. source: "./media/characters/doodle/front.svg",
  34692. extra: 1578/1413,
  34693. bottom: 37/1615
  34694. }
  34695. },
  34696. },
  34697. [
  34698. {
  34699. name: "Macro",
  34700. height: math.unit(600, "feet"),
  34701. default: true
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(6 + 6/12, "feet"),
  34710. name: "Front",
  34711. image: {
  34712. source: "./media/characters/jai/front.svg",
  34713. extra: 1645/1534,
  34714. bottom: 115/1760
  34715. }
  34716. },
  34717. },
  34718. [
  34719. {
  34720. name: "Normal",
  34721. height: math.unit(6 + 6/12, "feet"),
  34722. default: true
  34723. },
  34724. ]
  34725. ))
  34726. characterMakers.push(() => makeCharacter(
  34727. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34728. {
  34729. front: {
  34730. height: math.unit(6 + 8/12, "feet"),
  34731. name: "Front",
  34732. image: {
  34733. source: "./media/characters/pixel/front.svg",
  34734. extra: 1900/1735,
  34735. bottom: 63/1963
  34736. }
  34737. },
  34738. },
  34739. [
  34740. {
  34741. name: "Normal",
  34742. height: math.unit(6 + 8/12, "feet"),
  34743. default: true
  34744. },
  34745. ]
  34746. ))
  34747. characterMakers.push(() => makeCharacter(
  34748. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34749. {
  34750. front: {
  34751. height: math.unit(4 + 11/12, "feet"),
  34752. weight: math.unit(111, "lb"),
  34753. name: "Front",
  34754. image: {
  34755. source: "./media/characters/rhett/front.svg",
  34756. extra: 1682/1586,
  34757. bottom: 92/1774
  34758. }
  34759. },
  34760. },
  34761. [
  34762. {
  34763. name: "Mini",
  34764. height: math.unit(1 + 1/12, "feet")
  34765. },
  34766. {
  34767. name: "Normal",
  34768. height: math.unit(4 + 11/12, "feet"),
  34769. default: true
  34770. },
  34771. ]
  34772. ))
  34773. characterMakers.push(() => makeCharacter(
  34774. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34775. {
  34776. front: {
  34777. height: math.unit(3 + 3/12, "feet"),
  34778. name: "Front",
  34779. image: {
  34780. source: "./media/characters/penny/front.svg",
  34781. extra: 1406/1311,
  34782. bottom: 26/1432
  34783. }
  34784. },
  34785. },
  34786. [
  34787. {
  34788. name: "Normal",
  34789. height: math.unit(3 + 3/12, "feet"),
  34790. default: true
  34791. },
  34792. ]
  34793. ))
  34794. characterMakers.push(() => makeCharacter(
  34795. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34796. {
  34797. front: {
  34798. height: math.unit(4 + 11/12, "feet"),
  34799. name: "Front",
  34800. image: {
  34801. source: "./media/characters/monty/front.svg",
  34802. extra: 1479/1209,
  34803. bottom: 0/1479
  34804. }
  34805. },
  34806. },
  34807. [
  34808. {
  34809. name: "Normal",
  34810. height: math.unit(4 + 11/12, "feet"),
  34811. default: true
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(8 + 4/12, "feet"),
  34820. name: "Front",
  34821. image: {
  34822. source: "./media/characters/sterling/front.svg",
  34823. extra: 1420/1236,
  34824. bottom: 27/1447
  34825. }
  34826. },
  34827. },
  34828. [
  34829. {
  34830. name: "Normal",
  34831. height: math.unit(8 + 4/12, "feet"),
  34832. default: true
  34833. },
  34834. ]
  34835. ))
  34836. characterMakers.push(() => makeCharacter(
  34837. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34838. {
  34839. front: {
  34840. height: math.unit(15, "feet"),
  34841. name: "Front",
  34842. image: {
  34843. source: "./media/characters/marble/front.svg",
  34844. extra: 973/937,
  34845. bottom: 32/1005
  34846. }
  34847. },
  34848. },
  34849. [
  34850. {
  34851. name: "Normal",
  34852. height: math.unit(15, "feet"),
  34853. default: true
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34859. {
  34860. front: {
  34861. height: math.unit(3, "inches"),
  34862. name: "Front",
  34863. image: {
  34864. source: "./media/characters/powder/front.svg",
  34865. extra: 1504/1334,
  34866. bottom: 518/2022
  34867. }
  34868. },
  34869. },
  34870. [
  34871. {
  34872. name: "Normal",
  34873. height: math.unit(3, "inches"),
  34874. default: true
  34875. },
  34876. ]
  34877. ))
  34878. characterMakers.push(() => makeCharacter(
  34879. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34880. {
  34881. front: {
  34882. height: math.unit(4 + 5/12, "feet"),
  34883. name: "Front",
  34884. image: {
  34885. source: "./media/characters/joey-raccoon/front.svg",
  34886. extra: 1273/1197,
  34887. bottom: 0/1273
  34888. }
  34889. },
  34890. },
  34891. [
  34892. {
  34893. name: "Normal",
  34894. height: math.unit(4 + 5/12, "feet"),
  34895. default: true
  34896. },
  34897. ]
  34898. ))
  34899. characterMakers.push(() => makeCharacter(
  34900. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34901. {
  34902. front: {
  34903. height: math.unit(8 + 4/12, "feet"),
  34904. name: "Front",
  34905. image: {
  34906. source: "./media/characters/vick/front.svg",
  34907. extra: 2187/2118,
  34908. bottom: 47/2234
  34909. }
  34910. },
  34911. },
  34912. [
  34913. {
  34914. name: "Normal",
  34915. height: math.unit(8 + 4/12, "feet"),
  34916. default: true
  34917. },
  34918. ]
  34919. ))
  34920. characterMakers.push(() => makeCharacter(
  34921. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34922. {
  34923. front: {
  34924. height: math.unit(5 + 5/12, "feet"),
  34925. name: "Front",
  34926. image: {
  34927. source: "./media/characters/mitsy/front.svg",
  34928. extra: 1842/1695,
  34929. bottom: 0/1842
  34930. }
  34931. },
  34932. },
  34933. [
  34934. {
  34935. name: "Normal",
  34936. height: math.unit(5 + 5/12, "feet"),
  34937. default: true
  34938. },
  34939. ]
  34940. ))
  34941. characterMakers.push(() => makeCharacter(
  34942. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34943. {
  34944. front: {
  34945. height: math.unit(6 + 3/12, "feet"),
  34946. name: "Front",
  34947. image: {
  34948. source: "./media/characters/silvy/front.svg",
  34949. extra: 1995/1836,
  34950. bottom: 225/2220
  34951. }
  34952. },
  34953. },
  34954. [
  34955. {
  34956. name: "Normal",
  34957. height: math.unit(6 + 3/12, "feet"),
  34958. default: true
  34959. },
  34960. ]
  34961. ))
  34962. characterMakers.push(() => makeCharacter(
  34963. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34964. {
  34965. front: {
  34966. height: math.unit(3 + 8/12, "feet"),
  34967. name: "Front",
  34968. image: {
  34969. source: "./media/characters/rodney/front.svg",
  34970. extra: 1956/1747,
  34971. bottom: 31/1987
  34972. }
  34973. },
  34974. frontDressed: {
  34975. height: math.unit(2.9, "feet"),
  34976. name: "Front (Dressed)",
  34977. image: {
  34978. source: "./media/characters/rodney/front-dressed.svg",
  34979. extra: 1382/1241,
  34980. bottom: 385/1767
  34981. }
  34982. },
  34983. },
  34984. [
  34985. {
  34986. name: "Normal",
  34987. height: math.unit(3 + 8/12, "feet"),
  34988. default: true
  34989. },
  34990. ]
  34991. ))
  34992. characterMakers.push(() => makeCharacter(
  34993. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34994. {
  34995. front: {
  34996. height: math.unit(5 + 9/12, "feet"),
  34997. weight: math.unit(194, "lbs"),
  34998. name: "Front",
  34999. image: {
  35000. source: "./media/characters/zakail-sudekai/front.svg",
  35001. extra: 2696/2533,
  35002. bottom: 248/2944
  35003. }
  35004. },
  35005. maw: {
  35006. height: math.unit(1.35, "feet"),
  35007. name: "Maw",
  35008. image: {
  35009. source: "./media/characters/zakail-sudekai/maw.svg"
  35010. }
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Normal",
  35016. height: math.unit(5 + 9/12, "feet"),
  35017. default: true
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35023. {
  35024. front: {
  35025. height: math.unit(8 + 4/12, "feet"),
  35026. weight: math.unit(1200, "lb"),
  35027. name: "Front",
  35028. image: {
  35029. source: "./media/characters/eleanor/front.svg",
  35030. extra: 1226/1192,
  35031. bottom: 52/1278
  35032. }
  35033. },
  35034. back: {
  35035. height: math.unit(8 + 4/12, "feet"),
  35036. weight: math.unit(1200, "lb"),
  35037. name: "Back",
  35038. image: {
  35039. source: "./media/characters/eleanor/back.svg",
  35040. extra: 1242/1184,
  35041. bottom: 60/1302
  35042. }
  35043. },
  35044. head: {
  35045. height: math.unit(2.62, "feet"),
  35046. name: "Head",
  35047. image: {
  35048. source: "./media/characters/eleanor/head.svg"
  35049. }
  35050. },
  35051. },
  35052. [
  35053. {
  35054. name: "Normal",
  35055. height: math.unit(8 + 4/12, "feet"),
  35056. default: true
  35057. },
  35058. ]
  35059. ))
  35060. characterMakers.push(() => makeCharacter(
  35061. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35062. {
  35063. front: {
  35064. height: math.unit(8 + 4/12, "feet"),
  35065. weight: math.unit(750, "lb"),
  35066. name: "Front",
  35067. image: {
  35068. source: "./media/characters/tanya/front.svg",
  35069. extra: 1749/1615,
  35070. bottom: 33/1782
  35071. }
  35072. },
  35073. },
  35074. [
  35075. {
  35076. name: "Normal",
  35077. height: math.unit(8 + 4/12, "feet"),
  35078. default: true
  35079. },
  35080. ]
  35081. ))
  35082. characterMakers.push(() => makeCharacter(
  35083. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35084. {
  35085. front: {
  35086. height: math.unit(5, "feet"),
  35087. weight: math.unit(225, "lb"),
  35088. name: "Front",
  35089. image: {
  35090. source: "./media/characters/cindy/front.svg",
  35091. extra: 1320/1250,
  35092. bottom: 42/1362
  35093. }
  35094. },
  35095. frontDressed: {
  35096. height: math.unit(5, "feet"),
  35097. weight: math.unit(225, "lb"),
  35098. name: "Front (Dressed)",
  35099. image: {
  35100. source: "./media/characters/cindy/front-dressed.svg",
  35101. extra: 1320/1250,
  35102. bottom: 42/1362
  35103. }
  35104. },
  35105. back: {
  35106. height: math.unit(5, "feet"),
  35107. weight: math.unit(225, "lb"),
  35108. name: "Back",
  35109. image: {
  35110. source: "./media/characters/cindy/back.svg",
  35111. extra: 1384/1346,
  35112. bottom: 14/1398
  35113. }
  35114. },
  35115. },
  35116. [
  35117. {
  35118. name: "Normal",
  35119. height: math.unit(5, "feet"),
  35120. default: true
  35121. },
  35122. ]
  35123. ))
  35124. characterMakers.push(() => makeCharacter(
  35125. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35126. {
  35127. front: {
  35128. height: math.unit(6 + 9/12, "feet"),
  35129. weight: math.unit(440, "lb"),
  35130. name: "Front",
  35131. image: {
  35132. source: "./media/characters/wilbur-owen/front.svg",
  35133. extra: 1575/1448,
  35134. bottom: 72/1647
  35135. }
  35136. },
  35137. back: {
  35138. height: math.unit(6 + 9/12, "feet"),
  35139. weight: math.unit(440, "lb"),
  35140. name: "Back",
  35141. image: {
  35142. source: "./media/characters/wilbur-owen/back.svg",
  35143. extra: 1578/1445,
  35144. bottom: 36/1614
  35145. }
  35146. },
  35147. },
  35148. [
  35149. {
  35150. name: "Normal",
  35151. height: math.unit(6 + 9/12, "feet"),
  35152. default: true
  35153. },
  35154. ]
  35155. ))
  35156. characterMakers.push(() => makeCharacter(
  35157. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35158. {
  35159. front: {
  35160. height: math.unit(6 + 5/12, "feet"),
  35161. weight: math.unit(650, "lb"),
  35162. name: "Front",
  35163. image: {
  35164. source: "./media/characters/keegan/front.svg",
  35165. extra: 2387/2198,
  35166. bottom: 33/2420
  35167. }
  35168. },
  35169. side: {
  35170. height: math.unit(6 + 5/12, "feet"),
  35171. weight: math.unit(650, "lb"),
  35172. name: "Side",
  35173. image: {
  35174. source: "./media/characters/keegan/side.svg",
  35175. extra: 2390/2202,
  35176. bottom: 47/2437
  35177. }
  35178. },
  35179. back: {
  35180. height: math.unit(6 + 5/12, "feet"),
  35181. weight: math.unit(650, "lb"),
  35182. name: "Back",
  35183. image: {
  35184. source: "./media/characters/keegan/back.svg",
  35185. extra: 2418/2268,
  35186. bottom: 15/2433
  35187. }
  35188. },
  35189. frontSfw: {
  35190. height: math.unit(6 + 5/12, "feet"),
  35191. weight: math.unit(650, "lb"),
  35192. name: "Front (SFW)",
  35193. image: {
  35194. source: "./media/characters/keegan/front-sfw.svg",
  35195. extra: 2387/2198,
  35196. bottom: 33/2420
  35197. }
  35198. },
  35199. beans: {
  35200. height: math.unit(1.85, "feet"),
  35201. name: "Beans",
  35202. image: {
  35203. source: "./media/characters/keegan/beans.svg"
  35204. }
  35205. },
  35206. },
  35207. [
  35208. {
  35209. name: "Normal",
  35210. height: math.unit(6 + 5/12, "feet"),
  35211. default: true
  35212. },
  35213. ]
  35214. ))
  35215. characterMakers.push(() => makeCharacter(
  35216. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35217. {
  35218. front: {
  35219. height: math.unit(9, "feet"),
  35220. name: "Front",
  35221. image: {
  35222. source: "./media/characters/colton/front.svg",
  35223. extra: 1589/1326,
  35224. bottom: 139/1728
  35225. }
  35226. },
  35227. },
  35228. [
  35229. {
  35230. name: "Normal",
  35231. height: math.unit(9, "feet"),
  35232. default: true
  35233. },
  35234. ]
  35235. ))
  35236. characterMakers.push(() => makeCharacter(
  35237. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35238. {
  35239. front: {
  35240. height: math.unit(2 + 9/12, "feet"),
  35241. name: "Front",
  35242. image: {
  35243. source: "./media/characters/bora/front.svg",
  35244. extra: 1265/1250,
  35245. bottom: 24/1289
  35246. }
  35247. },
  35248. },
  35249. [
  35250. {
  35251. name: "Normal",
  35252. height: math.unit(2 + 9/12, "feet"),
  35253. default: true
  35254. },
  35255. ]
  35256. ))
  35257. characterMakers.push(() => makeCharacter(
  35258. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35259. {
  35260. front: {
  35261. height: math.unit(8, "feet"),
  35262. name: "Front",
  35263. image: {
  35264. source: "./media/characters/myu-myu/front.svg",
  35265. extra: 1949/1857,
  35266. bottom: 90/2039
  35267. }
  35268. },
  35269. },
  35270. [
  35271. {
  35272. name: "Normal",
  35273. height: math.unit(8, "feet"),
  35274. default: true
  35275. },
  35276. {
  35277. name: "Big",
  35278. height: math.unit(15, "feet")
  35279. },
  35280. {
  35281. name: "BIG",
  35282. height: math.unit(25, "feet")
  35283. },
  35284. ]
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35288. {
  35289. side: {
  35290. height: math.unit(7 + 5/12, "feet"),
  35291. weight: math.unit(2800, "lb"),
  35292. name: "Side",
  35293. image: {
  35294. source: "./media/characters/haloren/side.svg",
  35295. extra: 1793/409,
  35296. bottom: 59/1852
  35297. }
  35298. },
  35299. frontPaw: {
  35300. height: math.unit(2.36, "feet"),
  35301. name: "Front paw",
  35302. image: {
  35303. source: "./media/characters/haloren/front-paw.svg"
  35304. }
  35305. },
  35306. hindPaw: {
  35307. height: math.unit(3.18, "feet"),
  35308. name: "Hind paw",
  35309. image: {
  35310. source: "./media/characters/haloren/hind-paw.svg"
  35311. }
  35312. },
  35313. maw: {
  35314. height: math.unit(5.05, "feet"),
  35315. name: "Maw",
  35316. image: {
  35317. source: "./media/characters/haloren/maw.svg"
  35318. }
  35319. },
  35320. dick: {
  35321. height: math.unit(2.90, "feet"),
  35322. name: "Dick",
  35323. image: {
  35324. source: "./media/characters/haloren/dick.svg"
  35325. }
  35326. },
  35327. },
  35328. [
  35329. {
  35330. name: "Normal",
  35331. height: math.unit(7 + 5/12, "feet"),
  35332. default: true
  35333. },
  35334. {
  35335. name: "Enhanced",
  35336. height: math.unit(14 + 3/12, "feet")
  35337. },
  35338. ]
  35339. ))
  35340. characterMakers.push(() => makeCharacter(
  35341. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35342. {
  35343. front: {
  35344. height: math.unit(171, "cm"),
  35345. name: "Front",
  35346. image: {
  35347. source: "./media/characters/kimmy/front.svg",
  35348. extra: 1491/1435,
  35349. bottom: 53/1544
  35350. }
  35351. },
  35352. },
  35353. [
  35354. {
  35355. name: "Small",
  35356. height: math.unit(9, "cm")
  35357. },
  35358. {
  35359. name: "Normal",
  35360. height: math.unit(171, "cm"),
  35361. default: true
  35362. },
  35363. ]
  35364. ))
  35365. characterMakers.push(() => makeCharacter(
  35366. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35367. {
  35368. front: {
  35369. height: math.unit(8, "feet"),
  35370. weight: math.unit(300, "lb"),
  35371. name: "Front",
  35372. image: {
  35373. source: "./media/characters/galeboomer/front.svg",
  35374. extra: 4651/4415,
  35375. bottom: 162/4813
  35376. }
  35377. },
  35378. back: {
  35379. height: math.unit(8, "feet"),
  35380. weight: math.unit(300, "lb"),
  35381. name: "Back",
  35382. image: {
  35383. source: "./media/characters/galeboomer/back.svg",
  35384. extra: 4544/4314,
  35385. bottom: 16/4560
  35386. }
  35387. },
  35388. frontAlt: {
  35389. height: math.unit(8, "feet"),
  35390. weight: math.unit(300, "lb"),
  35391. name: "Front (Alt)",
  35392. image: {
  35393. source: "./media/characters/galeboomer/front-alt.svg",
  35394. extra: 4458/4228,
  35395. bottom: 68/4526
  35396. }
  35397. },
  35398. maw: {
  35399. height: math.unit(1.2, "feet"),
  35400. name: "Maw",
  35401. image: {
  35402. source: "./media/characters/galeboomer/maw.svg"
  35403. }
  35404. },
  35405. },
  35406. [
  35407. {
  35408. name: "Normal",
  35409. height: math.unit(8, "feet"),
  35410. default: true
  35411. },
  35412. ]
  35413. ))
  35414. characterMakers.push(() => makeCharacter(
  35415. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35416. {
  35417. front: {
  35418. height: math.unit(5 + 9/12, "feet"),
  35419. weight: math.unit(120, "lb"),
  35420. name: "Front",
  35421. image: {
  35422. source: "./media/characters/chyr/front.svg",
  35423. extra: 1323/1254,
  35424. bottom: 63/1386
  35425. }
  35426. },
  35427. back: {
  35428. height: math.unit(5 + 9/12, "feet"),
  35429. weight: math.unit(120, "lb"),
  35430. name: "Back",
  35431. image: {
  35432. source: "./media/characters/chyr/back.svg",
  35433. extra: 1323/1252,
  35434. bottom: 48/1371
  35435. }
  35436. },
  35437. },
  35438. [
  35439. {
  35440. name: "Normal",
  35441. height: math.unit(5 + 9/12, "feet"),
  35442. default: true
  35443. },
  35444. ]
  35445. ))
  35446. characterMakers.push(() => makeCharacter(
  35447. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35448. {
  35449. front: {
  35450. height: math.unit(7, "feet"),
  35451. weight: math.unit(310, "lb"),
  35452. name: "Front",
  35453. image: {
  35454. source: "./media/characters/solarus/front.svg",
  35455. extra: 2415/2021,
  35456. bottom: 103/2518
  35457. }
  35458. },
  35459. back: {
  35460. height: math.unit(7, "feet"),
  35461. weight: math.unit(310, "lb"),
  35462. name: "Back",
  35463. image: {
  35464. source: "./media/characters/solarus/back.svg",
  35465. extra: 2463/2089,
  35466. bottom: 79/2542
  35467. }
  35468. },
  35469. },
  35470. [
  35471. {
  35472. name: "Normal",
  35473. height: math.unit(7, "feet"),
  35474. default: true
  35475. },
  35476. ]
  35477. ))
  35478. characterMakers.push(() => makeCharacter(
  35479. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35480. {
  35481. front: {
  35482. height: math.unit(16, "feet"),
  35483. name: "Front",
  35484. image: {
  35485. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35486. extra: 1844/1780,
  35487. bottom: 58/1902
  35488. }
  35489. },
  35490. },
  35491. [
  35492. {
  35493. name: "Normal",
  35494. height: math.unit(16, "feet"),
  35495. default: true
  35496. },
  35497. ]
  35498. ))
  35499. characterMakers.push(() => makeCharacter(
  35500. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35501. {
  35502. front: {
  35503. height: math.unit(11 + 6/12, "feet"),
  35504. weight: math.unit(1366, "lb"),
  35505. name: "Front",
  35506. image: {
  35507. source: "./media/characters/lexor/front.svg",
  35508. extra: 1560/1481,
  35509. bottom: 211/1771
  35510. }
  35511. },
  35512. back: {
  35513. height: math.unit(11 + 6/12, "feet"),
  35514. weight: math.unit(1366, "lb"),
  35515. name: "Back",
  35516. image: {
  35517. source: "./media/characters/lexor/back.svg",
  35518. extra: 1614/1533,
  35519. bottom: 76/1690
  35520. }
  35521. },
  35522. maw: {
  35523. height: math.unit(3, "feet"),
  35524. name: "Maw",
  35525. image: {
  35526. source: "./media/characters/lexor/maw.svg"
  35527. }
  35528. },
  35529. dick: {
  35530. height: math.unit(2.59, "feet"),
  35531. name: "Dick",
  35532. image: {
  35533. source: "./media/characters/lexor/dick.svg"
  35534. }
  35535. },
  35536. },
  35537. [
  35538. {
  35539. name: "Normal",
  35540. height: math.unit(11 + 6/12, "feet"),
  35541. default: true
  35542. },
  35543. ]
  35544. ))
  35545. characterMakers.push(() => makeCharacter(
  35546. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35547. {
  35548. front: {
  35549. height: math.unit(5 + 8/12, "feet"),
  35550. name: "Front",
  35551. image: {
  35552. source: "./media/characters/magnum/front.svg",
  35553. extra: 942/855,
  35554. bottom: 26/968
  35555. }
  35556. },
  35557. },
  35558. [
  35559. {
  35560. name: "Normal",
  35561. height: math.unit(5 + 8/12, "feet"),
  35562. default: true
  35563. },
  35564. ]
  35565. ))
  35566. characterMakers.push(() => makeCharacter(
  35567. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35568. {
  35569. front: {
  35570. height: math.unit(18 + 4/12, "feet"),
  35571. weight: math.unit(1500, "kg"),
  35572. name: "Front",
  35573. image: {
  35574. source: "./media/characters/solas-sharpsman/front.svg",
  35575. extra: 1698/1589,
  35576. bottom: 0/1698
  35577. }
  35578. },
  35579. },
  35580. [
  35581. {
  35582. name: "Normal",
  35583. height: math.unit(18 + 4/12, "feet"),
  35584. default: true
  35585. },
  35586. ]
  35587. ))
  35588. characterMakers.push(() => makeCharacter(
  35589. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35590. {
  35591. front: {
  35592. height: math.unit(5 + 5/12, "feet"),
  35593. weight: math.unit(180, "lb"),
  35594. name: "Front",
  35595. image: {
  35596. source: "./media/characters/october/front.svg",
  35597. extra: 1800/1650,
  35598. bottom: 0/1800
  35599. }
  35600. },
  35601. frontNsfw: {
  35602. height: math.unit(5 + 5/12, "feet"),
  35603. weight: math.unit(180, "lb"),
  35604. name: "Front (NSFW)",
  35605. image: {
  35606. source: "./media/characters/october/front-nsfw.svg",
  35607. extra: 1392/1307,
  35608. bottom: 42/1434
  35609. }
  35610. },
  35611. },
  35612. [
  35613. {
  35614. name: "Normal",
  35615. height: math.unit(5 + 5/12, "feet"),
  35616. default: true
  35617. },
  35618. ]
  35619. ))
  35620. characterMakers.push(() => makeCharacter(
  35621. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35622. {
  35623. front: {
  35624. height: math.unit(8 + 6/12, "feet"),
  35625. name: "Front",
  35626. image: {
  35627. source: "./media/characters/essynkardi/front.svg",
  35628. extra: 1914/1846,
  35629. bottom: 22/1936
  35630. }
  35631. },
  35632. },
  35633. [
  35634. {
  35635. name: "Normal",
  35636. height: math.unit(8 + 6/12, "feet"),
  35637. default: true
  35638. },
  35639. ]
  35640. ))
  35641. characterMakers.push(() => makeCharacter(
  35642. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35643. {
  35644. front: {
  35645. height: math.unit(6 + 6/12, "feet"),
  35646. weight: math.unit(7, "lb"),
  35647. name: "Front",
  35648. image: {
  35649. source: "./media/characters/icky/front.svg",
  35650. extra: 813/782,
  35651. bottom: 66/879
  35652. }
  35653. },
  35654. back: {
  35655. height: math.unit(6 + 6/12, "feet"),
  35656. weight: math.unit(7, "lb"),
  35657. name: "Back",
  35658. image: {
  35659. source: "./media/characters/icky/back.svg",
  35660. extra: 754/735,
  35661. bottom: 56/810
  35662. }
  35663. },
  35664. },
  35665. [
  35666. {
  35667. name: "Normal",
  35668. height: math.unit(6 + 6/12, "feet"),
  35669. default: true
  35670. },
  35671. ]
  35672. ))
  35673. characterMakers.push(() => makeCharacter(
  35674. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35675. {
  35676. front: {
  35677. height: math.unit(15, "feet"),
  35678. name: "Front",
  35679. image: {
  35680. source: "./media/characters/rojas/front.svg",
  35681. extra: 1462/1408,
  35682. bottom: 95/1557
  35683. }
  35684. },
  35685. back: {
  35686. height: math.unit(15, "feet"),
  35687. name: "Back",
  35688. image: {
  35689. source: "./media/characters/rojas/back.svg",
  35690. extra: 1023/954,
  35691. bottom: 28/1051
  35692. }
  35693. },
  35694. },
  35695. [
  35696. {
  35697. name: "Normal",
  35698. height: math.unit(15, "feet"),
  35699. default: true
  35700. },
  35701. ]
  35702. ))
  35703. characterMakers.push(() => makeCharacter(
  35704. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35705. {
  35706. frontHuman: {
  35707. height: math.unit(5 + 7/12, "feet"),
  35708. name: "Front (Human)",
  35709. image: {
  35710. source: "./media/characters/alek-dryagan/front-human.svg",
  35711. extra: 1687/1667,
  35712. bottom: 69/1756
  35713. }
  35714. },
  35715. backHuman: {
  35716. height: math.unit(5 + 7/12, "feet"),
  35717. name: "Back (Human)",
  35718. image: {
  35719. source: "./media/characters/alek-dryagan/back-human.svg",
  35720. extra: 1670/1649,
  35721. bottom: 65/1735
  35722. }
  35723. },
  35724. frontDemi: {
  35725. height: math.unit(65, "feet"),
  35726. name: "Front (Demi)",
  35727. image: {
  35728. source: "./media/characters/alek-dryagan/front-demi.svg",
  35729. extra: 1669/1642,
  35730. bottom: 49/1718
  35731. }
  35732. },
  35733. backDemi: {
  35734. height: math.unit(65, "feet"),
  35735. name: "Back (Demi)",
  35736. image: {
  35737. source: "./media/characters/alek-dryagan/back-demi.svg",
  35738. extra: 1658/1637,
  35739. bottom: 40/1698
  35740. }
  35741. },
  35742. mawHuman: {
  35743. height: math.unit(0.3, "feet"),
  35744. name: "Maw (Human)",
  35745. image: {
  35746. source: "./media/characters/alek-dryagan/maw-human.svg"
  35747. }
  35748. },
  35749. mawDemi: {
  35750. height: math.unit(3.8, "feet"),
  35751. name: "Maw (Demi)",
  35752. image: {
  35753. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35754. }
  35755. },
  35756. },
  35757. [
  35758. {
  35759. name: "Normal",
  35760. height: math.unit(5 + 7/12, "feet"),
  35761. default: true
  35762. },
  35763. ]
  35764. ))
  35765. characterMakers.push(() => makeCharacter(
  35766. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35767. {
  35768. frontHuman: {
  35769. height: math.unit(5 + 2/12, "feet"),
  35770. name: "Front (Human)",
  35771. image: {
  35772. source: "./media/characters/gen/front-human.svg",
  35773. extra: 1627/1538,
  35774. bottom: 71/1698
  35775. }
  35776. },
  35777. backHuman: {
  35778. height: math.unit(5 + 2/12, "feet"),
  35779. name: "Back (Human)",
  35780. image: {
  35781. source: "./media/characters/gen/back-human.svg",
  35782. extra: 1638/1548,
  35783. bottom: 69/1707
  35784. }
  35785. },
  35786. frontDemi: {
  35787. height: math.unit(5 + 2/12, "feet"),
  35788. name: "Front (Demi)",
  35789. image: {
  35790. source: "./media/characters/gen/front-demi.svg",
  35791. extra: 1627/1538,
  35792. bottom: 71/1698
  35793. }
  35794. },
  35795. backDemi: {
  35796. height: math.unit(5 + 2/12, "feet"),
  35797. name: "Back (Demi)",
  35798. image: {
  35799. source: "./media/characters/gen/back-demi.svg",
  35800. extra: 1638/1548,
  35801. bottom: 69/1707
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(5 + 2/12, "feet"),
  35809. default: true
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35815. {
  35816. frontImp: {
  35817. height: math.unit(1 + 11/12, "feet"),
  35818. name: "Front (Imp)",
  35819. image: {
  35820. source: "./media/characters/max-kobold/front-imp.svg",
  35821. extra: 1238/1134,
  35822. bottom: 81/1319
  35823. }
  35824. },
  35825. backImp: {
  35826. height: math.unit(1 + 11/12, "feet"),
  35827. name: "Back (Imp)",
  35828. image: {
  35829. source: "./media/characters/max-kobold/back-imp.svg",
  35830. extra: 1334/1175,
  35831. bottom: 34/1368
  35832. }
  35833. },
  35834. frontDemi: {
  35835. height: math.unit(5 + 9/12, "feet"),
  35836. name: "Front (Demi)",
  35837. image: {
  35838. source: "./media/characters/max-kobold/front-demi.svg",
  35839. extra: 1715/1685,
  35840. bottom: 54/1769
  35841. }
  35842. },
  35843. backDemi: {
  35844. height: math.unit(5 + 9/12, "feet"),
  35845. name: "Back (Demi)",
  35846. image: {
  35847. source: "./media/characters/max-kobold/back-demi.svg",
  35848. extra: 1752/1729,
  35849. bottom: 41/1793
  35850. }
  35851. },
  35852. handImp: {
  35853. height: math.unit(0.45, "feet"),
  35854. name: "Hand (Imp)",
  35855. image: {
  35856. source: "./media/characters/max-kobold/hand.svg"
  35857. }
  35858. },
  35859. pawImp: {
  35860. height: math.unit(0.46, "feet"),
  35861. name: "Paw (Imp)",
  35862. image: {
  35863. source: "./media/characters/max-kobold/paw.svg"
  35864. }
  35865. },
  35866. handDemi: {
  35867. height: math.unit(0.80, "feet"),
  35868. name: "Hand (Demi)",
  35869. image: {
  35870. source: "./media/characters/max-kobold/hand.svg"
  35871. }
  35872. },
  35873. pawDemi: {
  35874. height: math.unit(1.1, "feet"),
  35875. name: "Paw (Demi)",
  35876. image: {
  35877. source: "./media/characters/max-kobold/paw.svg"
  35878. }
  35879. },
  35880. headImp: {
  35881. height: math.unit(1.33, "feet"),
  35882. name: "Head (Imp)",
  35883. image: {
  35884. source: "./media/characters/max-kobold/head-imp.svg"
  35885. }
  35886. },
  35887. mawImp: {
  35888. height: math.unit(0.75, "feet"),
  35889. name: "Maw (Imp)",
  35890. image: {
  35891. source: "./media/characters/max-kobold/maw-imp.svg"
  35892. }
  35893. },
  35894. mawDemi: {
  35895. height: math.unit(0.42, "feet"),
  35896. name: "Maw (Demi)",
  35897. image: {
  35898. source: "./media/characters/max-kobold/maw-demi.svg"
  35899. }
  35900. },
  35901. },
  35902. [
  35903. {
  35904. name: "Normal",
  35905. height: math.unit(1 + 11/12, "feet"),
  35906. default: true
  35907. },
  35908. ]
  35909. ))
  35910. characterMakers.push(() => makeCharacter(
  35911. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35912. {
  35913. front: {
  35914. height: math.unit(7 + 5/12, "feet"),
  35915. name: "Front",
  35916. image: {
  35917. source: "./media/characters/carbon/front.svg",
  35918. extra: 1754/1689,
  35919. bottom: 65/1819
  35920. }
  35921. },
  35922. back: {
  35923. height: math.unit(7 + 5/12, "feet"),
  35924. name: "Back",
  35925. image: {
  35926. source: "./media/characters/carbon/back.svg",
  35927. extra: 1762/1695,
  35928. bottom: 24/1786
  35929. }
  35930. },
  35931. frontGigantamax: {
  35932. height: math.unit(150, "feet"),
  35933. name: "Front (Gigantamax)",
  35934. image: {
  35935. source: "./media/characters/carbon/front-gigantamax.svg",
  35936. extra: 1826/1669,
  35937. bottom: 59/1885
  35938. }
  35939. },
  35940. backGigantamax: {
  35941. height: math.unit(150, "feet"),
  35942. name: "Back (Gigantamax)",
  35943. image: {
  35944. source: "./media/characters/carbon/back-gigantamax.svg",
  35945. extra: 1796/1653,
  35946. bottom: 53/1849
  35947. }
  35948. },
  35949. maw: {
  35950. height: math.unit(0.48, "feet"),
  35951. name: "Maw",
  35952. image: {
  35953. source: "./media/characters/carbon/maw.svg"
  35954. }
  35955. },
  35956. mawGigantamax: {
  35957. height: math.unit(7.5, "feet"),
  35958. name: "Maw (Gigantamax)",
  35959. image: {
  35960. source: "./media/characters/carbon/maw-gigantamax.svg"
  35961. }
  35962. },
  35963. },
  35964. [
  35965. {
  35966. name: "Normal",
  35967. height: math.unit(7 + 5/12, "feet"),
  35968. default: true
  35969. },
  35970. ]
  35971. ))
  35972. characterMakers.push(() => makeCharacter(
  35973. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  35974. {
  35975. front: {
  35976. height: math.unit(6, "feet"),
  35977. name: "Front",
  35978. image: {
  35979. source: "./media/characters/maverick/front.svg",
  35980. extra: 1672/1661,
  35981. bottom: 85/1757
  35982. }
  35983. },
  35984. back: {
  35985. height: math.unit(6, "feet"),
  35986. name: "Back",
  35987. image: {
  35988. source: "./media/characters/maverick/back.svg",
  35989. extra: 1642/1631,
  35990. bottom: 38/1680
  35991. }
  35992. },
  35993. },
  35994. [
  35995. {
  35996. name: "Normal",
  35997. height: math.unit(6, "feet"),
  35998. default: true
  35999. },
  36000. ]
  36001. ))
  36002. characterMakers.push(() => makeCharacter(
  36003. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36004. {
  36005. front: {
  36006. height: math.unit(15, "feet"),
  36007. weight: math.unit(615, "lb"),
  36008. name: "Front",
  36009. image: {
  36010. source: "./media/characters/grockle/front.svg",
  36011. extra: 1535/1427,
  36012. bottom: 56/1591
  36013. }
  36014. },
  36015. },
  36016. [
  36017. {
  36018. name: "Normal",
  36019. height: math.unit(15, "feet"),
  36020. default: true
  36021. },
  36022. {
  36023. name: "Large",
  36024. height: math.unit(150, "feet")
  36025. },
  36026. {
  36027. name: "Macro",
  36028. height: math.unit(1876, "feet")
  36029. },
  36030. {
  36031. name: "Mega Macro",
  36032. height: math.unit(121940, "feet")
  36033. },
  36034. {
  36035. name: "Giga Macro",
  36036. height: math.unit(750, "km")
  36037. },
  36038. {
  36039. name: "Tera Macro",
  36040. height: math.unit(750000, "km")
  36041. },
  36042. {
  36043. name: "Galactic",
  36044. height: math.unit(1.4e5, "km")
  36045. },
  36046. {
  36047. name: "Godlike",
  36048. height: math.unit(9.8e280, "galaxies")
  36049. },
  36050. ]
  36051. ))
  36052. characterMakers.push(() => makeCharacter(
  36053. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36054. {
  36055. front: {
  36056. height: math.unit(11, "meters"),
  36057. weight: math.unit(20, "tonnes"),
  36058. name: "Front",
  36059. image: {
  36060. source: "./media/characters/alistair/front.svg",
  36061. extra: 1265/1009,
  36062. bottom: 93/1358
  36063. }
  36064. },
  36065. },
  36066. [
  36067. {
  36068. name: "Normal",
  36069. height: math.unit(11, "meters"),
  36070. default: true
  36071. },
  36072. ]
  36073. ))
  36074. characterMakers.push(() => makeCharacter(
  36075. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36076. {
  36077. front: {
  36078. height: math.unit(5 + 8/12, "feet"),
  36079. name: "Front",
  36080. image: {
  36081. source: "./media/characters/haruka/front.svg",
  36082. extra: 2012/1952,
  36083. bottom: 0/2012
  36084. }
  36085. },
  36086. },
  36087. [
  36088. {
  36089. name: "Normal",
  36090. height: math.unit(5 + 8/12, "feet"),
  36091. default: true
  36092. },
  36093. ]
  36094. ))
  36095. characterMakers.push(() => makeCharacter(
  36096. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36097. {
  36098. back: {
  36099. height: math.unit(9, "feet"),
  36100. name: "Back",
  36101. image: {
  36102. source: "./media/characters/vivian-sylveon/back.svg",
  36103. extra: 1853/1714,
  36104. bottom: 0/1853
  36105. }
  36106. },
  36107. },
  36108. [
  36109. {
  36110. name: "Normal",
  36111. height: math.unit(9, "feet"),
  36112. default: true
  36113. },
  36114. {
  36115. name: "Macro",
  36116. height: math.unit(500, "feet")
  36117. },
  36118. {
  36119. name: "Megamacro",
  36120. height: math.unit(600, "miles")
  36121. },
  36122. {
  36123. name: "Gigamacro",
  36124. height: math.unit(30000, "miles")
  36125. },
  36126. ]
  36127. ))
  36128. characterMakers.push(() => makeCharacter(
  36129. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36130. {
  36131. anthro: {
  36132. height: math.unit(5 + 10/12, "feet"),
  36133. weight: math.unit(100, "lb"),
  36134. name: "Anthro",
  36135. image: {
  36136. source: "./media/characters/daiki/anthro.svg",
  36137. extra: 1115/1027,
  36138. bottom: 69/1184
  36139. }
  36140. },
  36141. feral: {
  36142. height: math.unit(200, "feet"),
  36143. name: "Feral",
  36144. image: {
  36145. source: "./media/characters/daiki/feral.svg",
  36146. extra: 1256/313,
  36147. bottom: 39/1295
  36148. }
  36149. },
  36150. feralHead: {
  36151. height: math.unit(171, "feet"),
  36152. name: "Feral Head",
  36153. image: {
  36154. source: "./media/characters/daiki/feral-head.svg"
  36155. }
  36156. },
  36157. },
  36158. [
  36159. {
  36160. name: "Normal",
  36161. height: math.unit(5 + 10/12, "feet"),
  36162. default: true
  36163. },
  36164. ]
  36165. ))
  36166. characterMakers.push(() => makeCharacter(
  36167. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36168. {
  36169. fullyEquippedFront: {
  36170. height: math.unit(3 + 1/12, "feet"),
  36171. weight: math.unit(24, "lb"),
  36172. name: "Fully Equipped (Front)",
  36173. image: {
  36174. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36175. extra: 687/605,
  36176. bottom: 18/705
  36177. }
  36178. },
  36179. fullyEquippedBack: {
  36180. height: math.unit(3 + 1/12, "feet"),
  36181. weight: math.unit(24, "lb"),
  36182. name: "Fully Equipped (Back)",
  36183. image: {
  36184. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36185. extra: 689/590,
  36186. bottom: 18/707
  36187. }
  36188. },
  36189. dailyWear: {
  36190. height: math.unit(3 + 1/12, "feet"),
  36191. weight: math.unit(24, "lb"),
  36192. name: "Daily Wear",
  36193. image: {
  36194. source: "./media/characters/tea-spot/daily-wear.svg",
  36195. extra: 701/620,
  36196. bottom: 21/722
  36197. }
  36198. },
  36199. maidWork: {
  36200. height: math.unit(3 + 1/12, "feet"),
  36201. weight: math.unit(24, "lb"),
  36202. name: "Maid Work",
  36203. image: {
  36204. source: "./media/characters/tea-spot/maid-work.svg",
  36205. extra: 693/609,
  36206. bottom: 15/708
  36207. }
  36208. },
  36209. },
  36210. [
  36211. {
  36212. name: "Normal",
  36213. height: math.unit(3 + 1/12, "feet"),
  36214. default: true
  36215. },
  36216. ]
  36217. ))
  36218. characterMakers.push(() => makeCharacter(
  36219. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36220. {
  36221. front: {
  36222. height: math.unit(175, "cm"),
  36223. weight: math.unit(75, "kg"),
  36224. name: "Front",
  36225. image: {
  36226. source: "./media/characters/chee/front.svg",
  36227. extra: 1796/1740,
  36228. bottom: 40/1836
  36229. }
  36230. },
  36231. },
  36232. [
  36233. {
  36234. name: "Micro-Micro",
  36235. height: math.unit(1, "nm")
  36236. },
  36237. {
  36238. name: "Micro-erst",
  36239. height: math.unit(1, "micrometer")
  36240. },
  36241. {
  36242. name: "Micro-er",
  36243. height: math.unit(1, "cm")
  36244. },
  36245. {
  36246. name: "Normal",
  36247. height: math.unit(175, "cm"),
  36248. default: true
  36249. },
  36250. {
  36251. name: "Macro",
  36252. height: math.unit(100, "m")
  36253. },
  36254. {
  36255. name: "Macro-er",
  36256. height: math.unit(1, "km")
  36257. },
  36258. {
  36259. name: "Macro-erst",
  36260. height: math.unit(10, "km")
  36261. },
  36262. {
  36263. name: "Macro-Macro",
  36264. height: math.unit(100, "km")
  36265. },
  36266. ]
  36267. ))
  36268. characterMakers.push(() => makeCharacter(
  36269. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36270. {
  36271. front: {
  36272. height: math.unit(11 + 9/12, "feet"),
  36273. weight: math.unit(935, "lb"),
  36274. name: "Front",
  36275. image: {
  36276. source: "./media/characters/kingsley/front.svg",
  36277. extra: 1803/1674,
  36278. bottom: 127/1930
  36279. }
  36280. },
  36281. frontNude: {
  36282. height: math.unit(11 + 9/12, "feet"),
  36283. weight: math.unit(935, "lb"),
  36284. name: "Front (Nude)",
  36285. image: {
  36286. source: "./media/characters/kingsley/front-nude.svg",
  36287. extra: 1803/1674,
  36288. bottom: 127/1930
  36289. }
  36290. },
  36291. },
  36292. [
  36293. {
  36294. name: "Normal",
  36295. height: math.unit(11 + 9/12, "feet"),
  36296. default: true
  36297. },
  36298. ]
  36299. ))
  36300. characterMakers.push(() => makeCharacter(
  36301. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36302. {
  36303. side: {
  36304. height: math.unit(9, "feet"),
  36305. name: "Side",
  36306. image: {
  36307. source: "./media/characters/rymel/side.svg",
  36308. extra: 792/469,
  36309. bottom: 121/913
  36310. }
  36311. },
  36312. maw: {
  36313. height: math.unit(2.4, "meters"),
  36314. name: "Maw",
  36315. image: {
  36316. source: "./media/characters/rymel/maw.svg"
  36317. }
  36318. },
  36319. },
  36320. [
  36321. {
  36322. name: "House Drake",
  36323. height: math.unit(2, "feet")
  36324. },
  36325. {
  36326. name: "Reduced",
  36327. height: math.unit(4.5, "feet")
  36328. },
  36329. {
  36330. name: "Normal",
  36331. height: math.unit(9, "feet"),
  36332. default: true
  36333. },
  36334. ]
  36335. ))
  36336. characterMakers.push(() => makeCharacter(
  36337. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36338. {
  36339. front: {
  36340. height: math.unit(1.74, "meters"),
  36341. weight: math.unit(55, "kg"),
  36342. name: "Front",
  36343. image: {
  36344. source: "./media/characters/rubus/front.svg",
  36345. extra: 1894/1742,
  36346. bottom: 44/1938
  36347. }
  36348. },
  36349. },
  36350. [
  36351. {
  36352. name: "Normal",
  36353. height: math.unit(1.74, "meters"),
  36354. default: true
  36355. },
  36356. ]
  36357. ))
  36358. characterMakers.push(() => makeCharacter(
  36359. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36360. {
  36361. front: {
  36362. height: math.unit(5 + 2/12, "feet"),
  36363. weight: math.unit(112, "lb"),
  36364. name: "Front",
  36365. image: {
  36366. source: "./media/characters/cassie-kingston/front.svg",
  36367. extra: 1438/1390,
  36368. bottom: 47/1485
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(5 + 2/12, "feet"),
  36376. default: true
  36377. },
  36378. {
  36379. name: "Macro",
  36380. height: math.unit(128, "feet")
  36381. },
  36382. {
  36383. name: "Megamacro",
  36384. height: math.unit(2.56, "miles")
  36385. },
  36386. ]
  36387. ))
  36388. characterMakers.push(() => makeCharacter(
  36389. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36390. {
  36391. front: {
  36392. height: math.unit(7, "feet"),
  36393. name: "Front",
  36394. image: {
  36395. source: "./media/characters/fox/front.svg",
  36396. extra: 1798/1703,
  36397. bottom: 55/1853
  36398. }
  36399. },
  36400. back: {
  36401. height: math.unit(7, "feet"),
  36402. name: "Back",
  36403. image: {
  36404. source: "./media/characters/fox/back.svg",
  36405. extra: 1748/1649,
  36406. bottom: 32/1780
  36407. }
  36408. },
  36409. head: {
  36410. height: math.unit(1.95, "feet"),
  36411. name: "Head",
  36412. image: {
  36413. source: "./media/characters/fox/head.svg"
  36414. }
  36415. },
  36416. dick: {
  36417. height: math.unit(1.33, "feet"),
  36418. name: "Dick",
  36419. image: {
  36420. source: "./media/characters/fox/dick.svg"
  36421. }
  36422. },
  36423. foot: {
  36424. height: math.unit(1, "feet"),
  36425. name: "Foot",
  36426. image: {
  36427. source: "./media/characters/fox/foot.svg"
  36428. }
  36429. },
  36430. paw: {
  36431. height: math.unit(0.92, "feet"),
  36432. name: "Paw",
  36433. image: {
  36434. source: "./media/characters/fox/paw.svg"
  36435. }
  36436. },
  36437. },
  36438. [
  36439. {
  36440. name: "Small",
  36441. height: math.unit(3, "inches")
  36442. },
  36443. {
  36444. name: "\"Realistic\"",
  36445. height: math.unit(7, "feet")
  36446. },
  36447. {
  36448. name: "Normal",
  36449. height: math.unit(150, "feet"),
  36450. default: true
  36451. },
  36452. {
  36453. name: "BIG",
  36454. height: math.unit(1200, "feet")
  36455. },
  36456. {
  36457. name: "👀",
  36458. height: math.unit(5, "miles")
  36459. },
  36460. {
  36461. name: "👀👀👀",
  36462. height: math.unit(64, "miles")
  36463. },
  36464. ]
  36465. ))
  36466. characterMakers.push(() => makeCharacter(
  36467. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36468. {
  36469. front: {
  36470. height: math.unit(625, "feet"),
  36471. name: "Front",
  36472. image: {
  36473. source: "./media/characters/asonja-rossa/front.svg",
  36474. extra: 1833/1686,
  36475. bottom: 24/1857
  36476. }
  36477. },
  36478. back: {
  36479. height: math.unit(625, "feet"),
  36480. name: "Back",
  36481. image: {
  36482. source: "./media/characters/asonja-rossa/back.svg",
  36483. extra: 1852/1753,
  36484. bottom: 26/1878
  36485. }
  36486. },
  36487. },
  36488. [
  36489. {
  36490. name: "Macro",
  36491. height: math.unit(625, "feet"),
  36492. default: true
  36493. },
  36494. ]
  36495. ))
  36496. characterMakers.push(() => makeCharacter(
  36497. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36498. {
  36499. side: {
  36500. height: math.unit(6, "feet"),
  36501. weight: math.unit(150, "lb"),
  36502. name: "Side",
  36503. image: {
  36504. source: "./media/characters/rezukii/side.svg",
  36505. extra: 979/542,
  36506. bottom: 87/1066
  36507. }
  36508. },
  36509. },
  36510. [
  36511. {
  36512. name: "Tiny",
  36513. height: math.unit(2, "feet")
  36514. },
  36515. {
  36516. name: "Smol",
  36517. height: math.unit(4, "feet")
  36518. },
  36519. {
  36520. name: "Normal",
  36521. height: math.unit(8, "feet"),
  36522. default: true
  36523. },
  36524. {
  36525. name: "Big",
  36526. height: math.unit(12, "feet")
  36527. },
  36528. {
  36529. name: "Macro",
  36530. height: math.unit(30, "feet")
  36531. },
  36532. ]
  36533. ))
  36534. characterMakers.push(() => makeCharacter(
  36535. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36536. {
  36537. front: {
  36538. height: math.unit(14, "feet"),
  36539. weight: math.unit(9.5, "tonnes"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/dawnheart/front.svg",
  36543. extra: 2792/2675,
  36544. bottom: 64/2856
  36545. }
  36546. },
  36547. },
  36548. [
  36549. {
  36550. name: "Normal",
  36551. height: math.unit(14, "feet"),
  36552. default: true
  36553. },
  36554. ]
  36555. ))
  36556. characterMakers.push(() => makeCharacter(
  36557. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36558. {
  36559. front: {
  36560. height: math.unit(1.7, "m"),
  36561. name: "Front",
  36562. image: {
  36563. source: "./media/characters/gladi/front.svg",
  36564. extra: 1460/1362,
  36565. bottom: 19/1479
  36566. }
  36567. },
  36568. back: {
  36569. height: math.unit(1.7, "m"),
  36570. name: "Back",
  36571. image: {
  36572. source: "./media/characters/gladi/back.svg",
  36573. extra: 1459/1357,
  36574. bottom: 12/1471
  36575. }
  36576. },
  36577. feral: {
  36578. height: math.unit(2.05, "m"),
  36579. name: "Feral",
  36580. image: {
  36581. source: "./media/characters/gladi/feral.svg",
  36582. extra: 821/557,
  36583. bottom: 91/912
  36584. }
  36585. },
  36586. },
  36587. [
  36588. {
  36589. name: "Shortest",
  36590. height: math.unit(70, "cm")
  36591. },
  36592. {
  36593. name: "Normal",
  36594. height: math.unit(1.7, "m")
  36595. },
  36596. {
  36597. name: "Macro",
  36598. height: math.unit(10, "m"),
  36599. default: true
  36600. },
  36601. {
  36602. name: "Tallest",
  36603. height: math.unit(200, "m")
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36609. {
  36610. front: {
  36611. height: math.unit(5 + 7/12, "feet"),
  36612. weight: math.unit(92, "kg"),
  36613. name: "Front",
  36614. image: {
  36615. source: "./media/characters/erdno/front.svg",
  36616. extra: 1954/1889,
  36617. bottom: 22/1976
  36618. }
  36619. },
  36620. },
  36621. [
  36622. {
  36623. name: "Normal",
  36624. height: math.unit(5 + 7/12, "feet"),
  36625. default: true
  36626. },
  36627. ]
  36628. ))
  36629. characterMakers.push(() => makeCharacter(
  36630. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36631. {
  36632. front: {
  36633. height: math.unit(5 + 10/12, "feet"),
  36634. weight: math.unit(150, "lb"),
  36635. name: "Front",
  36636. image: {
  36637. source: "./media/characters/jamie/front.svg",
  36638. extra: 1908/1768,
  36639. bottom: 19/1927
  36640. }
  36641. },
  36642. },
  36643. [
  36644. {
  36645. name: "Minimum",
  36646. height: math.unit(2, "cm")
  36647. },
  36648. {
  36649. name: "Micro",
  36650. height: math.unit(3, "inches")
  36651. },
  36652. {
  36653. name: "Normal",
  36654. height: math.unit(5 + 10/12, "feet"),
  36655. default: true
  36656. },
  36657. {
  36658. name: "Macro",
  36659. height: math.unit(150, "feet")
  36660. },
  36661. {
  36662. name: "Megamacro",
  36663. height: math.unit(10000, "m")
  36664. },
  36665. ]
  36666. ))
  36667. characterMakers.push(() => makeCharacter(
  36668. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36669. {
  36670. front: {
  36671. height: math.unit(2, "meters"),
  36672. weight: math.unit(100, "kg"),
  36673. name: "Front",
  36674. image: {
  36675. source: "./media/characters/shiron/front.svg",
  36676. extra: 2103/1985,
  36677. bottom: 98/2201
  36678. }
  36679. },
  36680. back: {
  36681. height: math.unit(2, "meters"),
  36682. weight: math.unit(100, "kg"),
  36683. name: "Back",
  36684. image: {
  36685. source: "./media/characters/shiron/back.svg",
  36686. extra: 2110/2015,
  36687. bottom: 89/2199
  36688. }
  36689. },
  36690. hand: {
  36691. height: math.unit(0.96, "feet"),
  36692. name: "Hand",
  36693. image: {
  36694. source: "./media/characters/shiron/hand.svg"
  36695. }
  36696. },
  36697. foot: {
  36698. height: math.unit(1.464, "feet"),
  36699. name: "Foot",
  36700. image: {
  36701. source: "./media/characters/shiron/foot.svg"
  36702. }
  36703. },
  36704. },
  36705. [
  36706. {
  36707. name: "Normal",
  36708. height: math.unit(2, "meters")
  36709. },
  36710. {
  36711. name: "Macro",
  36712. height: math.unit(500, "meters"),
  36713. default: true
  36714. },
  36715. {
  36716. name: "Megamacro",
  36717. height: math.unit(20, "km")
  36718. },
  36719. ]
  36720. ))
  36721. characterMakers.push(() => makeCharacter(
  36722. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36723. {
  36724. front: {
  36725. height: math.unit(6, "feet"),
  36726. name: "Front",
  36727. image: {
  36728. source: "./media/characters/sam/front.svg",
  36729. extra: 849/826,
  36730. bottom: 19/868
  36731. }
  36732. },
  36733. },
  36734. [
  36735. {
  36736. name: "Normal",
  36737. height: math.unit(6, "feet"),
  36738. default: true
  36739. },
  36740. ]
  36741. ))
  36742. characterMakers.push(() => makeCharacter(
  36743. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36744. {
  36745. front: {
  36746. height: math.unit(8 + 4/12, "feet"),
  36747. weight: math.unit(122, "kg"),
  36748. name: "Front",
  36749. image: {
  36750. source: "./media/characters/namori-kurogawa/front.svg",
  36751. extra: 1894/1576,
  36752. bottom: 34/1928
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Normal",
  36759. height: math.unit(8 + 4/12, "feet"),
  36760. default: true
  36761. },
  36762. ]
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(9, "feet"),
  36769. weight: math.unit(621, "lb"),
  36770. name: "Front",
  36771. image: {
  36772. source: "./media/characters/unmru/front.svg",
  36773. extra: 1853/1747,
  36774. bottom: 73/1926
  36775. }
  36776. },
  36777. side: {
  36778. height: math.unit(9, "feet"),
  36779. weight: math.unit(621, "lb"),
  36780. name: "Side",
  36781. image: {
  36782. source: "./media/characters/unmru/side.svg",
  36783. extra: 1781/1671,
  36784. bottom: 127/1908
  36785. }
  36786. },
  36787. back: {
  36788. height: math.unit(9, "feet"),
  36789. weight: math.unit(621, "lb"),
  36790. name: "Back",
  36791. image: {
  36792. source: "./media/characters/unmru/back.svg",
  36793. extra: 1894/1765,
  36794. bottom: 75/1969
  36795. }
  36796. },
  36797. dick: {
  36798. height: math.unit(3, "feet"),
  36799. weight: math.unit(35, "lb"),
  36800. name: "Dick",
  36801. image: {
  36802. source: "./media/characters/unmru/dick.svg"
  36803. }
  36804. },
  36805. },
  36806. [
  36807. {
  36808. name: "Normal",
  36809. height: math.unit(9, "feet")
  36810. },
  36811. {
  36812. name: "Natural",
  36813. height: math.unit(27, "feet"),
  36814. default: true
  36815. },
  36816. {
  36817. name: "Giant",
  36818. height: math.unit(90, "feet")
  36819. },
  36820. {
  36821. name: "Kaiju",
  36822. height: math.unit(270, "feet")
  36823. },
  36824. {
  36825. name: "Macro",
  36826. height: math.unit(900, "feet")
  36827. },
  36828. {
  36829. name: "Macro+",
  36830. height: math.unit(2700, "feet")
  36831. },
  36832. {
  36833. name: "Megamacro",
  36834. height: math.unit(9000, "feet")
  36835. },
  36836. {
  36837. name: "City-Crushing",
  36838. height: math.unit(27000, "feet")
  36839. },
  36840. {
  36841. name: "Mountain-Mashing",
  36842. height: math.unit(90000, "feet")
  36843. },
  36844. {
  36845. name: "Earth-Eclipsing",
  36846. height: math.unit(2.7e8, "feet")
  36847. },
  36848. {
  36849. name: "Sol-Swallowing",
  36850. height: math.unit(9e10, "feet")
  36851. },
  36852. {
  36853. name: "Majoris-Munching",
  36854. height: math.unit(2.7e13, "feet")
  36855. },
  36856. ]
  36857. ))
  36858. characterMakers.push(() => makeCharacter(
  36859. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36860. {
  36861. front: {
  36862. height: math.unit(1, "inch"),
  36863. name: "Front",
  36864. image: {
  36865. source: "./media/characters/squeaks-mouse/front.svg",
  36866. extra: 352/308,
  36867. bottom: 25/377
  36868. }
  36869. },
  36870. },
  36871. [
  36872. {
  36873. name: "Micro",
  36874. height: math.unit(1, "inch"),
  36875. default: true
  36876. },
  36877. ]
  36878. ))
  36879. //characters
  36880. function makeCharacters() {
  36881. const results = [];
  36882. characterMakers.forEach(character => {
  36883. results.push(character());
  36884. });
  36885. return results;
  36886. }